File: js_object.h

package info (click to toggle)
clanlib 0.5.4-1-6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 10,320 kB
  • ctags: 10,893
  • sloc: cpp: 76,056; xml: 3,281; sh: 2,961; perl: 1,204; asm: 837; makefile: 775
file content (711 lines) | stat: -rw-r--r-- 19,599 bytes parent folder | download
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711

#ifndef header_js_object
#define header_js_object

#include "js_config.h"
#include "js_value.h"
#include "js_arguments.h"
#include <string>
#include <map>
#include <vector>

class CL_JSObject
{
// Construction:
public:
	CL_JSObject(const char *name = "Anonymous");

	~CL_JSObject();

// Attributes:
public:
	typedef CL_JSValue (CL_JSObject::*MemberFuncCall)(
		CL_JSContext *context, CL_JSArguments &args);

	typedef CL_JSValue (CL_JSObject::*MemberFuncPropertyGetter)(CL_JSContext *cx);

	typedef void (CL_JSObject::*MemberFuncPropertySetter)(const CL_JSValue &value);

	const JSClass &getClass() const { return jsClass; }

	JSClass &getClass() { return jsClass; }

	const JSObject *getObject() const { return jsObject; }

	JSObject *getObject() { return jsObject; }

// Operations:
public:
	void newObject(JSContext *cx, JSObject *proto = 0, JSObject *parent = 0);

	void defineObject(JSContext *cx, JSObject *obj, const char *name, JSObject *proto, uintN flags);

	void initStandardClasses(JSContext *cx);

	void initClass(
		JSContext *cx, JSObject *obj, JSObject *parent,
		JSNative constructor, uintN nargs,
		JSPropertySpec *ps,
		JSFunctionSpec *fs,
		JSPropertySpec *staticPs,
		JSFunctionSpec *staticFs);

