-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileReader.cs
430 lines (405 loc) · 15.2 KB
/
FileReader.cs
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace ValveConvarParsingSystem
{
class FileReader
{
//File information.
private string fileContents;
private string currentPath;
private int fileLength;
//Reader information.
private int currentPosition;
private char currentCharacter;
public bool readFinished;
private ConVar currentConVar;
//Special characters and strings to look out for.
private const char directiveChar = '#';
private const char commentChar = '/';
private const char assignmentChar = '=';
//Miscellaneous information.
private List<ConVar> conVars = new List<ConVar>();
private static readonly string[] conVarClasses = new string[]
{
"ConVar",
"ConVar_ServerBounded",
"GCConVar"
};
private static readonly string[] directives = new string[]
{
"ifdef",
"elseif",
"endif"
};
private static readonly string[] symbols = new string[]
{
"None",
"STAGING_ONLY",
"GAME_DLL",
"TF_RAID_MODE",
"_DEBUG"
};
private Symbol currentSymbol;
private bool inMultiLineComment;
public void LoadFile(string path)
{
using (StreamReader streamReader = new StreamReader(path, Encoding.UTF8))
{
fileContents = streamReader.ReadToEnd();
}
currentPath = path;
fileLength = fileContents.Length;
}
private char ReadCharacter(int position)
{
if (position < fileLength)
{
return fileContents[position];
}
else
{
readFinished = true;
return '\0'; //TODO: There's probably a better way to go about doing this.
}
}
public void ReadWholeFile()
{
if (currentPath == null)
{
throw new InvalidOperationException("Attempted to read through a file without initializing first.");
}
while (currentPosition < fileLength)
{
currentCharacter = fileContents[currentPosition];
if (!CheckForSpecialCharacters(currentCharacter))
{
CheckForConVarPresence(currentCharacter);
}
currentPosition++;
}
}
private void SkipToEndOfLine()
{
bool endOfLine = false;
while (!endOfLine)
{
if (currentPosition >= fileLength || fileContents[currentPosition] == '\n') //WARNING: Potential for going out of the file's range!!!
{
endOfLine = true;
}
currentPosition++;
}
}
private void AdvanceReader(int steps = 1)
{
currentPosition += steps;
if(currentPosition < fileLength)
{
currentCharacter = fileContents[currentPosition];
}
}
private bool CheckForSpecialCharacters(char charToCheck)
{
//TODO: Directive checks do not account for #if defined( STAGING_ONLY ) || defined( _DEBUG )
if (inMultiLineComment)
{
if (charToCheck == '*')
{
if (ReadCharacter(currentPosition + 1) == commentChar)
{
inMultiLineComment = false; //Finally break out of this multiline hell. (See past commits)
return true;
}
}
return false; //No point in continuing.
}
if (charToCheck == directiveChar)
{
//TODO: To ensure efficiency, maybe make this ONLY execute on the start of the line. If it's the start of a line, go crazy, otherwise, ignore.
for (int i = 0; i < directives.Length; i++)
{
//Looping through the list of directives, check if the directive matches any symbols in the list.
if (GetRangeOfString(currentPosition + 1, directives[i].Length) == directives[i])
{
if(directives[i] == "endif")
{
currentSymbol = Symbol.NONE;
SkipToEndOfLine();
return true;
}
AdvanceReader(directives[i].Length+1);
if (char.IsWhiteSpace(ReadCharacter(currentPosition)))
{
for (int j = 0; j < symbols.Length; j++)
{
if (GetRangeOfString(currentPosition + 1, symbols[j].Length) == symbols[j])
{
currentSymbol = (Symbol)j;
SkipToEndOfLine();
return true;
}
}
}
else
{
return false;
}
}
}
}
else if (charToCheck == assignmentChar)
{
if (ReadCharacter(currentPosition + 1) != assignmentChar && ReadCharacter(currentPosition - 1) != assignmentChar)
{
//TODO: This was a strange solution. But the complicated, fully justifiable reasoning behind this is as follows:
//ConVar constructors cannot return anything.
SkipToEndOfLine();
return true;
}
}
else if (charToCheck == commentChar)
{
if (ReadCharacter(currentPosition + 1) == commentChar)
{
SkipToEndOfLine();
return true;
}
if (ReadCharacter(currentPosition + 1) == '*')
{
inMultiLineComment = true;
return true;
}
}
return false;
}
private bool CheckForConVarPresence(char charToCheck)
{
if (currentPosition != 0)
{
if (char.IsWhiteSpace(fileContents[currentPosition - 1])) //If the character before this one is a whitespace or newline, that means this one is in a league of its own(...?)
{
for (int i = 0; i < conVarClasses.Length; i++)
{
//Check if the character could at least be one of them.
//TODO: Redundancy in ConVar and ConVar_ServerBounded!
if (charToCheck == conVarClasses[i][0])
{
if (GetRangeOfString(currentPosition, conVarClasses[i].Length) == conVarClasses[i])
{
AdvanceReader(conVarClasses[i].Length);
if (char.IsWhiteSpace(ReadCharacter(currentPosition)))
{
//Believe it or not, this still has false checks.
AdvanceReader(); //Advance one step ahead for good luck.
ReadConVar(fileContents[currentPosition]);
}
}
}
}
}
}
return false;
}
private void ReadConVar(char charToCheck)
{
bool checkComplete = false;
while (!checkComplete)
{
SeekToConVarName();
string conVarName = ReadConVarName();
if (conVarName != string.Empty)
{
currentConVar = new ConVar();
currentConVar.name = conVarName;
AdvanceReader(); //Advance to get inside the bracket.
string[] arguments = ReadConVarParameters();
currentConVar.symbolRequired = currentSymbol;
currentConVar.conVarType = GetConVarTypeFromArgumentList(arguments);
ParseConVarArguments(arguments);
checkComplete = true;
conVars.Add(currentConVar);
}
else
{
return;
}
}
}
private void ParseConVarArguments(string[] arguments)
{
if((int)currentConVar.conVarType > 2) //Must have flags.
{
currentConVar.initialValue = arguments[1];
currentConVar.flags = Program.StringsToFlag(arguments[2]); //What in god's name- am I really doing this?
}
if ((int)currentConVar.conVarType > 3) //Must have a description.
{
currentConVar.description = arguments[3];
}
if ((int)currentConVar.conVarType == 5) //Has a callback, but nothing else.
{
currentConVar.callbackName = arguments[4];
}
if ((int)currentConVar.conVarType >= 8) //Has min and max values.
{
currentConVar.usesMinValue = ParseBool(arguments[4]);
currentConVar.minValue = arguments[5];
currentConVar.usesMaxValue = ParseBool(arguments[6]);
currentConVar.maxValue = arguments[7];
}
if ((int)currentConVar.conVarType == 9) //Has min and max values and a callback.
{
currentConVar.callbackName = arguments[8];
}
if ((int)currentConVar.conVarType == 13) //Has comp min and max values and a callback.
{
currentConVar.usesCompetitiveMinValue = ParseBool(arguments[8]);
currentConVar.competitiveMinValue = arguments[9];
currentConVar.usesCompetitiveMaxValue = ParseBool(arguments[10]);
currentConVar.competitiveMaxValue = arguments[11];
currentConVar.callbackName = arguments[12];
}
}
private bool ParseBool(string value)
{
if(bool.TryParse(value, out bool result))
{
return result;
}
else
{
return value != "0"; //Fallback.
}
}
private void SeekToConVarName()
{
bool seeking = true;
while (seeking)
{
if (char.IsWhiteSpace(ReadCharacter(currentPosition)))
{
AdvanceReader();
}
else
{
seeking = false;
}
}
}
private string ReadConVarName()
{
bool reading = true;
int nameLength = 0;
while (reading)
{
if (char.IsWhiteSpace(ReadCharacter(currentPosition)))
{
//The reader has bamboozled us and sent us on a wild goose chase for a ConVar name that isn't really a ConVar name.
return string.Empty;
}
if (ReadCharacter(currentPosition) == '*')
{
//A pointer asterisk? Unacceptable.
return string.Empty;
}
if (ReadCharacter(currentPosition) == '(')
{
reading = false;
}
else
{
nameLength++;
AdvanceReader();
}
}
return GetRangeOfString(currentPosition - nameLength, nameLength);
}
private string[] ReadConVarParameters()
{
//For anyone who reads these, this is actually what I came up with a parser system in the first place. Regex wasn't cut out for it.
bool reading = true;
bool inQuotes = false; // " "
bool inComment = false; // /* */
string currentParameter = string.Empty;
List<string> parameters = new List<string>();
while (reading)
{
char currentCharacter = ReadCharacter(currentPosition);
if (inComment)
{
if(currentCharacter == '*')
{
if(ReadCharacter(currentPosition+1) == '/')
{
inComment = false;
}
}
AdvanceReader();
continue;
}
if (char.IsWhiteSpace(currentCharacter) && inQuotes == false)
{
AdvanceReader();
continue;
}
//Split parameters.
if (currentCharacter == ',' && inQuotes == false)
{
parameters.Add(currentParameter);
currentParameter = string.Empty;
AdvanceReader();
continue;
}
//Start/end quotes.
if (currentCharacter == '\"')
{
//Check for string escapes.
if(ReadCharacter(currentPosition-1) != '\\')
{
inQuotes = !inQuotes;
}
AdvanceReader();
continue;
}
if (currentCharacter == ')' && inQuotes == false)
{
parameters.Add(currentParameter); //TODO: I mean, when will there NOT be a parameter at the end, but this code repetition feels wrong.
reading = false;
AdvanceReader();
break;
}
if (currentCharacter == '/' && inQuotes == false)
{
if (ReadCharacter(currentPosition+1) == '*')
{
inComment = true;
}
AdvanceReader();
continue;
}
currentParameter += currentCharacter;
AdvanceReader();
}
return parameters.ToArray();
}
private string GetRangeOfString(int startingPoint, int range)
{
if(startingPoint+range >= fileLength)
{
readFinished = true;
return null;
}
return fileContents.Substring(startingPoint, range);
}
public List<ConVar> GetResults()
{
return conVars;
}
private ConVarType GetConVarTypeFromArgumentList(string[] arguments)
{
return (ConVarType)arguments.Length;
}
}
}