-
Notifications
You must be signed in to change notification settings - Fork 8
/
HTMLControl.cpp
812 lines (736 loc) · 18.9 KB
/
HTMLControl.cpp
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
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
/*
* Portions Copyright (c) 1999 GMRS Software GmbH
* Carl-von-Linde-Str. 38, D-85716 Unterschleissheim, http://www.gmrs.de
* All rights reserved.
*
* Author: Arno Unkrig <arno@unkrig.de>
*
* 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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 in the file COPYING for more details.
*/
#include <iostream>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "html.h"
#include "HTMLControl.h"
#include "HTMLDriver.h"
#include "HTMLParser.hh"
#include "sgml.h"
#include "cmp_nocase.h"
#include "istr.h"
#ifndef nelems
#define nelems(array) (sizeof(array) / sizeof((array)[0]))
#endif
enum {
NOT_A_TAG,
START_TAG, BLOCK_START_TAG,
END_TAG, BLOCK_END_TAG,
NON_CONTAINER_TAG
};
void
HTMLControl::htmlparser_yyerror(const char *p)
{
/*
* Swallow parse error messages if not in "syntax check" mode.
*/
if (mode != HTMLDriver::SYNTAX_CHECK &&
!strncmp(p, "syntax error", sizeof("syntax error") - 1))
return;
std::cerr
<< "File \""
<< file_name
<< "\", line "
<< current_line
<< ", column "
<< current_column
<< ": "
<< p
<< std::endl;
}
struct htmlparsertoken *HTMLControl::get_nth_token(int id)
{
int i;
htmlparsertoken *tokw;
htmlparsertoken *tail = NULL;
for (i = 0, tokw = next_tokens; tokw != NULL; tokw = tokw->next, i++) {
if (i == id)
return tokw;
tail = tokw;
}
if (i == id) {
if (tail == NULL)
next_tokens = tokw = new htmlparsertoken;
else
tokw = tail->next = new htmlparsertoken;
tokw->next_token = yylex2(&tokw->next_token_value,
&tokw->next_token_tag_type);
tokw->next = NULL;
/* do some space normalisation on PCDATA here to ease whitespace
* logics lateron */
if (tokw->next_token == HTMLParser_token::PCDATA && !literal_mode) {
istr &s(*tokw->next_token_value.strinG);
/* empty string, just skip, get the next one */
if (s.empty()) {
del_nth_token(id);
return get_nth_token(id);
}
/* we got something, collate sequences of whitespace
* within the string */
for (string::size_type x = 0; x < s.length(); x++) {
if (isspace(s[x])) {
string::size_type y;
for (y = x + 1; y < s.length() && isspace(s[y]); y++)
;
s.replace(x, y - x, " ");
}
}
/* if we have trailing or leading spaces, transform them
* into their own token, so collapsing them is easier */
if (s.length() > 1) {
if (isspace(s[s.length() - 1])) {
s.erase(s.length() - 1, 1); /* drop space */
/* append token */
htmlparsertoken *space = new htmlparsertoken;
space->next_token = HTMLParser_token::PCDATA;
space->next_token_tag_type = NOT_A_TAG;
space->next_token_value.strinG = new istr(" ");
space->next = NULL;
tokw->next = space;
}
if (isspace(s[0])) {
s.erase(0, 1); /* drop space */
/* prepend token */
htmlparsertoken *space = new htmlparsertoken;
space->next = tokw;
if (next_tokens == tokw) {
next_tokens = space;
} else {
tail->next = space;
}
space->next_token = HTMLParser_token::PCDATA;
space->next_token_tag_type = NOT_A_TAG;
space->next_token_value.strinG = new istr(" ");
tokw = space;
}
}
}
return tokw;
}
return NULL;
}
void HTMLControl::del_nth_token(int id)
{
int i;
htmlparsertoken *tokw;
htmlparsertoken *tail = NULL;
for (i = 0, tokw = next_tokens; tokw != NULL; tokw = tokw->next, i++) {
if (i == id)
break;
tail = tokw;
}
if (i == id) {
if (tail == NULL) {
next_tokens = next_tokens->next;
} else {
tail->next = tokw->next;
}
if (tokw->next_token == HTMLParser_token::PCDATA)
delete tokw->next_token_value.strinG;
delete tokw;
}
}
/*
* Effectively, this method simply invokes "yylex2()", but it does some
* postprocessing on PCDATA tokens that would be difficult to do in "yylex2()".
*/
int HTMLControl::htmlparser_yylex(
html2text::HTMLParser::semantic_type *value_return)
{
for (;;) { // Notice the "return" at the end of the body!
int token;
int tag_type;
int next_token;
int next_token_tag_type;
html2text::HTMLParser::semantic_type next_token_value;
struct htmlparsertoken *firsttok;
firsttok = get_nth_token(0);
token = firsttok->next_token;
tag_type = firsttok->next_token_tag_type;
*value_return = firsttok->next_token_value;
/* pop token */
next_tokens = next_tokens->next;
delete firsttok;
/* Switch on/off "literal mode" on "<PRE>" and "</PRE>" */
if (token == HTMLParser_token::PRE) {
literal_mode = true;
firsttok = get_nth_token(0);
next_token = firsttok->next_token;
next_token_value = firsttok->next_token_value;
if (next_token == HTMLParser_token::PCDATA) {
/* Swallow '\n' immediately following "<PRE>" */
istr &s(*next_token_value.strinG);
if (!s.empty() && s[0] == '\n')
s.erase(0, 1);
}
}
if (token == HTMLParser_token::END_PRE)
literal_mode = false;
if (tag_type == BLOCK_START_TAG ||
tag_type == BLOCK_END_TAG ||
token == HTMLParser_token::BR ||
token == HTMLParser_token::HR)
document_start = true; /* swallow whitespace */
if (token == HTMLParser_token::PCDATA) {
if (literal_mode) {
firsttok = get_nth_token(0);
next_token = firsttok->next_token;
next_token_value = firsttok->next_token_value;
/* Erase " '\n' { ' ' } " immediately before "</PRE>". */
if (next_token == HTMLParser_token::END_PRE) {
istr &s(*value_return->strinG);
string::size_type x = s.length();
while (x > 0 && s[x - 1] == ' ')
--x;
if (x > 0 && s[x - 1] == '\n')
s.erase(x - 1, string::npos);
}
} else {
/* In order to post-process the PCDATA token, we need to
* look ahead until we find another PCDATA token. We're
* trying to eliminate empty ones here, so as to avoid too
* little and too much whitespace. During reading,
* strings are whitespace normalised, and trailing or
* leading spaces are converted into separate elements
* here. */
istr &s(*value_return->strinG);
bool keepspace = document_start ? false : true;
if (isspace(s[0])) { /* this must be a space on its own */
for (int i = 0; ;) {
firsttok = get_nth_token(i);
next_token = firsttok->next_token;
next_token_tag_type = firsttok->next_token_tag_type;
next_token_value = firsttok->next_token_value;
if (next_token == EOF ||
next_token == HTMLParser_token::PRE ||
next_token_tag_type == BLOCK_START_TAG ||
next_token_tag_type == BLOCK_END_TAG)
{
keepspace = false;
break;
}
if (next_token == HTMLParser_token::PCDATA) {
istr &ns(*next_token_value.strinG);
if (isspace(ns[0])) {
/* duplicate, drop */
del_nth_token(i);
continue;
} else {
break; /* we're done here */
}
}
i++;
}
if (!keepspace) {
/* drop, we're excessive */
delete value_return->strinG;
continue;
}
} else {
document_start = false;
}
}
}
return token;
}
}
/*
* Keep this array sorted alphabetically!
*/
static const struct TextToIntP {
char name[11];
char block_tag;
const int start_tag_code;
const int end_tag_code;
}
tag_names[] = {
#define pack1(tag) \
{ #tag, 0, HTMLParser_token::tag, 0 }
#define pack2(tag) \
{ #tag, 0, HTMLParser_token::tag, HTMLParser_token::END_ ## tag }
#define pack3(tag) \
{ #tag, 1, HTMLParser_token::tag, HTMLParser_token::END_ ## tag }
pack2(A),
pack3(ADDRESS),
pack2(APPLET),
pack1(AREA),
pack2(B),
pack1(BASE),
pack1(BASEFONT),
pack2(BIG),
pack3(BLOCKQUOTE),
pack3(BODY),
pack1(BR),
pack3(CAPTION),
pack3(CENTER),
pack3(CITE),
pack2(CODE),
pack3(DD),
pack2(DFN),
pack3(DIR),
pack3(DIV),
pack3(DL),
pack3(DT),
pack2(EM),
pack2(FONT),
pack3(FORM),
pack3(H1),
pack3(H2),
pack3(H3),
pack3(H4),
pack3(H5),
pack3(H6),
pack3(HEAD),
pack1(HR),
pack3(HTML),
pack2(I),
pack1(IMG),
pack1(INPUT),
pack1(ISINDEX),
pack2(KBD),
pack3(LI),
pack1(LINK),
pack2(MAP),
pack3(MENU),
pack1(META),
pack2(NOBR),
pack3(OL),
pack3(OPTION),
pack3(P),
pack1(PARAM),
pack3(PRE),
pack2(SAMP),
pack3(SCRIPT),
pack2(SELECT),
pack2(SMALL),
pack2(STRIKE),
pack2(STRONG),
pack3(STYLE),
pack2(SUB),
pack2(SUP),
pack3(TABLE),
pack3(TD),
pack2(TEXTAREA),
pack3(TH),
pack3(TITLE),
pack3(TR),
pack2(TT),
pack2(U),
pack3(UL),
pack2(VAR),
#undef pack
};
int
HTMLControl::yylex2(html2text::HTMLParser::semantic_type *value_return,
int *tag_type_return)
{
int c;
*tag_type_return = NOT_A_TAG;
for (;;) { // Notice the "return" at the end of this loop.
/*
* Get the first character of the token.
*/
c = get_char();
if (c == EOF)
return EOF;
if (c == '<') {
/*
* Examine the first character of the tag.
*/
c = get_char();
if (c == '!') {
c = get_char();
if (c == '-') {
c = get_char();
if (c != '-')
return HTMLParser_token::SCAN_ERROR;
/*
* This is a comment... skip it!
*
* <!-- Single-line comment -->
*
* <!-- Multi-
* line
* comment //-->
*
* EXTENSION: Allow "-->" as the terminator of a
* multi-line comment.
*/
int state = 0;
do {
c = get_char();
if (c == EOF)
return HTMLParser_token::SCAN_ERROR;
switch (state) {
case 0: if (c == '-')
state = 1;
break;
case 1: state = c == '-' ? 2 : 0;
break;
case 2: state = c == '>' ? 3 : c == '-' ? 2 : 0;
break;
}
} while (state != 3);
continue; // Start over
}
/* scan <![if .... ]> <![endif]> kind of crap */
if (c == '[') {
do {
c = get_char();
if (c == EOF)
return HTMLParser_token::SCAN_ERROR;
} while (c != ']');
do {
c = get_char();
} while (c != EOF && isspace(c));
if (c != '>')
return HTMLParser_token::SCAN_ERROR;
continue; /* ignore this thing (start over) */
}
/*
* Scan "<!DOCTYPE ...>" tag.
*/
if (!isalpha(c))
return HTMLParser_token::SCAN_ERROR;
string tag_name(1, '!');
tag_name += c;
for (;;) {
c = get_char();
if (!isalnum(c) && c != '-')
break;
tag_name += c;
}
if (cmp_nocase(tag_name, "!DOCTYPE") != 0)
return HTMLParser_token::SCAN_ERROR;
while (c != '>') {
c = get_char();
if (c == EOF)
return HTMLParser_token::SCAN_ERROR;
// Let newline not close the DOCTYPE tag - Arno
}
return HTMLParser_token::DOCTYPE;
}
if (c == '/' || isalpha(c) || c == '_' || c == '?') {
string tag_name;
bool is_end_tag = false;
if (c == '/') {
is_end_tag = true;
c = get_char();
}
if (c == '?') {
c = get_char();
}
if (!isalpha(c) && c != '_')
return HTMLParser_token::SCAN_ERROR;
tag_name += c;
for (;;) {
c = get_char();
/* ID and NAME tokens must begin with a letter
* ([A-Za-z]) -- isalpha tested before -- and may be
* followed by any number of letters, digits
* ([0-9]), hyphens ("-"), underscores ("_"), colons
* (":"), and periods (".") */
if (!isalnum(c) &&
c != '-' && c != '_' && c != ':' && c != '.')
break;
tag_name += c;
}
while (isspace(c))
c = get_char();
/*
* Scan tag attributes (only for opening tags). Create
* the "tag_attributes" only on demand; this saves a lot
* of overhead.
*/
auto_ptr<list<TagAttribute>> tag_attributes;
if (!is_end_tag) {
while (c != EOF && c != '>') {
bool attrseparate = false;
TagAttribute attribute;
/* attribute := name [ '=' quote string quote ]
* name := first [ rest ... ]
* first := alpha | '_'
* rest := alpha | num | '_' | '-' | ':' | '.'
* quote := '\'' | '"'
* string := * !quote
*
* issue #61, be loose here, allow all kinds of
* garbage to happen, optimistically try to find
* attributes, until the closing '>' */
if (!isalpha(c) && c != '_')
goto eat_garbage;
/* Scan attribute name, see the ID and NAME rule
* mentioned above */
attribute.first = c;
for (;;) {
c = get_char();
if (!isalnum(c) &&
c != '-' && c != '_' &&
c != ':' && c != '.')
break;
attribute.first += c;
}
/* skip whitespace */
while (isspace(c)) {
c = get_char();
attrseparate = true;
}
/*
* Scan (optional) attribute value.
*/
if (c == '=') {
c = get_char();
while (isspace(c))
c = get_char();
if (c == '"' || c == '\'') {
int closing_quote = c; // Same as opening quote!
for (;;) {
c = get_char();
if (c == EOF)
return HTMLParser_token::SCAN_ERROR;
// Accept multiple-line elements - Arno
if (c == closing_quote)
break;
/*
* Do *not* interpret "ä" and
* consorts here! This would ruin
* tag attributes like
* "HREF=hhh?a=1&b=2".
*/
attribute.second += c;
}
c = get_char(); // Get next after closing quote
} else {
/* unquoted value */
while (isalnum(c)) {
attribute.second += c;
c = get_char();
}
if (c == EOF)
return HTMLParser_token::SCAN_ERROR;
if (!isspace(c))
goto eat_garbage;
}
/* skip whitespace */
while (isspace(c))
c = get_char();
} else {
if (!attrseparate)
goto eat_garbage;
/* short form, expand */
attribute.second = attribute.first;
}
/*
* Store the attribute.
*/
if (!tag_attributes.get()) {
tag_attributes.reset(new list<TagAttribute>);
}
tag_attributes->push_back(attribute);
continue;
eat_garbage:
while (c != ' ' &&
c != '>' &&
c != EOF)
c = get_char();
/* skip whitespace */
while (isspace(c))
c = get_char();
}
if (c == EOF)
return HTMLParser_token::SCAN_ERROR;
}
// accept XHTML tags like <hr /> - Alexander Solovey
if (c != '>') {
if (c == '/') {
c = get_char();
if (c != '>') {
return HTMLParser_token::SCAN_ERROR;
}
} else {
return HTMLParser_token::SCAN_ERROR;
}
}
if (debug_scanner) {
std::cerr << "Scanned tag \"<" <<
(is_end_tag ? "/" : "") << tag_name;
if (!is_end_tag && tag_attributes.get()) {
const list<TagAttribute> &ta(*tag_attributes);
list<TagAttribute>::const_iterator j;
for (j = ta.begin(); j != ta.end(); ++j) {
std::cerr << " " << (*j).first <<
"=\"" << (*j).second.c_str() << "\"";
}
}
std::cerr << ">\"" << std::endl;
}
/*
* Look up the tag in the table of recognized tags.
*/
static int(*const f)(const char *, const char *) = cmp_nocase;
const TextToIntP *tag = (const TextToIntP *) bsearch(
tag_name.c_str(),
tag_names, nelems(tag_names), sizeof(TextToIntP),
(int (*)(const void *, const void *))f);
if (tag == NULL) { /* EXTENSION: Swallow unknown tags. */
if (debug_scanner) {
std::cerr << "Tag unknown -- swallowed." << std::endl;
}
continue;
}
/*
* Return the BISON token code for the tag.
*/
if (is_end_tag) {
if (!tag->end_tag_code) {
if (debug_scanner) {
std::cerr << "Non-container end tag scanned." <<
std::endl;
}
continue;
}
*tag_type_return = tag->block_tag ? BLOCK_END_TAG : END_TAG;
return tag->end_tag_code;
} else {
*tag_type_return = (
!tag->end_tag_code ? NON_CONTAINER_TAG :
tag->block_tag ? BLOCK_START_TAG : START_TAG
);
value_return->tag_attributes = tag_attributes.release();
return tag->start_tag_code;
}
}
/*
* EXTENSION: This tag did not match "<!", and not "</", and not
* "<[A-Za-z-]", so take it as literal text.
*/
unget_char(c);
c = '<';
}
if (c == '\n' || (unsigned char) c >= (unsigned char) ' ') {
// Same as in line 402
istr *s = value_return->strinG = new istr;
while (c != EOF) {
/*
* Accept literal '<' in some cases.
*/
if (c == '<') {
int c2;
unget_char(c2 = get_char());
if (c2 == '!' || c2 == '/' || c2 == '?' || isalpha(c2)) {
unget_char(c);
break;
}
}
*s += c;
c = get_char();
}
/* need to do this here, because space calculations want to
* know the final form of the data */
replace_sgml_entities(s); // Replace "ä" and consorts.
/*
* Swallow empty PCDATAs.
*/
if (s->empty()) {
delete s;
continue;
}
if (debug_scanner)
std::cerr << "Scanned PCDATA \"" << s->c_str() << "\""
<< std::endl;
return HTMLParser_token::PCDATA;
}
return HTMLParser_token::SCAN_ERROR;
}
}
bool
HTMLControl::read_cdata(const char *terminal, string *value_return)
{
string &s(*value_return);
int c;
int state = 0;
for (;;) {
c = get_char();
if (c == EOF)
return false;
if (toupper(c) == terminal[state]) {
state++;
if (terminal[state] == '\0') {
// s.erase(s.length() - state);
// caused core dump on empty STYLE and
// SCRIPT elements - Johannes Geiger
s.erase(s.length() - state + 1);
return true;
}
} else {
state = 0;
}
s += c;
}
}
int
HTMLControl::get_char()
{
/* our input is always converted to UTF-8, so load bytes as required */
unsigned int c = 0;
if (number_of_ungotten_chars > 0) {
c = ungotten_chars[--number_of_ungotten_chars];
} else {
c = is.get();
while (c == '\r')
c = is.get();
if (c == (unsigned int)EOF) {
;
} else if (c == '\n') {
current_line++;
current_column = 0;
} else {
current_column++;
if ((c >> 7) & 1) {
unsigned char nextpoint = 1;
/* we assume iconv produced valid UTF-8 here */
while ((c >> (7 - nextpoint)) & 1)
c |= ((is.get() & 0xFF) << (8 * nextpoint++));
}
}
}
#if 0
if ((c >> 7) & 1) {
unsigned int d = c;
unsigned char point = 1;
fprintf(stderr, "utf-8 start %02x\n", c & 0xFF);
while ((c >> (7 - point++)) & 1) {
d >>= 8;
fprintf(stderr, "utf-8 join %02x\n", d & 0xFF);
};
}
#endif
return c;
}
/* ------------------------------------------------------------------------- */
void
HTMLControl::unget_char(int c)
{
if (number_of_ungotten_chars == nelems(ungotten_chars)) {
//error("Too many chars ungotten");
return;
}
ungotten_chars[number_of_ungotten_chars++] = c;
}