-
Notifications
You must be signed in to change notification settings - Fork 0
/
SkopikReader.cs
493 lines (379 loc) · 16.9 KB
/
SkopikReader.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
namespace Skopik
{
// internal class for reading .skop files quickly
internal class SkopikReader : IDisposable
{
protected TokenReader Reader { get; }
public void Dispose()
{
if (Reader != null)
Reader.Dispose();
}
public ISkopikObject ReadBlock(SkopikDataType type, string name = "")
{
switch (type)
{
case SkopikDataType.OpArrayOpen:
return ReadArray(name);
case SkopikDataType.OpScopeOpen:
return ReadScope(name);
case SkopikDataType.OpTupleOpen:
return ReadTuple(name);
}
throw new InvalidOperationException("ReadBlock() -- could not determine block type to load!");
}
public ISkopikObject ReadObject(ISkopikBlock parent)
{
if (parent == null)
throw new ArgumentNullException(nameof(parent), "Parent cannot be null.");
var token = Reader.ReadToken();
var dataType = SkopikDataType.None;
try
{
dataType = Skopik.GetAnyDataType(token);
}
catch (Exception e)
{
throw new InvalidOperationException($"ReadObject() -- horrific failure on line {Reader.CurrentLine}, couldn't parse '{token}'!", e);
}
if (dataType == SkopikDataType.None)
Console.WriteLine($"ReadObject() -- Couldn't determine data type @ line {Reader.CurrentLine}: '{token}'.");
// check for either strings or named scopes (e.g. ' "Inlined scope" : { ... } '
if (dataType == SkopikDataType.String)
{
var strValue = token.StripQuotes();
if (!Reader.EndOfLine)
{
// peek for the scope assignment operator
var nextToken = Reader.PeekToken();
if (Skopik.IsScopeBlockOperator(nextToken))
{
Reader.PopToken();
// no need to peek for this one
nextToken = Reader.ReadToken();
// named scopes
if (!Skopik.IsOpeningBrace(nextToken))
throw new InvalidOperationException($"ReadObject() -- malformed data on line {Reader.CurrentLine}.");
// wrap in single quotes
var scopeName = token.StripQuotes(true);
return ReadBlock(Skopik.GetDataType(nextToken), scopeName);
}
}
return SkopikFactory.CreateValue(strValue);
}
if (dataType == SkopikDataType.Keyword)
Debug.WriteLine($"Unknown data @ line {Reader.CurrentLine}: '{token}'");
if (dataType == SkopikDataType.Boolean)
return SkopikFactory.CreateValue(token, bool.Parse);
if (dataType == SkopikDataType.Null)
return SkopikObject.Null;
// anonymous scope/array?
if (Skopik.IsOpeningBrace(token))
return ReadBlock(Skopik.GetDataType(token));
if (Skopik.IsDecimalNumberValue(dataType))
{
var decimalToken = Skopik.SanitizeNumber(token, false);
if (String.IsNullOrEmpty(decimalToken))
throw new InvalidOperationException($"ReadObject() -- could not sanitize decimal token '{token}' on line {Reader.CurrentLine}.");
switch (dataType)
{
case SkopikDataType.Float:
return SkopikFactory.CreateValue(decimalToken, float.Parse, Skopik.Culture);
case SkopikDataType.Double:
return SkopikFactory.CreateValue(decimalToken, double.Parse, Skopik.Culture);
}
}
if (Skopik.IsNumberValue(dataType))
{
var isNegative = Skopik.IsNegativeNumber(token);
var strIndex = 0;
if ((dataType & SkopikDataType.BitField) != 0)
{
if ((dataType & (SkopikDataType.NumberFlagMask & ~SkopikDataType.BitField)) != 0)
throw new InvalidOperationException($"ReadObject() -- invalid binary token '{token}' on line {Reader.CurrentLine}.");
if (isNegative)
strIndex += 1;
var binaryToken = Skopik.SanitizeNumber(token.Substring(strIndex), false);
if (String.IsNullOrEmpty(binaryToken))
throw new InvalidOperationException($"ReadObject() -- could not sanitize binary token '{token}' on line {Reader.CurrentLine}.");
BitArray bits = null;
if (isNegative)
{
var val = Convert.ToInt32(binaryToken, 2);
if (isNegative)
val = -val;
bits = new BitArray(BitConverter.GetBytes(val));
}
else
{
var val = Convert.ToUInt32(binaryToken, 2);
bits = new BitArray(BitConverter.GetBytes(val));
}
return SkopikFactory.CreateValue(bits);
}
else
{
// don't know what happened!
if (!Enum.IsDefined(typeof(SkopikDataType), dataType))
throw new InvalidOperationException($"ReadObject() -- invalid number token '{token}' on line {Reader.CurrentLine}.");
var isHex = Skopik.IsHexadecimalNumber(token);
if (isHex)
{
if (isNegative)
strIndex += 1;
strIndex += 2;
}
var numberToken = Skopik.SanitizeNumber(token.Substring(strIndex), isHex);
if (String.IsNullOrEmpty(numberToken))
throw new InvalidOperationException($"ReadObject() -- could not sanitize number token '{token}' on line {Reader.CurrentLine}.");
var numberBase = (!isHex) ? 10 : 16;
switch (dataType)
{
case SkopikDataType.Integer32:
{
var val = Convert.ToInt32(numberToken, numberBase);
if (isHex && isNegative)
val = -val;
return SkopikFactory.CreateValue(val);
}
case SkopikDataType.Integer64:
{
var val = Convert.ToInt64(numberToken, numberBase);
if (isHex && isNegative)
val = -val;
return SkopikFactory.CreateValue(val);
}
case SkopikDataType.UInteger32:
{
var val = Convert.ToUInt32(numberToken, numberBase);
return SkopikFactory.CreateValue(val);
}
case SkopikDataType.UInteger64:
{
var val = Convert.ToUInt64(numberToken, numberBase);
return SkopikFactory.CreateValue(val);
}
}
throw new InvalidOperationException($"ReadObject() -- the resulting value for '{token}' on line {Reader.CurrentLine} was null.");
}
}
// we couldn't determine the data type, but let's not break the parser!
return SkopikObject.Null;
}
public ISkopikObject ReadStatement(ISkopikBlock parent)
{
if (parent == null)
throw new ArgumentNullException(nameof(parent), "Parent cannot be null.");
ISkopikObject obj = SkopikObject.Null;
var name = Reader.ReadToken();
if (!Reader.EndOfLine)
{
var op = Reader.PeekToken();
if (Skopik.IsScopeBlockOperator(op))
{
Reader.PopToken();
op = Reader.ReadToken();
// named scopes
if (Skopik.IsOpeningBrace(op))
{
name = name.StripQuotes(true);
obj = ReadBlock(Skopik.GetDataType(op), name);
}
else
{
throw new InvalidOperationException($"ReadObject() -- malformed data on line {Reader.CurrentLine}.");
}
}
else
{
if (Skopik.IsAssignmentOperator(op))
{
// move past assignment operator
Reader.PopToken();
}
else
{
// move back to the beginning
Reader.Seek(-1);
}
// try reading the object normally
obj = ReadObject(parent);
}
if (!Reader.EndOfLine)
{
var nextToken = Reader.PeekToken();
// move to next statement
if (Skopik.IsScopeSeparator(nextToken))
Reader.PopToken();
if (Tokenizer.IsCommentLine(nextToken))
Reader.NextLine();
}
}
if (parent is SkopikScope)
{
// add to the parent scope as a variable
((SkopikScope)parent).Entries.Add(name, obj);
}
return obj;
}
public SkopikArray ReadArray(string arrayName = "")
{
var array = new SkopikArray(arrayName);
var maxIndex = -1;
while (!Reader.EndOfStream)
{
var token = Reader.ReadToken();
if (String.IsNullOrEmpty(token))
continue;
ISkopikObject obj = null;
var index = (maxIndex + 1);
var hasExplicitIndex = false;
// explicit indice?
if (Skopik.IsOpeningBrace(token))
{
if (Reader.FindNextPattern(new[] { "]", ":" }) != -1)
{
var nextToken = Reader.ReadToken();
var dataType = Skopik.GetNumberDataType(nextToken);
var strIndex = 0;
if (dataType != SkopikDataType.Integer32)
throw new InvalidOperationException($"ReadArray() -- invalid explicit indice definition on line {Reader.CurrentLine}.");
var isHex = Skopik.IsHexadecimalNumber(nextToken);
if (isHex)
strIndex += 2;
nextToken = Skopik.SanitizeNumber(nextToken.Substring(strIndex), isHex);
try
{
index = int.Parse(nextToken, Skopik.Culture);
}
catch (Exception)
{
throw new InvalidOperationException($"ReadArray() -- something's rotten in denmark on line {Reader.CurrentLine}!");
}
if (index < 0)
throw new InvalidOperationException($"ReadAray() -- negative explicit indice on line {Reader.CurrentLine}.");
if (index <= maxIndex)
throw new InvalidOperationException($"ReadArray() -- explicit indice on line {Reader.CurrentLine} is less than the highest index.");
// move past the indice definition
Reader.PopToken(1);
hasExplicitIndex = true;
}
}
// end of current array?
if (Skopik.IsClosingBrace(token, SkopikDataType.Array))
break;
if (hasExplicitIndex)
{
// add null entries if needed
for (int i = (maxIndex + 1); i < index; i++)
array.Entries.Insert(i, SkopikObject.Null);
}
else
{
// move back to the beginning
Reader.Seek(-1);
}
obj = ReadStatement(array);
// stop if there's nothing left to read
if (obj == null)
break;
array.Entries.Insert(index, obj);
if (!Reader.EndOfLine)
{
var op = Reader.PeekToken();
// increase highest index
if (Skopik.IsArraySeparator(op))
{
Reader.PopToken();
maxIndex = index;
}
}
}
return array;
}
public SkopikScope ReadScope(string scopeName = "")
{
var scope = new SkopikScope(scopeName);
while (!Reader.EndOfStream)
{
var token = Reader.ReadToken();
if (String.IsNullOrEmpty(token))
continue;
ISkopikObject obj = null;
// end of current scope?
if (Skopik.IsClosingBrace(token, SkopikDataType.Scope))
break;
if (Skopik.IsClosingBrace(token))
throw new InvalidOperationException($"Unexpected brace in scope on line {Reader.CurrentLine}.");
// move to beginning of statement
Reader.Seek(-1);
obj = ReadStatement(scope);
// stop if there's nothing left to read
if (obj == null)
break;
}
return scope;
}
public SkopikTuple ReadTuple(string name = "")
{
var lastType = SkopikDataType.None;
var tempArray = new SkopikArray("<temp>");
ISkopikBlock block = tempArray;
SkopikTuple tuple = null;
while (!Reader.EndOfStream)
{
var token = Reader.ReadToken();
if (String.IsNullOrEmpty(token))
continue;
ISkopikObject obj = null;
// end of current tuple?
if (Skopik.IsClosingBrace(token, SkopikDataType.Tuple))
break;
// check for braces we weren't expecting
if (Skopik.IsOpeningBrace(token) || Skopik.IsClosingBrace(token))
throw new InvalidOperationException($"Unexpected brace in tuple on line {Reader.CurrentLine}.");
// move back to the beginning
Reader.Seek(-1);
obj = ReadStatement(block);
// stop if there's nothing left to read
if (obj == null)
break;
if (lastType != SkopikDataType.None)
{
if (obj.DataType != lastType)
throw new InvalidOperationException($"Error reading tuple on line {Reader.CurrentLine}: Type mismatch!");
}
else
{
// setup the tuple
lastType = obj.DataType;
tuple = new SkopikTuple(lastType, name);
block = tuple;
}
tuple.Entries.Add(obj);
if (!Reader.EndOfLine)
{
var op = Reader.PeekToken();
if (Skopik.IsDelimiter(op, SkopikDataType.Tuple))
Reader.PopToken();
}
}
return tuple;
}
public SkopikReader(Stream stream)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream), "Stream cannot be null.");
Reader = new TokenReader(stream);
}
}
}