aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/uri/qargs.cpp
blob: 56572fe88d74fa993aa4c943badd21affe4fc4aa (plain) (blame)
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
#include "qargs.h"
#include <string>
#include <vector>

namespace NUri {
    namespace NOnStackArgsList {
        struct TQArgNode {
            TStringBuf Name;
            TStringBuf Value;
            TStringBuf All;
        };

        const char* SkipDelimiter(const char* str, const char* end) {
            while (str != end)
                if (*str == '&')
                    ++str;
                else
                    break;
            return str;
        }

        /// return next pos or 0 if error
        const char* ExtractArgData(const char* pos, const char* end, TQArgNode& arg) {
            const char* nameStart = pos;
            const char* nextArg = strchr(pos, '&');
            const char* valueStart = strchr(pos, '=');
            if (valueStart && nextArg && valueStart < nextArg) // a=1& or a=&
            {
                arg.Name = TStringBuf(nameStart, valueStart - nameStart);
                arg.Value = TStringBuf(valueStart + 1, nextArg - valueStart - 1);
                arg.All = TStringBuf(nameStart, nextArg - nameStart);
                return nextArg;
            } else if (valueStart && nextArg && valueStart > nextArg) // a&b=2
            {
                arg.Name = TStringBuf(nameStart, nextArg - nameStart);
                arg.All = arg.Name;
                return nextArg;
            } else if (valueStart && !nextArg) // a=1 or a=
            {
                arg.Name = TStringBuf(nameStart, valueStart - nameStart);
                arg.Value = TStringBuf(valueStart + 1, end - valueStart - 1);
                arg.All = TStringBuf(nameStart, end - nameStart);
                return end;
            } else if (!valueStart && nextArg) // a&b
            {
                arg.Name = TStringBuf(nameStart, nextArg - nameStart);
                arg.All = arg.Name;
                return nextArg;
            } else { // a
                arg.Name = TStringBuf(nameStart, end - nameStart);
                arg.All = arg.Name;
                return end;
            }
        }
    }

    using namespace NOnStackArgsList;

    class TQueryArgProcessing::Pipeline {
    public:
        Pipeline(TQueryArgProcessing& parent, TUri& subject)
            : Parent(parent)
            , Subject(subject)
            , IsDirty(false)
        {
        }

        TQueryArg::EProcessed Process() {
            const TStringBuf& query = Subject.GetField(NUri::TField::FieldQuery);
            if (query.empty())
                return ProcessEmpty();

            const char* start = query.data();
            return Parse(start, start + query.length());
        }

        TQueryArg::EProcessed ProcessEmpty() {
            if (Parent.Flags & TQueryArg::FeatureRemoveEmptyQuery)
                Subject.FldClr(NUri::TField::FieldQuery);

            return TQueryArg::ProcessedOK;
        }

        TQueryArg::EProcessed Parse(const char* str, const char* end) {
            if (str != end)
                Nodes.reserve(8);

            while (str != end) {
                str = SkipDelimiter(str, end);

                TQArgNode current;
                str = ExtractArgData(str, end, current);

                if (!str)
                    return TQueryArg::ProcessedMalformed;

                if (Parent.Flags & TQueryArg::FeatureFilter) {
                    TQueryArg arg = {current.Name, current.Value};
                    if (!Parent.Filter(arg, Parent.FilterData)) {
                        IsDirty = true;
                        continue;
                    }
                }

                Nodes.push_back(current);
            }

            if (Parent.Flags & TQueryArg::FeatureSortByName) {
                std::stable_sort(Nodes.begin(), Nodes.end(), [](auto l, auto r) {
                    return l.Name < r.Name;
                });
                
                IsDirty = true;
            }

            return FinalizeParsing();
        }

        TQueryArg::EProcessed FinalizeParsing() {
            if (!IsDirty)
                return TQueryArg::ProcessedOK;

            bool dirty = Render();

            bool rewrite = Parent.Flags & TQueryArg::FeatureRewriteDirty;
            if (dirty && rewrite)
                Subject.Rewrite();
            return (!dirty || rewrite) ? TQueryArg::ProcessedOK : TQueryArg::ProcessedDirty;
        }

        bool Render() {
            std::string& result = Parent.Buffer;
            result.clear();
            result.reserve(Subject.GetField(NUri::TField::FieldQuery).length());

            bool first = true;
            for (const auto& node: Nodes)
            {
                if (!first)
                    result.append("&");
                result.append(node.All);
                first = false;
            }

            if (result.empty())
                return RenderEmpty();
            else
                return Subject.FldMemSet(NUri::TField::FieldQuery, result);
        }

        bool RenderEmpty() {
            if (Parent.Flags & TQueryArg::FeatureRemoveEmptyQuery)
                Subject.FldClr(NUri::TField::FieldQuery);
            return false;
        }

    private:
        TQueryArgProcessing& Parent;
        TUri& Subject;

        std::vector<TQArgNode> Nodes;
        bool IsDirty;
    };

    TQueryArgProcessing::TQueryArgProcessing(ui32 flags, TQueryArgFilter filter, void* filterData)
        : Flags(flags)
        , Filter(filter)
        , FilterData(filterData)
    {
    }

    TQueryArg::EProcessed TQueryArgProcessing::Process(TUri& uri) {
        Pipeline pipeline(*this, uri);
        return pipeline.Process();
    }
}