-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmlconsole.pas
563 lines (515 loc) · 14.4 KB
/
xmlconsole.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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
{
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
XMLConsole;
Interface
Uses
Classes,
SysUtils,
StrUtils,
Stacks,
XMLScanner,
XMLParser,
XMLNodes,
ExprNodes,
ExpressionParser;
Type
EUnknownCommand = Class(Exception);
ENoSuchChild = Class(Exception);
TXMLCustomConsole = Class;
TTokenList = Array Of String;
TXMLObjectMessage = Record
MsgStr : String[255];
Data : Pointer;
End;
TXMLAccessStack = Class;
TXMLConsoleMessageKind = (mkDebug, mkError, mkResponse, mkInfo);
TXMLVerbosity = Array[mkDebug..mkInfo] Of Boolean;
TXMLCustomConsole = Class
Private
fCommandLine : String;
fFocused : TXMLNode;
fRunning : Boolean;
fStack : TXMLAccessStack;
fVerbosity : TXMLVerbosity;
fPrompt : String;
Public
Constructor Create;
Destructor Destroy; Override;
{ Virtual Console Handling }
Function ReadLine: String; Virtual; Abstract;
Procedure Out(Const aKind : TXMLConsoleMessageKind; Const aLine : String); Virtual; Abstract;
Procedure OutLn(Const aKind : TXMLConsoleMessageKind; Const aLine : String); Virtual; Abstract;
Procedure Process; Virtual;
Function AtLeast(Const aCount : Integer): Boolean;
{ Command handlers }
Procedure Submit; Virtual;
Procedure DefaultHandlerStr(Var Message); Override;
Procedure Save(Var Message); Message 'save';
Procedure Load(Var Message); Message 'load';
Procedure Focus(Var Message); Message 'focus';
Procedure Up(Var Message); Message 'up';
Procedure ListChilds(Var Message); Message 'list';
Procedure ListCommands(Var Message); Message 'help';
Procedure AddChild(Var Message); Message 'add';
Procedure DeleteChild(Var Message); Message 'delete';
Procedure SetProperty(Var Message); Message 'setproperty';
Procedure SetText(Var Message); Message 'settext';
Procedure DelProp(Var Message); Message 'deleteproperty';
Procedure PurgeProp(Var Message); Message 'purgeproperties';
Procedure Quit(Var Message); Message 'quit';
Procedure Print(Var Message); Message 'print';
Procedure SetVerbosity(Var Message); Message 'setverbosity';
Procedure GetVerbosity(Var Message); Message 'verbosity';
Procedure SetPrompt(Var Message); Message 'setprompt';
{ Event Handlers }
Procedure DoLoadFromFile(Const aFileName : String);
Procedure DoSaveToFile(Const aFileName : String);
Procedure DoFocus(Const aTarget : TXMLNode); Virtual;
{ Properties }
Property CommandLine : String Read fCommandLine;
Property Stack: TXMLAccessStack Read fStack;
Property Focused : TXMLNode Read fFocused;
Property Running : Boolean Read fRunning;
Property Verbosity : TXMLVerbosity Read fVerbosity Write fVerbosity;
Property Prompt : String Read fPrompt Write fPrompt;
End;
TXMLAccessStack = Class(TVirtualMachineStack)
Private
fConsole : TXMLCustomConsole;
Public
{ Function handlers }
Procedure GetProperty(Var aMessage); Message 'getproperty';
Procedure GetText(Var aMessage); Message 'gettext';
Procedure Accept(Var aMessage); Message 'accept';
Property Console : TXMLCustomConsole Read fConsole Write fConsole;
End;
Function ConcatenateStrings(Const aStrings : TTokenList): String;
Implementation
Function ConcatenateStrings(Const aStrings : TTokenList): String;
Var
lCtrl : Integer;
Begin
Result := '';
For lCtrl := Low(aStrings) To High(aStrings) Do
If lCtrl <> High(aStrings) Then
Result := Result + aStrings[lCtrl] + ', '
Else
Result := Result + aStrings[lCtrl];
End;
{ TXMLCustomConsole }
Constructor TXMLCustomConsole.Create;
Begin
Inherited Create;
fRunning := True;
fStack := TXMLAccessStack.Create;
fStack.Console := Self;
fVerbosity[mkDebug] := True;
fVerbosity[mkError] := True;
fVerbosity[mkResponse] := True;
fVerbosity[mkInfo] := True;
fPrompt := '$F>';
End;
Destructor TXMLCustomConsole.Destroy;
Begin
fStack.Free;
Inherited Destroy;
End;
Procedure TXMLCustomConsole.Process;
Var
lTmp : String;
lParser : TExpressionParser;
Begin
Try
Try
lTmp := ReadLine;
If Length(lTmp) > 0 Then
Begin
fCommandLine := Copy2SymbDel(lTmp, ' ');
lParser := TExpressionParser.Create(lTmp, fStack);
If Length(lTmp) > 0 Then
lParser.Evaluate(False);
If lParser.Error Then
OutLn(mkError, 'At Expression "' + lTmp + '" column ' + IntToStr(lParser.ErrorCol) + ' got : ' + lParser.ErrorString)
Else
Submit;
End
Else
OutLn(mkError, 'Empty command line.');
Finally
lParser.Free;
End;
Except
On E : Exception Do
OutLn(mkError, E.Message);
End;
End;
Function TXMLCustomConsole.AtLeast(Const aCount : Integer): Boolean;
Begin
Result := fStack.Top.AtLeast(aCount);
End;
Procedure TXMLCustomConsole.Submit;
Var
lMsg : TXMLObjectMessage;
Begin
lMsg.MsgStr := fCommandLine;
lMsg.Data := Nil;
DispatchStr(lMsg);
End;
Procedure TXMLCustomConsole.DefaultHandlerStr(Var Message);
Begin
OutLn(mkError, 'No handler for the command : ' + fCommandLine);
fStack.Purge;
End;
Procedure TXMLCustomConsole.Save(Var Message);
Begin
If AtLeast(1) Then
Begin
fStack.Enter(1);
OutLn(mkInfo, 'Saving to file ' + fStack.Top.Peek(0));
DoSaveToFile(fStack.Top.Top);
OutLn(mkInfo, 'Done.');
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Not enough parameters.');
OutLn(mkInfo, 'Format : ');
OutLn(mkInfo, ' SAVE <filename>');
End;
fStack.Purge;
End;
Procedure TXMLCustomConsole.Load(Var Message);
Begin
If AtLeast(1) Then
Begin
fStack.Enter(1);
If FileExists(fStack.Top.Peek(0)) Then
Begin
OutLn(mkInfo, 'Loading from file ' + fStack.Top.Peek(0));
DoLoadFromFile(fStack.Top.Top);
OutLn(mkInfo, 'Done.');
End
Else
OutLn(mkError, 'Cannot find file : "' + fStack.Top.Peek(0) + '".');
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Not enough parameters.');
OutLn(mkInfo, 'Format : ');
OutLn(mkInfo, ' LOAD <filename>');
End;
End;
Procedure TXMLCustomConsole.Focus(Var Message);
Var
lTarget : TXMLNode;
Begin
If AtLeast(1) Then
Begin
fStack.Enter(1);
lTarget := fFocused.Locate(fStack.Top.Peek(0)) As TXMLNode;
If Assigned(lTarget) Then
fFocused := lTarget
Else
OutLn(mkError, 'Cannot locate node : "' + fStack.Top.Peek(0) + '".');
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Please specify target.');
OutLn(mkInfo, 'Format :');
OutLn(mkInfo, ' FOCUS <dom>');
End;
End;
Procedure TXMLCustomConsole.Up(Var Message);
Begin
If Assigned(fFocused.Owner) Then
fFocused := fFocused.Owner As TXMLNode
Else
OutLn(mkError, 'Cannot go upper than root node.');
End;
Procedure TXMLCustomConsole.ListChilds(Var Message);
Begin
OutLn(mkInfo, 'Listing childs :');
fFocused.First;
While Not(fFocused.IsAfterLast) Do
Begin
OutLn(mkResponse, '"' + (fFocused.GetCurrent As TXMLNode).IndexedName + '", "' + IntToStr(fFocused.GetCurrentIndex) + '"');
fFocused.Next;
End;
OutLn(mkInfo, 'Done.');
End;
Procedure TXMLCustomConsole.ListCommands(Var Message);
Var
lCtrl : Integer;
lCommands : TTokenList;
lClass : TClass;
Begin
SetLength(lCommands, 0);
lClass := Self.ClassType;
While Assigned(lClass) Do
Begin
If lClass.StringMessageTable <> Nil Then
If lClass.StringMessageTable^.Count > 0 Then
For lCtrl := 0 To lClass.StringMessageTable^.Count - 1 Do
Begin
SetLength(lCommands, Length(lCommands) + 1);
lCommands[High(lCommands)] := UpCase((lClass.StringMessageTable^.MsgStrTable[lCtrl].Name^));
End;
lClass := lClass.ClassParent;
End;
OutLn(mkInfo, 'Available Commands :');
OutLn(mkResponse, '"' + ConcatenateStrings(lCommands) + '"');
End;
Procedure TXMLCustomConsole.AddChild(Var Message);
Begin
If AtLeast(1) Then
Begin
fStack.Enter(1);
OutLn(mkInfo, 'Creating a child with tag ' + fStack.Top.Peek(0));
(XMLClassFactory.Build(fStack.Top.Peek(0), fFocused) As TXMLNode).Name := fStack.Top.Peek(0);
OutLn(mkInfo, 'Done.');
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Must specify child class');
OutLn(mkInfo, 'Format :');
OutLn(mkInfo, ' ADD <tag>');
End;
End;
Procedure TXMLCustomConsole.DeleteChild(Var Message);
Var
lTargetOwner,
lTarget : TXMLNode;
Begin
If AtLeast(1) Then
Begin
fStack.Enter(1);
lTarget := fFocused.Locate(fStack.Top.Peek(0)) As TXMLNode;
If Assigned(lTarget) Then
If lTarget <> (fFocused.FindRoot As TXMLNode) Then
Begin
OutLn(mkInfo, 'Deleting node "' + fStack.Top.Peek(0) + '".');
If fFocused = lTarget Then
fFocused := lTarget.Owner As TXMLNode;
lTargetOwner := lTarget.Owner As TXMLNode;
lTargetOwner.Delete(lTarget);
OutLn(mkInfo, 'Done.');
End
Else
OutLn(mkError, 'Cannot delete the root node.')
Else
OutLn(mkError, 'Cannot locate node.');
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Must specify child name');
OutLn(mkInfo, 'Format : ');
OutLn(mkInfo, ' DELETE <dom>');
End;
End;
Procedure TXMLCustomConsole.SetProperty(Var Message);
Begin
If AtLeast(2) Then
Begin
fStack.Enter(2);
fStack.Enter(2);
(fFocused As TXMLNode).Properties.SetValue(fStack.Top.Peek(0), fStack.Top.Peek(1));
fStack.Enter(2);
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Not enough parameters.');
OutLn(mkInfo, 'Format : ');
OutLn(mkInfo, ' SETPROPERTY <propertyname>, <propertyvalue>');
End;
End;
Procedure TXMLCustomConsole.SetText(Var Message);
Begin
If AtLeast(1) Then
Begin
fStack.Enter(1);
fFocused.SetTextChild(fStack.Top.Peek(0));
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Not enough parameters.');
OutLn(mkInfo, 'Format : ');
OutLn(mkInfo, ' SETTEXT <propertyname>, <propertyvalue>');
End;
End;
Procedure TXMLCustomConsole.DelProp(Var Message);
Begin
If AtLeast(1) Then
Begin
fStack.Enter(1);
fFocused.Properties.Delete(fFocused.Properties.Find(fStack.Top.Peek(0)));
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Not enough parameters.');
OutLn(mkInfo, 'Format :');
OutLn(mkInfo, ' DELPROP <propertyname>');
End;
End;
Procedure TXMLCustomConsole.PurgeProp(Var Message);
Begin
OutLn(mkDebug, 'Deleting all properties of current node.');
fFocused.Properties.Purge;
End;
Procedure TXMLCustomConsole.Quit(Var Message);
Begin
OutLn(mkInfo, 'Quitting');
fRunning := False;
End;
Procedure TXMLCustomConsole.SetVerbosity(Var Message);
Begin
If AtLeast(2) Then
Begin
fStack.Enter(2);
fStack.Enter(2);
If LowerCase(fStack.Top.Peek(0)) = 'debug' Then
fVerbosity[mkDebug] := fStack.Top.Peek(1)
Else If LowerCase(fStack.Top.Peek(0)) = 'error' Then
fVerbosity[mkError] := fStack.Top.Peek(1)
Else If LowerCase(fStack.Top.Peek(0)) = 'response' Then
fVerbosity[mkResponse] := fStack.Top.Peek(1)
Else If LowerCase(fStack.Top.Peek(0)) = 'info' Then
fVerbosity[mkInfo] := fStack.Top.Peek(1);
fStack.Leave(0);
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Not enough parameters.');
OutLn(mkInfo, 'Format : ');
OutLn(mkInfo, ' SETVERBOSE { ''debug'' | ''error'' | ''response'' | ''info'' }, { ''true'' | ''false'' }');
End;
End;
Procedure TXMLCustomConsole.GetVerbosity(Var Message);
Begin
OutLn(mkInfo, 'Verbosity options :');
If fVerbosity[mkDebug] Then
OutLn(mkResponse, 'DEBUG = TRUE')
Else
OutLn(mkResponse, 'DEBUG = FALSE');
If fVerbosity[mkError] Then
OutLn(mkResponse, 'ERROR = TRUE')
Else
OutLn(mkResponse, 'ERROR = FALSE');
If fVerbosity[mkResponse] Then
OutLn(mkResponse, 'RESPONSE = TRUE')
Else
OutLn(mkResponse, 'RESPONSE = FALSE');
If fVerbosity[mkInfo] Then
OutLn(mkResponse, 'INFO = TRUE')
Else
OutLn(mkResponse, 'INFO = FALSE');
End;
Procedure TXMLCustomConsole.SetPrompt(Var Message);
Begin
If AtLeast(1) Then
Begin
fStack.Enter(1);
fPrompt := fStack.Top.Peek(0);
fStack.Leave(0);
End
Else
Begin
OutLn(mkError, 'Must specify child class');
OutLn(mkInfo, 'Format :');
OutLn(mkInfo, ' SETPROMPT <prompt>');
End;
End;
Procedure TXMLCustomConsole.Print(Var Message);
Begin
While fStack.Top.AtLeast(1) Do
OutLn(mkResponse, fStack.Top.Pop);
End;
Procedure TXMLCustomConsole.DoLoadFromFile(Const aFileName : String);
Var
lFile : TFileStream;
lSource : TXMLSource;
lTokens : TMemoryStream;
lScanner : TXMLScanner;
lTokenIterator : TXMLTokenIterator;
lParser : TXMLParser;
Begin
fFocused.Purge;
lFile := Nil;
lSource := Nil;
lTokens := Nil;
lScanner := Nil;
lTokenIterator := Nil;
lParser := Nil;
Try
lFile := TFileStream.Create(aFileName, fmOpenRead);
lSource := TXMLSource.Create(lFile, False);
lTokens := TMemoryStream.Create;
lScanner := TXMLScanner.Create(lSource, lTokens, False);
lScanner.Scan;
lTokenIterator := TXMLTokenIterator.Create(lTokens, False);
lParser := TXMLParser.Create(lTokenIterator, fFocused, False);
lParser.Parse;
Finally
FreeAndNil(lFile);
FreeAndNil(lSource);
FreeAndNil(lTokens);
FreeAndNil(lScanner);
FreeAndNil(lTokenIterator);
FreeAndNil(lParser);
End;
End;
Procedure TXMLCustomConsole.DoSaveToFile(Const aFileName : String);
Var
lFile : TStringList;
lAsXMLIterator : TXMLAsTextIterator;
Begin
lFile := Nil;
lAsXMLIterator := Nil;
Try
lFile := TStringList.Create;
lAsXMLIterator := TXMLAsTextIterator.Create;
lAsXMLIterator.Visit(fFocused);
lFile.Text := lAsXMLIterator.Output;
lFile.SaveToFile(aFileName);
Finally
FreeAndNil(lAsXMLIterator);
FreeAndNil(lFile);
End;
End;
Procedure TXMLCustomConsole.DoFocus(Const aTarget : TXMLNode);
Begin
fFocused := aTarget;
End;
{ TXMLAccessStack }
Procedure TXMLAccessStack.GetProperty(Var aMessage);
Begin
Top.Push((fConsole.Focused.Locate(Top.Pop) As TXMLNode).Properties.GetValue(Top.Pop));
End;
Procedure TXMLAccessStack.GetText(Var aMessage);
Begin
Top.Push((fConsole.Focused.Locate(Top.Pop) As TXMLNode).GetTextChild);
End;
Procedure TXMLAccessStack.Accept(Var aMessage);
Var
lTmp : String;
Begin
ReadLn(lTmp);
Top.Push(lTmp);
End;
End.