-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuhtml.pas
693 lines (621 loc) · 19.7 KB
/
uhtml.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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
(******************************************************************************)
(* uhtml.pas 04.03.2021 *)
(* *)
(* Version : 0.01 *)
(* *)
(* Autor : Corpsman *)
(* *)
(* Support : www.Corpsman.de *)
(* *)
(* Description : This is a HTML DOM Parser it will parse the content of a *)
(* HTML-File into a THTMLDocument, which itself can than *)
(* be used for further works *)
(* *)
(* Usage: THTMLParser.Create *)
(* doc := THTMLParser.Parse() *)
(* *)
(* License : This component is postcardware for non commercial use only. *)
(* If you like the component, send me a postcard: *)
(* *)
(* Uwe Schächterle *)
(* Buhlstraße 85 *)
(* 71384 Weinstadt - Germany *)
(* *)
(* It is not allowed to change or remove this license from any *)
(* source file of the project. *)
(* *)
(* *)
(* Warranty : There is no warranty, use at your own risk. *)
(* *)
(* History : 0.01 - Initial version *)
(* *)
(* Known Bugs : none *)
(* *)
(******************************************************************************)
Unit uhtml;
{$MODE objfpc}{$H+}
Interface
(*
* Verwendete Quellen: https://www.w3schools.com/tags/tag_doctype.asp
* https://www.w3.org/TR/html52/introduction.html#a-quick-introduction-to-html
* https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
*)
Uses
Classes, SysUtils;
Type
TAttribut = Record
Name: String;
Value: String;
End;
{ THTMLElement }
THTMLElement = Class // Der BasisTag von dem Alles Ableitet
private
fName: String;
fAttributes: Array Of TAttribut;
fContent: Array Of THTMLElement;
Function getAttribute(Index: integer): TAttribut;
Function getAttributeCount: integer;
Function getContent(Index: integer): THTMLElement;
Function getContentCount: integer;
Procedure parse(); virtual;
Function parseAttributes(): Boolean; virtual;
Function AttribsToString(): String;
public
Property Name: String read fName;
Property AttributeCount: integer read getAttributeCount;
Property Attribute[Index: integer]: TAttribut read getAttribute;
Property ContentCount: integer read getContentCount;
Property Content[Index: integer]: THTMLElement read getContent;
Constructor Create(); virtual;
Destructor Destroy(); override;
Function ToString(FrontSpace: String = ''; IncludeComments: Boolean = false): String; virtual;
End;
{ THTMLComment }
THTMLComment = Class(THTMLElement) // <!--Text-->
private
fComment: String;
Procedure parse(); override;
public
Property Comment: String read fComment;
Function ToString(FrontSpace: String = ''; IncludeComments: Boolean = false): String; override;
End;
{ TDocumentType }
TDocumentType = Class(THTMLElement) // <!DOCTYPE html Attribute >
private
Procedure parse(); override;
public
Function ToString(FrontSpace: String = ''; IncludeComments: Boolean = false): String; override;
End;
{ TSingleTagElement }
TSingleTagElement = Class(THTMLElement) // <br>, <hr> ...
private
Procedure parse(); override;
public
Function ToString(FrontSpace: String = ''; IncludeComments: Boolean = false): String; override;
End;
{ TTextElement }
TTextElement = Class(THTMLElement)
private
fText: String;
Procedure parse(); override;
public
Property Text: String read fText;
Function ToString(FrontSpace: String = ''; IncludeComments: Boolean = false): String; override;
End;
{ THTMLDocument }
THTMLDocument = Class(tobject)
private
fDocumentType: TDocumentType;
fContent: THTMLElement;
Procedure parse();
public
Property Document: THTMLElement read fContent;
Property DocumentType: TDocumentType read fDocumentType;
Constructor Create(); virtual;
Destructor Destroy(); override;
Function ToString(FrontSpace: String = ''; IncludeComments: Boolean = False): String;
End;
{ THTMLParser }
THTMLParser = Class
private
fLastError: String;
fLastWarning: String;
public
Property LastError: String read fLastError;
Property LastWarning: String read fLastWarning;
Constructor Create(); virtual;
Destructor Destroy(); override;
Function Parse(Content: String): THTMLDocument;
End;
Var
SpaceIdent: String = ' ';
Implementation
Const
// Quelle: https://www.lifewire.com/html-singleton-tags-3468620
HTMLSingleTonElements: Array[0..3] Of String =
(
//, 'area'
//, 'base'
'br'
//, 'col'
//, 'command'
//, 'embed'
, 'hr'
, 'img'
//, 'input'
//, 'keygen'
//, 'link'
, 'meta'
//, 'param'
//, 'source'
//, 'track'
//, 'wbr'
);
Procedure Nop();
Begin
End;
Function IsSingleTon(Value: String): Boolean;
Var
i: Integer;
Begin
result := false;
value := lowercase(Value);
For i := 0 To high(HTMLSingleTonElements) Do Begin
If HTMLSingleTonElements[i] = Value Then Begin
result := true;
break;
End;
End;
End;
(*
* !! Achtung, diese Variablen sorgen dafür das die Unit nicht Thread Safe ist !!
*)
Var
LError, LWarning: String;
ALine, Aindex: Integer;
aContent: String;
(*
* Dieser Lexer Zerlegt nach folgenden Mustern
* Seperatoren = [#0 .. #32] Trennen Tokens werden aber übersprungen
* Operatoren =
* [<, >, =, <!--, -->]
*
*)
Function PopToken(): String;
Var
i: Integer;
inString: Boolean;
Begin
result := '';
// 1. Überspringen aller Separatoren
While (aIndex < length(aContent)) And (aContent[aIndex] <= ' ') Do Begin
If aContent[aIndex] = #10 Then inc(aline);
inc(aIndex);
End;
// Lesen wir ein ", dann handelt es sich um einen String, dieser wird wieder durch ein "
// Beendet
inString := aContent[aIndex] = '"';
If inString Then Begin
For i := aIndex + 1 To length(aContent) Do Begin
If aContent[aIndex] = #10 Then inc(aline);
If aContent[i] = '"' Then Begin
result := copy(aContent, aIndex, i - aIndex + 1);
aIndex := i + 1;
break;
End;
End;
End
Else Begin
// Wir Lesen bis ein Separator oder ein Operator kommt
For i := aIndex To length(aContent) Do Begin
If (aContent[i] <= ' ') Or (aContent[i] In ['<', '>', '=', '-']) Then Begin
(*
* Hier gibt es 2 Fälle
* 1. Das Ergebnis ist direht ein Separator
* 2. Das Ergebnis ist ein "unbekanntes Token" gefolgt von einem Separator
*)
If i = aIndex Then Begin
Case aContent[i] Of
'-': Begin
If (aContent[i + 1] = '-') And (aContent[i + 2] = '>') Then Begin
result := '-->';
Aindex := Aindex + 3;
break;
End;
End;
'<': Begin
If (aContent[i + 1] = '!') And (aContent[i + 2] = '-') And (aContent[i + 3] = '-') Then Begin
result := '<!--';
Aindex := Aindex + 4;
End
Else Begin
result := '<';
Aindex := Aindex + 1;
End;
break;
End;
Else Begin
result := aContent[i];
Aindex := Aindex + 1;
break;
End;
End;
End
Else Begin
If aContent[i] <> '-' Then Begin
result := copy(aContent, aIndex, i - aIndex);
aIndex := aIndex + length(result);
break;
End;
End;
End;
End;
End;
End;
Function PopText(): String;
Var
oline, i: integer;
instring, block: Boolean;
//dbg: String; // Debug
Begin
oline := ALine;
result := '';
If LError <> '' Then exit;
//dbg := '';
instring := false;
block := false;
For i := aIndex To length(aContent) Do Begin
//dbg := dbg + aContent[i];
If (aContent[i] = '/') And (aContent[i + 1] = '/') Then Begin
block := true;
End;
If aContent[i] = '''' Then Begin
instring := Not instring;
End;
If aContent[i] = #10 Then Begin
inc(aline);
block := false;
End;
If (aContent[i] = '<') And (aContent[i + 1] = '/') // Ein Text wird beendet durch den start eines neuen Elements
Or ((Not instring) And (Not block) And ((aContent[i] = '<')))
Then Begin
result := copy(aContent, Aindex, i - Aindex);
Aindex := Aindex + length(result);
exit;
End;
End;
LError := 'Error, reached end of text, while parsing in line [' + inttostr(oline) + ']';
End;
Function PopComment(): String;
Var
oline, i: integer;
Begin
oline := ALine;
result := '';
If LError <> '' Then exit;
For i := aIndex To length(aContent) - 2 Do Begin
If aContent[i] = #10 Then inc(aline);
If (aContent[i] = '-') And (aContent[i + 1] = '-') And (aContent[i + 2] = '>') Then Begin // --> beendet einen Kommentar
result := copy(aContent, Aindex, i - Aindex);
Aindex := Aindex + length(result);
exit;
End;
End;
LError := 'Error, reached end of text, while parsing in line [' + inttostr(oline) + ']';
End;
Function TopToken(LookAhead: Integer = 0): String;
Var
i: Integer;
oaline, oaindex: integer;
Begin
// Bakup der Alten Werte
oaline := ALine;
oaindex := Aindex;
// Weglesen des LookAhead
For i := 0 To LookAhead - 1 Do Begin
PopToken();
End;
// Das gewünschte Element Lesen
result := PopToken();
// Wieder Herstellen der Index, da ja Top und nicht Pop
ALine := oaline;
Aindex := oaindex;
End;
Function Eat(Token: String): Boolean;
Var
s: String;
Begin
If LError <> '' Then Begin
result := false;
exit;
End;
s := PopToken();
If lowercase(s) = LowerCase(Token) Then Begin
result := True;
End
Else Begin
LError := 'Error, expected: "' + Token + '" got "' + s + '" [Line: ' + inttostr(aline) + ']';
result := false;
End;
End;
{ TTextElement }
Procedure TTextElement.parse();
Begin
fText := PopText();
End;
Function TTextElement.ToString(FrontSpace: String; IncludeComments: Boolean): String;
Begin
Result := trim(fText);
End;
{ TSingleTagElement }
Procedure TSingleTagElement.parse();
Begin
If Not Eat('<') Then exit;
fName := PopToken();
If Not parseAttributes() Then exit;
If TopToken() = '/' Then Begin // Eigentlich sollten die Single Tag Elemente kein /> Closing Tag haben, aber manche haben es wohl doch *facepalm*
If Not Eat('/') Then exit;
End;
If Not Eat('>') Then exit;
End;
Function TSingleTagElement.ToString(FrontSpace: String; IncludeComments: Boolean): String;
Begin
result := FrontSpace + '<' + Name + attribsToString() + '>';
End;
{ TDocumentType }
Procedure TDocumentType.parse();
Begin
If Not Eat('<') Then exit;
If Not Eat('!DOCTYPE') Then exit;
If Not Eat('html') Then exit;
fName := 'HTML';
If Not parseAttributes() Then exit;
If Not Eat('>') Then exit;
End;
Function TDocumentType.ToString(FrontSpace: String; IncludeComments: Boolean): String;
Begin
result := FrontSpace + '<!DOCTYPE ' + Name + attribsToString() + '>';
End;
{ THTMLDocument }
Constructor THTMLDocument.Create();
Begin
fDocumentType := TDocumentType.Create();
fContent := THTMLElement.Create();
End;
Destructor THTMLDocument.Destroy();
Begin
fDocumentType.free;
fContent.Free;
End;
Function THTMLDocument.ToString(FrontSpace: String; IncludeComments: Boolean): String;
Begin
result :=
fDocumentType.ToString(FrontSpace) + LineEnding +
fContent.ToString(FrontSpace, IncludeComments);
End;
Procedure THTMLDocument.parse();
Begin
If LError <> '' Then exit;
fDocumentType.Parse;
If LError <> '' Then exit;
fContent.parse();
End;
{ TComment }
Procedure THTMLComment.parse();
Begin
If Not eat('<!--') Then exit;
fComment := PopComment();
If Not eat('-->') Then exit;
End;
Function THTMLComment.ToString(FrontSpace: String; IncludeComments: Boolean): String;
Begin
// Kommentare fliegen raus !
If IncludeComments Then Begin
Result := '<!--' + fComment + '-->';
End
Else Begin
Result := '';
End;
End;
{ THTMLElement }
Procedure THTMLElement.parse();
Var
aToken: THTMLElement;
lname, l1, l2: String;
ln: integer; // Debug
Begin
If Not eat('<') Then exit;
fName := PopToken();
ln := ALine;
If Pos('/', fName) = 1 Then Begin
(*
* Kommt dieser Fehler, dann hat den Parser etwas durcheinander gebracht was im übergeordneten
* Element geparst wurde. Raussteppen und dann nach sehen !
*)
If LError = '' Then Begin
LError := 'Error, invalid tag name "' + fName + '" in line [' + inttostr(ALine) + ']';
End;
exit;
End;
lname := LowerCase(Name);
fContent := Nil;
If Not parseAttributes() Then exit;
l1 := TopToken();
If l1 = '/' Then Begin // Das Element definiert nur Attribute und endet hier bereits mit "/>"
If Not eat('/') Then exit;
If Not eat('>') Then exit;
exit;
End;
If Not eat('>') Then exit;
l1 := TopToken();
l2 := lowercase(TopToken(1));
While (LError = '') And (Not ((l1 = '<') And (l2 = '/' + lName))) Do Begin
// Wenn hier ein schließendes Token Kommt, das uns nicht geöffnet hat
If (l1 = '<') And (pos('/', l2) = 1) Then Begin
If LWarning <> '' Then Begin
LWarning := LWarning + LineEnding;
End;
LWarning := LWarning + 'missing: "</' + lName + '>" in line [' + inttostr(ALine) + '] for <' + fName + '> from line ' + inttostr(ln);
exit;
// If Not Eat('<') Then exit;
// If Not Eat(l2) Then exit;
// If Not Eat('>') Then exit;
// l1 := TopToken();
// l2 := lowercase(TopToken(1));
// Continue;
End;
//If (l1 = '<') And (pos('/', l2) = 1) Then Begin
// If LWarning <> '' Then Begin
// LWarning := LWarning + LineEnding;
// End;
// LWarning := LWarning + 'Invalid: "<' + l2 + '" in line [' + inttostr(ALine) + ']';
// If Not Eat('<') Then exit;
// If Not Eat(l2) Then exit;
// If Not Eat('>') Then exit;
// l1 := TopToken();
// l2 := lowercase(TopToken(1));
// Continue;
//End;
Case l1 Of
'<': Begin
If isSingleTon(l2) Then Begin
atoken := TSingleTagElement.Create();
End
Else Begin
atoken := THTMLElement.Create();
End;
End;
'<!--': Begin
aToken := THTMLComment.Create();
End;
Else Begin
aToken := TTextElement.Create();
End;
End;
setlength(fContent, high(fContent) + 2);
fContent[high(fContent)] := aToken;
aToken.Parse();
l1 := TopToken();
l2 := lowercase(TopToken(1));
// Hier muss eine Prüfung Rein ob es überhaupt noch was zu lesen gibt, oder ist die schon drin ?
End;
If Not eat('<') Then exit;
If Not eat('/' + lName) Then exit;
If Not eat('>') Then exit;
End;
Function THTMLElement.getContentCount: integer;
Begin
result := Length(fContent);
End;
Function THTMLElement.getContent(Index: integer): THTMLElement;
Begin
result := fContent[index];
End;
Function THTMLElement.getAttribute(Index: integer): TAttribut;
Begin
result := fAttributes[index];
End;
Function THTMLElement.getAttributeCount: integer;
Begin
result := Length(fAttributes);
End;
Function THTMLElement.parseAttributes(): Boolean;
Var
l1: String;
Begin
result := false;
setlength(fAttributes, 0);
l1 := TopToken();
(*
* Normale Attribute enden auf >
* Wenn aber nach den Attributen das Element direkt beendet werden soll, dann kann auch /> stehen
*)
While (l1 <> '>') And (l1 <> '/') Do Begin
(*
* Liest Attribute eines Elementes ein, da gibt es 2 Formen
* Leere Attribute, Attribute mit Wert
*)
SetLength(fAttributes, high(fAttributes) + 2);
fAttributes[high(fAttributes)].Name := l1;
PopToken();
fAttributes[high(fAttributes)].Value := '';
l1 := TopToken();
If l1 = '=' Then Begin
If Not eat('=') Then exit;
fAttributes[high(fAttributes)].Value := PopToken();
l1 := TopToken();
End;
End;
result := true;
End;
Function THTMLElement.AttribsToString(): String;
Var
i: Integer;
Begin
result := '';
For i := 0 To high(fAttributes) Do Begin
result := result + ' ' + fAttributes[i].Name;
If fAttributes[i].Value <> '' Then Begin
result := result + '=' + fAttributes[i].Value;
End;
End;
End;
Constructor THTMLElement.Create();
Begin
fName := '';
fAttributes := Nil;
fContent := Nil;
End;
Destructor THTMLElement.Destroy();
Var
i: Integer;
Begin
For i := 0 To high(fContent) Do Begin
fContent[i].Free;
End;
setlength(fAttributes, 0);
End;
Function THTMLElement.ToString(FrontSpace: String; IncludeComments: Boolean): String;
Var
i: Integer;
Begin
result := FrontSpace + '<' + Name + attribsToString() + '>';
For i := 0 To high(fContent) Do Begin
//If (Not (fContent[i] Is TTextElement)) Then Begin
result := result + LineEnding;
//End;
result := result + fContent[i].ToString(FrontSpace + SpaceIdent, IncludeComments);
End;
If length(fContent) <> 0 Then Begin
//If (Not (fContent[high(fContent)] Is TTextElement)) Then Begin
result := result + LineEnding + FrontSpace;
//End;
End;
result := result + '</' + Name + '>';
End;
{ THTMLParser }
Constructor THTMLParser.Create();
Begin
Inherited Create;
End;
Destructor THTMLParser.Destroy();
Begin
End;
Function THTMLParser.Parse(Content: String): THTMLDocument;
Begin
result := THTMLDocument.Create;
fLastError := '';
LError := '';
LWarning := '';
aindex := 1;
aLine := 1;
aContent := Content;
result.parse();
If LError <> '' Then Begin
fLastError := LError;
Result.Free;
result := Nil;
End;
fLastWarning := LWarning;
End;
End.