forked from YahooArchive/http-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compiler.h
288 lines (236 loc) · 8.53 KB
/
compiler.h
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
/*
* Copyright (c) 2015, Yahoo Inc. All rights reserved.
* Copyrights licensed under the New BSD License.
* See the accompanying LICENSE file for terms.
*/
#ifndef COMPILER_H
#define COMPILER_H
#include <vector>
#include "my-assert.h"
#include "assembler.h"
#include "representation.h"
namespace http {
namespace filters {
typedef std::vector< uint32_t > Offsets;
struct Compiler {
Assembler assembler_;
Compiler(void);
void compile(const Forest &, Offsets &);
inline uint32_t compile(const Tree & t) {
const uint32_t result = compileSimple(t.root());
assembler_.pushHalt();
return result;
}
uint32_t compileSimple(const Node *);
void dispatch(const Node * const);
static inline void PushAnd(Assembler & a,
const Op::Parameters & o = Op::Parameters()) { a.pushAnd(); }
static inline void PushFalse(Assembler & a,
const Op::Parameters & o = Op::Parameters()) { a.pushFalse(); }
static inline void PushHalt(Assembler & a,
const Op::Parameters & o = Op::Parameters()) { a.pushHalt(); }
static inline void PushNone(Assembler & a,
const Op::Parameters & o = Op::Parameters()) { a.pushNone(); }
static inline void PushNot(Assembler & a,
const Op::Parameters & o = Op::Parameters()) { a.pushNot(); }
static inline void PushOr(Assembler & a,
const Op::Parameters & o = Op::Parameters()) { a.pushOr(); }
static inline void PushReturn(Assembler & a,
const Op::Parameters & o = Op::Parameters()) { a.pushReturn(); }
static inline void PushTrue(Assembler & a,
const Op::Parameters & o = Op::Parameters()) { a.pushTrue(); }
static inline void PushIsMethod(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushIsMethod(p[0].c_str(), p[0].size());
}
static inline void PushIsScheme(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushIsScheme(p[0].c_str(), p[0].size());
}
static inline void PushContainsDomain(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushContainsDomain(p[0].c_str(), p[0].size());
}
static inline void PushEqualDomain(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushEqualDomain(p[0].c_str(), p[0].size());
}
static inline void PushNotEqualDomain(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushNotEqualDomain(p[0].c_str(), p[0].size());
}
static inline void PushStartsWithDomain(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushStartsWithDomain(p[0].c_str(), p[0].size(), 0);
}
static inline void PushStartsWithPath(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushStartsWithPath(p[0].c_str(), p[0].size(), 0);
}
static inline void PushContainsPath(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushContainsPath(p[0].c_str(), p[0].size());
}
static inline void PushEqualPath(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushEqualPath(p[0].c_str(), p[0].size());
}
static inline void PushNotEqualPath(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushNotEqualPath(p[0].c_str(), p[0].size());
}
static inline void PushContainsHeader(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushContainsHeader(p[0].c_str(), p[1].c_str());
}
static inline void PushEqualHeader(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushEqualHeader(p[0].c_str(), p[1].c_str());
}
static inline void PushExistsHeader(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushExistsHeader(p[0].c_str());
}
static inline void PushGreaterThanHeader(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushGreaterThanHeader(p[0].c_str(), atoi(p[1].c_str()));
}
static inline void PushGreaterThanAfterHeader(
Assembler & a, const Op::Parameters & p) {
ASSERT(p.size() == 3);
a.pushGreaterThanAfterHeader(p[0].c_str(), p[1].c_str(), atoi(p[2].c_str()));
}
static inline void PushLessThanHeader(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushLessThanHeader(p[0].c_str(), atoi(p[1].c_str()));
}
static inline void PushLessThanAfterHeader(
Assembler & a, const Op::Parameters & p) {
ASSERT(p.size() == 3);
a.pushLessThanAfterHeader(p[0].c_str(), p[1].c_str(), atoi(p[2].c_str()));
}
static inline void PushGreaterThanCookie(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushGreaterThanCookie(p[0].c_str(), atoi(p[1].c_str()));
}
static inline void PushGreaterThanAfterCookie(
Assembler & a, const Op::Parameters & p) {
ASSERT(p.size() == 3);
a.pushGreaterThanAfterCookie(p[0].c_str(), p[1].c_str(), atoi(p[2].c_str()));
}
static inline void PushLessThanCookie(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushLessThanCookie(p[0].c_str(), atoi(p[1].c_str()));
}
static inline void PushLessThanAfterCookie(
Assembler & a, const Op::Parameters & p) {
ASSERT(p.size() == 3);
a.pushLessThanAfterCookie(p[0].c_str(), p[1].c_str(), atoi(p[2].c_str()));
}
static inline void PushGreaterThanQueryParameter(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushGreaterThanQueryParameter(p[0].c_str(), atoi(p[1].c_str()));
}
static inline void PushGreaterThanAfterQueryParameter(
Assembler & a, const Op::Parameters & p) {
ASSERT(p.size() == 3);
a.pushGreaterThanAfterQueryParameter(p[0].c_str(), p[1].c_str(), atoi(p[2].c_str()));
}
static inline void PushLessThanQueryParameter(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushLessThanQueryParameter(p[0].c_str(), atoi(p[1].c_str()));
}
static inline void PushLessThanAfterQueryParameter(
Assembler & a, const Op::Parameters & p) {
ASSERT(p.size() == 3);
a.pushLessThanAfterQueryParameter(p[0].c_str(), p[1].c_str(), atoi(p[2].c_str()));
}
static inline void PushNotEqualHeader(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushNotEqualHeader(p[0].c_str(), p[1].c_str());
}
static inline void PushNotEqualQueryParameter(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushNotEqualQueryParameter(p[0].c_str(), p[1].c_str());
}
static inline void PushContainsCookie(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushContainsCookie(p[0].c_str(), p[1].c_str());
}
static inline void PushContainsQueryParameter(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushContainsQueryParameter(p[0].c_str(), p[1].c_str());
}
static inline void PushExistsQueryParameter(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushExistsQueryParameter(p[0].c_str());
}
static inline void PushEqualQueryParameter(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushEqualQueryParameter(p[0].c_str(), p[1].c_str());
}
static inline void PushNotEqualCookie(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushNotEqualCookie(p[0].c_str(), p[1].c_str());
}
static inline void PushEqualCookie(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushEqualCookie(p[0].c_str(), p[1].c_str());
}
static inline void PushExistsCookie(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 1);
a.pushExistsCookie(p[0].c_str());
}
static inline void PushStartsWithHeader(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushStartsWithHeader(p[0].c_str(), p[1].c_str(), 0);
}
static inline void PushStartsWithQueryParameter(Assembler & a,
const Op::Parameters & p) {
ASSERT(p.size() == 2);
a.pushStartsWithQueryParameter(p[0].c_str(), p[1].c_str(),
0);
}
static inline void PushExecute(Assembler & a, const ExecutionMode::MODES m,
const uint32_t o, const uint32_t c = 0) {
ASSERT(m == ExecutionMode::kNone
|| m == ExecutionMode::kAnd
|| m == ExecutionMode::kOr);
ASSERT(o < a.codeSize());
a.pushExecute(m, o, c);
}
static void PushPrintError(Assembler &, const Op::Parameters &);
static void PushPrintDebug(Assembler &, const Op::Parameters &);
};
} //end of filters namespace
} //end of http namespace
#endif //COMPILER_H