1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
From: YOKOTA Hiroshi <yokota.hgml@gmail.com>
Date: Fri, 26 May 2023 21:27:43 +0900
Subject: Revert "Fix PdfObject::GetReference semantics changed"
Forwarded: not-needed
This reverts commit 226718cead1632eb135d0abc21b50e2823559192.
---
src/calibre/utils/podofo/doc.cpp | 20 +++++++++---------
src/calibre/utils/podofo/fonts.cpp | 41 +++++++++++++++++++------------------
src/calibre/utils/podofo/global.h | 9 --------
src/calibre/utils/podofo/images.cpp | 4 ++--
4 files changed, 33 insertions(+), 41 deletions(-)
diff --git a/src/calibre/utils/podofo/doc.cpp b/src/calibre/utils/podofo/doc.cpp
index c38dbaa..9129f6c 100644
--- a/src/calibre/utils/podofo/doc.cpp
+++ b/src/calibre/utils/podofo/doc.cpp
@@ -427,7 +427,7 @@ PDFDoc_extract_anchors(PDFDoc *self, PyObject *args) {
const PdfObject *dests_ref = self->doc->GetCatalog().GetDictionary().GetKey("Dests");
auto& pages = self->doc->GetPages();
if (dests_ref && dests_ref->IsReference()) {
- const PdfObject *dests_obj = self->doc->GetObjects().GetObject(object_as_reference(dests_ref));
+ const PdfObject *dests_obj = self->doc->GetObjects().GetObject(dests_ref->GetReference());
if (dests_obj && dests_obj->IsDictionary()) {
const PdfDictionary &dests = dests_obj->GetDictionary();
for (auto itres: dests) {
@@ -436,7 +436,7 @@ PDFDoc_extract_anchors(PDFDoc *self, PyObject *args) {
// see section 8.2 of PDF spec for different types of destination arrays
// but chromium apparently generates only [page /XYZ left top zoom] type arrays
if (dest.GetSize() > 4 && dest[1].IsName() && dest[1].GetName().GetString() == "XYZ") {
- const PdfPage *page = get_page(pages, object_as_reference(dest[0]));
+ const PdfPage *page = get_page(pages, dest[0].GetReference());
if (page) {
unsigned int pagenum = page->GetPageNumber();
double left = dest[2].GetReal(), top = dest[3].GetReal();
@@ -503,15 +503,15 @@ PDFDoc_alter_links(PDFDoc *self, PyObject *args) {
link_color.Add(1.); link_color.Add(0.); link_color.Add(0.);
std::vector<PdfReference> links;
for (auto &it : self->doc->GetObjects()) {
- PdfDictionary *link;
- if(it->TryGetDictionary(link)) {
- if (dictionary_has_key_name(*link, PdfName::KeyType, "Annot") && dictionary_has_key_name(*link, PdfName::KeySubtype, "Link")) {
- PdfObject *akey; PdfDictionary *A;
- if ((akey = link->GetKey("A")) && akey->TryGetDictionary(A)) {
- if (dictionary_has_key_name(*A, PdfName::KeyType, "Action") && dictionary_has_key_name(*A, "S", "URI")) {
- PdfObject *uo = A->GetKey("URI");
+ if(it->IsDictionary()) {
+ PdfDictionary &link = it->GetDictionary();
+ if (dictionary_has_key_name(link, PdfName::KeyType, "Annot") && dictionary_has_key_name(link, PdfName::KeySubtype, "Link")) {
+ if (link.HasKey("A") && link.GetKey("A")->IsDictionary()) {
+ PdfDictionary &A = link.GetKey("A")->GetDictionary();
+ if (dictionary_has_key_name(A, PdfName::KeyType, "Action") && dictionary_has_key_name(A, "S", "URI")) {
+ PdfObject *uo = A.GetKey("URI");
if (uo && uo->IsString()) {
- links.push_back(object_as_reference(it));
+ links.push_back(it->GetReference());
}
}
}
diff --git a/src/calibre/utils/podofo/fonts.cpp b/src/calibre/utils/podofo/fonts.cpp
index 14ccca6..ba673f4 100644
--- a/src/calibre/utils/podofo/fonts.cpp
+++ b/src/calibre/utils/podofo/fonts.cpp
@@ -50,11 +50,11 @@ remove_font(PdfIndirectObjectList &objects, PdfObject *font) {
PdfObject *descriptor = dict->FindKey("FontDescriptor");
if (descriptor) {
const PdfObject *ff = get_font_file(descriptor);
- if (ff) objects.RemoveObject(object_as_reference(ff)).reset();
- objects.RemoveObject(object_as_reference(descriptor)).reset();
+ if (ff) objects.RemoveObject(ff->GetReference()).reset();
+ objects.RemoveObject(descriptor->GetReference()).reset();
}
}
- objects.RemoveObject(object_as_reference(font)).reset();
+ objects.RemoveObject(font->GetReference()).reset();
}
static void
@@ -86,8 +86,9 @@ used_fonts_in_canvas(const PdfCanvas &canvas, unordered_reference_set &ans) {
stack.pop();
if (stack.size() > 0 && stack.top().IsName()) {
const PdfName &reference_name = stack.top().GetName();
- const PdfObject *f = fonts_dict.GetKey(reference_name);
- if (f) ans.insert(object_as_reference(f));
+ if (fonts_dict.HasKey(reference_name)) {
+ ans.insert(fonts_dict.GetKey(reference_name)->GetReference());
+ }
}
}
}
@@ -126,7 +127,7 @@ list_fonts(PDFDoc *self, PyObject *args) {
if (dictionary_has_key_name(dict, PdfName::KeyType, "Font") && dict.HasKey("BaseFont")) {
const std::string &name = dict.GetKey("BaseFont")->GetName().GetString();
const std::string &subtype = dict.GetKey(PdfName::KeySubtype)->GetName().GetString();
- const PdfReference &ref = object_as_reference(it);
+ const PdfReference &ref = it->GetReference();
unsigned long num = ref.ObjectNumber(), generation = ref.GenerationNumber();
const PdfObject *descriptor = dict.FindKey("FontDescriptor");
pyunique_ptr descendant_font, stream_ref, encoding, w, w2;
@@ -150,7 +151,7 @@ list_fonts(PDFDoc *self, PyObject *args) {
if (descriptor) {
const PdfObject *ff = get_font_file(descriptor);
if (ff) {
- stream_ref.reset(ref_as_tuple(object_as_reference(ff)));
+ stream_ref.reset(ref_as_tuple(ff->GetReference()));
if (!stream_ref) return NULL;
const PdfObjectStream *stream = ff->GetStream();
if (stream && get_font_data) {
@@ -159,10 +160,10 @@ list_fonts(PDFDoc *self, PyObject *args) {
}
} else if (dict.HasKey("DescendantFonts")) {
const PdfArray &df = dict.GetKey("DescendantFonts")->GetArray();
- descendant_font.reset(ref_as_tuple(object_as_reference(df[0])));
+ descendant_font.reset(ref_as_tuple(df[0].GetReference()));
if (!descendant_font) return NULL;
if (get_font_data && dict.HasKey("ToUnicode")) {
- const PdfReference &uref = object_as_reference(dict.GetKey("ToUnicode"));
+ const PdfReference &uref = dict.GetKey("ToUnicode")->GetReference();
PdfObject *t = objects.GetObject(uref);
if (t) {
PdfObjectStream *stream = t->GetStream();
@@ -224,12 +225,12 @@ remove_unused_fonts(PDFDoc *self, PyObject *args) {
if (dictionary_has_key_name(dict, PdfName::KeyType, "Font")) {
const std::string &font_type = dict.GetKey(PdfName::KeySubtype)->GetName().GetString();
if (font_type == "Type0") {
- all_fonts.insert(object_as_reference(k));
+ all_fonts.insert(k->GetReference());
} else if (font_type == "Type3") {
- all_fonts.insert(object_as_reference(k));
- type3_fonts.insert(object_as_reference(k));
+ all_fonts.insert(k->GetReference());
+ type3_fonts.insert(k->GetReference());
for (auto &x : dict.GetKey("CharProcs")->GetDictionary()) {
- const PdfReference &ref = object_as_reference(x.second);
+ const PdfReference &ref = x.second.GetReference();
if (charprocs_usage.find(ref) == charprocs_usage.end()) charprocs_usage[ref] = 1;
else charprocs_usage[ref] += 1;
}
@@ -247,11 +248,11 @@ remove_unused_fonts(PDFDoc *self, PyObject *args) {
if (font->TryGetDictionary(dict)) {
if (type3_fonts.find(ref) != type3_fonts.end()) {
for (auto &x : dict->FindKey("CharProcs")->GetDictionary()) {
- charprocs_usage[object_as_reference(x.second)] -= 1;
+ charprocs_usage[x.second.GetReference()] -= 1;
}
} else {
for (auto &x : dict->FindKey("DescendantFonts")->GetArray()) {
- PdfObject *dfont = objects.GetObject(object_as_reference(x));
+ PdfObject *dfont = objects.GetObject(x.GetReference());
if (dfont) remove_font(objects, dfont);
}
}}
@@ -317,8 +318,8 @@ merge_fonts(PDFDoc *self, PyObject *args) {
PdfObjectStream *stream = ff->GetStream();
stream->SetData(bufferview(data, sz));
} else {
- objects.RemoveObject(object_as_reference(ff)).reset();
- descriptor.AddKey(font_file_key, object_as_reference(font_file));
+ objects.RemoveObject(ff->GetReference()).reset();
+ descriptor.AddKey(font_file_key, font_file->GetReference());
}
}
Py_RETURN_NONE;
@@ -370,9 +371,9 @@ dedup_type3_fonts(PDFDoc *self, PyObject *args) {
if (dictionary_has_key_name(dict, PdfName::KeyType, "Font")) {
const std::string &font_type = dict.GetKey(PdfName::KeySubtype)->GetName().GetString();
if (font_type == "Type3") {
- all_type3_fonts.insert(object_as_reference(k));
+ all_type3_fonts.insert(k->GetReference());
for (auto &x : dict.GetKey("CharProcs")->GetDictionary()) {
- const PdfReference &ref = object_as_reference(x.second);
+ const PdfReference &ref = x.second.GetReference();
const PdfObject *cpobj = objects.GetObject(ref);
if (!cpobj || !cpobj->HasStream()) continue;
CharProc cp(ref, cpobj);
@@ -407,7 +408,7 @@ dedup_type3_fonts(PDFDoc *self, PyObject *args) {
PdfDictionary new_dict = PdfDictionary(dict);
bool changed = false;
for (auto &k : dict) {
- auto it = ref_map.find(object_as_reference(k.second));
+ auto it = ref_map.find(k.second.GetReference());
if (it != ref_map.end()) {
new_dict.AddKey(k.first, (*it).second);
changed = true;
diff --git a/src/calibre/utils/podofo/global.h b/src/calibre/utils/podofo/global.h
index 17cf64a..77905af 100644
--- a/src/calibre/utils/podofo/global.h
+++ b/src/calibre/utils/podofo/global.h
@@ -119,15 +119,6 @@ get_page(PdfDocument *doc, const unsigned num) {
return nullptr;
}
-static inline PdfReference
-object_as_reference(const PdfObject &o) {
- return o.IsReference() ? o.GetReference() : o.GetIndirectReference();
-}
-
-static inline PdfReference
-object_as_reference(const PdfObject *o) {
- return o->IsReference() ? o->GetReference() : o->GetIndirectReference();
-}
class PdfReferenceHasher {
diff --git a/src/calibre/utils/podofo/images.cpp b/src/calibre/utils/podofo/images.cpp
index dc9cf32..f5d948a 100644
--- a/src/calibre/utils/podofo/images.cpp
+++ b/src/calibre/utils/podofo/images.cpp
@@ -64,7 +64,7 @@ dedup_images(PDFDoc *self, PyObject *args) {
if (!k->IsDictionary()) continue;
const PdfDictionary &dict = k->GetDictionary();
if (dictionary_has_key_name(dict, PdfName::KeyType, "XObject") && dictionary_has_key_name(dict, PdfName::KeySubtype, "Image")) {
- Image img(object_as_reference(k), k);
+ Image img(k->GetReference(), k);
auto it = image_map.find(img);
if (it == image_map.end()) {
std::vector<PdfReference> vals;
@@ -99,7 +99,7 @@ dedup_images(PDFDoc *self, PyObject *args) {
for (const auto &x : xobject) {
if (x.second.IsReference()) {
try {
- const PdfReference &r = ref_map.at(object_as_reference(x.second));
+ const PdfReference &r = ref_map.at(x.second.GetReference());
new_xobject.AddKey(x.first, r);
changed = true;
} catch (const std::out_of_range &err) { (void)err; continue; }
|