Coverage Report

Created: 2026-03-12 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/qpdf/libqpdf/Pl_ASCIIHexDecoder.cc
Line
Count
Source
1
#include <qpdf/Pl_ASCIIHexDecoder.hh>
2
3
#include <qpdf/QTC.hh>
4
#include <qpdf/Util.hh>
5
6
#include <cctype>
7
#include <stdexcept>
8
9
using namespace qpdf;
10
using namespace std::literals;
11
12
Pl_ASCIIHexDecoder::Pl_ASCIIHexDecoder(char const* identifier, Pipeline* next) :
13
416
    Pipeline(identifier, next)
14
416
{
15
416
    util::assertion(next, "Attempt to create Pl_ASCIIHexDecoder with nullptr as next");
16
416
}
17
18
void
19
Pl_ASCIIHexDecoder::write(unsigned char const* buf, size_t len)
20
880
{
21
880
    if (eod) {
22
205
        return;
23
205
    }
24
5.66k
    for (size_t i = 0; i < len; ++i) {
25
5.16k
        char ch = static_cast<char>(toupper(buf[i]));
26
5.16k
        switch (ch) {
27
319
        case ' ':
28
610
        case '\f':
29
964
        case '\v':
30
1.30k
        case '\t':
31
1.61k
        case '\r':
32
1.88k
        case '\n':
33
1.88k
            QTC::TC("libtests", "Pl_ASCIIHexDecoder ignore space");
34
            // ignore whitespace
35
1.88k
            break;
36
37
40
        case '>':
38
40
            eod = true;
39
40
            flush();
40
40
            break;
41
42
3.23k
        default:
43
3.23k
            if ((ch >= '0' && ch <= '9') || (ch >= 'A' && ch <= 'F')) {
44
3.10k
                inbuf[pos++] = ch;
45
3.10k
                if (pos == 2) {
46
1.49k
                    flush();
47
1.49k
                }
48
3.10k
            } else {
49
132
                char t[2];
50
132
                t[0] = ch;
51
132
                t[1] = 0;
52
132
                throw std::runtime_error("character out of range during base Hex decode: "s + t);
53
132
            }
54
3.10k
            break;
55
5.16k
        }
56
5.02k
        if (eod) {
57
39
            break;
58
39
        }
59
5.02k
    }
60
675
}
61
62
void
63
Pl_ASCIIHexDecoder::flush()
64
1.89k
{
65
1.89k
    if (pos == 0) {
66
285
        QTC::TC("libtests", "Pl_ASCIIHexDecoder no-op flush");
67
285
        return;
68
285
    }
69
1.60k
    int b[2];
70
4.81k
    for (int i = 0; i < 2; ++i) {
71
3.21k
        if (inbuf[i] >= 'A') {
72
538
            b[i] = inbuf[i] - 'A' + 10;
73
2.67k
        } else {
74
2.67k
            b[i] = inbuf[i] - '0';
75
2.67k
        }
76
3.21k
    }
77
1.60k
    auto ch = static_cast<unsigned char>((b[0] << 4) + b[1]);
78
79
1.60k
    QTC::TC("libtests", "Pl_ASCIIHexDecoder partial flush", (pos == 2) ? 0 : 1);
80
    // Reset before calling getNext()->write in case that throws an exception.
81
1.60k
    pos = 0;
82
1.60k
    inbuf[0] = '0';
83
1.60k
    inbuf[1] = '0';
84
1.60k
    inbuf[2] = '\0';
85
86
1.60k
    next()->write(&ch, 1);
87
1.60k
}
88
89
void
90
Pl_ASCIIHexDecoder::finish()
91
359
{
92
359
    flush();
93
359
    next()->finish();
94
359
}