aboutsummaryrefslogtreecommitdiff
path: root/src/PercentEncodedCharacterDecoder.cpp
blob: 890d392835778f9f8ebe7160412bd3ae6b813e35 (plain)
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
/**
 * @file PercentEncodedCharacterDecoder.cpp
 *
 * This module contains the implementation of the
 * Uri::PercentEncodedCharacterDecoder class.
 *
 * © 2018 by Richard Walters
 */

#include "IsCharacterInSet.hpp"
#include "PercentEncodedCharacterDecoder.hpp"

namespace {

    /**
     * This is the character set containing just numbers.
     */
    const Uri::CharacterSet DIGIT('0', '9');

    /**
     * This is the character set containing just the upper-case
     * letters 'A' through 'F', used in upper-case hexadecimal.
     */
    const Uri::CharacterSet HEX('A', 'F');

}

namespace Uri {

    struct PercentEncodedCharacterDecoder::Impl {
        /**
         * This is the decoded character.
         */
        int decodedCharacter = 0;

        /**
         * This is the current state of the decoder's state machine.
         * - 0: we haven't yet received the first hex digit.
         * - 1: we received the first hex digit but not the second.
         * - 2: we received both hex digits
         */
        size_t decoderState = 0;
    };

    PercentEncodedCharacterDecoder::~PercentEncodedCharacterDecoder() = default;
    PercentEncodedCharacterDecoder::PercentEncodedCharacterDecoder(PercentEncodedCharacterDecoder&&) = default;
    PercentEncodedCharacterDecoder& PercentEncodedCharacterDecoder::operator=(PercentEncodedCharacterDecoder&&) = default;

    PercentEncodedCharacterDecoder::PercentEncodedCharacterDecoder()
        : impl_(new Impl)
    {
    }

    bool PercentEncodedCharacterDecoder::NextEncodedCharacter(char c) {
        switch(impl_->decoderState) {
            case 0: { // % ...
                impl_->decoderState = 1;
                impl_->decodedCharacter <<= 4;
                if (IsCharacterInSet(c, DIGIT)) {
                    impl_->decodedCharacter += (int)(c - '0');
                } else if (IsCharacterInSet(c, HEX)) {
                    impl_->decodedCharacter += (int)(c - 'A') + 10;
                } else {
                    return false;
                }
            } break;

            case 1: { // %[0-9A-F] ...
                impl_->decoderState = 2;
                impl_->decodedCharacter <<= 4;
                if (IsCharacterInSet(c, DIGIT)) {
                    impl_->decodedCharacter += (int)(c - '0');
                } else if (IsCharacterInSet(c, HEX)) {
                    impl_->decodedCharacter += (int)(c - 'A') + 10;
                } else {
                    return false;
                }
            } break;

            default: break;
        }
        return true;
    }

    bool PercentEncodedCharacterDecoder::Done() const {
        return (impl_->decoderState == 2);
    }

    char PercentEncodedCharacterDecoder::GetDecodedCharacter() const {
        return (char)impl_->decodedCharacter;
    }

}