Commit 21e3a06b4403d2a3be8b9cda564315292a447b89
1 parent
75a3ef18
Fix typos and improve documentation clarity in comments
Showing
9 changed files
with
52 additions
and
12 deletions
examples/pdf-custom-filter.cc
include/qpdf/QPDFFormFieldObjectHelper.hh
| ... | ... | @@ -111,7 +111,7 @@ class QPDFFormFieldObjectHelper: public QPDFObjectHelper |
| 111 | 111 | std::string getDefaultAppearance(); |
| 112 | 112 | |
| 113 | 113 | // Return the default resource dictionary for the field. This comes not from the field but from |
| 114 | - // the document-level /AcroForm dictionary. While several PDF generates put a /DR key in the | |
| 114 | + // the document-level /AcroForm dictionary. While several PDF generators put a /DR key in the | |
| 115 | 115 | // form field's dictionary, experimentation suggests that many popular readers, including Adobe |
| 116 | 116 | // Acrobat and Acrobat Reader, ignore any /DR item on the field. |
| 117 | 117 | QPDF_DLL |
| ... | ... | @@ -144,7 +144,7 @@ class QPDFFormFieldObjectHelper: public QPDFObjectHelper |
| 144 | 144 | // Returns true if field is of type /Btn and flags indicate that it is a pushbutton |
| 145 | 145 | QPDF_DLL |
| 146 | 146 | bool isPushbutton(); |
| 147 | - // Returns true if fields if of type /Ch | |
| 147 | + // Returns true if field is of type /Ch | |
| 148 | 148 | QPDF_DLL |
| 149 | 149 | bool isChoice(); |
| 150 | 150 | // Returns choices display values as UTF-8 strings | ... | ... |
libqpdf/QPDFEmbeddedFileDocumentHelper.cc
| ... | ... | @@ -4,6 +4,8 @@ |
| 4 | 4 | #include <qpdf/QPDFObjectHandle_private.hh> |
| 5 | 5 | #include <qpdf/QPDF_private.hh> |
| 6 | 6 | |
| 7 | +using namespace qpdf; | |
| 8 | + | |
| 7 | 9 | // File attachments are stored in the /EmbeddedFiles (name tree) key of the /Names dictionary from |
| 8 | 10 | // the document catalog. Each entry points to a /FileSpec, which in turn points to one more Embedded |
| 9 | 11 | // File Streams. Note that file specs can appear in other places as well, such as file attachment | ... | ... |
libqpdf/QPDFFormFieldObjectHelper.cc
| ... | ... | @@ -605,7 +605,8 @@ FormNode::generateAppearance(QPDFAnnotationObjectHelper& aoh) |
| 605 | 605 | { |
| 606 | 606 | // Ignore field types we don't know how to generate appearances for. Button fields don't really |
| 607 | 607 | // need them -- see code in QPDFAcroFormDocumentHelper::generateAppearancesIfNeeded. |
| 608 | - if (FT() == "/Tx" || FT() == "/Ch") { | |
| 608 | + auto ft = FT(); | |
| 609 | + if (ft == "/Tx" || ft == "/Ch") { | |
| 609 | 610 | generateTextAppearance(aoh); |
| 610 | 611 | } |
| 611 | 612 | } |
| ... | ... | @@ -914,6 +915,17 @@ FormNode::generateTextAppearance(QPDFAnnotationObjectHelper& aoh) |
| 914 | 915 | } |
| 915 | 916 | |
| 916 | 917 | if (AS.obj_sp().use_count() > 3) { |
| 918 | + // The following check ensures that we only update the appearance stream if it is not | |
| 919 | + // shared. The threshold of 3 is based on the current implementation details: | |
| 920 | + // - One reference from the local variable AS | |
| 921 | + // - One reference from the appearance dictionary (/AP) | |
| 922 | + // - One reference from the object table | |
| 923 | + // If use_count() is greater than 3, it means the appearance stream is shared elsewhere, | |
| 924 | + // and updating it could have unintended side effects. This threshold may need to be updated | |
| 925 | + // if the internal reference counting changes in the future. | |
| 926 | + // The long-term solution will we to replace appearance streams at the point of flattening | |
| 927 | + // annotations rather than attaching token filters that modify the streams at time of | |
| 928 | + // writing. | |
| 917 | 929 | aoh.warn("unable to generate text appearance from shared appearance stream for update"); |
| 918 | 930 | return; |
| 919 | 931 | } | ... | ... |
libqpdf/QPDFWriter.cc
| ... | ... | @@ -2385,7 +2385,7 @@ impl::Writer::doWriteSetup() |
| 2385 | 2385 | } |
| 2386 | 2386 | |
| 2387 | 2387 | if (cfg.linearize() || encryption) { |
| 2388 | - // The document catalog is not allowed to be compressed in cfg.linearized_ files either. | |
| 2388 | + // The document catalog is not allowed to be compressed in linearized files either. | |
| 2389 | 2389 | // It also appears that Adobe Reader 8.0.0 has a bug that prevents it from being able to |
| 2390 | 2390 | // handle encrypted files with compressed document catalogs, so we disable them in that |
| 2391 | 2391 | // case as well. | ... | ... |
libqpdf/QPDF_Dictionary.cc
| ... | ... | @@ -64,7 +64,7 @@ BaseHandle::contains(std::string const& key) const |
| 64 | 64 | return !(*this)[key].null(); |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | -/// @brief Retrieves the value associated with the given key from dictionary. | |
| 67 | +/// @brief Retrieves the value associated with the given key from a dictionary. | |
| 68 | 68 | /// |
| 69 | 69 | /// This method attempts to find the value corresponding to the specified key for objects that can |
| 70 | 70 | /// be interpreted as dictionaries. |
| ... | ... | @@ -122,6 +122,19 @@ BaseHandle::erase(const std::string& key) |
| 122 | 122 | return 0; |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | +/// @brief Replaces or removes the value associated with the given key in a dictionary. | |
| 126 | +/// | |
| 127 | +/// If the current object is a dictionary, this method updates the value at the specified key. | |
| 128 | +/// If the value is a direct null object, the key is removed from the dictionary (since the PDF | |
| 129 | +/// specification doesn't distinguish between keys with null values and missing keys). Indirect | |
| 130 | +/// null values are preserved as they represent dangling references, which are permitted by the | |
| 131 | +/// specification. | |
| 132 | +/// | |
| 133 | +/// @param key The key for which the value should be replaced. | |
| 134 | +/// @param value The new value to associate with the key. If this is a direct null, the key is | |
| 135 | +/// removed instead. | |
| 136 | +/// @return Returns true if the operation was performed (i.e., the current object is a dictionary). | |
| 137 | +/// Returns false if the current object is not a dictionary. | |
| 125 | 138 | bool |
| 126 | 139 | BaseHandle::replace(std::string const& key, QPDFObjectHandle value) |
| 127 | 140 | { |
| ... | ... | @@ -140,6 +153,20 @@ BaseHandle::replace(std::string const& key, QPDFObjectHandle value) |
| 140 | 153 | return false; |
| 141 | 154 | } |
| 142 | 155 | |
| 156 | +/// @brief Replaces or removes the value associated with the given key in a dictionary. | |
| 157 | +/// | |
| 158 | +/// This method provides a stricter version of `BaseHandle::replace()` that throws an exception | |
| 159 | +/// if the current object is not a dictionary, instead of silently returning false. It delegates | |
| 160 | +/// to `BaseHandle::replace()` for the actual replacement logic. | |
| 161 | +/// | |
| 162 | +/// If the value is a direct null object, the key is removed from the dictionary (since the PDF | |
| 163 | +/// specification doesn't distinguish between keys with null values and missing keys). Indirect | |
| 164 | +/// null values are preserved as they represent dangling references. | |
| 165 | +/// | |
| 166 | +/// @param key The key for which the value should be replaced. | |
| 167 | +/// @param value The new value to associate with the key. If this is a direct null, the key is | |
| 168 | +/// removed instead. | |
| 169 | +/// @throws std::runtime_error if the current object is not a dictionary. | |
| 143 | 170 | void |
| 144 | 171 | BaseDictionary::replace(std::string const& key, QPDFObjectHandle value) |
| 145 | 172 | { | ... | ... |
libqpdf/QPDF_objects.cc
| ... | ... | @@ -203,7 +203,7 @@ Objects::findHeader() |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | 205 | bool |
| 206 | -Objects ::findStartxref() | |
| 206 | +Objects::findStartxref() | |
| 207 | 207 | { |
| 208 | 208 | if (readToken(*m->file).isWord("startxref") && readToken(*m->file).isInteger()) { |
| 209 | 209 | // Position in front of offset token |
| ... | ... | @@ -1412,7 +1412,7 @@ Objects::validateStreamLineEnd(QPDFObjectHandle& object, QPDFObjGen og, qpdf_off |
| 1412 | 1412 | } |
| 1413 | 1413 | |
| 1414 | 1414 | bool |
| 1415 | -Objects ::findEndstream() | |
| 1415 | +Objects::findEndstream() | |
| 1416 | 1416 | { |
| 1417 | 1417 | // Find endstream or endobj. Position the input at that token. |
| 1418 | 1418 | auto t = readToken(*m->file, 20); | ... | ... |
libqpdf/qpdf/AcroForm.hh
| ... | ... | @@ -616,7 +616,7 @@ namespace qpdf::impl |
| 616 | 616 | std::string default_appearance() const; |
| 617 | 617 | |
| 618 | 618 | // Return the default resource dictionary for the field. This comes not from the field but |
| 619 | - // from the document-level /AcroForm dictionary. While several PDF generates put a /DR key | |
| 619 | + // from the document-level /AcroForm dictionary. While several PDF generators put a /DR key | |
| 620 | 620 | // in the form field's dictionary, experimentation suggests that many popular readers, |
| 621 | 621 | // including Adobe Acrobat and Acrobat Reader, ignore any /DR item on the field. |
| 622 | 622 | QPDFObjectHandle getDefaultResources(); |
| ... | ... | @@ -626,7 +626,7 @@ namespace qpdf::impl |
| 626 | 626 | int getQuadding(); |
| 627 | 627 | |
| 628 | 628 | // Return field flags from /Ff. The value is a logical or of pdf_form_field_flag_e as |
| 629 | - // defined in qpdf/Constants.h// | |
| 629 | + // defined in qpdf/Constants.h | |
| 630 | 630 | int getFlags(); |
| 631 | 631 | |
| 632 | 632 | // Methods for testing for particular types of form fields |
| ... | ... | @@ -646,7 +646,7 @@ namespace qpdf::impl |
| 646 | 646 | // Returns true if field is of type /Btn and flags indicate that it is a pushbutton |
| 647 | 647 | bool isPushbutton(); |
| 648 | 648 | |
| 649 | - // Returns true if fields if of type /Ch | |
| 649 | + // Returns true if field is of type /Ch | |
| 650 | 650 | bool isChoice(); |
| 651 | 651 | |
| 652 | 652 | // Returns choices display values as UTF-8 strings | ... | ... |
qpdf/test_driver.cc
| ... | ... | @@ -17,7 +17,6 @@ |
| 17 | 17 | #include <qpdf/QPDFJob.hh> |
| 18 | 18 | #include <qpdf/QPDFNameTreeObjectHelper.hh> |
| 19 | 19 | #include <qpdf/QPDFNumberTreeObjectHelper.hh> |
| 20 | -#include <qpdf/QPDFObjectHandle_private.hh> | |
| 21 | 20 | #include <qpdf/QPDFOutlineDocumentHelper.hh> |
| 22 | 21 | #include <qpdf/QPDFPageDocumentHelper.hh> |
| 23 | 22 | #include <qpdf/QPDFPageLabelDocumentHelper.hh> |
| ... | ... | @@ -27,6 +26,7 @@ |
| 27 | 26 | #include <qpdf/QPDFWriter.hh> |
| 28 | 27 | #include <qpdf/QTC.hh> |
| 29 | 28 | #include <qpdf/QUtil.hh> |
| 29 | +#include <qpdf/global.hh> | |
| 30 | 30 | #include <climits> |
| 31 | 31 | #include <cstdio> |
| 32 | 32 | #include <cstdlib> | ... | ... |