Ruby,Python,C#: readline history fixes. Ruby include path.
[jackhill/mal.git] / cs / step7_quote.cs
1 using System;
2 using System.IO;
3 using System.Collections;
4 using System.Collections.Generic;
5 using Mal;
6 using MalVal = Mal.types.MalVal;
7 using MalString = Mal.types.MalString;
8 using MalSymbol = Mal.types.MalSymbol;
9 using MalInteger = Mal.types.MalInteger;
10 using MalList = Mal.types.MalList;
11 using MalVector = Mal.types.MalVector;
12 using MalHashMap = Mal.types.MalHashMap;
13 using MalFunction = Mal.types.MalFunction;
14 using Env = Mal.env.Env;
15
16 namespace Mal {
17 class step7_quote {
18 // read
19 static MalVal READ(string str) {
20 return reader.read_str(str);
21 }
22
23 // eval
24 public static bool is_pair(MalVal x) {
25 return x is MalList && ((MalList)x).size() > 0;
26 }
27
28 public static MalVal quasiquote(MalVal ast) {
29 if (!is_pair(ast)) {
30 return new MalList(new MalSymbol("quote"), ast);
31 } else {
32 MalVal a0 = ((MalList)ast)[0];
33 if ((a0 is MalSymbol) &&
34 (((MalSymbol)a0).getName() == "unquote")) {
35 return ((MalList)ast)[1];
36 } else if (is_pair(a0)) {
37 MalVal a00 = ((MalList)a0)[0];
38 if ((a00 is MalSymbol) &&
39 (((MalSymbol)a00).getName() == "splice-unquote")) {
40 return new MalList(new MalSymbol("concat"),
41 ((MalList)a0)[1],
42 quasiquote(((MalList)ast).rest()));
43 }
44 }
45 return new MalList(new MalSymbol("cons"),
46 quasiquote(a0),
47 quasiquote(((MalList)ast).rest()));
48 }
49 }
50
51 static MalVal eval_ast(MalVal ast, Env env) {
52 if (ast is MalSymbol) {
53 MalSymbol sym = (MalSymbol)ast;
54 return env.get(sym.getName());
55 } else if (ast is MalList) {
56 MalList old_lst = (MalList)ast;
57 MalList new_lst = ast.list_Q() ? new MalList()
58 : (MalList)new MalVector();
59 foreach (MalVal mv in old_lst.getValue()) {
60 new_lst.conj_BANG(EVAL(mv, env));
61 }
62 return new_lst;
63 } else if (ast is MalHashMap) {
64 var new_dict = new Dictionary<string, MalVal>();
65 foreach (var entry in ((MalHashMap)ast).getValue()) {
66 new_dict.Add(entry.Key, EVAL((MalVal)entry.Value, env));
67 }
68 return new MalHashMap(new_dict);
69 } else {
70 return ast;
71 }
72 }
73
74
75 static MalVal EVAL(MalVal orig_ast, Env env) {
76 MalVal a0, a1, a2, res;
77 MalList el;
78
79 while (true) {
80
81 //System.out.println("EVAL: " + printer._pr_str(orig_ast, true));
82 if (!orig_ast.list_Q()) {
83 return eval_ast(orig_ast, env);
84 }
85
86 // apply list
87 MalList ast = (MalList)orig_ast;
88 if (ast.size() == 0) { return ast; }
89 a0 = ast[0];
90
91 String a0sym = a0 is MalSymbol ? ((MalSymbol)a0).getName()
92 : "__<*fn*>__";
93
94 switch (a0sym) {
95 case "def!":
96 a1 = ast[1];
97 a2 = ast[2];
98 res = EVAL(a2, env);
99 env.set(((MalSymbol)a1).getName(), res);
100 return res;
101 case "let*":
102 a1 = ast[1];
103 a2 = ast[2];
104 MalSymbol key;
105 MalVal val;
106 Env let_env = new Env(env);
107 for(int i=0; i<((MalList)a1).size(); i+=2) {
108 key = (MalSymbol)((MalList)a1)[i];
109 val = ((MalList)a1)[i+1];
110 let_env.set(key.getName(), EVAL(val, let_env));
111 }
112 return EVAL(a2, let_env);
113 case "quote":
114 return ast[1];
115 case "quasiquote":
116 return EVAL(quasiquote(ast[1]), env);
117 case "do":
118 eval_ast(ast.slice(1, ast.size()-1), env);
119 orig_ast = ast[ast.size()-1];
120 break;
121 case "if":
122 a1 = ast[1];
123 MalVal cond = EVAL(a1, env);
124 if (cond == Mal.types.Nil || cond == Mal.types.False) {
125 // eval false slot form
126 if (ast.size() > 3) {
127 orig_ast = ast[3];
128 } else {
129 return Mal.types.Nil;
130 }
131 } else {
132 // eval true slot form
133 orig_ast = ast[2];
134 }
135 break;
136 case "fn*":
137 MalList a1f = (MalList)ast[1];
138 MalVal a2f = ast[2];
139 Env cur_env = env;
140 return new MalFunction(a2f, env, a1f,
141 args => EVAL(a2f, new Env(cur_env, a1f, args)) );
142 default:
143 el = (MalList)eval_ast(ast, env);
144 var f = (MalFunction)el[0];
145 MalVal fnast = f.getAst();
146 if (fnast != null) {
147 orig_ast = fnast;
148 env = f.genEnv(el.rest());
149 } else {
150 return f.apply(el.rest());
151 }
152 break;
153 }
154
155 }
156 }
157
158 // print
159 static string PRINT(MalVal exp) {
160 return printer._pr_str(exp, true);
161 }
162
163 // REPL
164 static MalVal RE(Env env, string str) {
165 return EVAL(READ(str), env);
166 }
167
168 static void Main(string[] args) {
169 string prompt = "user> ";
170
171 // core.cs: defined using C#
172 var repl_env = new env.Env(null);
173 foreach (var entry in core.ns) {
174 repl_env.set(entry.Key, entry.Value);
175 }
176 repl_env.set("eval", new MalFunction(a => EVAL(a[0], repl_env)));
177
178 // core.mal: defined using the language itself
179 RE(repl_env, "(def! not (fn* (a) (if a false true)))");
180 RE(repl_env, "(def! load-file (fn* (f) (eval (read-string (str \"(do \" (slurp f) \")\")))))");
181
182 int fileIdx = 0;
183 if (args.Length > 0 && args[0] == "--raw") {
184 Mal.readline.mode = Mal.readline.Mode.Raw;
185 fileIdx = 1;
186 }
187 if (args.Length > fileIdx) {
188 for(int i=fileIdx; i<args.Length; i++) {
189 RE(repl_env, "(load-file \"" + args[i] + "\")");
190 }
191 return;
192 }
193 while (true) {
194 string line;
195 try {
196 line = Mal.readline.Readline(prompt);
197 if (line == null) { break; }
198 } catch (IOException e) {
199 Console.WriteLine("IOException: " + e.Message);
200 break;
201 }
202 try {
203 Console.WriteLine(PRINT(RE(repl_env, line)));
204 } catch (Mal.types.MalContinue) {
205 continue;
206 } catch (Exception e) {
207 Console.WriteLine("Error: " + e.Message);
208 Console.WriteLine(e.StackTrace);
209 continue;
210 }
211 }
212 }
213 }
214 }