-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathorg_parser.c
271 lines (238 loc) · 7.09 KB
/
org_parser.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
/**
* @file org_parser.c
*/
/*
* 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 vers* ion 3 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include "org_parser.h"
#include "org_lexer.h"
#include "doc_elt.h"
#include "org_document.h"
#include "org_heading.h"
#include "org_text.h"
#include "org_property.h"
static void rec_parse_document (yyscan_t scanner, org_document *this, parse_ctxt *ctxt);
static doc_elt *rec_parse_heading(yyscan_t scanner, org_heading *dc, int level, parse_ctxt *ctxt);
/* This parser needs some serious love. Right now it assumes that the
* only type of elements which can be nested are headings.
*/
org_document *
org_parse_file_stream (FILE * file, doc_src src, parse_ctxt *ctxt)
{
assert (file);
debug_msg (PARSER, 3, "Parsing File\n");
/* Initialize flex data structures */
yyscan_t scanner;
int err = 0;
err = yylex_init (&scanner);
if (err == ENOMEM)
{
/* Memory allocation error, abort execution. */
return NULL;
}
else if (err == EINVAL)
{
/* Invalid yylex_init argument, abort execution. */
return NULL;
}
/* Set the input stream of the lexer */
yyset_in (file, scanner);
/* set up the extra field */
struct extra e;
e.elt = NULL;
e.curr_elt = NULL;
e.curr_type = T_NOTHING;
e.src = src;
e.ctxt = ctxt;
yyset_extra (&e, scanner);
/* Initialize doc_tree */
org_document *document = org_document_create_empty (&org_document_ops);
/* call the recursive function */
rec_parse_document (scanner, document, ctxt);
/* Destroy scanner */
yylex_destroy (scanner);
debug_msg (PARSER, 3, "Finished Parsing File\n");
return document;
}
static void
rec_parse_document (yyscan_t scanner, org_document *this, parse_ctxt *ctxt)
{
/* 1. get the text element
* 2 check type
* 2.1 Non children type: add it to the list of elements
* 2.2 Children type, check the level
* 2.2.1 If same level, or higher, return the node
* 2.2.2 If its a lower level, call this function on it
*/
bool exit = false;
doc_elt * ret = 0;
/* Get the next element from the scanner */
TOKEN tok = yylex (scanner);
doc_elt * elt = yyget_extra (scanner)->elt;
doc_src src = yyget_extra (scanner) -> src;
/* Parse the file */
while(!exit)
{
ctxt->current_level = 0;
if (tok == T_NOTHING)
{
debug_msg (PARSER, 3, "Got Nothing\n");
/* do nothing */
}
else if (tok == T_ORG_HEADING)
{
int next_level = org_heading_get_level ((org_heading *) elt, src);
if (next_level <= 0)
{
debug_msg (PARSER, 3, "heading with level <= 0\n");
assert (0);
return;
}
else
{
debug_msg (PARSER, 3, "Adding Sub-Heading\n");
/* next level is at least more than this one */
org_document_add_heading_last (this, src, (org_heading *) elt);
org_heading_set_parse_ctxt ((org_heading *) elt, src, ctxt);
elt = (doc_elt *)
rec_parse_heading(scanner, (org_heading *) elt, next_level, ctxt);
}
}
else if (tok == T_ORG_TEXT || tok == T_ORG_PROPERTY)
{
debug_msg (PARSER, 3, "Got Text\n");
org_document_add_text_last (this, src, (org_text *) elt);
/* Get the next element from the scanner */
tok = yylex (scanner);
elt = yyget_extra (scanner) -> elt;
}
else
{
debug_msg (PARSER, 2, "Got unknown element, skipping");
/* Get the next element from the scanner */
tok = yylex (scanner);
elt = yyget_extra (scanner) -> elt;
}
if (tok == T_QUIT || elt == NULL)
{
/* break if at the end of the file */
ret = NULL;
exit = true;
tok = T_QUIT;
elt = NULL;
}
}
return;
}
static doc_elt *
rec_parse_heading(yyscan_t scanner, org_heading *this, int this_level, parse_ctxt *ctxt)
{
/* 1. get the text element
* 2 check type
* 2.1 Non children type: add it to the list of elements
* 2.2 Children type, check the level
* 2.2.1 If same level, or higher, return the node
* 2.2.2 If its a lower level, call this function on it
*/
bool exit = false;
doc_elt * ret = 0;
/* Get the next element from the scanner */
TOKEN tok = yylex (scanner);
doc_elt * elt = yyget_extra (scanner)->elt;
doc_src src = yyget_extra (scanner) -> src;
/* Parse the file */
while(!exit)
{
ctxt->current_level = this_level;
if (tok == T_NOTHING)
{
debug_msg (PARSER, 3, "Got Nothing\n");
/* do nothing */
}
else if (tok == T_ORG_HEADING)
{
int next_level = org_heading_get_level ((org_heading *)elt, src);
//int next_level = 1;
if (next_level <= this_level)
{
debug_msg (PARSER, 4, "-return heading\n");
return elt;
}
else
{
debug_msg (PARSER, 3, "Adding Sub-Heading\n");
/* next level is at least more than this one */
org_heading_add_subheading_last (this, src, elt);
org_heading_set_parse_ctxt ((org_heading *) elt, src, ctxt);
elt =
rec_parse_heading(scanner, (org_heading *)elt, next_level, ctxt);
}
}
else if (tok == T_ORG_TEXT)
{
debug_msg (PARSER, 3, "Got Text\n");
org_heading_add_subtext_last (this, src, elt);
/* Get the next element from the scanner */
tok = yylex (scanner);
elt = yyget_extra (scanner)-> elt;
}
else if (tok == T_ORG_PROPERTY)
{
debug_msg (PARSER, 3, "Got property\n");
/* if the property was a UID, add it to the heading. Only
* recognize the first ID below a heading */
if (doc_elt_get_key((doc_elt *)this)->length == 0)
{
org_property *p = (org_property *) elt;
char *key = org_property_get_key_string (p, src);
size_t length = org_property_get_key_length (p, src);
if (length == 2) /* length of ID */
{
if (strncmp (key, "id", 2) == 0
|| strncmp (key, "ID", 2) == 0)
{
debug_msg (PARSER, 3, "Setting heading key to property");
org_heading_set_key (this, org_property_get_value_string (p, src),
org_property_get_value_length (p, src));
}
}
}
/* add the property as a text element */
org_heading_add_subtext_last (this, src, elt);
/* Get the next element from the scanner */
tok = yylex (scanner);
elt = yyget_extra (scanner)-> elt;
}
else
{
debug_msg (PARSER, 2, "Got unknown element, skipping");
/* Get the next element from the scanner */
tok = yylex (scanner);
elt = yyget_extra (scanner) -> elt;
}
if (tok == T_QUIT || elt == NULL)
{
/* break if at the end of the file */
ret = NULL;
exit = true;
tok = T_QUIT;
elt = NULL;
}
}
return ret;
}