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
|
// Node vs browser behavior
var core = {};
if (typeof module === 'undefined') {
var exports = core;
} else {
var types = require('./types'),
readline = require('./node_readline'),
reader = require('./reader'),
printer = require('./printer');
}
// Errors/Exceptions
function mal_throw(exc) { throw exc; }
// String functions
function pr_str() {
return Array.prototype.map.call(arguments,function(exp) {
return printer._pr_str(exp, true);
}).join(" ");
}
function str() {
return Array.prototype.map.call(arguments,function(exp) {
return printer._pr_str(exp, false);
}).join("");
}
function prn() {
printer.println.apply({}, Array.prototype.map.call(arguments,function(exp) {
return printer._pr_str(exp, true);
}));
}
function println() {
printer.println.apply({}, Array.prototype.map.call(arguments,function(exp) {
return printer._pr_str(exp, false);
}));
}
function slurp(f) {
if (typeof require !== 'undefined') {
return require('fs').readFileSync(f, 'utf-8');
} else {
var req = new XMLHttpRequest();
req.open("GET", f, false);
req.send();
if (req.status == 200) {
return req.responseText;
} else {
throw new Error("Failed to slurp file: " + f);
}
}
}
// Number functions
function time_ms() { return new Date().getTime(); }
// Hash Map functions
function assoc(src_hm) {
var hm = types._clone(src_hm);
var args = [hm].concat(Array.prototype.slice.call(arguments, 1));
return types._assoc_BANG.apply(null, args);
}
function dissoc(src_hm) {
var hm = types._clone(src_hm);
var args = [hm].concat(Array.prototype.slice.call(arguments, 1));
return types._dissoc_BANG.apply(null, args);
}
function get(hm, key) {
if (hm != null && key in hm) {
return hm[key];
} else {
return null;
}
}
function contains_Q(hm, key) {
if (key in hm) { return true; } else { return false; }
}
function keys(hm) { return Object.keys(hm); }
function vals(hm) { return Object.keys(hm).map(function(k) { return hm[k]; }); }
// Sequence functions
function cons(a, b) { return [a].concat(b); }
function concat(lst) {
lst = lst || [];
return lst.concat.apply(lst, Array.prototype.slice.call(arguments, 1));
}
function nth(lst, idx) {
if (idx < lst.length) { return lst[idx]; }
else { throw new Error("nth: index out of range"); }
}
function first(lst) { return lst[0]; }
function rest(lst) { return lst.slice(1); }
function empty_Q(lst) { return lst.length === 0; }
function count(s) {
if (Array.isArray(s)) { return s.length; }
else if (s === null) { return 0; }
else { return Object.keys(s).length; }
}
function conj(lst) {
if (types._list_Q(lst)) {
return Array.prototype.slice.call(arguments, 1).reverse().concat(lst);
} else {
var v = lst.concat(Array.prototype.slice.call(arguments, 1));
v.__isvector__ = true;
return v;
}
}
function apply(f) {
var args = Array.prototype.slice.call(arguments, 1);
return f.apply(f, args.slice(0, args.length-1).concat(args[args.length-1]));
}
function map(f, lst) {
return lst.map(function(el){ return f(el); });
}
// Metadata functions
function with_meta(obj, m) {
var new_obj = types._clone(obj);
new_obj.__meta__ = m;
return new_obj;
}
function meta(obj) {
// TODO: support symbols and atoms
if ((!types._sequential_Q(obj)) &&
(!(types._hash_map_Q(obj))) &&
(!(types._function_Q(obj)))) {
throw new Error("attempt to get metadata from: " + types._obj_type(obj));
}
return obj.__meta__;
}
// Atom functions
function deref(atm) { return atm.val; }
function reset_BANG(atm, val) { return atm.val = val; }
function swap_BANG(atm, f) {
var args = [atm.val].concat(Array.prototype.slice.call(arguments, 2));
atm.val = f.apply(f, args);
return atm.val;
}
// types.ns is namespace of type functions
var ns = {'type': types._obj_type,
'=': types._equal_Q,
'throw': mal_throw,
'nil?': types._nil_Q,
'true?': types._true_Q,
'false?': types._false_Q,
'symbol': types._symbol,
'symbol?': types._symbol_Q,
'keyword': types._keyword,
'keyword?': types._keyword_Q,
'pr-str': pr_str,
'str': str,
'prn': prn,
'println': println,
'readline': readline.readline,
'read-string': reader.read_str,
'slurp': slurp,
'<' : function(a,b){return a<b;},
'<=' : function(a,b){return a<=b;},
'>' : function(a,b){return a>b;},
'>=' : function(a,b){return a>=b;},
'+' : function(a,b){return a+b;},
'-' : function(a,b){return a-b;},
'*' : function(a,b){return a*b;},
'/' : function(a,b){return a/b;},
"time-ms": time_ms,
'list': types._list,
'list?': types._list_Q,
'vector': types._vector,
'vector?': types._vector_Q,
'hash-map': types._hash_map,
'map?': types._hash_map_Q,
'assoc': assoc,
'dissoc': dissoc,
'get': get,
'contains?': contains_Q,
'keys': keys,
'vals': vals,
'sequential?': types._sequential_Q,
'cons': cons,
'concat': concat,
'nth': nth,
'first': first,
'rest': rest,
'empty?': empty_Q,
'count': count,
'apply': apply,
'map': map,
'conj': conj,
'with-meta': with_meta,
'meta': meta,
'atom': types._atom,
'atom?': types._atom_Q,
"deref": deref,
"reset!": reset_BANG,
"swap!": swap_BANG};
exports.ns = core.ns = ns;
|