QPDFObjectHandle_private.hh
21.7 KB
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
#ifndef OBJECTHANDLE_PRIVATE_HH
#define OBJECTHANDLE_PRIVATE_HH
#include <qpdf/QPDFObjectHandle.hh>
#include <qpdf/QPDFObject_private.hh>
#include <qpdf/QPDF_private.hh>
#include <qpdf/QUtil.hh>
#include <concepts>
#include <utility>
using namespace std::literals;
namespace qpdf
{
class Array final: public BaseHandle
{
public:
Array() = default;
explicit Array(std::vector<QPDFObjectHandle> const& items);
explicit Array(std::vector<QPDFObjectHandle>&& items);
Array(Array const& other) :
BaseHandle(other.obj)
{
}
static Array empty();
Array&
operator=(Array const& other)
{
if (obj != other.obj) {
obj = other.obj;
}
return *this;
}
Array(Array&&) = default;
Array& operator=(Array&&) = default;
explicit Array(std::shared_ptr<QPDFObject> const& obj) :
BaseHandle(obj)
{
}
explicit Array(std::shared_ptr<QPDFObject>&& obj) :
BaseHandle(std::move(obj))
{
}
Array(QPDFObjectHandle const& oh) :
BaseHandle(oh.resolved_type_code() == ::ot_array ? oh : QPDFObjectHandle())
{
}
Array&
operator=(QPDFObjectHandle const& oh)
{
assign(::ot_array, oh);
return *this;
}
Array(QPDFObjectHandle&& oh) :
BaseHandle(oh.resolved_type_code() == ::ot_array ? std::move(oh) : QPDFObjectHandle())
{
}
Array&
operator=(QPDFObjectHandle&& oh)
{
assign(::ot_array, std::move(oh));
return *this;
}
QPDFObjectHandle const& operator[](size_t n) const;
QPDFObjectHandle const& operator[](int n) const;
using iterator = std::vector<QPDFObjectHandle>::iterator;
using const_iterator = std::vector<QPDFObjectHandle>::const_iterator;
using const_reverse_iterator = std::vector<QPDFObjectHandle>::const_reverse_iterator;
iterator begin();
iterator end();
const_iterator cbegin();
const_iterator cend();
const_reverse_iterator crbegin();
const_reverse_iterator crend();
// Return the number of elements in the array. Return 0 if the object is not an array.
size_t size() const;
QPDFObjectHandle get(size_t n) const;
QPDFObjectHandle get(int n) const;
bool set(size_t at, QPDFObjectHandle const& oh);
bool set(int at, QPDFObjectHandle const& oh);
bool insert(size_t at, QPDFObjectHandle const& item);
bool insert(int at, QPDFObjectHandle const& item);
void push_back(QPDFObjectHandle const& item);
bool erase(size_t at);
bool erase(int at);
std::vector<QPDFObjectHandle> getAsVector() const;
void setFromVector(std::vector<QPDFObjectHandle> const& items);
private:
QPDF_Array* array() const;
void checkOwnership(QPDFObjectHandle const& item) const;
QPDFObjectHandle null() const;
std::unique_ptr<std::vector<QPDFObjectHandle>> sp_elements{};
};
// BaseDictionary is only used as a base class. It does not contain any methods exposed in the
// public API.
class BaseDictionary: public BaseHandle
{
public:
// The following methods are not part of the public API.
std::set<std::string> getKeys();
std::map<std::string, QPDFObjectHandle> const& getAsMap() const;
void replaceKey(std::string const& key, QPDFObjectHandle value);
using iterator = std::map<std::string, QPDFObjectHandle>::iterator;
using const_iterator = std::map<std::string, QPDFObjectHandle>::const_iterator;
using reverse_iterator = std::map<std::string, QPDFObjectHandle>::reverse_iterator;
using const_reverse_iterator =
std::map<std::string, QPDFObjectHandle>::const_reverse_iterator;
iterator
begin()
{
if (auto d = as<QPDF_Dictionary>()) {
return d->items.begin();
}
return {};
}
iterator
end()
{
if (auto d = as<QPDF_Dictionary>()) {
return d->items.end();
}
return {};
}
const_iterator
cbegin()
{
if (auto d = as<QPDF_Dictionary>()) {
return d->items.cbegin();
}
return {};
}
const_iterator
cend()
{
if (auto d = as<QPDF_Dictionary>()) {
return d->items.cend();
}
return {};
}
reverse_iterator
rbegin()
{
if (auto d = as<QPDF_Dictionary>()) {
return d->items.rbegin();
}
return {};
}
reverse_iterator
rend()
{
if (auto d = as<QPDF_Dictionary>()) {
return d->items.rend();
}
return {};
}
const_reverse_iterator
crbegin()
{
if (auto d = as<QPDF_Dictionary>()) {
return d->items.crbegin();
}
return {};
}
const_reverse_iterator
crend()
{
if (auto d = as<QPDF_Dictionary>()) {
return d->items.crend();
}
return {};
}
protected:
BaseDictionary() = default;
explicit BaseDictionary(std::map<std::string, QPDFObjectHandle> const& dict) :
BaseHandle(QPDFObject::create<QPDF_Dictionary>(dict))
{
}
explicit BaseDictionary(std::map<std::string, QPDFObjectHandle>&& dict) :
BaseHandle(QPDFObject::create<QPDF_Dictionary>(std::move(dict)))
{
}
explicit BaseDictionary(std::shared_ptr<QPDFObject> const& obj) :
BaseHandle(obj)
{
}
explicit BaseDictionary(std::shared_ptr<QPDFObject>&& obj) :
BaseHandle(std::move(obj))
{
}
BaseDictionary(BaseDictionary const&) = default;
BaseDictionary& operator=(BaseDictionary const&) = default;
BaseDictionary(BaseDictionary&&) = default;
BaseDictionary& operator=(BaseDictionary&&) = default;
explicit BaseDictionary(QPDFObjectHandle const& oh) :
BaseHandle(oh.resolved_type_code() == ::ot_dictionary ? oh : QPDFObjectHandle())
{
}
explicit BaseDictionary(QPDFObjectHandle&& oh) :
BaseHandle(
oh.resolved_type_code() == ::ot_dictionary ? std::move(oh) : QPDFObjectHandle())
{
}
~BaseDictionary() = default;
QPDF_Dictionary* dict() const;
};
// Dictionary only defines con/destructors. All other methods are inherited from BaseDictionary.
class Dictionary final: public BaseDictionary
{
public:
Dictionary() = default;
explicit Dictionary(std::map<std::string, QPDFObjectHandle>&& dict);
explicit Dictionary(std::shared_ptr<QPDFObject> const& obj);
static Dictionary empty();
Dictionary(Dictionary const&) = default;
Dictionary& operator=(Dictionary const&) = default;
Dictionary(Dictionary&&) = default;
Dictionary& operator=(Dictionary&&) = default;
Dictionary(QPDFObjectHandle const& oh) :
BaseDictionary(oh)
{
}
Dictionary&
operator=(QPDFObjectHandle const& oh)
{
assign(::ot_dictionary, oh);
return *this;
}
Dictionary(QPDFObjectHandle&& oh) :
BaseDictionary(std::move(oh))
{
}
Dictionary&
operator=(QPDFObjectHandle&& oh)
{
assign(::ot_dictionary, std::move(oh));
return *this;
}
~Dictionary() = default;
};
class Integer final: public BaseHandle
{
public:
Integer() = default;
Integer(Integer const&) = default;
Integer(Integer&&) = default;
Integer& operator=(Integer const&) = default;
Integer& operator=(Integer&&) = default;
~Integer() = default;
explicit Integer(long long value);
explicit Integer(std::integral auto value) :
Integer(static_cast<long long>(value))
{
if constexpr (
std::numeric_limits<decltype(value)>::max() >
std::numeric_limits<long long>::max()) {
if (value > std::numeric_limits<long long>::max()) {
throw std::overflow_error("overflow constructing Integer");
}
}
}
Integer(QPDFObjectHandle const& oh) :
BaseHandle(oh.type_code() == ::ot_integer ? oh : QPDFObjectHandle())
{
}
Integer(QPDFObjectHandle&& oh) :
BaseHandle(oh.type_code() == ::ot_integer ? std::move(oh) : QPDFObjectHandle())
{
}
// Return the integer value. If the object is not a valid Integer, throw a
// std::invalid_argument exception. If the object is out of range for the target type,
// throw a std::overflow_error or std::underflow_error exception.
template <std::integral T>
operator T() const
{
auto v = value();
if (std::cmp_greater(v, std::numeric_limits<T>::max())) {
throw std::overflow_error("Integer conversion overflow");
}
if (std::cmp_less(v, std::numeric_limits<T>::min())) {
throw std::underflow_error("Integer conversion underflow");
}
return static_cast<T>(v);
}
// Return the integer value. If the object is not a valid integer, throw a
// std::invalid_argument exception.
int64_t value() const;
// Return true if object value is equal to the 'rhs' value. Return false if the object is
// not a valid Integer.
friend bool
operator==(Integer const& lhs, std::integral auto rhs)
{
return lhs && std::cmp_equal(lhs.value(), rhs);
}
// Compare the object value to the 'rhs' value. Throw a std::invalid_argument exception if
// the object is not a valid Integer.
friend std::strong_ordering
operator<=>(Integer const& lhs, std::integral auto rhs)
{
if (!lhs) {
throw lhs.invalid_error("Integer");
}
if (std::cmp_less(lhs.value(), rhs)) {
return std::strong_ordering::less;
}
return std::cmp_greater(lhs.value(), rhs) ? std::strong_ordering::greater
: std::strong_ordering::equal;
}
};
bool
operator==(std::integral auto lhs, Integer const& rhs)
{
return rhs == lhs;
}
std::strong_ordering
operator<=>(std::integral auto lhs, Integer const& rhs)
{
return rhs <=> lhs;
}
class Name final: public BaseHandle
{
public:
// Put # into strings with characters unsuitable for name token
static std::string normalize(std::string const& name);
// Check whether name is valid utf-8 and whether it contains characters that require
// escaping. Return {false, false} if the name is not valid utf-8, otherwise return {true,
// true} if no characters require or {true, false} if escaping is required.
static std::pair<bool, bool> analyzeJSONEncoding(std::string const& name);
Name() = default;
Name(Name const&) = default;
Name(Name&&) = default;
Name& operator=(Name const&) = default;
Name& operator=(Name&&) = default;
~Name() = default;
explicit Name(std::string const&);
explicit Name(std::string&&);
Name(QPDFObjectHandle const& oh) :
BaseHandle(oh.type_code() == ::ot_name ? oh : QPDFObjectHandle())
{
}
Name(QPDFObjectHandle&& oh) :
BaseHandle(oh.type_code() == ::ot_name ? std::move(oh) : QPDFObjectHandle())
{
}
// Return the name value. If the object is not a valid Name, throw a
// std::invalid_argument exception.
operator std::string() const&
{
return value();
}
// Return the integer value. If the object is not a valid integer, throw a
// std::invalid_argument exception.
std::string const& value() const;
// Return true if object value is equal to the 'rhs' value. Return false if the object is
// not a valid Name.
friend bool
operator==(Name const& lhs, std::string_view rhs)
{
return lhs && lhs.value() == rhs;
}
};
class Stream final: public BaseHandle
{
public:
explicit Stream(std::shared_ptr<QPDFObject> const& obj) :
BaseHandle(obj)
{
}
explicit Stream(std::shared_ptr<QPDFObject>&& obj) :
BaseHandle(std::move(obj))
{
}
Stream(
QPDF& qpdf,
QPDFObjGen og,
QPDFObjectHandle stream_dict,
qpdf_offset_t offset,
size_t length);
QPDFObjectHandle
getDict() const
{
return stream()->stream_dict;
}
bool
isDataModified() const
{
return !stream()->token_filters.empty();
}
void
setFilterOnWrite(bool val)
{
stream()->filter_on_write = val;
}
bool
getFilterOnWrite() const
{
return stream()->filter_on_write;
}
// Methods to help QPDF copy foreign streams
size_t
getLength() const
{
return stream()->length;
}
std::shared_ptr<Buffer>
getStreamDataBuffer() const
{
return stream()->stream_data;
}
std::shared_ptr<QPDFObjectHandle::StreamDataProvider>
getStreamDataProvider() const
{
return stream()->stream_provider;
}
// See comments in QPDFObjectHandle.hh for these methods.
bool pipeStreamData(
Pipeline* p,
bool* tried_filtering,
int encode_flags,
qpdf_stream_decode_level_e decode_level,
bool suppress_warnings,
bool will_retry);
std::string getStreamData(qpdf_stream_decode_level_e level);
std::string getRawStreamData();
void replaceStreamData(
std::shared_ptr<Buffer> data,
QPDFObjectHandle const& filter,
QPDFObjectHandle const& decode_parms);
void replaceStreamData(
std::shared_ptr<QPDFObjectHandle::StreamDataProvider> provider,
QPDFObjectHandle const& filter,
QPDFObjectHandle const& decode_parms);
void
addTokenFilter(std::shared_ptr<QPDFObjectHandle::TokenFilter> token_filter)
{
stream()->token_filters.emplace_back(token_filter);
}
JSON getStreamJSON(
int json_version,
qpdf_json_stream_data_e json_data,
qpdf_stream_decode_level_e decode_level,
Pipeline* p,
std::string const& data_filename);
qpdf_stream_decode_level_e writeStreamJSON(
int json_version,
JSON::Writer& jw,
qpdf_json_stream_data_e json_data,
qpdf_stream_decode_level_e decode_level,
Pipeline* p,
std::string const& data_filename,
bool no_data_key = false);
void
replaceDict(QPDFObjectHandle const& new_dict)
{
auto s = stream();
s->stream_dict = new_dict;
setDictDescription();
}
bool isRootMetadata() const;
void setDictDescription();
static void registerStreamFilter(
std::string const& filter_name,
std::function<std::shared_ptr<QPDFStreamFilter>()> factory);
private:
QPDF_Stream::Members*
stream() const
{
if (auto s = as<QPDF_Stream>()) {
if (auto ptr = s->m.get()) {
return ptr;
}
throw std::logic_error("QPDF_Stream: unexpected nullptr");
}
throw std::runtime_error("operation for stream attempted on non-stream object");
return nullptr; // unreachable
}
bool filterable(
qpdf_stream_decode_level_e decode_level,
std::vector<std::shared_ptr<QPDFStreamFilter>>& filters);
void replaceFilterData(
QPDFObjectHandle const& filter, QPDFObjectHandle const& decode_parms, size_t length);
void warn(std::string const& message);
static std::map<std::string, std::string> filter_abbreviations;
};
template <typename T>
T*
BaseHandle::as() const
{
if (!obj) {
return nullptr;
}
if (std::holds_alternative<T>(obj->value)) {
return &std::get<T>(obj->value);
}
if (std::holds_alternative<QPDF_Unresolved>(obj->value)) {
return BaseHandle(QPDF::Resolver::resolved(obj->qpdf, obj->og)).as<T>();
}
if (std::holds_alternative<QPDF_Reference>(obj->value)) {
// see comment in QPDF_Reference.
return BaseHandle(std::get<QPDF_Reference>(obj->value).obj).as<T>();
}
return nullptr;
}
inline BaseHandle::BaseHandle(QPDFObjectHandle const& oh) :
obj(oh.obj)
{
}
inline BaseHandle::BaseHandle(QPDFObjectHandle&& oh) :
obj(std::move(oh.obj))
{
}
inline void
BaseHandle::assign(qpdf_object_type_e required, BaseHandle const& other)
{
if (obj != other.obj) {
obj = other.resolved_type_code() == required ? other.obj : nullptr;
}
}
inline void
BaseHandle::assign(qpdf_object_type_e required, BaseHandle&& other)
{
if (obj != other.obj) {
obj = other.resolved_type_code() == required ? std::move(other.obj) : nullptr;
}
}
inline QPDFObjGen
BaseHandle::id_gen() const
{
return obj ? obj->og : QPDFObjGen();
}
inline bool
BaseHandle::indirect() const
{
return obj ? obj->og.isIndirect() : false;
}
inline bool
BaseHandle::null() const
{
return !obj || type_code() == ::ot_null;
}
inline QPDF*
BaseHandle::qpdf() const
{
return obj ? obj->qpdf : nullptr;
}
inline qpdf_object_type_e
BaseHandle::raw_type_code() const
{
return obj ? static_cast<qpdf_object_type_e>(obj->value.index()) : ::ot_uninitialized;
}
inline qpdf_object_type_e
BaseHandle::resolved_type_code() const
{
if (!obj) {
return ::ot_uninitialized;
}
if (raw_type_code() == ::ot_unresolved) {
return QPDF::Resolver::resolved(obj->qpdf, obj->og)->getTypeCode();
}
return raw_type_code();
}
inline qpdf_object_type_e
BaseHandle::type_code() const
{
if (!obj) {
return ::ot_uninitialized;
}
if (raw_type_code() == ::ot_unresolved) {
return QPDF::Resolver::resolved(obj->qpdf, obj->og)->getTypeCode();
}
if (raw_type_code() == ::ot_reference) {
return std::get<QPDF_Reference>(obj->value).obj->getTypeCode();
}
return raw_type_code();
}
} // namespace qpdf
inline QPDF_Dictionary::QPDF_Dictionary(std::map<std::string, QPDFObjectHandle>&& items) :
items(std::move(items))
{
}
inline std::shared_ptr<QPDFObject>
QPDF_Null::create(
std::shared_ptr<QPDFObject> parent, std::string_view const& static_descr, std::string var_descr)
{
auto n = QPDFObject::create<QPDF_Null>();
n->setChildDescription(parent->getQPDF(), parent, static_descr, var_descr);
return n;
}
inline QPDF_Real::QPDF_Real(double value, int decimal_places, bool trim_trailing_zeroes) :
val(QUtil::double_to_string(value, decimal_places, trim_trailing_zeroes))
{
}
template <typename T, typename... Args>
inline std::shared_ptr<QPDFObject>
QPDFObject::create(Args&&... args)
{
return std::make_shared<QPDFObject>(std::forward<T>(T(std::forward<Args>(args)...)));
}
inline qpdf_object_type_e
QPDFObject::getResolvedTypeCode() const
{
if (getTypeCode() == ::ot_unresolved) {
return QPDF::Resolver::resolved(qpdf, og)->getTypeCode();
}
if (getTypeCode() == ::ot_reference) {
return std::get<QPDF_Reference>(value).obj->getTypeCode();
}
return getTypeCode();
}
inline qpdf::Array
QPDFObjectHandle::as_array(qpdf::typed options) const
{
if (options & qpdf::error) {
assertType("array", false);
}
if (options & qpdf::any_flag || type_code() == ::ot_array ||
(options & qpdf::optional && type_code() == ::ot_null)) {
return qpdf::Array(obj);
}
return qpdf::Array(std::shared_ptr<QPDFObject>());
}
inline qpdf::Dictionary
QPDFObjectHandle::as_dictionary(qpdf::typed options) const
{
if (options & qpdf::any_flag || type_code() == ::ot_dictionary ||
(options & qpdf::optional && type_code() == ::ot_null)) {
return qpdf::Dictionary(obj);
}
if (options & qpdf::error) {
assertType("dictionary", false);
}
return qpdf::Dictionary(std::shared_ptr<QPDFObject>());
}
inline qpdf::Stream
QPDFObjectHandle::as_stream(qpdf::typed options) const
{
if (options & qpdf::any_flag || type_code() == ::ot_stream ||
(options & qpdf::optional && type_code() == ::ot_null)) {
return qpdf::Stream(obj);
}
if (options & qpdf::error) {
assertType("stream", false);
}
return qpdf::Stream(std::shared_ptr<QPDFObject>());
}
#endif // OBJECTHANDLE_PRIVATE_HH