forked from ali-rantakari/peg-markdown-highlight
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pmh_parser_head.c
996 lines (827 loc) · 28.8 KB
/
pmh_parser_head.c
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
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
/* PEG Markdown Highlight
* Copyright 2011-2016 Ali Rantakari -- http://hasseg.org
* Licensed under the GPL2+ and MIT licenses (see LICENSE for more info).
*
* pmh_parser_head.c
*
* Code to be inserted into the beginning of the parser code generated
* from the PEG grammar.
*/
#include "pmh_parser.h"
#ifndef pmh_DEBUG_OUTPUT
#define pmh_DEBUG_OUTPUT 0
#endif
#if pmh_DEBUG_OUTPUT
#define pmh_IF(x) if (x)
#define pmh_PRINTF(x, ...) fprintf(stderr, x, ##__VA_ARGS__)
#define pmh_PUTCHAR(x) putchar(x)
#else
#define pmh_IF(x)
#define pmh_PRINTF(x, ...)
#define pmh_PUTCHAR(x)
#endif
// Alias strdup to _strdup on MSVC:
#ifdef _MSC_VER
#define strdup _strdup
#endif
char *strdup_or_null(char *s)
{
return (s == NULL) ? NULL : strdup(s);
}
// Internal language element occurrence structure, containing
// both public and private members:
struct pmh_RealElement
{
// "Public" members:
// (these must match what's defined in pmh_definitions.h)
// -----------------------------------------------
pmh_element_type type;
unsigned long pos;
unsigned long end;
struct pmh_RealElement *next;
char *label;
char *address;
// "Private" members for use by the parser itself:
// -----------------------------------------------
// next element in list of all elements:
struct pmh_RealElement *all_elems_next;
// offset to text (for elements of type pmh_EXTRA_TEXT, used when the
// parser reads the value of 'text'):
int text_offset;
// text content (for elements of type pmh_EXTRA_TEXT):
char *text;
// children of element (for elements of type pmh_RAW_LIST)
struct pmh_RealElement *children;
};
typedef struct pmh_RealElement pmh_realelement;
// Parser state data:
typedef struct
{
/* The original, unmodified UTF-8 input: */
char *original_input;
/* The offsets of the bytes we have stripped from original_input: */
unsigned long *strip_positions;
size_t strip_positions_len;
/* Buffer of characters to be parsed: */
char *charbuf;
/* Linked list of {start, end} offset pairs determining which parts */
/* of charbuf to actually parse: */
pmh_realelement *current_elem;
pmh_realelement *elem_head;
/* Current parsing offset within charbuf: */
unsigned long offset;
/* The extensions to use for parsing (bitfield */
/* of enum pmh_extensions): */
int extensions;
/* Array of parsing result elements, indexed by type: */
pmh_realelement **head_elems;
/* Whether we are parsing only references: */
bool parsing_only_references;
/* List of reference elements: */
pmh_realelement *references;
} parser_data;
static parser_data *mk_parser_data(char *original_input,
unsigned long *strip_positions,
size_t strip_positions_len,
char *charbuf,
pmh_realelement *parsing_elems,
unsigned long offset,
int extensions,
pmh_realelement **head_elems,
pmh_realelement *references)
{
parser_data *p_data = (parser_data *)malloc(sizeof(parser_data));
p_data->extensions = extensions;
p_data->original_input = original_input;
p_data->strip_positions = strip_positions;
p_data->strip_positions_len = strip_positions_len;
p_data->charbuf = charbuf;
p_data->offset = offset;
p_data->elem_head = p_data->current_elem = parsing_elems;
p_data->references = references;
p_data->parsing_only_references = false;
if (head_elems != NULL)
p_data->head_elems = head_elems;
else {
p_data->head_elems = (pmh_realelement **)
malloc(sizeof(pmh_realelement *) * pmh_NUM_TYPES);
int i;
for (i = 0; i < pmh_NUM_TYPES; i++)
p_data->head_elems[i] = NULL;
}
return p_data;
}
// Forward declarations
static void parse_markdown(parser_data *p_data);
static void parse_references(parser_data *p_data);
static char **get_element_type_names()
{
static char **elem_type_names = NULL;
if (elem_type_names == NULL)
{
elem_type_names = (char **)malloc(sizeof(char*) * pmh_NUM_LANG_TYPES);
int i;
for (i = 0; i < pmh_NUM_LANG_TYPES; i++)
elem_type_names[i] = NULL;
elem_type_names[pmh_LINK] = "LINK";
elem_type_names[pmh_AUTO_LINK_URL] = "AUTO_LINK_URL";
elem_type_names[pmh_AUTO_LINK_EMAIL] = "AUTO_LINK_EMAIL";
elem_type_names[pmh_IMAGE] = "IMAGE";
elem_type_names[pmh_CODE] = "CODE";
elem_type_names[pmh_HTML] = "HTML";
elem_type_names[pmh_HTML_ENTITY] = "HTML_ENTITY";
elem_type_names[pmh_EMPH] = "EMPH";
elem_type_names[pmh_STRONG] = "STRONG";
elem_type_names[pmh_LIST_BULLET] = "LIST_BULLET";
elem_type_names[pmh_LIST_ENUMERATOR] = "LIST_ENUMERATOR";
elem_type_names[pmh_COMMENT] = "COMMENT";
elem_type_names[pmh_H1] = "H1";
elem_type_names[pmh_H2] = "H2";
elem_type_names[pmh_H3] = "H3";
elem_type_names[pmh_H4] = "H4";
elem_type_names[pmh_H5] = "H5";
elem_type_names[pmh_H6] = "H6";
elem_type_names[pmh_BLOCKQUOTE] = "BLOCKQUOTE";
elem_type_names[pmh_VERBATIM] = "VERBATIM";
elem_type_names[pmh_HTMLBLOCK] = "HTMLBLOCK";
elem_type_names[pmh_HRULE] = "HRULE";
elem_type_names[pmh_REFERENCE] = "REFERENCE";
elem_type_names[pmh_FENCEDCODEBLOCK] = "FENCEDCODEBLOCK";
elem_type_names[pmh_NOTE] = "NOTE";
elem_type_names[pmh_STRIKE] = "STRIKE";
elem_type_names[pmh_FRONTMATTER] = "FRONTMATTER";
elem_type_names[pmh_DISPLAYFORMULA] = "DISPLAYFORMULA";
elem_type_names[pmh_INLINEEQUATION] = "INLINEEQUATION";
elem_type_names[pmh_MARK] = "MARK";
elem_type_names[pmh_TABLE] = "TABLE";
elem_type_names[pmh_TABLEHEADER] = "TABLEHEADER";
elem_type_names[pmh_TABLEBORDER] = "TABLEBORDER";
}
return elem_type_names;
}
pmh_element_type pmh_element_type_from_name(char *name)
{
char **elem_type_names = get_element_type_names();
int i;
for (i = 0; i < pmh_NUM_LANG_TYPES; i++)
{
char *i_name = elem_type_names[i];
if (i_name == NULL)
continue;
if (strcmp(i_name, name) == 0)
return i;
}
return pmh_NO_TYPE;
}
char *pmh_element_name_from_type(pmh_element_type type)
{
char **elem_type_names = get_element_type_names();
char* ret = elem_type_names[type];
if (ret == NULL)
return "unknown type";
return ret;
}
/*
Remove pmh_RAW elements with zero length; return pointer
to new head.
*/
static pmh_realelement *remove_zero_length_raw_spans(pmh_realelement *elem)
{
pmh_realelement *head = elem;
pmh_realelement *parent = NULL;
pmh_realelement *c = head;
while (c != NULL)
{
if (c->type == pmh_RAW && c->pos >= c->end)
{
if (parent != NULL)
parent->next = c->next;
else
head = c->next;
parent = c;
c = c->next;
continue;
}
parent = c;
c = c->next;
}
return head;
}
#if pmh_DEBUG_OUTPUT
/*
Print null-terminated string s.t. some characters are
represented by their corresponding espace sequences
*/
static void print_str_literal_escapes(char *str)
{
char *c = str;
pmh_PRINTF("'");
while (*c != '\0')
{
if (*c == '\n') pmh_PRINTF("\\n");
else if (*c == '\t') pmh_PRINTF("\\t");
else putchar(*c);
c++;
}
pmh_PRINTF("'");
}
#endif
#if pmh_DEBUG_OUTPUT
/*
Print elements in a linked list of
pmh_RAW, pmh_SEPARATOR, pmh_EXTRA_TEXT elements
*/
static void print_raw_spans_inline(pmh_realelement *elem)
{
pmh_realelement *cur = elem;
while (cur != NULL)
{
if (cur->type == pmh_SEPARATOR)
pmh_PRINTF("<pmh_SEP %ld> ", cur->pos);
else if (cur->type == pmh_EXTRA_TEXT) {
pmh_PRINTF("{pmh_ETEXT ");
print_str_literal_escapes(cur->text);
pmh_PRINTF("}");
}
else
pmh_PRINTF("(%ld-%ld) ", cur->pos, cur->end);
cur = cur->next;
}
}
#endif
/*
Perform postprocessing parsing runs for pmh_RAW_LIST elements in `elem`,
iteratively until no such elements exist.
*/
static void process_raw_blocks(parser_data *p_data)
{
pmh_PRINTF("--------process_raw_blocks---------\n");
while (p_data->head_elems[pmh_RAW_LIST] != NULL)
{
pmh_PRINTF("new iteration.\n");
pmh_realelement *cursor = p_data->head_elems[pmh_RAW_LIST];
p_data->head_elems[pmh_RAW_LIST] = NULL;
while (cursor != NULL)
{
pmh_realelement *span_list = (pmh_realelement*)cursor->children;
span_list = remove_zero_length_raw_spans(span_list);
#if pmh_DEBUG_OUTPUT
pmh_PRINTF(" process: ");
print_raw_spans_inline(span_list);
pmh_PRINTF("\n");
#endif
while (span_list != NULL)
{
pmh_PRINTF("next: span_list: %ld-%ld\n",
span_list->pos, span_list->end);
// Skip separators in the beginning, as well as
// separators after another separator:
if (span_list->type == pmh_SEPARATOR) {
span_list = span_list->next;
continue;
}
// Store list of spans until next separator in subspan_list:
pmh_realelement *subspan_list = span_list;
pmh_realelement *previous = NULL;
while (span_list != NULL && span_list->type != pmh_SEPARATOR) {
previous = span_list;
span_list = span_list->next;
}
if (span_list != NULL && span_list->type == pmh_SEPARATOR) {
span_list = span_list->next;
previous->next = NULL;
}
#if pmh_DEBUG_OUTPUT
pmh_PRINTF(" subspan process: ");
print_raw_spans_inline(subspan_list);
pmh_PRINTF("\n");
#endif
// Process subspan_list:
parser_data *raw_p_data = mk_parser_data(
p_data->original_input,
p_data->strip_positions,
p_data->strip_positions_len,
p_data->charbuf,
subspan_list,
subspan_list->pos,
p_data->extensions,
p_data->head_elems,
p_data->references
);
parse_markdown(raw_p_data);
free(raw_p_data);
pmh_PRINTF("parse over\n");
}
cursor = cursor->next;
}
}
}
#if pmh_DEBUG_OUTPUT
static void print_raw_blocks(char *text, pmh_realelement *elem[])
{
pmh_PRINTF("--------print_raw_blocks---------\n");
pmh_PRINTF("block:\n");
pmh_realelement *cursor = elem[pmh_RAW_LIST];
while (cursor != NULL)
{
print_raw_spans_inline(cursor->children);
cursor = cursor->next;
}
}
#endif
/* Free all elements created while parsing */
void pmh_free_elements(pmh_element **elems)
{
pmh_realelement *cursor = (pmh_realelement*)elems[pmh_ALL];
while (cursor != NULL) {
pmh_realelement *tofree = cursor;
cursor = cursor->all_elems_next;
if (tofree->text != NULL)
free(tofree->text);
if (tofree->label != NULL)
free(tofree->label);
if (tofree->address != NULL)
free(tofree->address);
free(tofree);
}
elems[pmh_ALL] = NULL;
free(elems);
}
#define IS_CONTINUATION_BYTE(x) ((x & 0xC0) == 0x80)
#define HAS_UTF8_BOM(x) ( ((*x & 0xFF) == 0xEF)\
&& ((*(x+1) & 0xFF) == 0xBB)\
&& ((*(x+2) & 0xFF) == 0xBF) )
#define ADD_STRIP_POS(x) \
/* reallocate more space for the array, if needed: */ \
if (strip_positions_size <= strip_positions_pos) { \
size_t new_size = strip_positions_size * 2; \
unsigned long *new_arr = (unsigned long *) \
calloc(new_size, \
sizeof(unsigned long)); \
memcpy(new_arr, strip_positions, \
(sizeof(unsigned long) * strip_positions_size)); \
strip_positions_size = new_size; \
free(strip_positions); \
strip_positions = new_arr; \
} \
strip_positions[strip_positions_pos] = x; \
strip_positions_pos++;
/*
Copy `str` to `out`, while doing the following:
- remove UTF-8 continuation bytes
- remove possible UTF-8 BOM (byte order mark)
- append two newlines to the end (like peg-markdown does)
- keep track of which bytes we have stripped (in strip_positions)
*/
static int strcpy_preformat(char *str, char **out,
unsigned long **out_strip_positions,
size_t *out_strip_positions_len)
{
size_t strip_positions_size = 1024;
size_t strip_positions_pos = 0;
unsigned long *strip_positions = (unsigned long *)
calloc(strip_positions_size,
sizeof(unsigned long));
// +2 in the following is due to the "\n\n" suffix:
char *new_str = (char *)malloc(sizeof(char) * strlen(str) + 1 + 2);
char *c = str;
int i = 0;
if (HAS_UTF8_BOM(c)) {
c += 3;
ADD_STRIP_POS(0);
ADD_STRIP_POS(1);
ADD_STRIP_POS(2);
}
while (*c != '\0')
{
if (!IS_CONTINUATION_BYTE(*c)) {
*(new_str+i) = *c, i++;
} else {
ADD_STRIP_POS((int)(c-str));
}
c++;
}
*(new_str+(i++)) = '\n';
*(new_str+(i++)) = '\n';
*(new_str+i) = '\0';
*out = new_str;
*out_strip_positions = strip_positions;
*out_strip_positions_len = strip_positions_pos;
return i;
}
void pmh_markdown_to_elements(char *text, int extensions,
pmh_element **out_result[])
{
char *text_copy = NULL;
unsigned long *strip_positions = NULL;
size_t strip_positions_len = 0;
int text_copy_len = strcpy_preformat(text, &text_copy, &strip_positions,
&strip_positions_len);
pmh_realelement *parsing_elem = (pmh_realelement *)
malloc(sizeof(pmh_realelement));
parsing_elem->type = pmh_RAW;
parsing_elem->pos = 0;
parsing_elem->end = text_copy_len;
parsing_elem->next = NULL;
parser_data *p_data = mk_parser_data(
text,
strip_positions,
strip_positions_len,
text_copy,
parsing_elem,
0,
extensions,
NULL,
NULL
);
pmh_realelement **result = p_data->head_elems;
if (*text_copy != '\0')
{
// Get reference definitions into p_data->references
parse_references(p_data);
// Reset parser state to beginning of input
p_data->offset = 0;
p_data->current_elem = p_data->elem_head;
// Parse whole document
parse_markdown(p_data);
#if pmh_DEBUG_OUTPUT
print_raw_blocks(text_copy, result);
#endif
process_raw_blocks(p_data);
}
free(strip_positions);
free(p_data);
free(parsing_elem);
free(text_copy);
*out_result = (pmh_element**)result;
}
/*
Mergesort linked list of elements (using comparison function `compare`),
return new head. (Adapted slightly from Simon Tatham's algorithm.)
*/
static pmh_element *ll_mergesort(pmh_element *list,
int (*compare)(const pmh_element*,
const pmh_element*))
{
if (!list)
return NULL;
pmh_element *out_head = list;
/* Merge widths of doubling size until done */
int merge_width = 1;
while (1)
{
pmh_element *l, *r; /* left & right segment pointers */
pmh_element *tail = NULL; /* tail of sorted section */
l = out_head;
out_head = NULL;
int merge_count = 0;
while (l)
{
merge_count++;
/* Position r, determine lsize & rsize */
r = l;
int lsize = 0;
int i;
for (i = 0; i < merge_width; i++) {
lsize++;
r = r->next;
if (!r)
break;
}
int rsize = merge_width;
/* Merge l & r */
while (lsize > 0 || (rsize > 0 && r))
{
bool get_from_left = false;
if (lsize == 0) get_from_left = false;
else if (rsize == 0 || !r) get_from_left = true;
else if (compare(l,r) <= 0) get_from_left = true;
pmh_element *e;
if (get_from_left) {
e = l; l = l->next; lsize--;
} else {
e = r; r = r->next; rsize--;
}
/* add the next pmh_element to the merged list */
if (tail)
tail->next = e;
else
out_head = e;
tail = e;
}
l = r;
}
tail->next = NULL;
if (merge_count <= 1)
return out_head;
merge_width *= 2;
}
}
static int elem_compare_by_pos(const pmh_element *a, const pmh_element *b)
{
return a->pos - b->pos;
}
void pmh_sort_elements_by_pos(pmh_element *element_lists[])
{
int i;
for (i = 0; i < pmh_NUM_LANG_TYPES; i++)
element_lists[i] = ll_mergesort(element_lists[i], &elem_compare_by_pos);
}
/* return true if extension is selected */
static bool extension(parser_data *p_data, int ext)
{
return ((p_data->extensions & ext) != 0);
}
/* return reference pmh_realelement for a given label */
static pmh_realelement *get_reference(parser_data *p_data, char *label)
{
if (!label)
return NULL;
pmh_realelement *cursor = p_data->references;
while (cursor != NULL)
{
if (cursor->label && strcmp(label, cursor->label) == 0)
return cursor;
cursor = cursor->next;
}
return NULL;
}
/* cons an element/list onto a list, returning pointer to new head */
static pmh_realelement *cons(pmh_realelement *elem, pmh_realelement *list)
{
assert(elem != NULL);
pmh_realelement *cur = elem;
while (cur->next != NULL) {
cur = cur->next;
}
cur->next = list;
return elem;
}
/* reverse a list, returning pointer to new list */
static pmh_realelement *reverse(pmh_realelement *list)
{
pmh_realelement *new_head = NULL;
pmh_realelement *next = NULL;
while (list != NULL) {
next = list->next;
list->next = new_head;
new_head = list;
list = next;
}
return new_head;
}
/* construct pmh_realelement */
static pmh_realelement *mk_element(parser_data *p_data, pmh_element_type type,
long pos, long end)
{
pmh_realelement *result = (pmh_realelement *)malloc(sizeof(pmh_realelement));
memset(result, 0, sizeof(*result));
result->type = type;
result->pos = pos;
result->end = end;
pmh_realelement *old_all_elements_head = p_data->head_elems[pmh_ALL];
p_data->head_elems[pmh_ALL] = result;
result->all_elems_next = old_all_elements_head;
//pmh_PRINTF(" mk_element: %s [%ld - %ld]\n", pmh_element_name_from_type(type), pos, end);
return result;
}
static pmh_realelement *copy_element(parser_data *p_data, pmh_realelement *elem)
{
pmh_realelement *result = mk_element(p_data, elem->type, elem->pos, elem->end);
result->label = strdup_or_null(elem->label);
result->text = strdup_or_null(elem->text);
result->address = strdup_or_null(elem->address);
return result;
}
/* construct pmh_EXTRA_TEXT pmh_realelement */
static pmh_realelement *mk_etext(parser_data *p_data, char *string)
{
pmh_realelement *result;
assert(string != NULL);
result = mk_element(p_data, pmh_EXTRA_TEXT, 0,0);
result->text = strdup_or_null(string);
return result;
}
/*
Given an element where the offsets {pos, end} represent
locations in the *parsed text* (defined by the linked list of pmh_RAW and
pmh_EXTRA_TEXT elements in p_data->current_elem), fix these offsets to represent
corresponding offsets in the parse buffer (p_data->charbuf). Also split
the given pmh_realelement into multiple parts if its offsets span multiple
p_data->current_elem elements. Return the (list of) elements with real offsets.
*/
static pmh_realelement *fix_offsets(parser_data *p_data, pmh_realelement *elem)
{
if (elem->type == pmh_EXTRA_TEXT)
return mk_etext(p_data, elem->text);
pmh_realelement *new_head = copy_element(p_data, elem);
pmh_realelement *tail = new_head;
pmh_realelement *prev = NULL;
bool found_start = false;
bool found_end = false;
bool tail_needs_pos = false;
unsigned long previous_end = 0;
unsigned long c = 0;
pmh_realelement *cursor = p_data->elem_head;
while (cursor != NULL)
{
int thislen = (cursor->type == pmh_EXTRA_TEXT)
? strlen(cursor->text)
: cursor->end - cursor->pos;
if (tail_needs_pos && cursor->type != pmh_EXTRA_TEXT) {
tail->pos = cursor->pos;
tail_needs_pos = false;
}
unsigned int this_pos = cursor->pos;
if (!found_start && (c <= elem->pos && elem->pos <= c+thislen)) {
tail->pos = (cursor->type == pmh_EXTRA_TEXT)
? previous_end
: cursor->pos + (elem->pos - c);
this_pos = tail->pos;
found_start = true;
}
if (!found_end && (c <= elem->end && elem->end <= c+thislen)) {
tail->end = (cursor->type == pmh_EXTRA_TEXT)
? previous_end
: cursor->pos + (elem->end - c);
found_end = true;
}
if (found_start && found_end)
break;
if (cursor->type != pmh_EXTRA_TEXT)
previous_end = cursor->end;
if (found_start) {
pmh_realelement *new_elem = copy_element(p_data, tail);
new_elem->pos = this_pos;
new_elem->end = cursor->end;
new_elem->next = tail;
if (prev != NULL)
prev->next = new_elem;
if (new_head == tail)
new_head = new_elem;
prev = new_elem;
tail_needs_pos = true;
}
c += thislen;
cursor = cursor->next;
}
return new_head;
}
/* Add an element to p_data->head_elems. */
static void add(parser_data *p_data, pmh_realelement *elem)
{
if (elem->type != pmh_RAW_LIST)
{
pmh_PRINTF(" add: %s [%ld - %ld]\n",
pmh_element_name_from_type(elem->type), elem->pos, elem->end);
elem = fix_offsets(p_data, elem);
pmh_PRINTF(" > %s [%ld - %ld]\n",
pmh_element_name_from_type(elem->type), elem->pos, elem->end);
}
else
{
pmh_PRINTF(" add: pmh_RAW_LIST ");
pmh_realelement *cursor = elem->children;
pmh_realelement *previous = NULL;
while (cursor != NULL)
{
pmh_realelement *next = cursor->next;
pmh_PRINTF("(%ld-%ld)>", cursor->pos, cursor->end);
pmh_realelement *new_cursor = fix_offsets(p_data, cursor);
if (previous != NULL)
previous->next = new_cursor;
else
elem->children = new_cursor;
pmh_PRINTF("(%ld-%ld)", new_cursor->pos, new_cursor->end);
while (new_cursor->next != NULL) {
new_cursor = new_cursor->next;
pmh_PRINTF("(%ld-%ld)", new_cursor->pos, new_cursor->end);
}
pmh_PRINTF(" ");
if (next != NULL)
new_cursor->next = next;
previous = new_cursor;
cursor = next;
}
pmh_PRINTF("\n");
}
if (p_data->head_elems[elem->type] == NULL)
p_data->head_elems[elem->type] = elem;
else
{
pmh_realelement *last = elem;
while (last->next != NULL)
last = last->next;
last->next = p_data->head_elems[elem->type];
p_data->head_elems[elem->type] = elem;
}
}
// Given a range in the list of spans we use for parsing (pos, end), return
// a copy of the corresponding section in the original input, with all of
// the UTF-8 bytes intact:
static char *copy_input_span(parser_data *p_data,
unsigned long pos, unsigned long end)
{
if (end <= pos)
return NULL;
char *ret = NULL;
// Adjust (pos,end) to match actual indexes in charbuf:
pmh_realelement *dummy = mk_element(p_data, pmh_NO_TYPE, pos, end);
pmh_realelement *fixed_dummies = fix_offsets(p_data, dummy);
pmh_realelement *cursor = fixed_dummies;
while (cursor != NULL)
{
if (cursor->end <= cursor->pos)
{
cursor = cursor->next;
continue;
}
// Adjust cursor's span to take bytes stripped from the original
// input into account (i.e. match the corresponding span in
// p_data->original_input):
unsigned long adjusted_pos = cursor->pos;
unsigned long adjusted_end = cursor->end;
size_t i;
for (i = 0; i < p_data->strip_positions_len; i++)
{
unsigned long strip_position = p_data->strip_positions[i];
if (strip_position <= adjusted_pos)
adjusted_pos++;
if (strip_position <= adjusted_end)
adjusted_end++;
else
break;
}
// Copy span from original input:
size_t adjusted_len = adjusted_end - adjusted_pos;
char *str = (char *)malloc(sizeof(char)*adjusted_len + 1);
*str = '\0';
strncat(str, (p_data->original_input + adjusted_pos), adjusted_len);
if (ret == NULL)
ret = str;
else
{
// append str to ret:
char *new_ret = (char *)malloc(sizeof(char)
*(strlen(str) + strlen(ret)) + 1);
*new_ret = '\0';
strcat(new_ret, ret);
strcat(new_ret, str);
free(ret);
free(str);
ret = new_ret;
}
cursor = cursor->next;
}
return ret;
}
# define YYSTYPE pmh_realelement *
#ifdef __DEBUG__
# define YY_DEBUG 1
#endif
#define YY_INPUT(buf, result, max_size)\
yy_input_func(buf, &result, max_size, (parser_data *)G->data)
static void yy_input_func(char *buf, int *result, int max_size,
parser_data *p_data)
{
if (p_data->current_elem == NULL)
{
(*result) = 0;
return;
}
if (p_data->current_elem->type == pmh_EXTRA_TEXT)
{
int yyc;
bool moreToRead = (p_data->current_elem->text
&& *(p_data->current_elem->text
+ p_data->current_elem->text_offset) != '\0');
if (moreToRead)
{
yyc = *(p_data->current_elem->text + p_data->current_elem->text_offset++);
pmh_PRINTF("\e[47;30m"); pmh_PUTCHAR(yyc); pmh_PRINTF("\e[0m");
pmh_IF(yyc == '\n') pmh_PRINTF("\e[47m \e[0m");
}
else
{
yyc = EOF;
p_data->current_elem = p_data->current_elem->next;
pmh_PRINTF("\e[41m \e[0m");
if (p_data->current_elem != NULL)
p_data->offset = p_data->current_elem->pos;
}
(*result) = (EOF == yyc) ? 0 : (*(buf) = yyc, 1);
return;
}
*(buf) = *(p_data->charbuf + p_data->offset);
(*result) = (*buf != '\0');
p_data->offset++;
pmh_PRINTF("\e[43;30m"); pmh_PUTCHAR(*buf); pmh_PRINTF("\e[0m");
pmh_IF(*buf == '\n') pmh_PRINTF("\e[42m \e[0m");
if (p_data->offset >= p_data->current_elem->end)
{
p_data->current_elem = p_data->current_elem->next;
pmh_PRINTF("\e[41m \e[0m");
if (p_data->current_elem != NULL)
p_data->offset = p_data->current_elem->pos;
}
}