File: sparse_array.cc

package info (click to toggle)
qpdf 12.3.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 72,644 kB
  • sloc: cpp: 59,031; perl: 12,172; ansic: 6,809; sh: 1,231; python: 1,041; xml: 43; makefile: 42
file content (129 lines) | stat: -rw-r--r-- 4,369 bytes parent folder | download
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
#include <qpdf/assert_test.h>

#include <qpdf/QPDF.hh>
#include <qpdf/QPDFObjectHandle_private.hh>
#include <qpdf/QPDFObject_private.hh>

#include <iostream>

int
to_i(size_t n)
{
    return static_cast<int>(n);
}

int
main()
{
    auto obj = QPDFObject::create<QPDF_Array>(std::vector<QPDFObjectHandle>(), true);
    auto a = qpdf::Array(obj);

    assert(a.size() == 0);

    a.push_back(QPDFObjectHandle::parse("1"));
    a.push_back(QPDFObjectHandle::parse("(potato)"));
    a.push_back(QPDFObjectHandle::parse("null"));
    a.push_back(QPDFObjectHandle::parse("null"));
    a.push_back(QPDFObjectHandle::parse("/Quack"));
    assert(a.size() == 5);
    assert(a[0].isInteger() && (a[0].getIntValue() == 1));
    assert(a[1].isString() && (a[1].getStringValue() == "potato"));
    assert(a[2].isNull());
    assert(a[3].isNull());
    assert(a[4].isName() && (a[4].getName() == "/Quack"));

    a.insert(4, QPDFObjectHandle::parse("/BeforeQuack"));
    assert(a.size() == 6);
    assert(a[0].isInteger() && (a[0].getIntValue() == 1));
    assert(a[4].isName() && (a[4].getName() == "/BeforeQuack"));
    assert(a[5].isName() && (a[5].getName() == "/Quack"));

    a.insert(2, QPDFObjectHandle::parse("/Third"));
    assert(a.size() == 7);
    assert(a[1].isString() && (a[1].getStringValue() == "potato"));
    assert(a[2].isName() && (a[2].getName() == "/Third"));
    assert(a[3].isNull());
    assert(a[6].isName() && (a[6].getName() == "/Quack"));

    a.insert(0, QPDFObjectHandle::parse("/First"));
    assert(a.size() == 8);
    assert(a[0].isName() && (a[0].getName() == "/First"));
    assert(a[1].isInteger() && (a[1].getIntValue() == 1));
    assert(a[7].isName() && (a[7].getName() == "/Quack"));

    a.erase(6);
    assert(a.size() == 7);
    assert(a[0].isName() && (a[0].getName() == "/First"));
    assert(a[1].isInteger() && (a[1].getIntValue() == 1));
    assert(a[5].isNull());
    assert(a[6].isName() && (a[6].getName() == "/Quack"));

    a.erase(6);
    assert(a.size() == 6);
    assert(a[0].isName() && (a[0].getName() == "/First"));
    assert(a[1].isInteger() && (a[1].getIntValue() == 1));
    assert(a[3].isName() && (a[3].getName() == "/Third"));
    assert(a[4].isNull());
    assert(a[5].isNull());

    a.set(4, QPDFObjectHandle::parse("12"));
    assert(a[4].isInteger() && (a[4].getIntValue() == 12));
    a.set(4, QPDFObjectHandle::newNull());
    assert(a[4].isNull());

    a.erase(to_i(a.size()) - 1);
    assert(a.size() == 5);
    assert(a[0].isName() && (a[0].getName() == "/First"));
    assert(a[1].isInteger() && (a[1].getIntValue() == 1));
    assert(a[3].isName() && (a[3].getName() == "/Third"));
    assert(a[4].isNull());

    a.erase(to_i(a.size()) - 1);
    assert(a.size() == 4);
    assert(a[0].isName() && (a[0].getName() == "/First"));
    assert(a[1].isInteger() && (a[1].getIntValue() == 1));
    assert(a[3].isName() && (a[3].getName() == "/Third"));

    a.erase(to_i(a.size()) - 1);
    assert(a.size() == 3);
    assert(a[0].isName() && (a[0].getName() == "/First"));
    assert(a[1].isInteger() && (a[1].getIntValue() == 1));
    assert(a[2].isString() && (a[2].getStringValue() == "potato"));

    QPDF pdf;
    pdf.emptyPDF();

    obj = QPDFObject::create<QPDF_Array>(
        std::vector<QPDFObjectHandle>{10, "null"_qpdf.getObj()}, true);
    auto b = qpdf::Array(obj);
    b.set(5, pdf.newIndirectNull());
    b.set(7, "[0 1 2 3]"_qpdf);
    assert(b[3].null());
    assert(b[8].null());
    assert(b[5].indirect());
    assert(
        QPDFObjectHandle(obj).unparse() ==
        "[ null null null null null 3 0 R null [ 0 1 2 3 ] null null ]");
    auto c = QPDFObjectHandle(obj).unsafeShallowCopy();
    auto d = QPDFObjectHandle(obj).shallowCopy();
    b.get(7).setArrayItem(2, "42"_qpdf);
    assert(c.unparse() == "[ null null null null null 3 0 R null [ 0 1 42 3 ] null null ]");
    assert(d.unparse() == "[ null null null null null 3 0 R null [ 0 1 2 3 ] null null ]");

    try {
        b.set(3, {});
        std::cout << "inserted uninitialized object\n";
    } catch (std::logic_error&) {
    }
    QPDF pdf2;
    pdf2.emptyPDF();
    try {
        pdf.makeIndirectObject(obj);
        b.set(3, pdf2.getObject(1, 0));
        std::cout << "inserted uninitialized object\n";
    } catch (std::logic_error&) {
    }

    std::cout << "sparse array tests done" << '\n';
    return 0;
}