libs-steptalk/Languages/Smalltalk/STCompiledScript.m
Stefan Urbanek 1664a14a02 Access ivars by name not by index, use KVC
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@21330 72102866-910b-0410-8b05-ffd578937521
2005-06-20 20:40:47 +00:00

153 lines
3.9 KiB
Objective-C

/**
STCompiledScript.m
Copyright (c) 2002 Free Software Foundation
This file is part of the StepTalk project.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#import "STCompiledScript.h"
#import "STSmalltalkScriptObject.h"
#import "STCompiledMethod.h"
#import <StepTalk/STObjCRuntime.h>
#import <StepTalk/STExterns.h>
#import <Foundation/NSArray.h>
#import <Foundation/NSDebug.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSString.h>
#import <Foundation/NSException.h>
#import <Foundation/NSEnumerator.h>
@class STEnvironment;
static SEL mainSelector;
static SEL initializeSelector;
static SEL finalizeSelector;
@implementation STCompiledScript:NSObject
+ (void)initialize
{
mainSelector = STSelectorFromString(@"main");
initializeSelector = STSelectorFromString(@"startUp");
finalizeSelector = STSelectorFromString(@"finalize");
}
- initWithVariableNames:(NSArray *)array;
{
[super init];
variableNames = RETAIN(array);
return self;
}
- (void)dealloc
{
RELEASE(methodDictionary);
RELEASE(variableNames);
[super dealloc];
}
- (void)addMethod:(STCompiledMethod *)method
{
if(!methodDictionary)
{
methodDictionary = [[NSMutableDictionary alloc] init];
}
if( ! [method isKindOfClass:[STCompiledMethod class]] )
{
[NSException raise:STGenericException
format:@"Invalid compiled method class '%@'",
[method class]];
}
[methodDictionary setObject:method forKey:[method selector]];
}
- (STCompiledMethod *)methodWithName:(NSString *)name
{
return [methodDictionary objectForKey:name];
}
- (NSArray*)variableNames
{
return variableNames;
}
- (id)executeInEnvironment:(STEnvironment *)env
{
STSmalltalkScriptObject *object;
int methodCount;
id retval = nil;
object = [[STSmalltalkScriptObject alloc] initWithEnvironment:env
compiledScript:self];
methodCount = [methodDictionary count];
if(methodCount == 0)
{
NSLog(@"Empty script executed");
return nil;
}
else if(methodCount == 1)
{
NSString *selName = [[methodDictionary allKeys] objectAtIndex:0];
SEL sel = STSelectorFromString(selName);
NSDebugLog(@"Executing single-method script. (%@)", selName);
retval = [object performSelector:sel];
}
else if(![object respondsToSelector:mainSelector])
{
NSLog(@"No 'main' method found");
return nil;
}
else
{
if( [object respondsToSelector:initializeSelector] )
{
NSDebugLog(@"Sending 'startUp' to script object");
[object performSelector:initializeSelector];
}
if( [object respondsToSelector:mainSelector] )
{
retval = [object performSelector:mainSelector];
}
else
{
NSLog(@"No 'main' found in script");
}
if( [object respondsToSelector:finalizeSelector] )
{
NSDebugLog(@"Sending 'finalize' to script object");
[object performSelector:finalizeSelector];
}
}
RELEASE(object);
return retval;
}
@end