	template<class Class>
	void defineFunction(
		JSContext *cx, const char *name,
		CL_JSValue(Class::*func)(CL_JSContext *cx, CL_JSArguments &args),
		int argc)
	{
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, call, argc, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class RetVal, class Param1>
	void defineFunction_1(
		JSContext *cx, const char *name,
		RetVal(Class::*func)(Param1))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_1<RetVal, Param1>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 1, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class RetVal, class Param1, class Param2>
	void defineFunction_2(
		JSContext *cx, const char *name,
		RetVal(Class::*func)(Param1, Param2))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_2<RetVal, Param1, Param2>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 2, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class RetVal, class Param1, class Param2, class Param3>
	void defineFunction_3(
		JSContext *cx, const char *name,
		RetVal(Class::*func)(Param1, Param2, Param3))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_3<RetVal, Param1, Param2, Param3>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 3, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class RetVal, class Param1, class Param2, class Param3, class Param4>
	void defineFunction_4(
		JSContext *cx, const char *name,
		RetVal(Class::*func)(Param1, Param2, Param3, Param4))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_4<RetVal, Param1, Param2, Param3, Param4>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 4, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class RetVal, class Param1, class Param2, class Param3, class Param4, class Param5>
	void defineFunction_5(
		JSContext *cx, const char *name,
		RetVal(Class::*func)(Param1, Param2, Param3, Param4, Param5))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_5<RetVal, Param1, Param2, Param3, Param4, Param5>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 5, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class Param1>
	void defineFunction_v1(
		JSContext *cx, const char *name,
		void(Class::*func)(Param1))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_v1<Param1>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 1, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class Param1, class Param2>
	void defineFunction_v2(
		JSContext *cx, const char *name,
		void(Class::*func)(Param1, Param2))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_v2<Param1, Param2>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 2, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class Param1, class Param2, class Param3>
	void defineFunction_v3(
		JSContext *cx, const char *name,
		void(Class::*func)(Param1, Param2, Param3))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_v3<Param1, Param2, Param3>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 3, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class Param1, class Param2, class Param3, class Param4>
	void defineFunction_v4(
		JSContext *cx, const char *name,
		void(Class::*func)(Param1, Param2, Param3, Param4))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_v4<Param1, Param2, Param3, Param4>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 4, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	template<class Class, class Param1, class Param2, class Param3, class Param4, class Param5>
	void defineFunction_5(
		JSContext *cx, const char *name,
		void(Class::*func)(Param1, Param2, Param3, Param4, Param5))
	{
		JSBool (*ptrCall)(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
		ptrCall = CL_JSObject::Call_v5<Param1, Param2, Param3, Param4, Param5>::call;
		JSFunction *jsFunc = JS_DefineFunction(cx, jsObject, name, ptrCall, 5, 0);
		functionMap[jsFunc] = (MemberFuncCall) func;
	}

	void defineProperty(
		JSContext *cx,
		const char *name,
		const CL_JSValue &value,
		int flags = 0)
	{
		JSBool result = JS_DefineProperty(cx, jsObject, name, value, 0, 0, flags);
	}

	template<class Class>
	void defineProperty(
		JSContext *cx,
		const char *name,
		CL_JSValue(Class::*getter)(CL_JSContext *cx),
		void(Class::*setter)(const CL_JSValue &value),
		int flags = 0)
	{
		int tinyid = getters.size();
		getters.push_back((MemberFuncPropertyGetter) getter);
		setters.push_back((MemberFuncPropertySetter) setter);

		JS_DefinePropertyWithTinyId(
			cx, jsObject, name, tinyid, JSVAL_NULL, CL_JSObject::getter, CL_JSObject::setter, flags);
	}

	template<class Class, class GetType, class SetType>
	void defineProperty_1(
		JSContext *cx,
		const char *name,
		GetType(Class::*getter)(),
		void(Class::*setter)(SetType),
		int flags = 0)
	{
		int tinyid = getters.size();
		getters.push_back((MemberFuncPropertyGetter) getter);
		setters.push_back((MemberFuncPropertySetter) setter);

		JS_DefinePropertyWithTinyId(
			cx, jsObject, name, tinyid, JSVAL_NULL,
			Property_1<GetType, SetType>::getter,
			Property_1<GetType, SetType>::setter,
			flags);
	}

	template<class VarType>
	void defineProperty_ptr(
		JSContext *cx,
		const char *name,
		VarType *varPtr,
		int flags = 0)
	{
		int tinyid = vars.size();
		vars.push_back(varPtr);

		JS_DefinePropertyWithTinyId(
			cx, jsObject, name, tinyid, JSVAL_NULL,
			Property_ptr<VarType>::getter,
			Property_ptr<VarType>::setter,
			flags);
	}

	template<class VarType>
	void defineProperty_obj(
		JSContext *cx,
		const char *name,
		VarType *varPtr,
		int flags = 0)
	{
		int tinyid = vars.size();
		vars.push_back(varPtr);

		JS_DefinePropertyWithTinyId(
			cx, jsObject, name, tinyid, JSVAL_NULL,
			Property_obj<VarType>::getter,
			Property_obj<VarType>::setter,
			flags);
	}

	template<class VarType>
	void defineProperty_objPtr(
		JSContext *cx,
		const char *name,
		VarType *varPtr,
		int flags = 0)
	{
		int tinyid = vars.size();
		vars.push_back(varPtr);

		JS_DefinePropertyWithTinyId(
			cx, jsObject, name, tinyid, JSVAL_NULL,
			Property_objPtr<VarType>::getter,
			Property_objPtr<VarType>::setter,
			flags);
	}

	static CL_JSObject *tempFromHandle(JSObject *obj);

	static CL_JSObject *permanentFromHandle(JSObject *obj);

// Overrideables:
public:
	virtual JSBool onConvert(JSContext *cx, JSObject *obj, JSType type, jsval *vp);

	virtual void onFinalize(JSContext *cx, JSObject *obj);

	virtual CL_JSValue onConstruct(CL_JSContext *context, CL_JSArguments &args);

// Implementation:
public:
	CL_JSObject(JSObject *obj, bool temp);

	MemberFuncCall findMemberFunc(JSContext *cx);

	JSClass jsClass;

	JSObject *jsObject;

	bool temp;

	std::map<JSFunction *, MemberFuncCall> functionMap;

	std::vector<MemberFuncPropertyGetter> getters;

	std::vector<MemberFuncPropertySetter> setters;

	std::vector<void *> vars;

	static CL_JSObject *getThis(JSContext *cx, JSObject *obj);

	static std::map<JSObject*, CL_JSObject *> tempMap;

	static std::map<JSObject*, CL_JSObject *> permanentMap;

// JSClass, Mandatory non-null function pointer members.
private:
	static JSBool convert(JSContext *cx, JSObject *obj, JSType type, jsval *vp);

	static void finalize(JSContext *cx, JSObject *obj);

	static JSBool getter(JSContext *cx, JSObject *obj, jsval id, jsval *vp);

	static JSBool setter(JSContext *cx, JSObject *obj, jsval id, jsval *vp);

	template<class GetType, class SetType>
	class Property_1
	{
	public:
		static JSBool getter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			int index = CL_JSValue(context, id);
			GetType(CL_JSObject::*getter)() = (GetType(CL_JSObject::*)()) self->getters[index];

			try
			{
				*vp = CL_JSValue(context, (*self.*getter)());
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}

		static JSBool setter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			int index = CL_JSValue(context, id);
			void(CL_JSObject::*setter)(SetType) = (void(CL_JSObject::*)(SetType)) self->setters[index];

			try
			{
				(*self.*setter)(CL_JSValue(context, *vp));
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class VarType>
	class Property_ptr
	{
	public:
		static JSBool getter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			int index = CL_JSValue(context, id);
			VarType *ptr = (VarType *) self->vars[index];

			try
			{
				*vp = CL_JSValue(context, *ptr);
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}

		static JSBool setter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			int index = CL_JSValue(context, id);
			VarType *ptr = (VarType *) self->vars[index];

			try
			{
				*ptr = CL_JSValue(context, *vp);
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class VarType>
	class Property_obj
	{
	public:
		static JSBool getter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			int index = CL_JSValue(context, id);
			VarType *ptr = (VarType *) self->vars[index];

			try
			{
				*vp = CL_JSValue(context, ptr);
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}

		static JSBool setter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
		{
			return JS_FALSE; // read only property.
		}
	};

	template<class VarType>
	class Property_objPtr
	{
	public:
		static JSBool getter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			int index = CL_JSValue(context, id);
			VarType *ptr = (VarType *) self->vars[index];

			try
			{
				*vp = CL_JSValue(context, *ptr);
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}

		static JSBool setter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			int index = CL_JSValue(context, id);
			VarType *ptr = (VarType *) self->vars[index];

			try
			{
				VarType dyncast = dynamic_cast<VarType>((CL_JSObject *) CL_JSValue(context, *vp));
				if (dyncast == 0) throw CL_JSError();
				*ptr = dyncast;
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

// JSClass, Optionally non-null members.
public:
	static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);

	template<class RetVal, class Param1>
	class Call_1
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			RetVal(CL_JSObject::*func)(Param1) = (RetVal(CL_JSObject::*)(Param1)) self->findMemberFunc(cx);
			try
			{
				*rval = CL_JSValue(context, (*self.*func)(args[0]));
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class RetVal, class Param1, class Param2>
	class Call_2
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			RetVal(CL_JSObject::*func)(Param1, Param2) = (RetVal(CL_JSObject::*)(Param1, Param2)) self->findMemberFunc(cx);
			try
			{
				*rval = CL_JSValue(context, (*self.*func)(args[0], args[1]));
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class RetVal, class Param1, class Param2, class Param3>
	class Call_3
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			RetVal(CL_JSObject::*func)(Param1, Param2, Param3) = (RetVal(CL_JSObject::*)(Param1, Param2, Param3)) self->findMemberFunc(cx);
			try
			{
				*rval = CL_JSValue(context, (*self.*func)(args[0], args[1], args[2]));
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class RetVal, class Param1, class Param2, class Param3, class Param4>
	class Call_4
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			RetVal(CL_JSObject::*func)(Param1, Param2, Param3, Param4) = (RetVal(CL_JSObject::*)(Param1, Param2, Param3, Param4)) self->findMemberFunc(cx);
			try
			{
				*rval = CL_JSValue(context, (*self.*func)(args[0], args[1], args[2], args[3]));
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class RetVal, class Param1, class Param2, class Param3, class Param4, class Param5>
	class Call_5
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			RetVal(CL_JSObject::*func)(Param1, Param2, Param3, Param4, Param5) = (RetVal(CL_JSObject::*)(Param1, Param2, Param3, Param4, Param5)) self->findMemberFunc(cx);
			try
			{
				*rval = CL_JSValue(context, (*self.*func)(args[0], args[1], args[2], args[3], args[4]));
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class Param1>
	class Call_v1
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			void(CL_JSObject::*func)(Param1) = (void(CL_JSObject::*)(Param1)) self->findMemberFunc(cx);
			try
			{
				(*self.*func)(args[0]);
				*rval = CL_JSValue(context);
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class Param1, class Param2>
	class Call_v2
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			void(CL_JSObject::*func)(Param1, Param2) = (void(CL_JSObject::*)(Param1, Param2)) self->findMemberFunc(cx);
			try
			{
				(*self.*func)(args[0], args[1]);
				*rval = CL_JSValue(context);
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class Param1, class Param2, class Param3>
	class Call_v3
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			void(CL_JSObject::*func)(Param1, Param2, Param3) = (void(CL_JSObject::*)(Param1, Param2, Param3)) self->findMemberFunc(cx);
			try
			{
				(*self.*func)(args[0], args[1], args[2]);
				*rval = CL_JSValue(context);
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class Param1, class Param2, class Param3, class Param4>
	class Call_v4
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			void(CL_JSObject::*func)(Param1, Param2, Param3, Param4) = (void(CL_JSObject::*)(Param1, Param2, Param3, Param4)) self->findMemberFunc(cx);
			try
			{
				(*self.*func)(args[0], args[1], args[2], args[3]);
				*rval = CL_JSValue(context);
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	template<class Param1, class Param2, class Param3, class Param4, class Param5>
	class Call_v5
	{
	public:
		static JSBool call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
		{
			CL_JSObject *self = getThis(cx, obj);
			CL_JSContext *context = CL_JSContext::tempFromHandle(cx);
			CL_JSArguments args(context, argc, argv);

			void(CL_JSObject::*func)(Param1, Param2, Param3, Param4, Param5) = (void(CL_JSObject::*)(Param1, Param2, Param3, Param4, Param5)) self->findMemberFunc(cx);
			try
			{
				(*self.*func)(args[0], args[1], args[2], args[3], args[4]);
				*rval = CL_JSValue(context);
				return JS_TRUE;
			}
			catch (CL_JSError &)
			{
				return JS_FALSE;
			}
		}
	};

	static JSBool construct(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
};

#endif