forked from pmougin/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCompiledCodeNode.m
502 lines (415 loc) · 13.1 KB
/
CompiledCodeNode.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
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
/* CompiledCodeNode.m Copyright (c) 1998-2008 Philippe Mougin. */
/* This software is open source. See the license. */
#import "CompiledCodeNode.h"
#import "FSSymbolTable.h"
#import <Foundation/Foundation.h>
#import "FSBlock.h"
#import "FSUnarchiver.h"
#import "FSKeyedUnarchiver.h"
#import "FSArray.h"
#import "MessagePatternCodeNode.h"
#import "FSNumber.h"
#import "FSCNIdentifier.h"
#import "FSCNUnaryMessage.h"
#import "FSCNBinaryMessage.h"
#import "FSCNKeywordMessage.h"
#import "FSCNCascade.h"
#import "FSCNStatementList.h"
#import "FSCNPrecomputedObject.h"
#import "FSCNArray.h"
#import "FSCNBlock.h"
#import "FSCNAssignment.h"
#import "FScriptFunctions.h"
@implementation CompiledCodeNode
+ (id)compiledCodeNode
{ return [[[self alloc] init] autorelease]; }
- (id)addSubnode:(CompiledCodeNode *)subnode
{
assert(subnode != nil);
[subnodes addObject:subnode];
return self;
}
- (NSString *)description
{
NSMutableString *r;
NSString *type;
unsigned i;
switch (nodeType)
{
case IDENTIFIER: type = @"IDENTIFIER"; break;
case MESSAGE: type = @"MESSAGE"; break;
case STATEMENT_LIST: type = @"STATEMENT_LIST"; break;
case NUMBER: type = @"NUMBER"; break;
case BLOCK : type = @"BLOCK"; break;
case OBJECT : type = @"OBJECT"; break;
case ARRAY : type = @"ARRAY"; break;
case TEST_ABORT: type = @"TEST_ABORT"; break;
case ASSIGNMENT: type = @"ASSIGNMENT"; break;
case CASCADE: type = @"CASCADE"; break;
default: assert(0);
}
r = [NSMutableString stringWithFormat:@"\n****************************\n%@: type = %@, firstCharIndex = %ld, lastCharIndex = %ld", [self class], type, firstCharIndex, lastCharIndex];
switch (nodeType)
{
case IDENTIFIER:
[r appendFormat:@", identifier = (%d,%d), identifierSymbol = %@", identifier.level,identifier.index, identifierSymbol];
break;
case MESSAGE:
[r appendFormat:@", selector = %@, \n------- receiver = %@ --------", selector, receiver];
if ([self isKindOfClass:[MessagePatternCodeNode class]])
[r appendFormat:@", pattern = %@", [(MessagePatternCodeNode *)self pattern]];
break;
case NUMBER:
case BLOCK :
case OBJECT :
[r appendFormat:@", object = %@", object];
break;
case CASCADE:
[r appendFormat:@", ------- receiver = %@ -------", receiver];
break;
default:
break;
}
[r appendFormat:@", \n subnodeList ( %ld elements)", (long)[subnodes count]];
for (i = 0; i < [subnodes count]; i++)
[r appendString:[[subnodes objectAtIndex:i] description]];
return r;
}
- (long)firstCharIndex
{ return firstCharIndex; }
- (long)lastCharIndex
{ return lastCharIndex; }
- (id)copy
{ return [self retain]; /*return [self copyWithZone:NULL]; */ }
- (id)copyWithZone:(NSZone *)zone
{
return [self retain];
}
-(void)dealloc
{
// printf("\nCompiledCodeNode dealloc");
[subnodes release];
switch (nodeType)
{
case MESSAGE : [operator release]; [msgContext release];
[receiver release]; [selector release];break;
case NUMBER :
case BLOCK :
case OBJECT : [object release];break;
case IDENTIFIER : [identifierSymbol release]; break;
case CASCADE : [receiver release]; break;
default : break;
}
[super dealloc];
}
- (void)encodeWithCoder:(NSCoder *)coder
{
if ( [coder allowsKeyedCoding] )
{
[coder encodeDouble:firstCharIndex forKey:@"firstCharIndex"];
[coder encodeDouble:lastCharIndex forKey:@"lastCharIndex"];
[coder encodeInt:nodeType forKey:@"nodeType"];
switch (nodeType)
{
case IDENTIFIER:
[coder encodeInt:identifier.index forKey:@"identifier.index"];
[coder encodeInt:identifier.level forKey:@"identifier.level"];
[coder encodeObject:identifierSymbol forKey:@"identifierSymbol"];
break;
case MESSAGE:
[coder encodeObject:operator forKey:@"operator"];
[coder encodeObject:receiver forKey:@"receiver"];
[coder encodeObject:selector forKey:@"selector"];
break;
case NUMBER:
case BLOCK :
case OBJECT :
[coder encodeObject:object forKey:@"object"];
break;
case CASCADE:
[coder encodeObject:receiver forKey:@"receiver"]; break;
default:
break;
}
[coder encodeObject:subnodes forKey:@"subnodes"];
}
else
{
[coder encodeValueOfObjCType:@encode(typeof(firstCharIndex)) at:&firstCharIndex];
[coder encodeValueOfObjCType:@encode(typeof(lastCharIndex)) at:&lastCharIndex];
[coder encodeValueOfObjCType:@encode(typeof(nodeType)) at:&nodeType];
switch (nodeType)
{
case IDENTIFIER:
[coder encodeValueOfObjCType:@encode(typeof(identifier)) at:&identifier];
[coder encodeObject:identifierSymbol];
break;
case MESSAGE:
[coder encodeObject:operator];
[coder encodeObject:receiver];
[coder encodeObject:selector];
break;
case NUMBER:
case BLOCK :
case OBJECT :
[coder encodeObject:object];
break;
case CASCADE:
[coder encodeObject:receiver]; break;
default:
break;
}
[coder encodeObject:subnodes];
}
}
-(id)awakeAfterUsingCoder:(NSCoder *)coder
{
FSCNBase *r;
switch (nodeType)
{
case IDENTIFIER:
r = [[FSCNIdentifier alloc] initWithIdentifierString:identifierSymbol locationInContext:identifier];
break;
case MESSAGE:
if (operator != nil)
r = [[FSCNBinaryMessage alloc] initWithReceiver:(id)receiver selectorString:selector pattern:[self pattern] argument:[subnodes objectAtIndex:0]];
else if ([subnodes count] == 0)
r = [[FSCNUnaryMessage alloc] initWithReceiver:(id)receiver selectorString:selector pattern:[self pattern]];
else
r = [[FSCNKeywordMessage alloc] initWithReceiver:(id)receiver selectorString:selector pattern:[self pattern] arguments:subnodes];
break;
case BLOCK:
r = [[FSCNBlock alloc] initWithBlockRep:object];
break;
case NUMBER:
case OBJECT:
r = [[FSCNPrecomputedObject alloc] initWithObject:object];
break;
case ARRAY:
r = [[FSCNArray alloc] initWithElements:subnodes];
break;
case CASCADE:
r = [[FSCNCascade alloc] initWithReceiver:(id)receiver messages:subnodes];
break;
case STATEMENT_LIST:
r = [[FSCNStatementList alloc] initWithStatements:subnodes];
break;
case ASSIGNMENT:
r = [[FSCNAssignment alloc] initWithLeft:[subnodes objectAtIndex:0] right:[subnodes objectAtIndex:1]];
break;
default:
FSExecError(@"Internal error in method awakeAfterUsingCoder in class CompiledCodeNode");
}
[r setFirstCharIndex:firstCharIndex lastCharIndex:lastCharIndex];
[self autorelease];
return r;
}
- (id)initWithCoder:(NSCoder *)coder
{
self = [super init];
if ( [coder allowsKeyedCoding] )
{
firstCharIndex = [coder decodeDoubleForKey:@"firstCharIndex"];
lastCharIndex = [coder decodeDoubleForKey:@"lastCharIndex"];
nodeType = [coder decodeIntForKey:@"nodeType"];
switch (nodeType)
{
case IDENTIFIER:
identifier.index = [coder decodeIntForKey:@"identifier.index"];
identifier.level = [coder decodeIntForKey:@"identifier.level"];
identifierSymbol = [[coder decodeObjectForKey:@"identifierSymbol"] retain];
if ([coder isKindOfClass:[FSKeyedUnarchiver class]])
{
identifier = [[(FSKeyedUnarchiver*)coder symbolTableForCompiledCodeNode] findOrInsertSymbol:identifierSymbol];
}
break;
case MESSAGE:
operator = [[coder decodeObjectForKey:@"operator"] retain];
receiver = [[coder decodeObjectForKey:@"receiver"] retain];
selector = [[coder decodeObjectForKey:@"selector"] retain];
sel = sel_registerName([selector UTF8String]);
msgContext = [[FSMsgContext alloc] init];
break;
case NUMBER:
case BLOCK :
case OBJECT :
object = [[coder decodeObjectForKey:@"object"] retain];
break;
case CASCADE:
receiver = [[coder decodeObjectForKey:@"receiver"] retain];
break;
default:
break;
}
subnodes = [[coder decodeObjectForKey:@"subnodes"] retain];
}
else
{
[coder decodeValueOfObjCType:@encode(typeof(firstCharIndex)) at:&firstCharIndex];
[coder decodeValueOfObjCType:@encode(typeof(lastCharIndex)) at:&lastCharIndex];
[coder decodeValueOfObjCType:@encode(typeof(nodeType)) at:&nodeType];
switch (nodeType)
{
case IDENTIFIER:
[coder decodeValueOfObjCType:@encode(typeof(identifier)) at:&identifier];
identifierSymbol = [[coder decodeObject] retain];
if ([coder isKindOfClass:[FSUnarchiver class]])
{
/* NSRange range;
NSString *symbol;
range.location = firstCharIndex;
range.length = 1 + lastCharIndex - firstCharIndex;
symbol = [[(FSUnarchiver*)coder source] substringWithRange:range]; */
identifier = [[(FSUnarchiver*)coder symbolTableForCompiledCodeNode] findOrInsertSymbol:identifierSymbol];
}
break;
case MESSAGE:
operator = [[coder decodeObject] retain];
receiver = [[coder decodeObject] retain];
selector = [[coder decodeObject] retain];
sel = sel_registerName([selector UTF8String]);
msgContext = [[FSMsgContext alloc] init];
break;
case NUMBER:
case BLOCK :
case OBJECT :
object = [[coder decodeObject] retain];
break;
case CASCADE:
receiver = [[coder decodeObject] retain];
break;
default:
break;
}
subnodes = [[coder decodeObject] retain];
}
return self;
}
- (CompiledCodeNode *)getSubnode:(unsigned)pos
{
//assert(pos >= 0 && pos < [subnodes count]);
return [subnodes objectAtIndex:pos];
}
/*- (Array *)getListSubnode
{
return subnodes;
} */
- (id)init
{
if ((self = [super init]))
{
subnodes = [[FSArray alloc] init];
firstCharIndex = -1;
lastCharIndex = -1;
return self;
}
return nil;
}
- (id)insertSubnode:(CompiledCodeNode *)subnode at:(unsigned)pos
{
[subnodes insertObject:subnode atIndex:pos];
return self;
}
- (unsigned)subnodeCount
{
return [subnodes count];
}
- (id)setFirstCharIndex:(long)first
{ firstCharIndex = first; return self; }
- (id)setLastCharIndex:(long)last
{ lastCharIndex = last; return self; }
- (id)setFirstCharIndex:(long)first last:(long)last
{
firstCharIndex = first;
lastCharIndex = last;
return self;
}
- (id)setSubnode:(CompiledCodeNode *)subnode at:(unsigned)pos
{
[subnodes replaceObjectAtIndex:pos withObject:subnode];
return self;
}
- (id)removeSubnode:(unsigned)pos
{
[subnodes removeObjectAtIndex:pos];
return self;
}
- (enum FSCNType) nodeType { return nodeType ;}
- (NSString*) operatorSymbols { return operator ;}
- (struct FSContextIndex) identifier { return identifier;}
- (NSString *) identifierSymbol {return identifierSymbol;}
- (CompiledCodeNode *) receiver { return receiver;}
//- (NSString *) selector { return selector;}
- (id) object {return object;}
- (FSPattern *) pattern {return nil;}
- (SEL) sel
{
return sel;
}
- (FSMsgContext *) msgContext
{
return msgContext;
}
- (id)setBlockRep:(BlockRep *) theBlockRep
{
nodeType = BLOCK;
object = [theBlockRep retain];
return self;
}
- (id)setFSIdentifier:(struct FSContextIndex) theIdentifier symbol:(NSString*)theSymbol
{
nodeType = IDENTIFIER;
identifier = theIdentifier;
identifierSymbol = [theSymbol retain];
return self;
}
- (id)setSubnodes:(FSArray *)theListSubnode
{
[subnodes autorelease];
subnodes = [theListSubnode retain];
return self;
}
- (id)setMessageWithReceiver:(CompiledCodeNode *) theReceiver
selector:(NSString *) theSelector
operatorSymbols:(NSString*) theOperatorSymbols
{
nodeType = MESSAGE;
operator = [theOperatorSymbols retain];
receiver = [theReceiver retain];
selector = [theSelector retain];
sel = sel_registerName([selector UTF8String]);
msgContext = [[FSMsgContext alloc] init];
return self;
}
- (id)setNodeType:(enum FSCNType) theNodeType
{
nodeType = theNodeType;
return self;
}
- (id)setNumber:(FSNumber *)theNumber
{
nodeType = NUMBER;
object = [theNumber retain];
return self;
}
- (id)setobject:(id)theobject
{
nodeType = OBJECT;
object = [theobject retain];
return self;
}
- (id)setReceiver:(CompiledCodeNode*)theReceiver
{
receiver = [theReceiver retain];
return self;
}
-(void)translateCharRange:(int32_t)translation
{
long nb,i;
firstCharIndex += translation; lastCharIndex += translation;
if (nodeType == MESSAGE)
[receiver translateCharRange:translation];
for (i = 0, nb = [subnodes count]; i <nb; i++)
[[subnodes objectAtIndex:i] translateCharRange:translation];
}
@end