-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmlscanner.pas
549 lines (502 loc) · 14.9 KB
/
xmlscanner.pas
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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
{
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
}
// Copyright (c) 2010 - J. Aldo G. de Freitas Junior
Unit
XMLScanner;
Interface
Uses
Classes,
SysUtils,
StrUtils,
Stacks;
Type
EXMLScannerError = Class(Exception);
EXMLParserError = Class(Exception);
TXMLSource = Class
Private
fOwnsSource : Boolean;
fSource : TStream;
fTempRow,
fTempCol,
fRow,
fCol : Integer;
fNext : Char;
Public
Constructor Create(Const aSource : TStream; Const aOwnsSource : Boolean = True); Virtual;
Destructor Destroy; Override;
Property Row : Integer Read fRow;
Property Col : Integer Read fCol;
Procedure Mark;
Procedure HardGetNext;
Procedure SoftGetNext;
Function IsEOF : Boolean;
Procedure RaiseError(Const aMsg : String);
Property Next : Char Read fNext;
End;
TXMLTokenKind = (tkXMLWhite, tkXMLOpenTag, tkXMLCloseTag, tkXMLIdentifier, tkXMLText,
tkXMLString, tkXMLSlash, tkXMLExclamation, tkXMLQuestion, tkXMLEqual, tkXMLEOF);
TXMLScanner = Class
Private
fOwnsSource : Boolean;
fSource : TXMLSource;
fDestination : TStream;
Procedure AppendToOutput(Const aLiteral : String; Const aKind : TXMLTokenKind);
Procedure ScanWhite;
Procedure ScanIdentifier;
Procedure ScanString;
Procedure ScanText;
Procedure ScanPunct;
Procedure ScanTag;
Public
Constructor Create(Const aSource : TXMLSource; Const aDestination : TStream; Const aOwnsSource : Boolean = True); Virtual;
Destructor Destroy; Override;
Procedure Scan;
End;
TXMLTokenIterator = Class
Private
fOwnsSource : Boolean;
fStack : TIntegerStack;
fSource : TStream;
fKind : TXMLTokenKind;
fLastPosition : Integer;
fLiteral : String;
fRow,
fCol : Integer;
Public
Constructor Create(Const aSource : TStream; Const aOwnsSource : Boolean = True); Virtual;
Destructor Destroy; Override;
Procedure Start;
Procedure Next;
Procedure Mark;
Procedure Recall;
Function Expected(Const aLiteral : String; Const aHaltIfNotFound : Boolean = False): Boolean; Overload;
Function Expected(Const aKind : TXMLTokenKind; Const aHaltIfNotFound : Boolean = False): Boolean; Overload;
Function Expected(Const aKinds : Array Of TXMLTokenKind; Const aHaltIfNotFound : Boolean = False): Boolean; Overload;
Function Consume(Const aLiteral : String; Const aHaltIfNotFound : Boolean = True): Boolean; Overload;
Function Consume(Const aKind : TXMLTokenKind; Const aHaltIfNotFound : Boolean = True): Boolean; Overload;
Function ConsumeElse(Const aLiteral, aAlternative : String): Boolean;
Function Match(Const aKinds : Array Of TXMLTokenKind): Boolean;
Function Extract(Const aKind : TXMLTokenKind): String;
Function IsEOS: Boolean;
Procedure RaiseError(Const aMsg : String);
Property Kind : TXMLTokenKind Read fKind;
Property Literal : String Read fLiteral;
Property Row : Integer Read fRow;
Property Col : Integer Read fCol;
End;
Implementation
Constructor TXMLSource.Create(Const aSource : TStream; Const aOwnsSource : Boolean = True);
Begin
Inherited Create;
fSource := aSource;
fOwnsSource := aOwnsSource;
fTempRow := 1;
fTempCol := 0;
fRow := 1;
fCol := 0;
fNext := #00;
End;
Destructor TXMLSource.Destroy;
Begin
If fOwnsSource Then
fSource.Free;
Inherited Destroy;
End;
Procedure TXMLSource.Mark;
Begin
fRow := fTempRow;
fCol := fTempCol;
End;
Procedure TXMLSource.HardGetNext;
Begin
Try
fNext := Char(fSource.ReadByte);
Except
On E: Exception Do
fNext := #00;
End;
End;
Procedure TXMLSource.SoftGetNext;
Begin
HardGetNext;
Case fNext Of
#13 :
fTempCol := 1;
#10 :
Begin
fTempCol := 1;
fTempRow := fTempRow + 1;
End;
Else
fTempCol := fTempCol + 1;
End;
End;
Function TXMLSource.IsEOF: Boolean;
Begin
Result := fSource.Position >= fSource.Size;
End;
Procedure TXMLSource.RaiseError(Const aMsg : String);
Begin
Raise EXMLScannerError.Create('(Row : ' + IntToStr(fRow) + ', Column : ' + IntToStr(fCol) + ', Char : ' + IntToStr(Byte(fNext)) + ',"' + fNext + '"): ' + aMsg);
End;
Procedure TXMLScanner.AppendToOutput(Const aLiteral : String; Const aKind : TXMLTokenKind);
Begin
If Not(IsEmptyStr(aLiteral, [#32, #13, #10, #09])) Then
Begin
fDestination.WriteByte(Ord(aKind));
fDestination.WriteAnsiString(aLiteral);
fDestination.WriteDWord(fSource.Row);
fDestination.WriteDWord(fSource.Col);
End;
End;
Procedure TXMLScanner.ScanWhite;
Begin
fSource.Mark;
While (fSource.Next In [#32, #09, #13, #10]) And Not(fSource.IsEOF) Do
fSource.SoftGetNext;
// AppendToOutput('', tkXMLWhite);
End;
Procedure TXMLScanner.ScanIdentifier;
Var
fLiteral : String;
Begin
fLiteral := '';
fSource.Mark;
While (fSource.Next In ['a'..'z', 'A'..'Z', '0'..'9', '-', '_']) And Not(fSource.IsEOF) Do
Begin
fLiteral := fLiteral + fSource.Next;
fSource.SoftGetNext;
End;
AppendToOutput(fLiteral, tkXMLIdentifier);
End;
Procedure TXMLScanner.ScanString;
Var
fLiteral : String;
Begin
fLiteral := '';
fSource.Mark;
fSource.SoftGetNext;
While (fSource.Next <> '"') And Not(fSource.IsEOF) And Not(fSource.Next In [#13, #10]) Do
Begin
fLiteral := fLiteral + fSource.Next;
fSource.SoftGetNext;
End;
If fSource.Next = '"' Then
Begin
AppendToOutput(fLiteral, tkXMLString);
fSource.SoftGetNext;
End
Else
If fSource.Next In [#13, #10] Then
fSource.RaiseError('String exceeds line.')
Else
fSource.RaiseError('Unexpected end of file.');
End;
Procedure TXMLScanner.ScanText;
Var
fLiteral : String;
Begin
fLiteral := '';
fSource.Mark;
While (fSource.Next <> '<') And Not(fSource.IsEOF) Do
Begin
fLiteral := fLiteral + fSource.Next;
fSource.SoftGetNext;
End;
fLiteral := AdjustLineBreaks(fLiteral);
AppendToOutput(fLiteral, tkXMLText);
End;
Procedure TXMLScanner.ScanPunct;
Begin
fSource.Mark;
Case fSource.Next Of
'<' :
Begin
AppendToOutput('<', tkXMLOpenTag);
fSource.SoftGetNext;
End;
'>' :
Begin
AppendToOutput('>', tkXMLCloseTag);
fSource.SoftGetNext;
End;
'!' :
Begin
AppendToOutput('!', tkXMLExclamation);
fSource.SoftGetNext;
End;
'?' :
Begin
AppendToOutput('?', tkXMLQuestion);
fSource.SoftGetNext;
End;
'/' :
Begin
AppendToOutput('/', tkXMLSlash);
fSource.SoftGetNext;
End;
'=' :
Begin
AppendToOutput('=', tkXMLEqual);
fSource.SoftGetNext;
End;
End;
End;
Procedure TXMLScanner.ScanTag;
Begin
If fSource.Next = '<' Then
ScanPunct;
While (fSource.Next <> '>') And Not(fSource.IsEOF) Do
Begin
If fSource.Next In [#32, #09, #13, #10] Then
ScanWhite
Else If fSource.Next In ['a'..'z', 'A'..'Z', '0'..'9', '-', '_'] Then
ScanIdentifier
Else If fSource.Next In ['/', '!', '?', '='] Then
ScanPunct
Else If fSource.Next = '"' Then
ScanString
Else If fSource.Next In [#13, #10] Then
fSource.RaiseError('Tag exceeds end of line.')
Else
fSource.RaiseError('Unknow char at input.');
End;
If fSource.Next = '>' Then
ScanPunct
Else
fSource.RaiseError('Tag exceeds end of file.');
End;
Constructor TXMLScanner.Create(Const aSource : TXMLSource; Const aDestination : TStream; Const aOwnsSource : Boolean = True);
Begin
Inherited Create;
fSource := aSource;
fDestination := aDestination;
fOwnsSource := aOwnsSource;
End;
Destructor TXMLScanner.Destroy;
Begin
If fOwnsSource Then
fSource.Free;
Inherited Destroy;
End;
Procedure TXMLScanner.Scan;
Begin
fSource.SoftGetNext;
While Not(fSource.IsEOF) Do
If fSource.Next = '<' Then
ScanTag
Else
ScanText;
AppendToOutput('', tkXMLEOF);
End;
Constructor TXMLTokenIterator.Create(Const aSource : TStream; Const aOwnsSource : Boolean = True);
Begin
Inherited Create;
fStack := TIntegerStack.Create;
fSource := aSource;
fOwnsSource := aOwnsSource;
fLastPosition := 0;
End;
Destructor TXMLTokenIterator.Destroy;
Begin
If fOwnsSource Then
fSource.Free;
fStack.Free;
Inherited Destroy;
End;
Procedure TXMLTokenIterator.Start;
Begin
fSource.Seek(0, soFromBeginning);
Next;
End;
Procedure TXMLTokenIterator.Next;
Begin
fLastPosition := fSource.Position;
If fSource.Position < fSource.Size Then
Begin
fKind := TXMLTokenKind(fSource.ReadByte);
fLiteral := fSource.ReadAnsiString;
fRow := fSource.ReadDWord;
fCol := fSource.ReadDWord;
End
Else
Begin
fKind := tkXMLEOF;
fLiteral := '';
End;
// Debug WriteLn('Position : ', fSource.Position, ' Size : ', fSource.Size);
// Debug WriteLn('Literal : ', fLiteral, ' Kind : ', fKind);
End;
Procedure TXMLTokenIterator.Mark;
Begin
fStack.Push(fLastPosition);
End;
Procedure TXMLTokenIterator.Recall;
Begin
fSource.Seek(fStack.Pop, soFromBeginning);
Next;
End;
Function TXMLTokenIterator.Expected(Const aLiteral : String; Const aHaltIfNotFound : Boolean = False): Boolean;
Begin
Result := fLiteral = aLiteral;
If aHaltIfNotFound And Not(Result) Then
RaiseError('Expected ' + aLiteral + '.')
End;
Function TXMLTokenIterator.Expected(Const aKind : TXMLTokenKind; Const aHaltIfNotFound : Boolean = False): Boolean;
Begin
Result := fKind = aKind;
If aHaltIfNotFound And Not(Result) Then
Case aKind Of
tkXMLWhite : RaiseError('Expected whitespace (?).');
tkXMLOpenTag : RaiseError('Expected "<".');
tkXMLCloseTag : RaiseError('Expected ">".');
tkXMLIdentifier : RaiseError('Expected identifier.');
tkXMLText : RaiseError('Expected text.');
tkXMLString : RaiseError('Expected quoted string.');
tkXMLSlash : RaiseError('Expected "/".');
tkXMLExclamation : RaiseError('Expected "!".');
tkXMLQuestion : RaiseError('Expected "?".');
tkXMLEqual : RaiseError('Expected "=".');
tkXMLEOF : RaiseError('Expected end of file.');
End;
End;
Function TXMLTokenIterator.Expected(Const aKinds : Array Of TXMLTokenKind; Const aHaltIfNotFound : Boolean = False): Boolean;
Var
lCtrl : Integer;
Function ExpectedNames: String;
Var
lCtrl2 : Integer;
Begin
Result := 'Expected ';
If Length(aKinds) = 1 Then
Case aKinds[Low(aKinds)] Of
tkXMLWhite : Result := Result + 'whitespace';
tkXMLOpenTag : Result := Result + '"<"';
tkXMLCloseTag : Result := Result + '">"';
tkXMLIdentifier : Result := Result + 'identifier';
tkXMLText : Result := Result + 'text';
tkXMLString : Result := Result + 'quoted string';
tkXMLSlash : Result := Result + '"/"';
tkXMLExclamation : Result := Result + '"!"';
tkXMLQuestion : Result := Result + '"?"';
tkXMLEqual : Result := Result + '"="';
tkXMLEOF : Result := Result + 'end of file';
End
Else
If Length(aKinds) = 2 Then
Begin
Case aKinds[Low(aKinds)] Of
tkXMLWhite : Result := Result + 'whitespace, ';
tkXMLOpenTag : Result := Result + '"<", ';
tkXMLCloseTag : Result := Result + '">", ';
tkXMLIdentifier : Result := Result + 'identifier, ';
tkXMLText : Result := Result + 'text, ';
tkXMLString : Result := Result + 'quoted string, ';
tkXMLSlash : Result := Result + '"/", ';
tkXMLExclamation : Result := Result + '"!", ';
tkXMLQuestion : Result := Result + '"?", ';
tkXMLEqual : Result := Result + '"=", ';
tkXMLEOF : Result := Result + 'end of file, ';
End;
Case aKinds[High(aKinds)] Of
tkXMLWhite : Result := Result + 'whitespace';
tkXMLOpenTag : Result := Result + '"<"';
tkXMLCloseTag : Result := Result + '">"';
tkXMLIdentifier : Result := Result + 'identifier';
tkXMLText : Result := Result + 'text';
tkXMLString : Result := Result + 'quoted string';
tkXMLSlash : Result := Result + '"/"';
tkXMLExclamation : Result := Result + '"!"';
tkXMLQuestion : Result := Result + '"?"';
tkXMLEqual : Result := Result + '"="';
tkXMLEOF : Result := Result + 'end of file';
End
End
Else
For lCtrl2 := Low(aKinds) To High(aKinds) Do
Begin
Case aKinds[lCtrl2] Of
tkXMLWhite : Result := Result + 'whitespace';
tkXMLOpenTag : Result := Result + '"<"';
tkXMLCloseTag : Result := Result + '">"';
tkXMLIdentifier : Result := Result + 'identifier';
tkXMLText : Result := Result + 'text';
tkXMLString : Result := Result + 'quoted string';
tkXMLSlash : Result := Result + '"/"';
tkXMLExclamation : Result := Result + '"!"';
tkXMLQuestion : Result := Result + '"?"';
tkXMLEqual : Result := Result + '"="';
tkXMLEOF : Result := Result + 'end of file';
End;
If lCtrl2 < (High(aKinds) - 1) Then
Result := Result + ', '
Else
If lCtrl2 = (High(aKinds) - 1) Then
Result := Result + ' or '
Else
If lCtrl2 = High(aKinds) Then
Result := Result + '.';
End;
End;
Begin
For lCtrl := Low(aKinds) To High(aKinds) Do
Result := Expected(aKinds[lCtrl]);
If aHaltIfNotFound And Not(Result) Then
RaiseError(ExpectedNames);
End;
Function TXMLTokenIterator.Consume(Const aLiteral : String; Const aHaltIfNotFound : Boolean = True): Boolean;
Begin
// Debug WriteLn('Consuming ', aLiteral);
Result := Expected(aLiteral, aHaltIfNotFound);
If Result Then
Next;
End;
Function TXMLTokenIterator.Consume(Const aKind : TXMLTokenKind; Const aHaltIfNotFound : Boolean = True): Boolean;
Begin
// Debug WriteLn('Consuming ', aKind);
Result := Expected(aKind, aHaltIfNotFound);
If Result Then
Next;
End;
Function TXMLTokenIterator.ConsumeElse(Const aLiteral, aAlternative : String): Boolean;
Begin
Result := Consume(aLiteral, False);
If Not(Result) Then
Consume(aAlternative, True);
End;
Function TXMLTokenIterator.Match(Const aKinds : Array Of TXMLTokenKind): Boolean;
Var
lCtrl : Integer;
Begin
// Debug WriteLn('Matching :');
Mark;
Result := True;
For lCtrl := Low(aKinds) To High(aKinds) Do
Begin
// Debug WriteLn(fKind, '->', aKinds[lCtrl]);
Result := Result And (fKind = aKinds[lCtrl]);
Next;
End;
Recall;
End;
Function TXMLTokenIterator.Extract(Const aKind : TXMLTokenKind): String;
Begin
Result := fLiteral;
Consume(aKind);
End;
Function TXMLTokenIterator.IsEOS: Boolean;
Begin
Result := fSource.Position >= fSource.Size;
End;
Procedure TXMLTokenIterator.RaiseError(Const aMsg : String);
Begin
Raise EXMLParserError.Create('(Row : ' + IntToStr(fRow) + ', Column : ' + IntToStr(fCol) + ', Token : "' + fLiteral + '"): ' + aMsg);
End;
End.