-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkv_lexer.py
312 lines (232 loc) · 8.85 KB
/
kv_lexer.py
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
# Reads QPC files and returns a list of QPCBlocks
import os
class KeyValue:
def __init__(self, file_path, line_num, key, value):
self.key = key
self.value = value
# self.condition = condition
self.items = []
self.line_num = line_num
self.file_path = file_path
def InvalidOption(self, *valid_option_list):
print( "WARNING: Invalid Option" )
print( "\tValid Options:\n\t\t" + '\n\t\t'.join(valid_option_list) )
self.PrintInfo()
# would be cool if i could change the colors on this
def FatalError(self, message):
print("FATAL ERROR: " + message)
self.PrintInfo()
quit()
# should Error and FatalError be the same?
def Error(self, message):
print("ERROR: " + message)
self.PrintInfo()
def Warning(self, message):
print("WARNING: " + message)
self.PrintInfo()
def PrintInfo(self):
# TODO: this path is relative to the current directory
print("\tFile Path: " + self.file_path +
"\n\tLine: " + str(self.line_num) +
"\n\tKey: " + self.key +
"\n\tValue: " + self.value)
# maybe check the type of value so it only prints if it's a string?
def ReadFile(path):
lexer = KeyValuesLexer(path)
qpc_file = []
path = os.getcwd() + os.sep + path
while lexer.chari < lexer.file_len:
key, line_num = lexer.NextKey()
if not key:
break # end of file
values = lexer.NextValue()
# condition = lexer.NextCondition()
block = KeyValue(path, line_num, key, values)
if lexer.NextSymbol() == "{":
CreateSubBlock(lexer, block, path)
pass
qpc_file.append(block)
return qpc_file
def CreateSubBlock(lexer, block, path):
while lexer.chari < lexer.file_len - 1:
key, line_num = lexer.NextKey()
if not key:
if lexer.NextSymbol() == "}":
return
print( "uhhhhhhh" )
# line_num = lexer.linei
value = lexer.NextValue()
# condition = lexer.NextCondition()
sub_block = KeyValue(path, line_num, key, value)
block.items.append(sub_block)
next_symbol = lexer.NextSymbol()
if next_symbol == "{":
CreateSubBlock(lexer, sub_block, path)
elif next_symbol == "}":
return
class KeyValuesLexer:
def __init__(self, path):
self.chari = 0
self.linei = 1
self.path = path
with open(path, mode="r", encoding="utf-8") as file:
self.file = file.read()
self.file_len = len(self.file) - 1
# maybe using this would be faster?
self.keep_from = 0
self.chars_comment = {'/', '*'}
self.chars_escape = {'"', '\'', '\\'}
self.chars_quote = {'"', '\''}
self.chars_cond = {'[', ']'}
self.chars_item = {'{', '}'}
def NextValue(self):
value = ''
while self.chari < self.file_len:
char = self.file[self.chari]
if char in self.chars_item:
break
if char in {' ', '\t'}:
self.chari += 1
if value:
break
continue
if char in self.chars_quote:
value = self.ReadQuote(char)
break
# skip escape
if char == '\\' and self.NextChar() in self.chars_escape:
self.chari += 2
value += self.file[self.chari]
# TODO: replace "items" with just value, so this will need to be changed
elif char == '\n':
break
elif char == '/' and self.NextChar() in self.chars_comment:
self.SkipComment()
else:
if self.file[self.chari] in self.chars_cond:
break
value += self.file[self.chari]
self.chari += 1
return value
def NextChar(self):
if self.chari + 1 >= self.file_len:
return None
return self.file[self.chari + 1]
# used to be NextString, but i only used it for keys
def NextKey(self):
string = ''
line_num = 0
skip_list = {' ', '\t', '\n'}
while self.chari < self.file_len:
char = self.file[self.chari]
if char in self.chars_item:
line_num = self.linei
break
elif char in {' ', '\t'}:
if string:
line_num = self.linei
break
elif char in self.chars_quote:
string = self.ReadQuote(char)
line_num = self.linei
break
# skip escape
elif char == '\\' and self.NextChar() in self.chars_escape:
self.chari += 2
string += self.file[self.chari]
# char = self.file[self.chari]
elif char in skip_list:
if string:
# self.chari += 1
line_num = self.linei
# if char == '\n':
# self.linei += 1
break
if char == '\n':
self.linei += 1
elif char == '/' and self.NextChar() in self.chars_comment:
self.SkipComment()
else:
string += self.file[self.chari]
self.chari += 1
return string, line_num
def NextSymbol(self):
while self.chari < self.file_len:
char = self.file[self.chari]
if char in self.chars_item:
self.chari += 1
return char
# skip escape
elif char == '\\' and self.NextChar() in self.chars_escape:
self.chari += 2
elif char == '/' and self.NextChar() in self.chars_comment:
self.SkipComment()
elif char == '\n':
self.linei += 1
elif char not in {' ', '\t'}:
break
self.chari += 1
return None
def NextCondition(self):
condition = ''
in_cond = False
while self.chari < self.file_len:
char = self.file[self.chari]
if char in self.chars_item:
break
elif char == '[':
self.chari += 1
in_cond = True
continue
elif char == ']':
self.chari += 1
in_cond = False
break
elif char in {' ', '\t'}:
self.chari += 1
continue
elif char == '\n':
# self.linei += 1
# self.chari += 1
break
elif char == '/' and self.NextChar() in self.chars_comment:
self.SkipComment()
elif in_cond:
condition += self.file[self.chari]
else:
break
self.chari += 1
return condition
def SkipComment(self):
self.chari += 1
char = self.file[self.chari]
if char == '/':
# keep going until \n
while True:
self.chari += 1
if self.file[self.chari] == "\n":
self.linei += 1
break
elif char == '*':
while True:
char = self.file[self.chari]
if char == '*' and self.NextChar() == '/':
self.chari += 1
break
if char == "\n":
self.linei += 1
self.chari += 1
def ReadQuote(self, qchar):
quote = ''
while self.chari < self.file_len:
self.chari += 1
char = self.file[self.chari]
if char == '\\' and self.NextChar() in self.chars_escape:
quote += self.NextChar()
self.chari += 1
elif char == qchar:
break
else:
quote += char
self.chari += 1
return quote