summaryrefslogtreecommitdiff
path: root/MLKLexicalEnvironment.m
blob: 61f09c2d7bbdd31a21ef793cd0648cf9c500457f (plain)
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
/* -*- mode: objc; coding: utf-8 -*- */
/* Étoilisp/Mulklisp, a Common Lisp subset for the Étoilé runtime.
 * Copyright (C) 2008  Matthias Andreas Benkard.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or (at
 * your option) any later version.
 *
 * This program 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#import <Foundation/NSArray.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSException.h>
#import <Foundation/NSNull.h>
#import <Foundation/NSSet.h>
#import <Foundation/NSString.h>
#import <Foundation/NSThread.h>

#import "MLKCons.h"
#import "MLKEnvironment.h"
#import "MLKLexicalEnvironment.h"
#import "MLKLinkedList.h"
#import "MLKPackage.h"
#import "MLKParenReader.h"
#import "MLKReadtable.h"
#import "MLKSymbol.h"
#import "MLKInteger.h"
#import "runtime-compatibility.h"


#define MAKE_ENVIRONMENT(variable, parent, parent_member)               \
  (variable                                                             \
   ? (id) [[MLKEnvironment alloc]                                       \
            initWithParent:(parent                                      \
                            ? (id) parent_member                        \
                            : nil)                                      \
                    values:variable]                                    \
   : (id) (parent ? (id) RETAIN (parent_member) : nil));


static MLKLexicalEnvironment *global_environment;


@implementation MLKLexicalEnvironment
+(void) initialize
{
  NSMutableDictionary *vars = [NSMutableDictionary dictionary];
  NSMutableDictionary *funs = [NSMutableDictionary dictionary];

  MLKPackage *cl = [MLKPackage findPackage:@"COMMON-LISP"];
  //  MLKPackage *sys = [MLKPackage findPackage:@"TOILET-SYSTEM"];

  [vars setObject:[NSNull null] forKey:[NSNull null]];
  [vars setObject:[cl intern:@"T"] forKey:[cl intern:@"T"]];

  global_environment = [[self alloc] initWithParent:nil
                                     variables:vars
                                     functions:funs];
}

-(MLKLexicalEnvironment *) initWithParent:(MLKLexicalEnvironment *)aContext
                                variables:(NSDictionary *)vars
                                functions:(NSDictionary *)functions
{
  self = [super init];
  ASSIGN (_parent, (aContext ? aContext : global_environment));
  _variables = MAKE_ENVIRONMENT(vars, _parent, _parent->_variables);
  _functions = MAKE_ENVIRONMENT(functions, _parent, _parent->_functions);
  return self;
}

+(MLKLexicalEnvironment *) environmentWithParent:(MLKLexicalEnvironment *)context
                                       variables:(NSDictionary *)vars
                                       functions:(NSDictionary *)functions
{
  return AUTORELEASE ([[self alloc] initWithParent:context
                                    variables:vars
                                    functions:functions]);
}

+(MLKLexicalEnvironment *) globalEnvironment
{
  return global_environment;
}

-(NSSet *) variables
{
  return [_variables bindings];
}

-(NSSet *) functions
{
  return [_functions bindings];
}

-(id) valueForSymbol:(MLKSymbol *)symbol
{
  return [_variables valueForSymbol:symbol];
}

-(void) setValue:(id)value forSymbol:(MLKSymbol *)symbol
{
  [_variables setValue:value forSymbol:symbol];
}

-(void) addValue:(id)value forSymbol:(MLKSymbol *)symbol
{
  [_variables addValue:value forSymbol:symbol];
}

-(void) addBindingForSymbol:(MLKSymbol *)symbol
{
  [_variables addBindingForSymbol:symbol];
}

-(BOOL) boundp:(MLKSymbol *)symbol
{
  return [_variables boundp:symbol];
}

-(void) makunbound:(MLKSymbol *)symbol
{
  [_variables makunbound:symbol];
}

-(id) functionForSymbol:(MLKSymbol *)symbol
{
  return [_functions valueForSymbol:symbol];
}

-(void) setFunction:(id)value forSymbol:(MLKSymbol *)symbol
{
  [_functions setValue:value forSymbol:symbol];
}

-(void) addFunction:(id)value forSymbol:(MLKSymbol *)symbol
{
  [_functions addValue:value forSymbol:symbol];
}

-(BOOL) fboundp:(MLKSymbol *)symbol
{
  return [_functions boundp:symbol];
}

-(void) fmakunbound:(MLKSymbol *)symbol
{
  [_functions makunbound:symbol];
}

-(void) dealloc
{
  RELEASE (_variables);
  RELEASE (_functions);
  RELEASE (_parent);
  [super dealloc];
}
@end