forked from pmougin/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathFSSystem.m
425 lines (347 loc) · 10.8 KB
/
FSSystem.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
/* FSSystem.m Copyright (c) 1998-2000 Philippe Mougin. */
/* This software is open source. See the license. */
#import "build_config.h"
#import "FSSystem.h"
#import <Foundation/Foundation.h>
#import "FSUnarchiver.h"
#import "FSBlock.h"
#import "FSVoid.h"
#import "Space.h"
#import "FScriptFunctions.h"
#import "FSInterpreterResult.h"
#import "FSNSString.h"
#import "FSArray.h"
#import "FSMiscTools.h"
#import "FSInterpreter.h"
#import "FSKeyedUnarchiver.h"
#import <AppKit/AppKit.h>
#import <CoreData/CoreData.h>
#import "ArrayRepFetchRequest.h"
#import "ArrayPrivate.h"
#import "FSSymbolTable.h"
@interface FSSystem(SystemInternal)
- (id)executor;
- (FSInterpreter *)interpreter;
@end
@implementation FSSystem
static BOOL loadNonKeyedArchives;
+ (void)setLoadNonKeyedArchives:(BOOL)b
{
loadNonKeyedArchives = b;
}
+ (void)initialize
{
static BOOL tooLate = NO;
if ( !tooLate )
{
loadNonKeyedArchives = NO;
tooLate = YES;
}
}
+ (id)system:(id)theExecutor
{ return [[[self alloc] init:theExecutor] autorelease]; }
- (void)attach:(id)objectContext
{
FSVerifClassArgsNoNil(@"attach:",1,objectContext,[NSManagedObjectContext class]);
NSArray *entities = [[[objectContext persistentStoreCoordinator] managedObjectModel] entities];
NSPredicate *predicate = [NSPredicate predicateWithValue:YES];
NSFetchRequest *request = [[[NSFetchRequest alloc] init] autorelease];
FSInterpreter *interpreter = [self interpreter];
if (!interpreter) FSExecError(@"Can't attach: missing F-Script interpreter");
[request setPredicate:predicate];
for (NSUInteger i = 0, count = [entities count]; i < count; i++)
{
NSError *error;
NSEntityDescription *entity = [entities objectAtIndex:i];
[request setEntity:entity];
NSArray *objects = [objectContext executeFetchRequest:request error:&error];
if (objects == nil)
FSExecError([NSString stringWithFormat:@"Error while fetching entity %@: %@", [entity name], [error localizedDescription]]);
else
[interpreter setObject:objects forIdentifier:[entity name]];
}
}
- (id)copy
{ return [self copyWithZone:NULL]; }
- (id)copyWithZone:(NSZone *)zone
{ return [[FSSystem allocWithZone:zone] init:executor]; }
- (void)dealloc
{
[executor release];
[super dealloc];
}
- (NSString *) description
{
return [NSString stringWithFormat:@"<%@>",descriptionForFSMessage(self)];
}
- (id)replacementObjectForCoder:(NSCoder *)aCoder
{
return [NSNull null];
}
- (id)init:(id)theExecutor
{
if ((self = [super init]))
{
executor = [theExecutor retain];
return self;
}
return nil;
}
- (FSInterpreter *)interpreter // Will return nil if the associated interpreter no longer exists
{
return [executor interpreter];
}
- (void)verboseLevel:(NSInteger)theVerboseLevel {[executor setVerboseLevel:theVerboseLevel];}
///////////////////////////////////// USER METHODS ////////////////////////
- (void)beep
{
NSBeep();
}
- (id)blockFromString:(NSString *)source // May raise
{
FSVerifClassArgsNoNil(@"blockFromString:", 1, source, [NSString class]);
return [FSBlock blockWithSource:source parentSymbolTable:[executor symbolTable]]; // May raise
}
- (id)blockFromString:(NSString *)source onError:(FSBlock *)errorBlock // May raise
{
FSVerifClassArgsNoNil(@"blockFromString:onError:", 2, source, [NSString class], errorBlock, [FSBlock class]);
return [FSBlock blockWithSource:source parentSymbolTable:[executor symbolTable] onError:errorBlock]; // May raise
}
- (void)browse
{
if (![executor interpreter]) FSExecError(@"Can't open the F-Script object browser: missing F-Script interpreter ");
[[executor interpreter] browse];
}
- (void)browse:(id)anObject
{
if (![executor interpreter]) FSExecError(@"Can't open the F-Script object browser: missing F-Script interpreter ");
[[executor interpreter] browse:anObject];
}
- (void)clear
{
NSArray *identifiers = [self identifiers];
NSUInteger i, count;
for (i = 0, count = [identifiers count]; i < count; i++)
{
NSString *identifier = [identifiers objectAtIndex:i];
if (![identifier isEqualToString:@"sys"])
[self clear:identifier];
}
}
- (void)clear:(NSString *)identifier
{
FSSymbolTable *symbolTable = [executor symbolTable];
struct FSContextIndex contextIndex = [symbolTable indexOfSymbol:identifier];
if (contextIndex.index == -1)
FSExecError(@"argument of method \"clear:\" must be the name of a defined variable");
else if ([identifier isEqualToString:@"sys"])
FSExecError(@"\"sys\" can't be removed from the workspace");
else
{
BOOL isDefined;
[symbolTable objectForIndex:contextIndex isDefined:&isDefined];
if (isDefined)
[symbolTable undefineSymbolAtIndex:contextIndex];
else
FSExecError(@"argument of method \"clear:\" must be the name of a defined variable");
}
}
- (FSSystem *)clone { return [[self copy] autorelease];}
- (NSString *)fullUserName
{
NSString *s = NSFullUserName();
if (s) return [NSMutableString stringWithString:s];
else return nil;
}
- (NSString *)homeDirectory
{
NSString *s = NSHomeDirectory();
if (s) return [NSMutableString stringWithString:s];
else return nil;
}
- (NSString *)homeDirectoryForUser:(NSString *)userName
{
NSString *s;
FSVerifClassArgsNoNil(@"homeDirectoryForUser:",1,userName,[NSString class]);
s = NSHomeDirectoryForUser(userName);
if (s) return [NSMutableString stringWithString:s];
else return nil;
}
- (FSArray *)identifiers
{
return [executor allDefinedSymbols];
}
- (void) installFlightTutorial
{
[executor installFlightTutorial];
}
- (id)ktest
{
NSString *path;
NSBundle *bundle = [NSBundle bundleForClass:[self class]];
NSString *testSuiteFileName = @"KTest";
if ((path = [bundle pathForResource:testSuiteFileName ofType:@"txt"]))
{
NSStringEncoding usedEncoding;
NSError *error;
NSString *ktestString = [NSString stringWithContentsOfFile:path usedEncoding:&usedEncoding error:&error];
if (!ktestString)
{
NSString *errorMessage = [NSString stringWithFormat:@"Unable to read the ktest file: %@", [error localizedDescription]];
NSLog(@"%@", errorMessage);
return errorMessage;
}
return [(FSBlock *)[self blockFromString:ktestString] value];
}
return nil;
}
- (id) load
{
NSOpenPanel *openPanel = [NSOpenPanel openPanel];
if([openPanel runModal] == NSOKButton)
return [self load:[openPanel filename]];
else // cancel button
return [FSVoid fsVoid];
}
- (id) load:(NSString *)fileName
{
id r;
NSString *errStr = nil;
FSUnarchiver *unarchiver;
NSData *data;
NSString *logFmt = @"failure of loading: %@";
FSVerifClassArgsNoNil(@"load:",1,fileName,[NSString class]);
@try
{
data = [NSData dataWithContentsOfFile:fileName];
if (data)
{
if (loadNonKeyedArchives)
{
unarchiver = [[[FSUnarchiver alloc] initForReadingWithData:data loaderEnvironmentSymbolTable:[executor symbolTable] symbolTableForCompiledCodeNode:nil] autorelease];
r = [unarchiver decodeObject];
}
else
{
@try
{
FSKeyedUnarchiver * keyedUnarchiver = [[[FSKeyedUnarchiver alloc] initForReadingWithData:data loaderEnvironmentSymbolTable:[executor symbolTable] symbolTableForCompiledCodeNode:nil] autorelease];
r = [keyedUnarchiver decodeObjectForKey:@"root"];
}
@catch (id exception)
{
unarchiver = [[[FSUnarchiver alloc] initForReadingWithData:data loaderEnvironmentSymbolTable:[executor symbolTable] symbolTableForCompiledCodeNode:nil] autorelease];
r = [unarchiver decodeObject];
}
}
}
else
{
r = nil;
errStr = [NSString stringWithFormat:@"loading: can't open file %@",fileName];
}
}
@catch (id exception)
{
r = nil;
errStr = [NSString stringWithFormat:logFmt, FSErrorMessageFromException(exception)];
}
if (r == nil)
{
if (!errStr) errStr = @"failure of loading";
FSExecError(errStr);
}
return r;
}
- (void)loadSpace
{
NSOpenPanel *openPanel = [NSOpenPanel openPanel];
if([openPanel runModal] == NSOKButton)
[self loadSpace:[openPanel filename]];
}
// Here is a version of loadSpace requiring the filetype to be of ".space"
/*
- (void)loadSpace
{
NSOpenPanel *panel = [NSOpenPanel openPanel];
NSString *currentRequiredFileType = [panel requiredFileType];
[panel setRequiredFileType:@"space"];
if([panel runModalForTypes:[NSArray arrayWithObject:@"space"]] == NSOKButton)
{
[panel setRequiredFileType:currentRequiredFileType];
[self loadSpace:[String stringWithString:[panel filename]]];
}
[panel setRequiredFileType:currentRequiredFileType];
}
*/
- (void)loadSpace:(NSString *)fileName
{
Space *space = [self load:fileName];
[executor setSpace:space];
}
- (void)log:(id)object;
{
if ([object isKindOfClass:[NSString class]]) NSLog(@"%@", object);
else NSLog(@"%@", printString(object));
}
- (void)saveSpace
{
NSSavePanel *panel = [NSSavePanel savePanel];
if ([panel runModal] == NSOKButton)
[self saveSpace:[panel filename]];
}
// Here is a version of saveSpace requiring the filetype to be of ".space"
/*
- (void)saveSpace
{
NSSavePanel *panel = [NSSavePanel savePanel];
NSString *currentRequiredFileType = [panel requiredFileType];
[panel setRequiredFileType:@"space"];
if([panel runModal] == NSOKButton)
{
[panel setRequiredFileType:currentRequiredFileType];
[self saveSpace:[String stringWithString:[panel filename]]];
}
[panel setRequiredFileType:currentRequiredFileType];
}
*/
- (void)saveSpace:(NSString *)fileName
{
[self retain]; // In order to not be dealloced when removed from the current workspace
if (![executor interpreter]) FSExecError(@"Can't open the F-Script object browser because the F-Script interpreter no longer exists");
[[executor interpreter] setObject:nil forIdentifier:@"sys"];
// Since "sys" does not know how to archive itself, we remove
// it from the workspace in order to avoid F-Script warnings.
// We use an exception domain in order to ensure that "sys" is reinstalled into the workspace even if
// something goes wrong during archiving.
@try
{
[[executor space] save:fileName];
}
@finally
{
[[executor interpreter] setObject:self forIdentifier:@"sys"];
[self release];
}
}
- (void) setValue:(FSSystem*)operand
{
FSVerifClassArgsNoNil(@"setValue:",1,operand,[FSSystem class]);
[executor autorelease];
executor = [[operand executor] retain];
}
- (id)executor {return executor;}
/*
- (void)setSpace:(Space*)space
{
FSVerifClassArgsNoNil(@"setSpace:",1,space,[Space class]);
[executor setSpace:space];
}
*/
- (NSString *)userName
{
NSString *s = NSUserName();
if (s) return [NSMutableString stringWithString:s];
else return nil;
}
@end