forked from pmougin/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathFSBlock.m
865 lines (718 loc) · 22 KB
/
FSBlock.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
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
/* FSBlock.m Copyright (c) 1998-2009 Philippe Mougin. */
/* This software is open source. See the license. */
#import "build_config.h"
#import "FSBlock.h"
#import "BlockPrivate.h"
#import "BlockRep.h"
#import "FSExecEngine.h"
#import "FSCompiler.h"
#import "FSArray.h"
#import "FSNSArrayPrivate.h"
#import "ArrayPrivate.h"
#import <Foundation/Foundation.h>
#import "FSBooleanPrivate.h"
#import "BlockInspector.h"
#import "FScriptFunctions.h"
#import "FSNumber.h"
#import "FSVoid.h"
#import "FSMiscTools.h"
#import "FSNSString.h"
#import "FSInterpreterResultPrivate.h"
#import "FSReturnSignal.h"
#import "Block_fscript.h"
void __attribute__ ((constructor)) initializeFSBlock(void)
{
[NSKeyedUnarchiver setClass:[FSBlock class] forClassName:@"Block"];
[NSUnarchiver decodeClassName:@"Block" asClassName:@"FSBlock"];
}
NSString *FS_Block_keyOfSetValueForKeyMessage(FSBlock *s)
{
if (s == nil) return nil;
@try
{
[s compilIfNeeded];
}
@catch (id exception)
{
return nil;
}
return [[s blockRep] keyOfSetValueForKeyMessage];
}
@implementation FSBlock
/////////////////// Experimental
/*-(NSString *)generateApplication:(NSString *)applicationName
{
NSString *sourcePath = [[NSBundle mainBundle] pathForResource:@"blockExec" ofType:@"app"];
NSString *destinationPath = [[NSHomeDirectory() stringByAppendingPathComponent:applicationName] stringByAppendingPathExtension:@"app"];
NSString *blockSourceCodePath = [[[destinationPath stringByAppendingPathComponent:@"Contents"] stringByAppendingPathComponent:@"Resources"] stringByAppendingPathComponent:@"block.txt"];
[[NSFileManager defaultManager] copyPath:sourcePath toPath:destinationPath handler:nil];
[[self printString] writeToFile:blockSourceCodePath atomically:YES];
return nil;
}*/
///////////////////
+ (id) alloc
{
return NSAllocateObject(self, 0, NULL);
}
+ (id)allocWithZone:(NSZone *)zone
{
return NSAllocateObject(self, 0, NULL);
}
+ (id)blockWithSelector:(SEL)theSelector
{
return [[@"#" stringByAppendingString:[FSCompiler stringFromSelector:theSelector]] asBlock];
}
+ (id)blockWithSource:(NSString *)source parentSymbolTable:(FSSymbolTable *)parentSymbolTable
{
return [self blockWithSource:source parentSymbolTable:parentSymbolTable onError:nil];
}
+ (id)blockWithSource:(NSString *)source parentSymbolTable:(FSSymbolTable *)parentSymbolTable onError:(FSBlock *)errorBlock
{
struct BlockSignature signature = {0,NO};
FSBlock *r = [[[self alloc] initWithCode:nil symbolTable:parentSymbolTable signature:signature source:[[source copy] autorelease] isCompiled:NO isCompact:NO sel:(SEL)0 selStr:nil] autorelease];
return [r compilOnError:errorBlock];
}
+ (void)initialize
{
static BOOL tooLate = NO;
if ( !tooLate ) {
tooLate = YES;
}
}
- (NSArray *)argumentsNames
{
return [blockRep argumentsNames];
}
- (id)ast
{
[self compilIfNeeded];
return [blockRep ast];
}
- (void) compilIfNeeded {[self compilOnError:nil];} // May raise
- (id)compilOnError:(FSBlock *)errorBlock // May raise
{
[self sync];
return [blockRep compilForBlock:self onError:errorBlock];
}
- (id)copy
{ return [self copyWithZone:NULL]; }
- (id)copyWithZone:(NSZone *)zone
{
[self compilIfNeeded];
// Blocks can share the same BlockRep only if they have no local symbols.
if ([blockRep signature].hasLocals)
{
// The block has local symbols
BlockRep *new = [blockRep copyWithZone:zone];
FSBlock *r =[[FSBlock allocWithZone:zone] initWithBlockRep:new];
[new release];
return r;
}
else
{
//NSLog(@"no copy of %@",self);
return [[FSBlock allocWithZone:zone] initWithBlockRep:blockRep];
}
}
- (void)dealloc
{
//NSLog(@"FSBlock dealloc");
[blockRep useRelease];
[blockRep release];
[inspector release];
[super dealloc];
}
- (void)encodeWithCoder:(NSCoder *)coder
{
[self sync];
if ( [coder allowsKeyedCoding] )
{
[coder encodeObject:blockRep forKey:@"FSBlock blockRep"];
}
else
{
[coder encodeObject:blockRep];
}
}
- (FSInterpreterResult *)executeWithArguments:(NSArray *)arguments
{
[self sync];
if (![arguments isKindOfClass:[NSArray class]])
[NSException raise:NSInvalidArgumentException format:@"argument of method \"executeWithArguments:\" must be an NSArray"];
return [blockRep executeWithArguments:arguments block:self];
}
- (NSUInteger) hash
{
BOOL isCompact = NO;
@try
{
isCompact = [self isCompact]; // will cause the block to be compiled if needed and thus may raise.
}
@catch (id exception) {}
if (isCompact) return [[blockRep selectorStr] hash];
else return [super hash];
}
- (id) initWithBlockRep:(BlockRep *)theBlockRep
{
if ((self = [super init]))
{
retainCount = 1;
blockRep = [[theBlockRep retain] useRetain];
inspector = nil;
return self;
}
return nil;
}
- (id)initWithCoder:(NSCoder *)coder
{
self = [super init];
retainCount = 1; // It is important that this initialization is made before decoding
// the blockRep because in decoding blockRep, some retain may be sent to this block
if ( [coder allowsKeyedCoding] )
{
blockRep = [[[coder decodeObjectForKey:@"FSBlock blockRep"] retain] useRetain];
if (blockRep == nil)
// Use the old key name
blockRep = [[[coder decodeObjectForKey:@"Block blockRep"] retain] useRetain];
}
else
{
blockRep = [[[coder decodeObject] retain] useRetain];
}
inspector = nil;
return self;
}
- (id)initWithCode:(FSCNBase *)theCode symbolTable:(FSSymbolTable*)theSymbolTable signature:(struct BlockSignature)theSignature source:(NSString*)theSource isCompiled:(BOOL)is_comp isCompact:(BOOL)isCompactArg sel:(SEL)theSel selStr:(NSString*)theSelStr
{
if ((self = [super init]))
{
blockRep = [[BlockRep alloc] initWithCode:theCode symbolTable:theSymbolTable signature:theSignature source:theSource isCompiled:is_comp isCompact:isCompactArg sel:theSel selStr:theSelStr];
[blockRep useRetain];
inspector = nil;
retainCount = 1;
return self;
}
return nil;
}
- (BOOL) isCompact
{
[self compilIfNeeded]; // may raise
return [blockRep isCompact];
}
- (BOOL) isEqual:anObject
{
BOOL r = NO;
if (self == anObject)
return YES;
else if ([anObject isKindOfClass:[FSBlock class]])
{
@try
{
r = [self isCompact] && [(FSBlock *)anObject isCompact] && // may raise
[blockRep selector] == [((FSBlock *)anObject)->blockRep selector];
}
@catch (id exception) {}
}
return r;
}
- (BOOL)isKindOfClass:(Class)aClass // For backward compatibility with code referencing the old Block class, we pretend to be a Block
{
if (aClass == [Block class])
return YES;
else
return [super isKindOfClass:aClass];
}
- (BOOL)isMemberOfClass:(Class)aClass // For backward compatibility with code referencing the old Block class, we pretend to be a Block
{
if (aClass == [Block class])
return YES;
else
return [super isMemberOfClass:aClass];
}
- (FSMsgContext *)msgContext
{
[self compilIfNeeded]; // may raise
return [blockRep msgContext];
}
- (id)retain
{
retainCount++;
return self;
}
- (NSUInteger)retainCount
{
return retainCount;
}
- (void)release
{
if (--retainCount == 0) [self dealloc];
}
- (SEL) selector
{
[self compilIfNeeded]; // may raise
return [blockRep selector];
}
- (NSString *)selectorStr
{
[self compilIfNeeded]; // may raise
return [blockRep selectorStr];
}
- (void) setInterpreter:(FSInterpreter *)theInterpreter
{
[blockRep setInterpreter:theInterpreter];
}
- (void)showError:(NSString*)errorMessage
{
[[self inspector] showError:errorMessage];
}
- (void)showError:(NSString*)errorMessage start:(NSInteger)firstCharacterIndex end:(NSInteger)lastCharacterIndex
{
[[self inspector] showError:errorMessage start:firstCharacterIndex end:lastCharacterIndex];
}
-(FSSymbolTable *) symbolTable
{ return [blockRep symbolTable];}
-(id) valueArgs:(id*)args count:(NSUInteger)count
{
[self compilIfNeeded];
return [blockRep valueArgs:args count:count block:self];
}
//////////////////////////////// USER METHODS ////////////////////////////
- (NSInteger) argumentCount { [self compilIfNeeded]; return [blockRep argumentCount];}
/*- (void) bind:(NSString *)name to:(id)anObject
{
if (![name isKindOfClass:[NSString class]]) FSArgumentError(name,1,@"NSString",@"bind:to:");
[self compilIfNeeded];
[blockRep bind:name to:anObject];
}
- (id) binding:(NSString*)name
{
if (![name isKindOfClass:[NSString class]]) FSArgumentError(name,1,@"NSString",@"binding:");
[self compilIfNeeded];
return [blockRep binding:name];
}*/
- (id)blockFromString:(NSString *)source // May raise
{
FSVerifClassArgsNoNil(@"blockFromString:",1,source,[NSString class]);
[self compilIfNeeded];
return [FSBlock blockWithSource:source parentSymbolTable:[blockRep symbolTable]];
}
- (id)blockFromString:(NSString *)source onError:(FSBlock *)errorBlock // May raise
{
FSVerifClassArgsNoNil(@"blockFromString:onError",2,source,[NSString class],errorBlock,[FSBlock class]);
[self compilIfNeeded];
return [FSBlock blockWithSource:source parentSymbolTable:[blockRep symbolTable] onError:errorBlock];
}
- (FSBlock *) clone
{ return [[self copy] autorelease]; }
- (NSString *)description
{
[self sync];
return [[[blockRep source] copy] autorelease];
}
- (id) guardedValue:(id)arg1
{
FSInterpreterResult *interpreterResult = [self executeWithArguments:[FSArray arrayWithObject:arg1]]; // We use an FSArray instead of NSArray because arg1 might be nil
if ([interpreterResult isOk])
{
return [interpreterResult result];
}
else
{
[self showError:[interpreterResult errorMessage]]; // usefull if the call stack is empty
[interpreterResult inspectBlocksInCallStack];
return nil;
}
}
- (void) inspect
{
[[self inspector] activate];
}
- (id)onException:(FSBlock *)handler
{
FSVerifClassArgs(@"onException:",1,handler,[FSBlock class],(NSInteger)1);
if ([self argumentCount] != 0) FSExecError(@"receiver of message \"onException:\" must be a block with no argument");
if ([handler argumentCount] > 1) FSExecError(@"argument of method \"onException:\" must be a block with zero or one argument (the actual argument will be the exception)");
@try
{
return [self value];
}
@catch (FSReturnSignal *returnSignal)
{
@throw;
}
@catch (id exception)
{
return [handler value:exception];
}
assert(0); // we'll never reach this code.
return nil; // to disable a warning
}
- (FSBoolean *)operator_equal:(id)operand
{
return ([self isEqual:operand] ? fsTrue : fsFalse);
}
- (FSBoolean *)operator_tilde_equal:(id)operand
{
return (![self isEqual:operand] ? fsTrue : fsFalse);
}
- (void) return { [self return:[FSVoid fsVoid]]; }
- (void) return:(id)rv
{
@throw [FSReturnSignal returnSignalWithBlock:self result:rv];
}
- (void) setValue:(FSBlock*)val
{
BlockRep *oldRep;
FSVerifClassArgsNoNil(@"setValue:",1,val,[FSBlock class]);
if (val == self) return;
[val compilIfNeeded];
oldRep = blockRep;
// Blocks can share the same BlockRep only if they have no local symbols.
if ([[val blockRep] signature].hasLocals)
// The block val has local symbols
blockRep = [[[val blockRep] copyWithZone:[self zone]] useRetain];
else
blockRep = [[[val blockRep] retain] useRetain];
[oldRep useRelease];
[oldRep release];
[inspector update];
[[NSNotificationQueue defaultQueue] enqueueNotification:[NSNotification notificationWithName:@"BlockDidChangeNotification" object:self] postingStyle:NSPostWhenIdle];
}
- (id) value
{ return [self valueArgs:(id*)nil count:1];}
- (id) value:(id)arg1
{
id args[2] = {arg1,nil};
return [self valueArgs:args count:2];
}
- (id) value:(id)arg1 value:(id)arg2
{
id args[3] = {arg1,nil,arg2};
return [self valueArgs:args count:3];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3
{
id args[4] = {arg1,nil,arg2,arg3};
return [self valueArgs:args count:4];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3 value:(id)arg4
{
id args[5] = {arg1,nil,arg2,arg3,arg4};
return [self valueArgs:args count:5];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3 value:(id)arg4 value:(id)arg5
{
id args[6] = {arg1,nil,arg2,arg3,arg4,arg5};
return [self valueArgs:args count:6];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3 value:(id)arg4 value:(id)arg5 value:(id)arg6
{
id args[7] = {arg1,nil,arg2,arg3,arg4,arg5,arg6};
return [self valueArgs:args count:7];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3 value:(id)arg4 value:(id)arg5 value:(id)arg6 value:(id)arg7
{
id args[8] = {arg1,nil,arg2,arg3,arg4,arg5,arg6,arg7};
return [self valueArgs:args count:8];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3 value:(id)arg4 value:(id)arg5 value:(id)arg6 value:(id)arg7 value:(id)arg8
{
id args[9] = {arg1,nil,arg2,arg3,arg4,arg5,arg6,arg7,arg8};
return [self valueArgs:args count:9];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3 value:(id)arg4 value:(id)arg5 value:(id)arg6 value:(id)arg7 value:(id)arg8 value:(id)arg9
{
id args[10] = {arg1,nil,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9};
return [self valueArgs:args count:10];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3 value:(id)arg4 value:(id)arg5 value:(id)arg6 value:(id)arg7 value:(id)arg8 value:(id)arg9 value:(id)arg10
{
id args[11] = {arg1,nil,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10};
return [self valueArgs:args count:11];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3 value:(id)arg4 value:(id)arg5 value:(id)arg6 value:(id)arg7 value:(id)arg8 value:(id)arg9 value:(id)arg10 value:(id)arg11
{
id args[12] = {arg1,nil,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11};
return [self valueArgs:args count:12];
}
- (id) value:(id)arg1 value:(id)arg2 value:(id)arg3 value:(id)arg4 value:(id)arg5 value:(id)arg6 value:(id)arg7 value:(id)arg8 value:(id)arg9 value:(id)arg10 value:(id)arg11 value:(id)arg12
{
id args[13] = {arg1,nil,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12};
return [self valueArgs:args count:13];
}
- (id) valueWithArguments:(NSArray *)operand
{
VERIF_OP_NSARRAY(@"valueWithArguments:");
[self compilIfNeeded];
return [blockRep valueWithArguments:operand block:self];
}
- (void) whileFalse
{
NSAutoreleasePool *pool;
short i;
BOOL cond = NO; // initialization of cond in order to avoid a warning
id resEval;
[self compilIfNeeded];
if ([self argumentCount] != 0) FSExecError(@"method \"whileFalse\" must be sent to a block with no arguments");
while (1)
{
pool = [[NSAutoreleasePool alloc] init];
i = 0;
while (i < 300 && (cond = ((resEval = [self body_notCompact_valueArgs:(id*)nil count:1]) == fsFalse || ([resEval isKindOfClass:[FSBoolean class]] && ![resEval isTrue]))))
{
i++;
}
[pool release];
if (!cond) break;
}
}
- (void) whileFalse:(FSBlock*)iterationBlock
{
NSAutoreleasePool *pool;
short i;
BOOL cond = NO; //initialization of cond in order to avoid a warning
id resEval;
FSVerifClassArgsNoNil(@"whileFalse:",1,iterationBlock,[FSBlock class]);
[self compilIfNeeded];
if ([self argumentCount] != 0)
FSExecError(@"method \"whileFalse:\" must be called on a block with no arguments");
if ([iterationBlock argumentCount] != 0)
FSExecError(@"argument 1 of method \"whileFalse:\" must be a block with no arguments");
while (1)
{
pool = [[NSAutoreleasePool alloc] init];
i = 0;
while (i < 300 && (cond = ((resEval = [self body_notCompact_valueArgs:(id*)nil count:1]) == fsFalse || ([resEval isKindOfClass:[FSBoolean class]] && ![resEval isTrue]))))
{
i++;
[iterationBlock body_notCompact_valueArgs:(id*)nil count:1];
}
[pool release];
if (!cond) break;
}
}
- (void) whileTrue
{
NSAutoreleasePool *pool;
short i;
BOOL cond = NO; // initialization of cond in order to avoid a warning
id resEval;
[self compilIfNeeded];
if ([self argumentCount] != 0) FSExecError(@"method \"whileTrue\" must be sent to a block with no arguments");
while (1)
{
pool = [[NSAutoreleasePool alloc] init];
i = 0;
while (i < 300 && (cond = ((resEval = [self body_notCompact_valueArgs:(id*)nil count:1]) == fsTrue || ([resEval isKindOfClass:[FSBoolean class]] && [resEval isTrue]))))
{
i++;
}
[pool release];
if (!cond) break;
}
}
- (void) whileTrue:(FSBlock*)iterationBlock
{
NSAutoreleasePool *pool;
short i;
BOOL cond = NO; // initialization of cond in order to avoid a warning
id resEval;
FSVerifClassArgsNoNil(@"whileTrue:",1,iterationBlock,[FSBlock class]);
[self compilIfNeeded];
if ([self argumentCount] != 0)
FSExecError(@"method \"whileTrue:\" must be called on a block with no arguments");
if ([iterationBlock argumentCount] != 0)
FSExecError(@"argument 1 of method \"whileTrue:\" must be a block with no arguments");
while (1)
{
pool = [[NSAutoreleasePool alloc] init];
i = 0;
while (i < 300 && (cond = ((resEval = [self body_notCompact_valueArgs:(id*)nil count:1]) == fsTrue || ([resEval isKindOfClass:[FSBoolean class]] && [resEval isTrue]))))
{
i++;
[iterationBlock body_notCompact_valueArgs:(id*)nil count:1];
}
[pool release];
if (!cond) break;
}
/*while ([self body_notCompact_valueArgs:(id*)nil count:1] == fsTrue)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
//short i = 0;
[iterationBlock body_notCompact_valueArgs:(id*)nil count:1];
[pool release];
// i++;
//if (i == 30)
//{
// if (NXUserAborted()) FSUserAborted();
// else i = 0;
//}
} */
}
@end
@implementation FSBlock (FSBlockPrivate)
- (BlockRep *)blockRep { return blockRep;}
-(id)body_compact_valueArgs:(id*)args count:(NSUInteger)count
{
return [blockRep body_compact_valueArgs:args count:count block:self];
}
-(id)body_notCompact_valueArgs:(id*)args count:(NSUInteger)count
{
return [blockRep body_notCompact_valueArgs:args count:count block:self];
}
- (FSBlockCompilationResult *) compilation // Compil the receiver if needed. Return the result of the compilation.
{
[self sync];
return [blockRep compilForBlock:self];
}
- (void)evaluateWithDoubleFrom:(double)start to:(double)stop by:(double)step
// precondition: step != 0
{
FSNumber *args[2]; // In fact an array with the special layout needed for methods
// body_compact_valueArgs:count:block: and body_notCompact_valueArgs:count:block:
double newValue;
NSAutoreleasePool *pool = nil;
if ((start < stop && step < 0) || (start > stop && step > 0)) return;
if (start == stop)
{
[self value:[FSNumber numberWithDouble:start]];
return;
}
[self compilIfNeeded];
@try
{
args[0] = [[FSNumber alloc] initWithDouble:start];
while (1)
{
short i = 0;
pool = [[NSAutoreleasePool alloc] init];
if ([blockRep isCompact])
{
if (start < stop)
{
while (i < 1000 && args[0]->value <= stop)
{
[blockRep body_compact_valueArgs:args count:2 block:self]; // may raise
i++;
newValue = args[0]->value + step;
[args[0] release];
args[0] = [[FSNumber alloc] initWithDouble:newValue];
}
if (args[0]->value > stop)
{
[args[0] release];
break;
}
}
else if (start > stop)
{
while (i < 1000 && args[0]->value >= stop)
{
[blockRep body_compact_valueArgs:args count:2 block:self]; // may raise
i++;
newValue = args[0]->value + step;
[args[0] release];
args[0] = [[FSNumber alloc] initWithDouble:newValue];
}
if (args[0]->value < stop)
{
[args[0] release];
break;
}
}
}
else
{
if (start < stop)
{
while (i < 1000 && args[0]->value <= stop)
{
[blockRep body_notCompact_valueArgs:args count:2 block:self]; // may raise
i++;
newValue = args[0]->value + step;
[args[0] release];
args[0] = [[FSNumber alloc] initWithDouble:newValue];
}
if (args[0]->value > stop)
{
[args[0] release];
break;
}
}
else if (start > stop)
{
while (i < 1000 && args[0]->value >= stop)
{
[blockRep body_notCompact_valueArgs:args count:2 block:self]; // may raise
i++;
newValue = args[0]->value + step;
[args[0] release];
args[0] = [[FSNumber alloc] initWithDouble:newValue];
}
if (args[0]->value < stop)
{
[args[0] release];
break;
}
}
}
[pool release];
}
}
@catch (id exception)
{
[exception retain];
[pool release];
[args[0] release];
[exception autorelease];
@throw;
}
}
- (BlockInspector *)inspector
{
if (!inspector) inspector = [[BlockInspector alloc] initWithBlock:self];
return inspector;
}
- (SEL)messageToArgumentSelector
{
@try
{
[self compilIfNeeded];
}
@catch (id exception)
{
return (SEL)0;
}
return [blockRep messageToArgumentSelector];
}
-(FSBlock *) totalCopy
{
BlockRep *new;
FSBlock *r;
[self sync];
new = [blockRep copy];
r =[[FSBlock alloc] initWithBlockRep:new];
[new release];
return r;
}
- (void) setNewRepAfterCompilation:(BlockRep*)newRep
{
[newRep retain]; [newRep useRetain];
[blockRep useRelease]; [blockRep release];
blockRep = newRep;
}
- (id)sync
{
if ([inspector edited])
{
BlockRep * new = [blockRep copy];
[new newSource:[inspector source]];
[blockRep useRelease];
[blockRep release];
blockRep = new;
[blockRep useRetain];
[inspector setEdited:NO];
}
return self;
}
@end