-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobject.cpp
219 lines (183 loc) · 4.83 KB
/
object.cpp
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
#include<iostream>
#include<functional>
#include"bytecode.cpp"
using namespace std;
struct ObjTypes {
string INTEGER_OBJ = "INTEGER";
string BOOLEAN_OBJ = "BOOLEAN";
string NULL_OBJ = "NULL";
string STRING_OBJ = "STRING";
string ARRAY_OBJ = "ARRAY";
string HASH_OBJ = "HASH_PAIR";
string HASH_TABLE = "HASH_TABLE";
string COMPILED_FUNCTION_OBJ = "COMPILED_FUNCTION";
} objs;
class Object {
public:
string type;
virtual ~Object() = default;
virtual string serialize() const = 0;
virtual string getType() const = 0;
virtual bool hashable() const = 0;
};
class Integer: public Object {
public:
int value;
string type = objs.INTEGER_OBJ;
Integer(int val) : value(val) {};
string serialize() const override {
return to_string(value);
}
string getType() const override {
return type;
}
bool hashable() const override {
return true;
}
};
class Boolean: public Object {
public:
bool value;
string type = objs.BOOLEAN_OBJ;
Boolean(bool val) : value(val) {};
string serialize() const override {
return value ? "true" : "false";
}
string getType() const override {
return type;
}
bool hashable() const override {
return true;
}
};
class Null: public Object {
public:
string type = objs.NULL_OBJ;
Null() = default;
string serialize() const override {
return "null";
}
string getType() const override {
return type;
}
bool hashable() const override {
return false;
}
};
class String: public Object {
public:
string type = objs.STRING_OBJ;
string value;
String() = default;
String(string val) : value(val) {};
string serialize() const override {
return value;
}
string getType() const override {
return type;
}
bool hashable() const override {
return true;
}
};
class Array: public Object {
public:
string type = objs.ARRAY_OBJ;
vector<unique_ptr<Object>> elements;
Array(vector<unique_ptr<Object>>&& elements) : elements(move(elements)) {};
string serialize() const override {
string res = "[";
int i = 0;
for (auto& element : elements) {
res += element.get()->serialize();
if (i++ < elements.size() - 1) res += ", ";
}
res += "]";
return res;
}
string getType() const override {
return type;
}
bool hashable() const override {
return false;
}
};
typedef size_t HashKey;
class HashPair: public Object {
public:
string type = objs.HASH_OBJ;
unique_ptr<Object> key;
unique_ptr<Object> value;
HashPair(unique_ptr<Object>& key, unique_ptr<Object>& val) : key(move(key)), value(move(val)) {};
string serialize() const override {
string res = key.get()->serialize();
res += ": ";
res += value.get()->serialize();
return res;
}
string getType() const override {
return type;
}
bool hashable() const override {
return false;
}
};
class HashTable : public Object {
public:
string type = objs.HASH_TABLE;
map<HashKey, unique_ptr<HashPair>> table;
HashTable(map<HashKey, unique_ptr<HashPair>> table) : table(move(table)) {};
string serialize() const override {
string res = "{";
int i = 0;
for (auto& entry : table) {
res += entry.second.get()->serialize();
if (i++ < table.size() - 1) res += ", ";
}
res += "}";
return res;
}
string getType() const override {return type;}
bool hashable() const override {
return false;
}
};
HashKey hashKey(unique_ptr<Object>& obj) {
string type = obj.get()->getType();
if (type == objs.INTEGER_OBJ) {
Integer* lit = dynamic_cast<Integer*>(obj.get());
return hash<int>{}(lit->value);
} else if (type == objs.BOOLEAN_OBJ) {
Boolean* lit = dynamic_cast<Boolean*>(obj.get());
return hash<bool>{}(lit->value);
} else if (type == objs.STRING_OBJ) {
String* lit = dynamic_cast<String*>(obj.get());
return hash<string>{}(lit->value);
} else {
return 0;
}
}
class CompiledFunction : public Object {
public:
string type = objs.COMPILED_FUNCTION_OBJ;
Instruction instructions;
CompiledFunction(Instruction instructions) : instructions(instructions) {};
string serialize() const override {
return "compiled function";
};
string getType() const override {
return type;
};
bool hashable() const override {
return false;
}
};
class Frame {
public:
CompiledFunction fn;
int ip;
Frame(CompiledFunction& fn) : fn(fn), ip(0) {};
Instruction getInstructions() {
return fn.instructions;
}
};