forked from lmendo/MATL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
matl_parse.m
390 lines (379 loc) · 18.6 KB
/
matl_parse.m
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
function S = matl_parse(s, useTags)
%
% MATL parser.
%
% Input: string or char array containing MATL program.
%
% Output: struct array with parsed statements.
%
% Luis Mendo
if size(s,1)>1 % char array
s = s.';
s = s(:).'; % make a string
end
LF = char(10); % line feed in ASCII
CR = char(13); % line feed in ASCII
if useTags
strongBegin = '<strong>';
strongEnd = '</strong>';
else
strongBegin = '';
strongEnd = '';
end
% Parse to separate into statements
parseControlStack = zeros(1,50); % this will hold the opening statements for
% control statements: loops and conditional branches. Initiallized to 50,
% but will grow if needed.
parseNesting = 0;
L = numel(s);
S = struct([]); % initiallize. This will contain parsed statements.
% Three possibilites are: (1) use a struct array, (2) a cell array of scalar
% structs, or (3) a 2D cell array. I choose (1), based on the following.
% (2) has the advantage that in each struct only the fields actually
% needed are defined (for example, a statement of type "function" doesn't
% need an "from" field), but makes it difficult to access the same field
% in different cells.
% With (3) I need to define constants for column numbers to represent the
% "fields", and it seems to use up approximately the same amount of memory
% as (1).
% So I use (1): struct array. Non-used fields will be empty.
% A possible improvement would be to preallocate (with all fields) to a large number, and
% remove non-used entries at the end
pos = 1; % initial position in source string
n = 1; % statement to be parsed
while pos<=L
if (s(pos)=='-' && pos<L && any(s(pos+1)=='0123456789')) || ...
(s(pos)=='-' && pos<L-1 && s(pos+1)=='.' && any(s(pos+2)=='0123456789')) || ...
any(s(pos)=='0123456789') || ...
(s(pos)=='.' && pos<L && any(s(pos+1)=='0123456789'))
% It may be a number literal such as +3.4e-5j, or a two-number colon array such as
% -2.3:.4e2, or three-number colon array such as 10:-2.5e-1:.5e-5
[ini, fin] = regexp(s(pos:end), '(-?(\d+\.?\d*|\d*\.?\d+)(e-?\d+)?j?:){0,2}-?(\d+\.?\d*|\d*\.?\d+)(e-?\d+)?j?', 'once');
if ~isempty(ini) && ini==1
if any(s(pos:pos-1+fin)==':') % It's a colon array literal
S(n).type = 'literal.colonArray.numeric';
else % It's a number literal
S(n).type = 'literal.number';
end
S(n).source = s(pos:pos-1+fin);
S(n).nesting = parseNesting;
pos = pos + fin;
n = n + 1;
else
error('MATL:parser:internal', 'MATL internal error while parsing number/colon array literal')
end
elseif any(s(pos)=='TF') % It's a row logical array
% Consume until no longer T or F.
[~, fin] = regexp(s(pos:end), '[TF]+', 'once');
S(n).type = 'literal.logicalRowArray';
S(n).source = s(pos:pos-1+fin);
S(n).nesting = parseNesting;
pos = pos + fin;
n = n + 1;
elseif s(pos)=='[' % It's an array (number, char or logical). Consume until ]. There may be other
% [ and ] in between (although it would be a waste of characters), so consume until the number
% of [ minus ], not counting those predeced by an odd number of ', reaches 0
fin = find(~cumsum( ((s(pos:end)=='[')-(s(pos:end)==']')) .* ~mod(cumsum(s(pos:end)==''''),2) ),1);
assert(~isempty(fin), 'MATL:parser', 'MATL error while parsing: array literal not closed')
S(n).type = 'literal.array';
% Content validation will be done in the compiler, together with letter replacing
S(n).source = s(pos:pos-1+fin);
S(n).nesting = parseNesting;
pos = pos + fin;
n = n + 1;
elseif s(pos)=='{' % It's a cell array. Consume until matching }. There may be other { and } in between,
% so consume until the number of { minus }, not counting those predeced by an odd number of ', reaches 0
fin = find(~cumsum( ((s(pos:end)=='{')-(s(pos:end)=='}')) .* ~mod(cumsum(s(pos:end)==''''),2) ),1);
assert(~isempty(fin), 'MATL:parser', 'MATL error while parsing: cell array literal not closed')
S(n).type = 'literal.cellArray';
% Content validation will be done in the compiler, together with letter replacing
S(n).source = s(pos:pos-1+fin);
S(n).nesting = parseNesting;
pos = pos + fin;
n = n + 1;
elseif s(pos)=='''' % It's a string. Consume until next single ' (duplicated ' symbols don't close the string).
% Or it may be a char colon array. It has first and last operands char.
[ini, fin] = regexp(s(pos:end), '^''([^'']|'''')*?''(?!'')((:(''([^'']|'''')*?''(?!'')|-?(\d+\.?\d*|\d*\.?\d+)(e-?\d+)?j?))?:''([^'']|'''')*?''(?!''))?', 'once');
% The structure of this regular expresion is: 'c((:(c|n))?:c)?', where
% `c` (`^''([^'']|'''')*?''(?!'')`) indicates string and
% `n` (`-?(\d+\.?\d*|\d*\.?\d+)(e-?\d+)?j?`) indicates number
assert(~isempty(ini), 'MATL:parser', 'MATL error while parsing: string literal not closed')
assert(isequal(ini,1), 'MATL:parser:internal', 'MATL internal error while parsing string/colon array literal')
if any(s(pos:pos-1+fin)==':') % It's a (char) colon array literal
S(n).type = 'literal.colonArray.char';
else % It's a string
S(n).type = 'literal.string';
end
S(n).source = s(pos:pos-1+fin);
S(n).nesting = parseNesting;
pos = pos + fin;
n = n + 1;
elseif any(s(pos)==['!()*+-/:<=>\^_|~' 'A':'W' 'a':'z'])
S(n).type = 'function';
S(n).source = s(pos);
S(n).nesting = parseNesting;
pos = pos + 1;
n = n + 1;
elseif s(pos)=='$'
S(n).type = 'metaFunction.inSpec';
S(n).source = s(pos);
S(n).nesting = parseNesting;
pos = pos + 1;
n = n + 1;
elseif s(pos)=='#'
S(n).type = 'metaFunction.outSpec';
S(n).source = s(pos);
S(n).nesting = parseNesting;
pos = pos + 1;
n = n + 1;
elseif s(pos)=='&'
S(n).type = 'metaFunction.altInOut';
S(n).source = s(pos);
S(n).nesting = parseNesting;
pos = pos + 1;
n = n + 1;
elseif s(pos)=='"' % for
% We use fields "from", "end" and "else" to keep track of the
% structure of loops and conditional branches.
% parsingControlStack contains the indices of "for", "do...while" "while", "if"
% statements found during parsing that have not been closed yet.
% When an "else / finally" is found it's marked as associated with the most
% recent statement in parsingControlStack (which should be an "if", "while" or
% "do...while"), by means of fields "else" / "finally" (in the "if" / "(do) while"
% statement) and "from" (in the "else / finally" statement)
% When and "end" is found it's marked as associated with the most
% recent statement in parsingControlStack, by means of fields "end" (in
% the "for", "while" or "if" statement) and "from" (in the "end"
% Nesting level is recorded, so that indentation can ba applied
S(n).type = 'controlFlow.for';
S(n).source = s(pos);
S(n).nesting = parseNesting;
S(n).end = 0; % will be filled when a matching "end" is found
parseNesting = parseNesting + 1; % increase nesting level
parseControlStack(parseNesting) = n; % take note of opening statement
pos = pos + 1;
n = n + 1;
elseif s(pos)==',' % doTwice
S(n).type = 'controlFlow.doTwice';
S(n).source = s(pos);
S(n).nesting = parseNesting;
S(n).end = 0; % will be filled when a matching "end" is found
parseNesting = parseNesting + 1; % increase nesting level
parseControlStack(parseNesting) = n; % take note of opening statement
pos = pos + 1;
n = n + 1;
elseif s(pos)=='`' % doWhile
S(n).type = 'controlFlow.doWhile';
S(n).source = s(pos);
S(n).nesting = parseNesting;
S(n).end = 0; % will be filled when a matching "end" is found
parseNesting = parseNesting + 1; % increase nesting level
parseControlStack(parseNesting) = n; % take note of opening statement
pos = pos + 1;
n = n + 1;
elseif s(pos)=='?' % if
S(n).type = 'controlFlow.if';
S(n).source = s(pos);
S(n).nesting = parseNesting;
S(n).end = 0; % will be filled when a matching "end" is found
parseNesting = parseNesting + 1; % increase nesting level
parseControlStack(parseNesting) = n; % take note of opening statement
pos = pos + 1;
n = n + 1;
elseif s(pos)=='}' % else / finally
assert(parseNesting>0, 'MATL:parser', 'MATL error while parsing: ''else'' / ''finally'' found outside any control flow structure')
parseNesting = parseNesting - 1; % move temporarily one nesting level up
S(n).source = s(pos);
S(n).nesting = parseNesting;
parseNesting = parseNesting + 1; % restore nesting level
m = parseControlStack(parseNesting); % innermost control structure that is open
assert(any(strcmp(S(m).type,{'controlFlow.if' 'controlFlow.while' 'controlFlow.doWhile'})), 'MATL:parser', 'MATL error while parsing: ''else'' / ''finally'' not associated with ''if'', ''while'' or ''do...while''')
if strcmp(S(m).type,'controlFlow.if')
S(n).type = 'controlFlow.else';
assert(~isfield(S(m),'else') || isempty(S(m).else), 'MATL:parser', 'MATL error while parsing: two ''else'' statements found associated with the same ''if''')
S(m).else = n; % associate opening statement with this
else
S(n).type = 'controlFlow.finally';
assert(~isfield(S(m),'finally') || isempty(S(m).finally), 'MATL:parser', 'MATL error while parsing: two ''finally'' statements found associated with the same ''while'' or ''do..while''')
S(m).finally = n; % associate opening statement with this
end
S(n).from = m; % associate this with opening statement
pos = pos + 1;
n = n + 1;
elseif s(pos)=='@' % value of for or do twice / index of do...while/while iteration
assert(parseNesting>0, 'MATL:parser', 'MATL error while parsing: ''@'' found outside any control flow structure')
S(n).source = s(pos);
S(n).nesting = parseNesting;
success = false;
for m = parseControlStack(parseNesting:-1:1) % from innermost to outermost control structure
if strcmp(S(m).type,'controlFlow.for')
S(n).type = 'controlFlow.forValue';
success = true;
elseif strcmp(S(m).type,'controlFlow.doTwice')
S(n).type = 'controlFlow.doTwiceValue';
success = true;
elseif strcmp(S(m).type,'controlFlow.doWhile')
S(n).type = 'controlFlow.doWhileIndex';
success = true;
elseif strcmp(S(m).type,'controlFlow.while')
S(n).type = 'controlFlow.whileIndex';
success = true;
end
if success
S(n).from = m;
break
end
end
if ~success
error('MATL:parser', 'MATL error while parsing: ''@'' is not within any ''for'', ''do twice'', ''while'' or ''do...while'' loop')
end
pos = pos + 1;
n = n + 1;
elseif s(pos) =='.' % break
assert(parseNesting>0, 'MATL:parser', 'MATL error while parsing: ''break'' found outside any control flow structure')
S(n).type = 'controlFlow.break';
S(n).source = s(pos);
S(n).nesting = parseNesting;
success = false;
for m = parseControlStack(parseNesting:-1:1) % from innermost to outermost control structure
if any(strcmp(S(m).type,{'controlFlow.for' 'controlFlow.doTwice' 'controlFlow.doWhile' 'controlFlow.while'}))
S(n).from = m; % associate this with opening statement
success = true;
break % no need to look for any longer in the control stack
end
end
if ~success
error('MATL:parser', 'MATL error while parsing: ''break'' is not within any ''for'', ''do...while'' or ''while'' loop')
end
pos = pos + 1;
n = n + 1;
elseif s(pos)==']' % end (of for, doTwice, do...while, while, if)
assert(parseNesting>0, 'MATL:parser', 'MATL error while parsing: ''end'' found outside any control flow structure')
m = parseControlStack(parseNesting); % innermost control structure that is open
S(m).end = n; % associate opening with this
S(n).from = m; % associate this with opening statement
parseControlStack(parseNesting) = 0; % this loop/conditional branch is closed
parseNesting = parseNesting - 1; % decrease nesting level
S(n).type = 'controlFlow.end';
S(n).source = s(pos);
S(n).nesting = parseNesting;
pos = pos + 1;
n = n + 1;
elseif s(pos)=='%' % consume until LF or CR. Don't store in S
[ini, fin] = regexp(s(pos:end),'^%[^\r\n]*[\r\n]?');
assert(isequal(ini,1), 'MATL:parser:internal', 'MATL internal error while parsing comment literal')
pos = pos + fin;
% There's no statement. Just move `pos` forward. Statement count n is not incremented
elseif any(s(pos)==[' ' LF CR]) % do nothing, just consume (but that
% doesn't mean these characters are useless. They are sometimes needed
% as separators)
pos = pos + 1;
% There's no statement. Just move `pos` forward. Statement count n is not incremented
elseif s(pos)=='X' && pos<L
if s(pos+1)=='`' % while
S(n).type = 'controlFlow.while';
S(n).source = s([pos pos+1]);
S(n).nesting = parseNesting;
S(n).end = 0; % will be filled when a matching "end" is found
parseNesting = parseNesting + 1; % increase nesting level
parseControlStack(parseNesting) = n; % take note of opening statement
elseif s(pos+1)=='.' % continue
assert(parseNesting>0, 'MATL:parser', 'MATL error while parsing: ''continue'' found outside any control flow structure')
S(n).type = 'controlFlow.continue';
S(n).source = s([pos pos+1]);
S(n).nesting = parseNesting;
success = false;
for m = parseControlStack(parseNesting:-1:1) % from innermost to outermost control structure
if any(strcmp(S(m).type,{'controlFlow.for' 'controlFlow.doTwice' 'controlFlow.doWhile' 'controlFlow.while'}))
S(n).from = m; % associate this with opening statement
success = true;
break % no need to look for in the control stack any longer
end
end
if ~success
error('MATL:parser', 'MATL error while parsing: ''continue'' is not within any ''for'' loop')
end
elseif s(pos+1)=='@' % index of for
assert(parseNesting>0, 'MATL:parser', 'MATL error while parsing: ''X@'' found outside any control flow structure')
S(n).source = s([pos pos+1]);
S(n).nesting = parseNesting;
success = false;
for m = parseControlStack(parseNesting:-1:1) % from innermost to outermost control structure
if strcmp(S(m).type,'controlFlow.for')
S(n).type = 'controlFlow.forIndex';
success = true;
end
if success
S(n).from = m;
break
end
end
if ~success
error('MATL:parser', 'MATL error while parsing: ''X@'' is not within any ''for'' loop') % Change this if I include while, do...while for `X@`
end
elseif any(s(pos+1)==' ') % Not currently used after X. We can filter here or leave it to the compiler
error('MATL:parser', 'MATL error while parsing: %s%s%s not recognized at position %d', strongBegin, s([pos pos+1]), strongEnd, pos)
else
S(n).type = 'function';
S(n).source = s([pos pos+1]);
S(n).nesting = parseNesting;
end
pos = pos + 2;
n = n + 1;
elseif s(pos)=='Y' && pos<L
if any(s(pos+1)==' ') % Not used after Y
error('MATL:parser', 'MATL error while parsing: %s%s%s not recognized at position %d', strongBegin, s([pos pos+1]), strongEnd, pos)
else
S(n).type = 'function';
S(n).source = s([pos pos+1]);
S(n).nesting = parseNesting;
end
pos = pos + 2;
n = n + 1;
elseif s(pos)=='Z' && pos<L
if any(s(pos+1)==' ') % Not used after Z.
error('MATL:parser', 'MATL error while parsing: %s%s%s not recognized at position %d', strongBegin, s([pos pos+1]), strongEnd, pos)
else
S(n).type = 'function';
S(n).source = s([pos pos+1]);
S(n).nesting = parseNesting;
end
pos = pos + 2;
n = n + 1;
elseif any(s(pos)=='''') % Not allowed.
error('MATL:parser', 'MATL error while parsing: %s%s%s not recognized at position %d', strongBegin, s(pos), strongEnd, pos)
elseif any(s(pos)=='XYZ') && pos==L
error('MATL:parser', 'MATL error while parsing: %s%s%s not recognized at position %d', strongBegin, s(pos), strongEnd, pos)
else
error('MATL:parser', 'MATL error while parsing: unknown character %s%s%s at position %d', strongBegin, s(pos), strongEnd, pos)
end
end
% Include implicit statements in source code
% Mark existing statements as not implicit
%[S(:).implicit] = deal(false); % doesn't work in Octave (4.0.0)
for s = 1:numel(S)
S(s).implicit = false;
end
% Implicit ]
while parseNesting % While there is some loop or branch yet to be closed
m = parseControlStack(parseNesting); % innermost control structure that is open
S(m).end = n; % associate opening with this
S(n).from = m; % associate this with opening statement
parseControlStack(parseNesting) = 0; % this loop/conditional branch is closed
parseNesting = parseNesting - 1; % decrease nesting level
S(n).type = 'controlFlow.end';
S(n).source = ']' ;
S(n).nesting = parseNesting;
S(n).implicit = true;
n = n + 1;
end
% Implicit XD
S(end+1).source = 'XD';
S(end).type = 'function';
S(end).nesting = 0;
S(end).implicit = true;
if isfield(S,'end') && any(cellfun(@(x) isequal(x,0), {S.end}))
unclosed = find(cellfun(@(x) isequal(x,0), {S.end}), 1);
error('MATL:parser', 'MATL error while parsing: %s%s%s statement has no matching %s]%s', strongBegin, S(unclosed).source, strongEnd, strongBegin, strongEnd)
end
end