-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSymbol.hpp
367 lines (281 loc) · 18.5 KB
/
Symbol.hpp
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
#ifndef ZENI_RETE_SYMBOL_HPP
#define ZENI_RETE_SYMBOL_HPP
#include "Internal/Linkage.hpp"
#include <memory>
#include <string>
namespace Zeni::Rete {
class Symbol;
}
namespace std {
template class ZENI_RETE_LINKAGE std::shared_ptr<const Zeni::Rete::Symbol>;
}
namespace Zeni::Rete {
class Symbol_Constant;
class Symbol_Constant_Float;
class Symbol_Constant_Int;
class Symbol_Constant_String;
class Symbol_Constant_Identifier;
class Symbol_Variable;
class Variable_Indices;
class Symbol
{
Symbol(const Symbol &) = delete;
Symbol & operator=(const Symbol &) = delete;
public:
ZENI_RETE_LINKAGE Symbol();
ZENI_RETE_LINKAGE virtual ~Symbol();
ZENI_RETE_LINKAGE virtual Symbol * clone() const = 0;
ZENI_RETE_LINKAGE virtual bool operator==(const Symbol &rhs) const = 0;
ZENI_RETE_LINKAGE virtual bool operator!=(const Symbol &rhs) const = 0;
ZENI_RETE_LINKAGE virtual bool operator<(const Symbol &rhs) const = 0;
ZENI_RETE_LINKAGE virtual bool operator<=(const Symbol &rhs) const = 0;
ZENI_RETE_LINKAGE virtual bool operator>(const Symbol &rhs) const = 0;
ZENI_RETE_LINKAGE virtual bool operator>=(const Symbol &rhs) const = 0;
ZENI_RETE_LINKAGE virtual bool operator==(const Symbol_Constant_Float &) const;
ZENI_RETE_LINKAGE virtual bool operator!=(const Symbol_Constant_Float &) const;
ZENI_RETE_LINKAGE virtual bool operator<(const Symbol_Constant_Float &) const;
ZENI_RETE_LINKAGE virtual bool operator<=(const Symbol_Constant_Float &) const;
ZENI_RETE_LINKAGE virtual bool operator>(const Symbol_Constant_Float &) const;
ZENI_RETE_LINKAGE virtual bool operator>=(const Symbol_Constant_Float &) const;
ZENI_RETE_LINKAGE virtual bool operator==(const Symbol_Constant_Int &) const;
ZENI_RETE_LINKAGE virtual bool operator!=(const Symbol_Constant_Int &) const;
ZENI_RETE_LINKAGE virtual bool operator<(const Symbol_Constant_Int &) const;
ZENI_RETE_LINKAGE virtual bool operator<=(const Symbol_Constant_Int &) const;
ZENI_RETE_LINKAGE virtual bool operator>(const Symbol_Constant_Int &) const;
ZENI_RETE_LINKAGE virtual bool operator>=(const Symbol_Constant_Int &) const;
ZENI_RETE_LINKAGE virtual bool operator==(const Symbol_Constant_String &) const;
ZENI_RETE_LINKAGE virtual bool operator!=(const Symbol_Constant_String &) const;
ZENI_RETE_LINKAGE virtual bool operator<(const Symbol_Constant_String &) const;
ZENI_RETE_LINKAGE virtual bool operator<=(const Symbol_Constant_String &) const;
ZENI_RETE_LINKAGE virtual bool operator>(const Symbol_Constant_String &) const;
ZENI_RETE_LINKAGE virtual bool operator>=(const Symbol_Constant_String &) const;
ZENI_RETE_LINKAGE virtual bool operator==(const Symbol_Constant_Identifier &) const;
ZENI_RETE_LINKAGE virtual bool operator!=(const Symbol_Constant_Identifier &) const;
ZENI_RETE_LINKAGE virtual bool operator<(const Symbol_Constant_Identifier &) const;
ZENI_RETE_LINKAGE virtual bool operator<=(const Symbol_Constant_Identifier &) const;
ZENI_RETE_LINKAGE virtual bool operator>(const Symbol_Constant_Identifier &) const;
ZENI_RETE_LINKAGE virtual bool operator>=(const Symbol_Constant_Identifier &) const;
ZENI_RETE_LINKAGE virtual bool operator==(const Symbol_Variable &) const;
ZENI_RETE_LINKAGE virtual bool operator!=(const Symbol_Variable &) const;
ZENI_RETE_LINKAGE virtual bool operator<(const Symbol_Variable &) const;
ZENI_RETE_LINKAGE virtual bool operator<=(const Symbol_Variable &) const;
ZENI_RETE_LINKAGE virtual bool operator>(const Symbol_Variable &) const;
ZENI_RETE_LINKAGE virtual bool operator>=(const Symbol_Variable &) const;
ZENI_RETE_LINKAGE virtual bool operator==(const double) const;
ZENI_RETE_LINKAGE virtual bool operator==(const int64_t) const;
ZENI_RETE_LINKAGE virtual bool operator==(const char *) const;
ZENI_RETE_LINKAGE virtual bool is_same_type_as(const Symbol &rhs) const = 0;
ZENI_RETE_LINKAGE virtual bool is_same_type_as(const Symbol_Constant_Float &rhs) const;
ZENI_RETE_LINKAGE virtual bool is_same_type_as(const Symbol_Constant_Int &rhs) const;
ZENI_RETE_LINKAGE virtual bool is_same_type_as(const Symbol_Constant_String &rhs) const;
ZENI_RETE_LINKAGE virtual bool is_same_type_as(const Symbol_Constant_Identifier &rhs) const;
ZENI_RETE_LINKAGE virtual bool is_same_type_as(const Symbol_Variable &rhs) const;
ZENI_RETE_LINKAGE virtual size_t hash() const = 0;
ZENI_RETE_LINKAGE virtual std::ostream & print(std::ostream &os) const = 0;
ZENI_RETE_LINKAGE virtual std::ostream & print_contents(std::ostream &os) const = 0;
};
class Symbol_Constant : public Symbol {
Symbol_Constant(const Symbol_Constant &) = delete;
Symbol_Constant & operator=(const Symbol_Constant &) = delete;
public:
ZENI_RETE_LINKAGE Symbol_Constant();
};
class Symbol_Constant_Float : public Symbol_Constant {
Symbol_Constant_Float(const Symbol_Constant_Float &) = delete;
Symbol_Constant_Float & operator=(const Symbol_Constant_Float &) = delete;
public:
ZENI_RETE_LINKAGE Symbol_Constant_Float(const double &value_);
ZENI_RETE_LINKAGE Symbol_Constant_Float * clone() const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_String &) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_String &) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_Identifier &) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_Identifier &) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Variable &) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Variable &) const override;
ZENI_RETE_LINKAGE bool operator==(const double value_) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE size_t hash() const override;
ZENI_RETE_LINKAGE virtual std::ostream & print(std::ostream &os) const override;
ZENI_RETE_LINKAGE virtual std::ostream & print_contents(std::ostream &os) const override;
const double value;
};
class Symbol_Constant_Int : public Symbol_Constant {
Symbol_Constant_Int(const Symbol_Constant_Int &) = delete;
Symbol_Constant_Int & operator=(const Symbol_Constant_Int &) = delete;
public:
ZENI_RETE_LINKAGE Symbol_Constant_Int(const int64_t &value_);
ZENI_RETE_LINKAGE Symbol_Constant_Int * clone() const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Float &rhs) const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_String &) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_String &) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_Identifier &) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_Identifier &) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Variable &) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Variable &) const override;
ZENI_RETE_LINKAGE bool operator==(const int64_t value_) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol_Constant_Int &rhs) const override;
ZENI_RETE_LINKAGE size_t hash() const override;
ZENI_RETE_LINKAGE virtual std::ostream & print(std::ostream &os) const override;
ZENI_RETE_LINKAGE virtual std::ostream & print_contents(std::ostream &os) const override;
const int64_t value;
};
class Symbol_Constant_String : public Symbol_Constant {
Symbol_Constant_String(const Symbol_Constant_String &) = delete;
Symbol_Constant_String & operator=(const Symbol_Constant_String &) = delete;
public:
ZENI_RETE_LINKAGE Symbol_Constant_String(const std::string &value_);
ZENI_RETE_LINKAGE Symbol_Constant_String(std::string &&value_);
ZENI_RETE_LINKAGE std::string_view get_value() const;
ZENI_RETE_LINKAGE Symbol_Constant_String * clone() const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol_Constant_String &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol_Constant_String &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_String &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_String &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_String &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_String &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Float &) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Float &) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Int &) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Int &) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_Identifier &) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_Identifier &) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Variable &) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Variable &) const override;
ZENI_RETE_LINKAGE bool operator==(const char * value_) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol_Constant_String &rhs) const override;
ZENI_RETE_LINKAGE size_t hash() const override;
ZENI_RETE_LINKAGE virtual std::ostream & print(std::ostream &os) const override;
ZENI_RETE_LINKAGE virtual std::ostream & print_contents(std::ostream &os) const override;
private:
const std::string m_value;
};
class Symbol_Constant_Identifier : public Symbol_Constant {
Symbol_Constant_Identifier(const Symbol_Constant_Identifier &) = delete;
Symbol_Constant_Identifier & operator=(const Symbol_Constant_Identifier &) = delete;
public:
ZENI_RETE_LINKAGE Symbol_Constant_Identifier(const std::string &value_);
ZENI_RETE_LINKAGE Symbol_Constant_Identifier(std::string &&value_);
ZENI_RETE_LINKAGE const char * get_value() const;
ZENI_RETE_LINKAGE Symbol_Constant_Identifier * clone() const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol_Constant_Identifier &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol_Constant_Identifier &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Constant_Identifier &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Constant_Identifier &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Identifier &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Identifier &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Float &) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Float &) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Int &) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Int &) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_String &) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_String &) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Variable &) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Variable &) const override;
ZENI_RETE_LINKAGE bool operator==(const char * value_) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol_Constant_Identifier &rhs) const override;
ZENI_RETE_LINKAGE size_t hash() const override;
ZENI_RETE_LINKAGE virtual std::ostream & print(std::ostream &os) const override;
ZENI_RETE_LINKAGE virtual std::ostream & print_contents(std::ostream &os) const override;
private:
const std::string m_value;
};
class Symbol_Variable : public Symbol {
Symbol_Variable(const Symbol_Variable &) = delete;
Symbol_Variable & operator=(const Symbol_Variable &) = delete;
public:
ZENI_RETE_LINKAGE Symbol_Variable(const char * value_);
ZENI_RETE_LINKAGE const char * get_value() const;
ZENI_RETE_LINKAGE Symbol_Variable * clone() const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool operator==(const Symbol_Variable &rhs) const override;
ZENI_RETE_LINKAGE bool operator!=(const Symbol_Variable &rhs) const override;
ZENI_RETE_LINKAGE bool operator<(const Symbol_Variable &rhs) const override;
ZENI_RETE_LINKAGE bool operator<=(const Symbol_Variable &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Variable &rhs) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Variable &rhs) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Float &) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Float &) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Int &) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Int &) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_String &) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_String &) const override;
ZENI_RETE_LINKAGE bool operator>(const Symbol_Constant_Identifier &) const override;
ZENI_RETE_LINKAGE bool operator>=(const Symbol_Constant_Identifier &) const override;
ZENI_RETE_LINKAGE bool operator==(const char * value_) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol &rhs) const override;
ZENI_RETE_LINKAGE bool is_same_type_as(const Symbol_Variable &rhs) const override;
ZENI_RETE_LINKAGE size_t hash() const override;
ZENI_RETE_LINKAGE virtual std::ostream & print(std::ostream &os) const override;
ZENI_RETE_LINKAGE virtual std::ostream & print_contents(std::ostream &os) const override;
private:
const std::string m_value;
};
}
bool ZENI_RETE_LINKAGE operator==(const double lhs, const Zeni::Rete::Symbol &rhs);
bool ZENI_RETE_LINKAGE operator==(const int64_t lhs, const Zeni::Rete::Symbol &rhs);
bool ZENI_RETE_LINKAGE operator==(const char * lhs, const Zeni::Rete::Symbol &rhs);
ZENI_RETE_LINKAGE std::ostream & operator<<(std::ostream &os, const Zeni::Rete::Symbol &symbol);
namespace std {
template <> struct hash<Zeni::Rete::Symbol> {
size_t operator()(const Zeni::Rete::Symbol &symbol) const {
return symbol.hash();
}
};
}
#endif