-
Notifications
You must be signed in to change notification settings - Fork 2
/
mochiscript.js
402 lines (322 loc) · 10.3 KB
/
mochiscript.js
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
(function (window) {
var log = window.console ? window.console.log : function () { };
var $m = {
ROOT: window,
ADAPTER: {
out: log,
outs: log
},
PLATFORM: 'browser'
};
window.$m = $m;
// CLASS HELPERS
(function (undefined, $m) {
var OO = function (klass, par) {
this.klass = klass;
this.par = par;
this.members = {};
this.staticMembers = {};
this.children = [];
this.included = [];
if (this.par) this.par.OO.children.push(klass);
};
$m.PUSH_ROOT = function (r) {
this.ROOTS = this.ROOTS || [];
this.ROOTS.push(r);
this.ROOT = r;
};
$m.POP_ROOT = function () {
this.ROOTS = this.ROOTS || [];
if (this.ROOTS.length) {
this.ROOTS.pop();
this.ROOT = this.ROOTS[this.ROOTS.length-1];
}
};
OO.prototype = {
forbiddenMembers: {
'prototype': undefined,
'OO': undefined
},
include: function(module) {
this.included.push(module);
var members = module.OO.members;
for (var name in members) {
if (members.hasOwnProperty(name)) {
this.addMember(name, members[name]);
}
}
var staticMembers = module.OO.staticMembers;
for (var name in staticMembers) {
if (staticMembers.hasOwnProperty(name)) {
this.addStaticMember(name, staticMembers[name]);
}
}
if (typeof staticMembers['included'] == 'function') {
staticMembers['included'](this.klass);
}
},
createNamespace: function(name) {
var splitted = name.split('.');
var klassName = splitted.pop();
var root = $m.ROOT;
while (splitted.length > 0) {
var name = splitted.shift();
if (!root[name]) root[name] = $m.Class.extend({});
root = root[name];
}
return [ root, klassName ];
},
makeSuper: function(newMethod, oldMethod) {
if (!oldMethod) return newMethod;
return function() {
this.$super = oldMethod;
return newMethod.apply(this, arguments);
};
},
addMember: function(name, member) {
if (this.forbiddenMembers.hasOwnProperty(name)) return;
var proto = this.klass.prototype;
if (typeof proto[name] == 'function' && !(proto[name] instanceof RegExp)) {
member = this.makeSuper(member, proto[name]);
}
proto[name] = member;
this.members[name] = member;
},
addStaticMember: function(name, member) {
if (this.forbiddenMembers.hasOwnProperty(name)) return;
if (typeof this.klass[name] == 'function') {
if (!this.klass.hasOwnProperty(name)) {
member = this.makeSuper(member, this.klass[name]);
}
}
this.klass[name] = member;
this.staticMembers[name] = member;
}
};
$m.Class = function() { this.initialize.apply(this, arguments); };
$m.Class.OO = new OO($m.Class);
$m.Class.prototype = {
initialize: function () {},
oo: $m.Class.OO
};
var namedClasses = {};
$m.getClass = function(name) {
return namedClasses[name];
};
var noInit = false;
$m.Class.extend = function(name, klassDef) {
var klass = function() { if (!noInit) this.initialize.apply(this, arguments); };
klass.OO = new OO(klass, this);
if (typeof name != 'string') {
klassDef = name;
} else {
namedClasses[name] = klass;
var namespace = this.OO.createNamespace(name);
namespace[0][namespace[1]] = klass;
}
// create instance of this as prototype for new this
noInit = true;
var proto = new this();
noInit = false;
klass.prototype = proto;
var oo = klass.OO;
proto.OO = oo;
for (var name in this) {
oo.addStaticMember(name, this[name]);
}
if (typeof klassDef == 'function') {
klassDef(klass, oo);
} else {
for (var name in klassDef) {
oo.addMember(name, klassDef[name]);
}
}
if (this.extended) this.extended(klass);
return klass;
};
$m.Module = $m.Class;
var assert = {
'eq': function(expected, actual) { if (expected != actual) $m.outs("Expected "+expected+", but got "+actual+".") },
'isFalse': function(val) { if (val) $m.outs("Expected false, but got "+JSON.stringify(val)+".") },
'isTrue': function(val) { if (!val) $m.outs("Expected true, but got " +val+".") }
};
$m.test = function(message, callback) {
if (!callback) callback = message;
callback(assert);
};
function addListener(type, listener) {
var events = this.__$events || (this.__$events = {});
this.emit('newListener', type, listener);
if (!events[type]) events[type] = [];
events[type].push(listener);
}
$m.out = function () {
for (var i=0,arg=null,_list_0=arguments,_len_0=_list_0.length;(arg=_list_0[i])||i<_len_0;i++){
$m.ADAPTER.out(arg);
if (i < arguments.length-1) {
$m.ADAPTER.out(',');
}
}
};
$m.outs = function () {
for (var _i_0=0,arg=null,_list_0=arguments,_len_0=_list_0.length;(arg=_list_0[_i_0])||_i_0<_len_0;_i_0++){
$m.ADAPTER.outs(arg);
}
};
return $m;
})(undefined, $m);
$m.Module.extend("EventEmitter", function(KLASS, OO){
var MAX_LISTENERS = 10;
var isArray = Array.isArray;
OO.addMember("emit", function(){var self=this;
var type = arguments[0];
// If there is no 'error' event listener then throw.
if (type === 'error') {
if (!this._events || !this._events.error ||
(isArray(this._events.error) && !this._events.error.length))
{
if (arguments[1] instanceof Error) {
throw arguments[1]; // Unhandled 'error' event
} else {
throw new Error("Uncaught, unspecified 'error' event.");
}
return false;
}
}
if (!this._events) return false;
var handler = this._events[type];
if (!handler) return false;
if (typeof handler == 'function') {
switch (arguments.length) {
// fast cases
case 1:
handler.call(this);
break;
case 2:
handler.call(this, arguments[1]);
break;
case 3:
handler.call(this, arguments[1], arguments[2]);
break;
// slower
default:
var l = arguments.length;
var args = new Array(l - 1);
for (var i = 1; i < l; i++) args[i - 1] = arguments[i];
handler.apply(this, args);
}
return true;
} else if (isArray(handler)) {
var l = arguments.length;
var args = new Array(l - 1);
for (var i = 1; i < l; i++) args[i - 1] = arguments[i];
var listeners = handler.slice();
for (var i = 0, l = listeners.length; i < l; i++) {
listeners[i].apply(this, args);
}
return true;
} else {
return false;
}
});
OO.addMember("addListener", function(type, listener){var self=this;
if ('function' !== typeof listener) {
throw new Error('addListener only takes instances of Function');
}
if (!this._events) this._events = {};
// To avoid recursion in the case that type == "newListeners"! Before
// adding it to the listeners, first emit "newListeners".
this.emit('newListener', type, typeof listener.listener === 'function' ?
listener.listener : listener);
if (!this._events[type]) {
// Optimize the case of one listener. Don't need the extra array object.
this._events[type] = listener;
} else if (isArray(this._events[type])) {
// If we've already got an array, just append.
this._events[type].push(listener);
} else {
// Adding the second element, need to change to array.
this._events[type] = [this._events[type], listener];
}
// Check for listener leak
if (isArray(this._events[type]) && !this._events[type].warned) {
var m;
if (MAX_LISTENERS !== undefined) {
m = MAX_LISTENERS;
} else {
m = defaultMaxListeners;
}
if (m && m > 0 && this._events[type].length > m) {
this._events[type].warned = true;
console.error('(node) warning: possible EventEmitter memory ' +
'leak detected. %d listeners added. ' +
'Use emitter.setMaxListeners() to increase limit.',
this._events[type].length);
console.trace();
}
}
return this;
});
OO.addMember("on", function(type, listener){var self=this;
this.addListener(type, listener);
});
OO.addMember("once", function(type, listener){var self=this;
if ('function' !== typeof listener) {
throw new Error('.once only takes instances of Function');
}
function g() {
self.removeListener(type, g);
listener.apply(this, arguments);
};
g.listener = listener;
this.on(type, g);
return this;
});
OO.addMember("removeListener", function(type, listener){var self=this;
if ('function' !== typeof listener) {
throw new Error('removeListener only takes instances of Function');
}
// does not use listeners(), so no side effect of creating _events[type]
if (!this._events || !this._events[type]) return this;
var list = this._events[type];
if (isArray(list)) {
var position = -1;
for (var i = 0, length = list.length; i < length; i++) {
if (list[i] === listener ||
(list[i].listener && list[i].listener === listener))
{
position = i;
break;
}
}
if (position < 0) return this;
list.splice(position, 1);
if (list.length == 0)
delete this._events[type];
} else if (list === listener ||
(list.listener && list.listener === listener))
{
delete this._events[type];
}
return this;
});
OO.addMember("removeAllListeners", function(type){var self=this;
if (arguments.length === 0) {
this._events = {};
return this;
}
// does not use listeners(), so no side effect of creating _events[type]
if (type && this._events && this._events[type]) this._events[type] = null;
return this;
});
OO.addMember("listeners", function(type){var self=this;
if (!this._events) this._events = {};
if (!this._events[type]) this._events[type] = [];
if (!isArray(this._events[type])) {
this._events[type] = [this._events[type]];
}
return this._events[type];
});
});
$m.EventEmitter = $m.ROOT.EventEmitter;
})(window);