Coverage Report

Created: 2026-08-13 07:14

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/qpdf/libqpdf/QPDF_String.cc
Line
Count
Source
1
#include <qpdf/QPDFObject_private.hh>
2
3
#include <qpdf/QPDFObjectHandle_private.hh>
4
#include <qpdf/QUtil.hh>
5
#include <qpdf/Util.hh>
6
7
// DO NOT USE ctype -- it is locale dependent for some things, and it's not worth the risk of
8
// including it in case it may accidentally be used.
9
10
static bool
11
is_iso_latin1_printable(char ch)
12
7.83M
{
13
7.83M
    return (ch >= 32 && ch <= 126) || static_cast<unsigned char>(ch) >= 160;
14
7.83M
}
15
16
void
17
QPDF_String::writeJSON(int json_version, JSON::Writer& p)
18
0
{
19
0
    if (json_version == 1) {
20
0
        if (util::is_utf16(val)) {
21
0
            p << "\"" << JSON::Writer::encode_string(QUtil::utf16_to_utf8(val)) << "\"";
22
0
            return;
23
0
        }
24
0
        if (util::is_explicit_utf8(val)) {
25
            // PDF 2.0 allows UTF-8 strings when explicitly prefixed with the three-byte
26
            // representation of U+FEFF.
27
0
            p << "\"" << JSON::Writer::encode_string(val.substr(3)) << "\"";
28
0
            return;
29
0
        }
30
0
        p << "\"" << JSON::Writer::encode_string(QUtil::pdf_doc_to_utf8(val)) << "\"";
31
0
        return;
32
0
    }
33
    // See if we can unambiguously represent as Unicode.
34
0
    if (util::is_utf16(val)) {
35
0
        p << "\"u:" << JSON::Writer::encode_string(QUtil::utf16_to_utf8(val)) << "\"";
36
0
        return;
37
0
    }
38
    // See if we can unambiguously represent as Unicode.
39
0
    if (util::is_explicit_utf8(val)) {
40
0
        p << "\"u:" << JSON::Writer::encode_string(val.substr(3)) << "\"";
41
0
        return;
42
0
    }
43
0
    if (!useHexString()) {
44
0
        auto candidate = QUtil::pdf_doc_to_utf8(val);
45
0
        std::string test;
46
0
        if (QUtil::utf8_to_pdf_doc(candidate, test, '?') && test == val) {
47
            // This is a PDF-doc string that can be losslessly encoded as Unicode.
48
0
            p << "\"u:" << JSON::Writer::encode_string(candidate) << "\"";
49
0
            return;
50
0
        }
51
0
    }
52
0
    p << "\"b:" << QUtil::hex_encode(val) << "\"";
53
0
}
54
55
bool
56
QPDF_String::useHexString() const
57
10.5k
{
58
    // Heuristic: use the hexadecimal representation of a string if there are any non-printable (in
59
    // PDF Doc encoding) characters or if too large of a proportion of the string consists of
60
    // non-ASCII characters.
61
10.5k
    unsigned int non_ascii = 0;
62
11.5M
    for (auto const ch: val) {
63
11.5M
        if (ch > 126) {
64
1.38M
            ++non_ascii;
65
10.2M
        } else if (ch >= 32) {
66
6.76M
            continue;
67
6.76M
        } else if (ch < 0 || ch >= 24) {
68
226k
            ++non_ascii;
69
3.21M
        } else if (!(ch == '\n' || ch == '\r' || ch == '\t' || ch == '\b' || ch == '\f')) {
70
766
            return true;
71
766
        }
72
11.5M
    }
73
9.76k
    return 5 * non_ascii > val.length();
74
10.5k
}
75
76
std::string
77
QPDF_String::unparse(bool force_binary)
78
159k
{
79
159k
    bool use_hexstring = force_binary || useHexString();
80
159k
    std::string result;
81
159k
    if (use_hexstring) {
82
150k
        static auto constexpr hexchars = "0123456789abcdef";
83
150k
        result.reserve(2 * val.length() + 2);
84
150k
        result += '<';
85
22.2M
        for (const char c: val) {
86
22.2M
            result += hexchars[static_cast<unsigned char>(c) >> 4];
87
22.2M
            result += hexchars[c & 0x0f];
88
22.2M
        }
89
150k
        result += '>';
90
150k
    } else {
91
9.31k
        result += "(";
92
10.9M
        for (unsigned int i = 0; i < val.length(); ++i) {
93
10.8M
            char ch = val.at(i);
94
10.8M
            switch (ch) {
95
1.46M
            case '\n':
96
1.46M
                result += "\\n";
97
1.46M
                break;
98
99
4.85k
            case '\r':
100
4.85k
                result += "\\r";
101
4.85k
                break;
102
103
632k
            case '\t':
104
632k
                result += "\\t";
105
632k
                break;
106
107
5.01k
            case '\b':
108
5.01k
                result += "\\b";
109
5.01k
                break;
110
111
949k
            case '\f':
112
949k
                result += "\\f";
113
949k
                break;
114
115
1.14k
            case '(':
116
1.14k
                result += "\\(";
117
1.14k
                break;
118
119
1.42k
            case ')':
120
1.42k
                result += "\\)";
121
1.42k
                break;
122
123
3.10k
            case '\\':
124
3.10k
                result += "\\\\";
125
3.10k
                break;
126
127
7.83M
            default:
128
7.83M
                if (is_iso_latin1_printable(ch)) {
129
6.49M
                    result += val.at(i);
130
6.49M
                } else {
131
1.34M
                    result += "\\" +
132
1.34M
                        QUtil::int_to_string_base(
133
1.34M
                                  static_cast<int>(static_cast<unsigned char>(ch)), 8, 3);
134
1.34M
                }
135
7.83M
                break;
136
10.8M
            }
137
10.8M
        }
138
9.31k
        result += ")";
139
9.31k
    }
140
141
159k
    return result;
142
159k
}