forked from fletcher/peg-multimarkdown
-
Notifications
You must be signed in to change notification settings - Fork 1
/
utility_functions.h
362 lines (311 loc) · 10.8 KB
/
utility_functions.h
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
/* utility_functions.h - List manipulation functions, element
* constructors, and macro definitions for leg markdown parser. */
#ifndef _WIN32
extern int strcasecmp(const char *string1, const char *string2);
#else
#define strcasecmp _stricmp
#endif
static char *label_from_string(char *str, bool obfuscate) ;
static void localize_typography(GString *out, int character, int language, int output);
static void print_raw_element_list(GString *out, element *list);
/**********************************************************************
List manipulation functions
***********************************************************************/
/* cons - cons an element onto a list, returning pointer to new head */
static element * cons(element *new, element *list) {
assert(new != NULL);
new->next = list;
return new;
}
/* reverse - reverse a list, returning pointer to new list */
static element *reverse(element *list) {
element *new = NULL;
element *next = NULL;
while (list != NULL) {
next = list->next;
new = cons(list, new);
list = next;
}
return new;
}
/* append_list - add element to end of list */
static void append_list(element *new, element *list) {
element *step;
assert(new != NULL);
step = list;
while (step->next != NULL) {
step = step->next;
}
new->next = NULL;
step->next = new;
}
/* concat_string_list - concatenates string contents of list of STR elements.
* Frees STR elements as they are added to the concatenation. */
static GString *concat_string_list(element *list) {
GString *result;
element *next;
result = g_string_new("");
while (list != NULL) {
assert(list->key == STR);
assert(list->contents.str != NULL);
g_string_append(result, list->contents.str);
next = list->next;
free_element(list);
list = next;
}
return result;
}
/**********************************************************************
Global variables used in parsing
***********************************************************************/
static char *charbuf = ""; /* Buffer of characters to be parsed. */
static element *references = NULL; /* List of link references found. */
static element *notes = NULL; /* List of footnotes found. */
static element *parse_result; /* Results of parse. */
int syntax_extensions; /* Syntax extensions selected. */
static element *labels = NULL; /* List of labels found in document. */
/**********************************************************************
Auxiliary functions for parsing actions.
These make it easier to build up data structures (including lists)
in the parsing actions.
***********************************************************************/
/* mk_element - generic constructor for element */
static element * mk_element(int key) {
element *result = malloc(sizeof(element));
result->key = key;
result->children = NULL;
result->next = NULL;
result->contents.str = NULL;
return result;
}
/* mk_str - constructor for STR element */
static element * mk_str(char *string) {
element *result;
assert(string != NULL);
result = mk_element(STR);
result->contents.str = strdup(string);
return result;
}
/* mk_str_from_list - makes STR element by concatenating a
* reversed list of strings, adding optional extra newline */
static element * mk_str_from_list(element *list, bool extra_newline) {
element *result;
GString *c = concat_string_list(reverse(list));
if (extra_newline)
g_string_append(c, "\n");
result = mk_element(STR);
result->contents.str = c->str;
g_string_free(c, false);
return result;
}
/* mk_list - makes new list with key 'key' and children the reverse of 'lst'.
* This is designed to be used with cons to build lists in a parser action.
* The reversing is necessary because cons adds to the head of a list. */
static element * mk_list(int key, element *lst) {
element *result;
result = mk_element(key);
result->children = reverse(lst);
return result;
}
/* mk_link - constructor for LINK element */
static element * mk_link(element *label, char *url, char *title, element *attr, char *id) {
element *result;
result = mk_element(LINK);
result->contents.link = malloc(sizeof(link));
result->contents.link->label = label;
result->contents.link->url = strdup(url);
result->contents.link->title = strdup(title);
result->contents.link->attr = attr;
result->contents.link->identifier = strdup(id);
return result;
}
/* extension = returns true if extension is selected */
static bool extension(int ext) {
return (syntax_extensions & ext);
}
/* match_inlines - returns true if inline lists match (case-insensitive...) */
static bool match_inlines(element *l1, element *l2) {
while (l1 != NULL && l2 != NULL) {
if (l1->key != l2->key)
return false;
switch (l1->key) {
case SPACE:
case LINEBREAK:
case ELLIPSIS:
case EMDASH:
case ENDASH:
case APOSTROPHE:
break;
case CODE:
case STR:
case HTML:
if (strcasecmp(l1->contents.str, l2->contents.str) == 0)
break;
else
return false;
case EMPH:
case STRONG:
case LIST:
case SINGLEQUOTED:
case DOUBLEQUOTED:
if (match_inlines(l1->children, l2->children))
break;
else
return false;
case LINK:
case IMAGE:
return false; /* No links or images within links */
default:
fprintf(stderr, "match_inlines encountered unknown key = %d\n", l1->key);
exit(EXIT_FAILURE);
break;
}
l1 = l1->next;
l2 = l2->next;
}
return (l1 == NULL && l2 == NULL); /* return true if both lists exhausted */
}
/* find_reference - return true if link found in references matching label.
* 'link' is modified with the matching url and title. */
static bool find_reference(link *result, element *label) {
element *cur = references; /* pointer to walk up list of references */
link *curitem;
while (cur != NULL) {
curitem = cur->contents.link;
if (match_inlines(label, curitem->label)) {
*result = *curitem;
return true;
}
else
cur = cur->next;
}
return false;
}
/* find_note - return true if note found in notes matching label.
if found, 'result' is set to point to matched note. */
static bool find_note(element **result, char *label) {
element *cur = notes; /* pointer to walk up list of notes */
while (cur != NULL) {
if (strcmp(label, cur->contents.str) == 0) {
*result = cur;
return true;
}
else
cur = cur->next;
}
return false;
}
/**********************************************************************
Definitions for leg parser generator.
YY_INPUT is the function the parser calls to get new input.
We take all new input from (static) charbuf.
***********************************************************************/
# define YYSTYPE element *
#ifdef __DEBUG__
# define YY_DEBUG 1
#endif
#define YY_INPUT(buf, result, max_size) \
{ \
int yyc; \
if (charbuf && *charbuf != '\0') { \
yyc= *charbuf++; \
} else { \
yyc= EOF; \
} \
result= (EOF == yyc) ? 0 : (*(buf)= yyc, 1); \
}
/* peg-multimarkdown additions */
/* print_raw_element - print an element as original text */
static void print_raw_element(GString *out, element *elt) {
if (elt->key == LINK) {
print_raw_element_list(out,elt->contents.link->label);
} else {
if (elt->contents.str != NULL) {
g_string_append_printf(out, "%s", elt->contents.str);
} else {
print_raw_element_list(out, elt->children);
}
}
}
/* print_raw_element_list - print a list of elements as original text */
static void print_raw_element_list(GString *out, element *list) {
while (list != NULL) {
print_raw_element(out, list);
list = list->next;
}
}
/* label_from_element_list */
/* Returns a null-terminated string, which must be freed after use. */
static char *label_from_element_list(element *list, bool obfuscate) {
char *label;
char *label2;
GString *raw = g_string_new("");
print_raw_element_list(raw, list);
label = label_from_string(raw->str,obfuscate);
label2 = strdup(label);
free(label);
g_string_free(raw,true);
return label2;
}
/* label_from_string - strip spaces and illegal characters to generate valid
HTML id */
/* Returns a null-terminated string, which must be freed after use. */
static char *label_from_string(char *str, bool obfuscate) {
bool valid = FALSE;
GString *out = g_string_new("");
char *label;
while (*str != '\0') {
if (valid) {
/* can relax on following characters */
if ((*str >= '0' && *str <= '9') || (*str >= 'A' && *str <= 'Z')
|| (*str >= 'a' && *str <= 'z') || (*str == '.') || (*str== '_')
|| (*str== '-') || (*str== ':'))
{
g_string_append_c(out, tolower(*str));
}
} else {
/* need alpha as first character */
if ((*str >= 'A' && *str <= 'Z') || (*str >= 'a' && *str <= 'z'))
{
g_string_append_c(out, tolower(*str));
valid = TRUE;
}
}
str++;
}
label = out->str;
g_string_free(out, false);
return label;
}
/* find_label - return true if header, table, etc is found matching label.
* 'link' is modified with the matching url and title. */
static bool find_label(link *result, element *label) {
GString *query;
char *lab;
element *cur = labels; /* pointer to walk up list of references */
GString *text = g_string_new("");
print_raw_element_list(text, label);
lab = label_from_string(text->str,0);
query = g_string_new(lab);
free(lab);
g_string_free(text, true);
while (cur != NULL) {
if (strcmp(query->str,cur->contents.str) == 0) {
g_string_free(query, true);
return true;
}
else
cur = cur->next;
}
g_string_free(query, true);
return false;
}
/* Trim spaces at end of string */
static void trim_trailing_whitespace(char *str) {
while ( ( str[strlen(str)-1] == ' ' ) ||
( str[strlen(str)-1] == '\n' ) ||
( str[strlen(str)-1] == '\r' ) ||
( str[strlen(str)-1] == '\t' ) ) {
str[strlen(str)-1] = '\0';
}
}