summaryrefslogtreecommitdiffstats
path: root/TODO
diff options
context:
space:
mode:
Diffstat (limited to 'TODO')
-rw-r--r--TODO107
1 files changed, 6 insertions, 101 deletions
diff --git a/TODO b/TODO
index 97e7d2c4..ebbd8105 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1,9 @@
+4.1.0
+=====
+
+ * New public interfaces have been added.
+
+
4.2.0
=====
@@ -38,107 +44,6 @@
- See ../misc/broken-files
-4.1.0
-=====
-
- * Add to documentation, and mention this documentation in
- README.maintainer:
-
- Casting policy.
-
- The C++ code in qpdf is free of old-style casts except where
- unavoidable (e.g. where the old-style cast is in a macro provided
- by a third-party header file). When there is a need for a cast, it
- is handled, in order of preference by rewriting the code to avoid
- the need for a cast, calling const_cast, calling static_cast,
- calling reinterpret_cast, or calling some combination of the above.
- The casting policy explicitly prohibits casting between sizes for
- no purpose other than to quiet a compiler warning when there is no
- reasonable chance of a problem resulting. The reason for this
- exclusion is that it takes away enabling additional compiler
- warnings as a tool for making future improvements to this aspect of
- the code and also damages the readability of the code. As a last
- resort, a compiler-specific pragma may be used to suppress a
- warning that we don't want to fix. Examples may include
- suppressing warnings about the use of old-style casts in code that
- is shared between C and C++ code.
-
- There are a few significant areas where casting is common in the qpdf
- sources or where casting would be required to quiet higher levels
- of compiler warnings but is omitted at present:
-
- * signed vs. unsigned char. For historical reasons, there are a
- lot of places in qpdf's internals that deal with unsigned char,
- which means that a lot of casting is required to interoperate
- with standard library calls and std::string. In retrospect,
- qpdf should have probably used signed char everywhere and just
- cast to unsigned char when needed. There are reinterpret_cast
- calls to go between char* and unsigned char*, and there are
- static_cast calls to go between char and unsigned char. These
- should always be safe.
-
- * non-const unsigned char* used in Pipeline interface. The
- pipeline interface has a write() call that uses unsigned char*
- without a const qualifier. The main reason for this is to
- support pipelines that make calls to third-party libraries, such
- as zlib, that don't include const in their interfaces.
- Unfortunately, there are many places in the code where it is
- desirable to have const char* with pipelines. None of the
- pipeline implementations in qpdf currently modify the data
- passed to write, and doing so would be counter to the intent of
- Pipeline. There are places in the code where const_cast is used
- to remove the const-ness of pointers going into Pipelines. This
- could be potentially unsafe, but there is adequate testing to
- assert that it is safe in qpdf's code.
-
- * size_t vs. qpdf_offset_t. This is pretty much unavoidable since
- offsets are signed types and sizes are unsigned types. Whenever
- it is necessary to seek by an amount given by a size_t, it
- becomes necessary to mix and match between size_t and
- qpdf_offset_t. Additionally, qpdf sometimes treats memory
- buffers like files, and those seek interfaces have to be
- consistent with file-based input sources. Neither gcc nor MSVC
- give warnings for this case by default, but both have warning
- flags that can enable this. (MSVC: /W14267 or /W3 (which also
- enables some additional warnings that we ignore); gcc:
- -Wconversion -Wsign-conversion). This could matter for files
- whose sizes are larger than 2^63 bytes, but it is reasonable to
- expect that a world where such files are common would also have
- larger size_t and qpdf_offset_t types in it. I am not aware of
- any cases where 32-bit systems that have size_t smaller than
- qpdf_offset_t could run into problems, though I can't
- conclusively rule out the possibility. In the event that
- someone should produce a file that qpdf can't handle because of
- what is suspected to be issues involving the handling of size_t
- vs. qpdf_offset_t (such files may behave properly on 64-bit
- systems but not on 32-bit systems and may have very large
- embedded files or streams, for example), the above mentioned
- warning flags could be enabled and all those implicit
- conversions could be carefully scrutinized. (I have already
- gone through that exercise once in adding support for files >
- 4GB in size.) I continue to be commited to supporting large
- files on 32-bit systems, but I would not go to any lengths to
- support corner cases involving large embedded files or large
- streams that work on 64-bit systems but not on 32-bit systems
- because of size_t being too small. It is reasonable to assume
- that anyone working with such files would be using a 64-bit
- system anyway.
-
- * size_t vs. int. There are some cases where size_t and int or
- size_t and unsigned int are used interchangeably. These cases
- occur when working with very small amounts of memory, such as
- with the bit readers (where we're working with just a few bytes
- at a time), some cases of strlen, and a few other cases. I have
- scrutinized all of these cases and determined them to be safe,
- but there is no mechanism in the code to ensure that new unsafe
- conversions between int and size_t aren't introduced short of
- good testing and strong awareness of the issues. Again, if any
- such bugs are suspected in the future, enable the additional
- warning flags and scrutinizing the warnings would be in order.
-
- * New public interfaces have been added.
-
-
General
=======