]> git.saurik.com Git - cycript.git/blame - Java/Execute.cpp
Try to push kJSClassAttributeNoAutomaticPrototype.
[cycript.git] / Java / Execute.cpp
CommitLineData
7341eedb
JF
1/* Cycript - The Truly Universal Scripting Language
2 * Copyright (C) 2009-2016 Jay Freeman (saurik)
e17ad658
JF
3*/
4
f95d2598 5/* GNU Affero General Public License, Version 3 {{{ */
e17ad658 6/*
f95d2598
JF
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e17ad658 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f95d2598
JF
15 * GNU Affero General Public License for more details.
16
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
e17ad658
JF
19**/
20/* }}} */
21
dbf05bfd
JF
22#include <map>
23#include <sstream>
24#include <vector>
25
f2c357f9
JF
26#include <dlfcn.h>
27
4b5dc402 28#if defined(__APPLE__) && !defined(__arm__)
def90846
JF
29#include <JavaVM/jni.h>
30#else
e17ad658 31#include <jni.h>
def90846 32#endif
dbf05bfd 33
f2c357f9
JF
34#ifdef __ANDROID__
35// XXX: this is deprecated?!?!?!?!?!?!
36#include <sys/system_properties.h>
37#endif
38
dbf05bfd 39#include "cycript.hpp"
c9c16dde 40#include "Error.hpp"
dbf05bfd
JF
41#include "Execute.hpp"
42#include "Internal.hpp"
43#include "JavaScript.hpp"
44#include "Pooling.hpp"
45
46#define _jnicall(expr) ({ \
47 jint _value(expr); \
48 if (_value != JNI_OK) \
49 CYThrow("_jnicall(%s) == %d", #expr, _value); \
50})
51
52#define _envcall(jni, expr) ({ \
53 __typeof__(jni->expr) _value(jni->expr); \
54 if (jthrowable _error = jni->ExceptionOccurred()) { \
55 jni->ExceptionClear(); \
fc664744 56 throw CYJavaError(CYJavaLocal<jthrowable>(jni, _error)); \
dbf05bfd
JF
57 } \
58_value; })
59
60#define _envcallv(jni, expr) do { \
61 jni->expr; \
62 if (jthrowable _error = jni->ExceptionOccurred()) { \
63 jni->ExceptionClear(); \
fc664744 64 throw CYJavaError(CYJavaLocal<jthrowable>(jni, _error)); \
dbf05bfd
JF
65 } \
66} while (false)
67
c9c16dde 68#define CYJavaTry \
fc664744 69 CYJavaEnv jni(env); \
824bc1ec
JF
70 auto &protect(*reinterpret_cast<CYProtect *>(jprotect)); \
71 _disused JSContextRef context(protect); \
72 _disused JSObjectRef object(protect); \
c9c16dde
JF
73 try
74#define CYJavaCatch(value) \
75 catch (const CYException &error) { \
fc664744 76 jni->Throw(CYCastJavaObject(jni, context, error.CastJSValue(context, "Error")).cast<jthrowable>()); \
c9c16dde
JF
77 return value; \
78 }
79
fc664744
JF
80#define CYJavaForEachPrimitive \
81 CYJavaForEachPrimitive_(Z, z, Boolean, Boolean, boolean) \
82 CYJavaForEachPrimitive_(B, b, Byte, Byte, byte) \
83 CYJavaForEachPrimitive_(C, c, Char, Character, char) \
84 CYJavaForEachPrimitive_(S, s, Short, Short, short) \
85 CYJavaForEachPrimitive_(I, i, Int, Integer, int) \
86 CYJavaForEachPrimitive_(J, j, Long, Long, long) \
87 CYJavaForEachPrimitive_(F, f, Float, Float, float) \
88 CYJavaForEachPrimitive_(D, d, Double, Double, double)
c9c16dde 89
fc664744
JF
90enum CYJavaPrimitive : char {
91 CYJavaPrimitiveObject,
92 CYJavaPrimitiveVoid,
93#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
94 CYJavaPrimitive ## Type,
95CYJavaForEachPrimitive
96#undef CYJavaForEachPrimitive_
97};
dbf05bfd 98
0e832de4
JF
99template <typename Type_>
100struct IsJavaPrimitive { static const bool value = false; };
101
102#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
103 template <> \
104 struct IsJavaPrimitive<j ## type> { static const bool value = true; };
105CYJavaForEachPrimitive
106#undef CYJavaForEachPrimitive_
107
fc664744
JF
108// Java References {{{
109template <typename Value_>
110struct CYJavaRef {
111 JNIEnv *jni_;
112 Value_ value_;
dbf05bfd 113
fc664744
JF
114 _finline CYJavaRef(JNIEnv *jni, Value_ value) :
115 jni_(jni),
116 value_(value)
117 {
118 }
dbf05bfd 119
477549f5
JF
120 _finline operator Value_() const {
121 return value_;
fc664744 122 }
c9c16dde 123
477549f5 124 _finline JNIEnv *jni() const {
fc664744
JF
125 return jni_;
126 }
c9c16dde 127
0e832de4 128 // XXX: this is only needed to support CYJavaEnv relying on C variadics
fc664744
JF
129 _finline Value_ get() const {
130 return value_;
131 }
c9c16dde 132
fc664744
JF
133 template <typename Other_>
134 _finline CYJavaRef<Other_> cast() const {
135 return {jni_, static_cast<Other_>(value_)};
136 }
137
4e2cc9d3 138 // XXX: this should be tied into CYJavaFrame
fc664744
JF
139 Value_ leak() {
140 Value_ value(value_);
141 value_ = NULL;
142 return value;
143 }
144};
145
146template <typename Value_, void (JNIEnv::*Delete_)(jobject)>
147struct CYJavaDelete :
148 CYJavaRef<Value_>
149{
150 _finline CYJavaDelete(JNIEnv *jni, Value_ value) :
151 CYJavaRef<Value_>(jni, value)
152 {
153 }
154
4e2cc9d3 155 void clear() {
fc664744
JF
156 if (this->value_ != NULL)
157 (this->jni_->*Delete_)(this->value_);
4e2cc9d3
JF
158 this->value_ = NULL;
159 }
160
161 ~CYJavaDelete() {
162 clear();
fc664744
JF
163 }
164};
165
166template <typename Value_>
167struct CYJavaGlobal :
168 CYJavaDelete<Value_, &JNIEnv::DeleteGlobalRef>
169{
170 typedef CYJavaDelete<Value_, &JNIEnv::DeleteGlobalRef> CYJavaBase;
171
172 CYJavaGlobal() :
173 CYJavaBase(NULL, NULL)
174 {
175 }
176
177 template <typename Other_>
178 CYJavaGlobal(const CYJavaRef<Other_> &other) :
179 CYJavaBase(other.jni_, static_cast<Other_>(other.jni_->NewGlobalRef(other.value_)))
180 {
181 }
182
183 CYJavaGlobal(const CYJavaGlobal<Value_> &other) :
184 CYJavaGlobal(static_cast<const CYJavaRef<Value_> &>(other))
185 {
186 }
187
188 CYJavaGlobal(CYJavaGlobal &&value) :
189 CYJavaBase(value.jni_, value.value_)
190 {
191 value.value_ = NULL;
192 }
193};
194
195template <typename Value_>
196struct CYJavaLocal :
197 CYJavaDelete<Value_, &JNIEnv::DeleteLocalRef>
198{
199 typedef CYJavaDelete<Value_, &JNIEnv::DeleteLocalRef> CYJavaBase;
200
201 CYJavaLocal() :
202 CYJavaBase(NULL, NULL)
203 {
204 }
205
206 CYJavaLocal(JNIEnv *jni, Value_ value) :
207 CYJavaBase(jni, value)
208 {
209 }
210
211 template <typename Other_>
212 CYJavaLocal(const CYJavaRef<Other_> &other) :
213 CYJavaLocal(other.jni_, static_cast<Other_>(other.jni_->NewLocalRef(other.value_)))
214 {
215 }
216
4e2cc9d3
JF
217 template <typename Other_>
218 CYJavaLocal(CYJavaRef<Other_> &&other) :
219 CYJavaLocal(other.jni_, other.value_)
220 {
221 other.value_ = NULL;
222 }
223
224 CYJavaLocal(CYJavaLocal &&other) :
225 CYJavaLocal(static_cast<CYJavaRef<Value_> &&>(other))
fc664744 226 {
fc664744
JF
227 }
228
4e2cc9d3
JF
229 template <typename Other_>
230 CYJavaLocal &operator =(CYJavaLocal<Other_> &&other) {
231 this->clear();
232 this->jni_ = other.jni_;
233 this->value_ = other.value_;
234 other.value_ = NULL;
fc664744
JF
235 return *this;
236 }
237};
238// }}}
239// Java Strings {{{
240static CYJavaLocal<jstring> CYCastJavaString(const CYJavaRef<jobject> &value);
dbf05bfd
JF
241
242class CYJavaUTF8String :
243 public CYUTF8String
244{
245 private:
3853f099 246 const CYJavaRef<jstring> &value_;
dbf05bfd
JF
247
248 public:
fc664744 249 CYJavaUTF8String(const CYJavaRef<jstring> &value) :
3853f099 250 value_(value)
fc664744
JF
251 {
252 _assert(value);
477549f5 253 JNIEnv *jni(value.jni());
fc664744
JF
254 size = jni->GetStringUTFLength(value);
255 data = jni->GetStringUTFChars(value, NULL);
256 }
257
3853f099 258 CYJavaUTF8String(CYJavaRef<jstring> &&) = delete;
dbf05bfd
JF
259
260 ~CYJavaUTF8String() {
3853f099
JF
261 JNIEnv *jni(value_.jni());
262 jni->ReleaseStringUTFChars(value_, data);
dbf05bfd
JF
263 }
264
265 CYJavaUTF8String(const CYJavaUTF8String &) = delete;
dbf05bfd
JF
266};
267
fc664744 268CYJavaUTF8String CYCastUTF8String(const CYJavaRef<jstring> &value) {
3853f099 269 return {value};
dbf05bfd
JF
270}
271
fc664744
JF
272JSStringRef CYCopyJSString(const CYJavaRef<jstring> &value) {
273 return CYCopyJSString(CYCastUTF8String(value));
dbf05bfd 274}
fc664744
JF
275// }}}
276// Java Error {{{
277struct CYJavaError :
278 CYException
279{
280 CYJavaGlobal<jthrowable> value_;
dbf05bfd 281
fc664744
JF
282 CYJavaError(const CYJavaRef<jthrowable> &value) :
283 value_(value)
284 {
285 }
286
287 virtual const char *PoolCString(CYPool &pool) const {
3853f099
JF
288 auto string(CYCastJavaString(value_.cast<jobject>()));
289 return CYPoolCString(pool, CYJavaUTF8String(string));
fc664744
JF
290 }
291
477549f5 292 virtual JSValueRef CastJSValue(JSContextRef context, const char *name) const;
fc664744
JF
293};
294// }}}
295
296struct CYJavaFrame {
dbf05bfd 297 JNIEnv *jni_;
dbf05bfd 298
fc664744
JF
299 CYJavaFrame(JNIEnv *jni, jint capacity) :
300 jni_(jni)
dbf05bfd 301 {
fc664744 302 _assert(jni->PushLocalFrame(capacity) == 0);
dbf05bfd
JF
303 }
304
fc664744
JF
305 ~CYJavaFrame() {
306 operator ()(NULL);
dbf05bfd
JF
307 }
308
4e2cc9d3
JF
309 operator JNIEnv *() const {
310 return jni_;
311 }
312
fc664744
JF
313 jobject operator ()(jobject object) {
314 JNIEnv *jni(jni_);
315 jni_ = NULL;
316 return jni->PopLocalFrame(object);
dbf05bfd 317 }
fc664744 318};
dbf05bfd 319
fc664744
JF
320struct CYJavaEnv {
321 private:
322 JNIEnv *jni;
323
324 public:
325 CYJavaEnv(JNIEnv *jni) :
326 jni(jni)
dbf05bfd 327 {
dbf05bfd
JF
328 }
329
477549f5
JF
330 template <typename Other_>
331 CYJavaEnv(const CYJavaRef<Other_> &value) :
332 jni(value.jni())
333 {
334 }
335
fc664744
JF
336 operator JNIEnv *() const {
337 return jni;
dbf05bfd
JF
338 }
339
fc664744
JF
340 JNIEnv *operator ->() const {
341 return jni;
dbf05bfd
JF
342 }
343
fc664744
JF
344 CYJavaLocal<jclass> FindClass(const char *name) const {
345 return {jni, _envcall(jni, FindClass(name))};
dbf05bfd
JF
346 }
347
fc664744
JF
348 CYJavaLocal<jclass> GetObjectClass(jobject object) const {
349 return {jni, _envcall(jni, GetObjectClass(object))};
350 }
351
352 CYJavaLocal<jclass> GetSuperclass(jclass _class) const {
353 return {jni, _envcall(jni, GetSuperclass(_class))};
354 }
355
356 CYJavaLocal<jobject> NewObject(jclass _class, jmethodID method, ...) const {
357 va_list args;
358 va_start(args, method);
359 jobject object(_envcall(jni, NewObjectV(_class, method, args)));
360 va_end(args);
361 return {jni, object};
362 }
363
364 CYJavaLocal<jobject> NewObjectA(jclass _class, jmethodID method, jvalue *args) const {
365 return {jni, _envcall(jni, NewObjectA(_class, method, args))};
dbf05bfd 366 }
fc664744
JF
367
368 CYJavaLocal<jstring> NewString(const jchar *data, jsize size) const {
369 return {jni, _envcall(jni, NewString(data, size))};
370 }
371
372#define CYJavaEnv_(Code) \
373 template <typename... Args_> \
374 void Code(Args_ &&... args) const { \
375 _envcallv(jni, Code(cy::Forward<Args_>(args)...)); \
376 }
377
378#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
379 CYJavaEnv_(Get ## Typ ## ArrayRegion) \
380 CYJavaEnv_(Set ## Typ ## Field) \
381 CYJavaEnv_(SetStatic ## Typ ## Field)
382CYJavaForEachPrimitive
383#undef CYJavaForEachPrimitive_
384
385 CYJavaEnv_(CallVoidMethod)
386 CYJavaEnv_(CallStaticVoidMethod)
387 CYJavaEnv_(CallVoidMethodA)
388 CYJavaEnv_(CallStaticVoidMethodA)
389 CYJavaEnv_(SetObjectArrayElement)
390 CYJavaEnv_(SetObjectField)
391 CYJavaEnv_(SetStaticObjectField)
392#undef CYJavaEnv_
393
394#define CYJavaEnv_(Code) \
395 template <typename... Args_> \
0e832de4 396 auto Code(Args_ &&... args) const -> decltype(jni->Code(cy::Forward<Args_>(args)...)) { \
fc664744
JF
397 return _envcall(jni, Code(cy::Forward<Args_>(args)...)); \
398 }
399
400#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
401 CYJavaEnv_(Call ## Typ ## Method) \
402 CYJavaEnv_(CallStatic ## Typ ## Method) \
403 CYJavaEnv_(Call ## Typ ## MethodA) \
404 CYJavaEnv_(CallStatic ## Typ ## MethodA) \
405 CYJavaEnv_(Get ## Typ ## Field) \
406 CYJavaEnv_(GetStatic ## Typ ## Field)
407CYJavaForEachPrimitive
408#undef CYJavaForEachPrimitive_
409
410 CYJavaEnv_(FromReflectedField)
411 CYJavaEnv_(FromReflectedMethod)
412 CYJavaEnv_(GetArrayLength)
413 CYJavaEnv_(GetMethodID)
414 CYJavaEnv_(GetStaticMethodID)
415 CYJavaEnv_(IsSameObject)
f2c357f9 416 CYJavaEnv_(RegisterNatives)
fc664744
JF
417#undef CYJavaEnv_
418
419#define CYJavaEnv_(Code) \
420 template <typename Other_, typename... Args_> \
421 auto Code(Args_ &&... args) const -> CYJavaLocal<Other_> { \
422 return {jni, static_cast<Other_>(_envcall(jni, Code(cy::Forward<Args_>(args)...)))}; \
423 }
424
425 CYJavaEnv_(CallObjectMethod)
426 CYJavaEnv_(CallStaticObjectMethod)
427 CYJavaEnv_(CallObjectMethodA)
428 CYJavaEnv_(CallStaticObjectMethodA)
429 CYJavaEnv_(GetObjectArrayElement)
430 CYJavaEnv_(GetObjectField)
431 CYJavaEnv_(GetStaticObjectField)
432#undef CYJavaEnv_
dbf05bfd
JF
433};
434
fc664744
JF
435static CYJavaLocal<jstring> CYCastJavaString(const CYJavaRef<jobject> &value) {
436 CYJavaEnv jni(value);
437 auto Object$(jni.FindClass("java/lang/Object"));
438 auto Object$toString(jni.GetMethodID(Object$, "toString", "()Ljava/lang/String;"));
439 return jni.CallObjectMethod<jstring>(value, Object$toString);
440}
441
477549f5
JF
442static JSValueRef CYCastJSValue(JSContextRef context, const CYJavaRef<jobject> &value);
443
444template <typename Other_>
445static _finline JSValueRef CYCastJSValue(JSContextRef context, const CYJavaRef<Other_> &value) {
446 return CYCastJSValue(context, value.template cast<jobject>());
447}
448
dbf05bfd
JF
449template <typename Type_>
450static _finline JSValueRef CYJavaCastJSValue(JSContextRef context, Type_ value) {
451 return CYCastJSValue(context, value);
452}
453
454static _finline JSValueRef CYJavaCastJSValue(JSContextRef context, jboolean value) {
455 return CYCastJSValue(context, static_cast<bool>(value));
456}
457
477549f5
JF
458JSValueRef CYJavaError::CastJSValue(JSContextRef context, const char *name) const {
459 return CYCastJSValue(context, value_);
460}
461
dbf05bfd
JF
462static std::map<std::string, CYJavaPrimitive> Primitives_;
463
fc664744
JF
464static CYJavaPrimitive CYJavaGetPrimitive(JSContextRef context, const CYJavaRef<jclass> &type, jmethodID Class$get$$Name) {
465 CYJavaEnv jni(type);
466 auto string(jni.CallObjectMethod<jstring>(type, Class$get$$Name));
467 _assert(string);
468
469 CYJavaUTF8String name(string);
dbf05bfd
JF
470 auto primitive(Primitives_.find(name));
471 return primitive != Primitives_.end() ? primitive->second : CYJavaPrimitiveObject;
472}
473
474typedef std::vector<CYJavaPrimitive> CYJavaShorty;
475
fc664744
JF
476static CYJavaShorty CYJavaGetShorty(JSContextRef context, const CYJavaRef<jobjectArray> &types, jmethodID Class$get$$Name) {
477 CYJavaEnv jni(types);
478 size_t count(jni.GetArrayLength(types));
dbf05bfd
JF
479 CYJavaShorty shorty(count);
480 for (size_t index(0); index != count; ++index)
fc664744 481 shorty[index] = CYJavaGetPrimitive(context, jni.GetObjectArrayElement<jclass>(types, index), Class$get$$Name);
dbf05bfd
JF
482 return shorty;
483}
484
485struct CYJavaField {
486 jfieldID field_;
487 CYJavaPrimitive primitive_;
488};
489
490typedef std::map<std::string, CYJavaField> CYJavaFieldMap;
491
492struct CYJavaSignature {
4b645e23 493 CYJavaGlobal<jobject> reflected_;
fc664744 494 jmethodID method_;
4b645e23
JF
495 CYJavaPrimitive primitive_;
496 CYJavaShorty shorty_;
497
fc664744
JF
498 CYJavaSignature(const CYJavaRef<jobject> &reflected, jmethodID method, CYJavaPrimitive primitive, const CYJavaShorty &shorty) :
499 reflected_(reflected),
4b645e23 500 method_(method),
4b645e23
JF
501 primitive_(primitive),
502 shorty_(shorty)
dbf05bfd
JF
503 {
504 }
505
6bbc110e 506 // XXX: the shorty doesn't store enough information
dbf05bfd 507 bool operator <(const CYJavaSignature &rhs) const {
6bbc110e 508 return shorty_ < rhs.shorty_;
dbf05bfd
JF
509 }
510};
511
6bbc110e
JF
512typedef std::set<CYJavaSignature> CYJavaOverload;
513typedef std::map<unsigned, CYJavaOverload> CYJavaOverloads;
dbf05bfd
JF
514
515struct CYJavaMethod :
d4222ffb 516 CYRoot
dbf05bfd 517{
7ab9e677
JF
518 CYUTF8String type_;
519 CYUTF8String name_;
6bbc110e 520 CYJavaOverloads overloads_;
dbf05bfd 521
7ab9e677
JF
522 CYJavaMethod(CYUTF8String type, CYUTF8String name, const CYJavaOverloads &overloads) :
523 type_(CYPoolUTF8String(*pool_, type)),
524 name_(CYPoolUTF8String(*pool_, name)),
6bbc110e 525 overloads_(overloads)
c9c16dde
JF
526 {
527 }
528};
529
7ab9e677
JF
530struct CYJavaInstanceMethod :
531 CYJavaMethod
c9c16dde 532{
7ab9e677
JF
533 using CYJavaMethod::CYJavaMethod;
534};
c9c16dde 535
7ab9e677
JF
536struct CYJavaStaticMethod :
537 CYJavaMethod
538{
539 using CYJavaMethod::CYJavaMethod;
dbf05bfd
JF
540};
541
542struct CYJavaClass :
d4222ffb 543 CYRoot
dbf05bfd 544{
d4222ffb 545 CYJavaGlobal<jclass> value_;
c9c16dde
JF
546 bool interface_;
547
dbf05bfd
JF
548 CYJavaFieldMap static_;
549 CYJavaFieldMap instance_;
6bbc110e 550 CYJavaOverloads overloads_;
dbf05bfd 551
fc664744 552 CYJavaClass(const CYJavaRef<jclass> &value, bool interface) :
d4222ffb 553 value_(value),
c9c16dde 554 interface_(interface)
dbf05bfd
JF
555 {
556 }
557};
558
fc664744 559static JSObjectRef CYGetJavaClass(JSContextRef context, const CYJavaRef<jclass> &_class);
8effd381 560
dbf05bfd 561struct CYJavaObject :
d4222ffb 562 CYRoot
dbf05bfd 563{
d4222ffb 564 CYJavaGlobal<jobject> value_;
8effd381
JF
565 CYJavaClass *table_;
566
fc664744 567 CYJavaObject(const CYJavaRef<jobject> &value, CYJavaClass *table) :
d4222ffb 568 value_(value),
4b645e23 569 table_(table)
dbf05bfd
JF
570 {
571 }
572
573 JSValueRef GetPrototype(JSContextRef context) const;
574};
575
8effd381 576struct CYJavaInterior :
d4222ffb 577 CYRoot
8effd381 578{
d4222ffb 579 CYJavaGlobal<jobject> value_;
8effd381
JF
580 CYJavaClass *table_;
581
fc664744 582 CYJavaInterior(const CYJavaRef<jobject> &value, CYJavaClass *table) :
d4222ffb 583 value_(value),
8effd381
JF
584 table_(table)
585 {
586 }
587};
588
c9c16dde 589struct CYJavaStaticInterior :
d4222ffb 590 CYRoot
4b645e23 591{
d4222ffb 592 CYJavaGlobal<jclass> value_;
4b645e23
JF
593 CYJavaClass *table_;
594
fc664744 595 CYJavaStaticInterior(const CYJavaRef<jclass> &value, CYJavaClass *table) :
d4222ffb 596 value_(value),
4b645e23
JF
597 table_(table)
598 {
599 }
600};
601
602struct CYJavaArray :
d4222ffb 603 CYRoot
4b645e23 604{
d4222ffb 605 CYJavaGlobal<jarray> value_;
4b645e23
JF
606 CYJavaPrimitive primitive_;
607
fc664744 608 CYJavaArray(const CYJavaRef<jarray> &value, CYJavaPrimitive primitive) :
d4222ffb 609 value_(value),
4b645e23
JF
610 primitive_(primitive)
611 {
612 }
613
614 JSValueRef GetPrototype(JSContextRef context) const;
615};
616
dbf05bfd 617struct CYJavaPackage :
d4222ffb 618 CYRoot
dbf05bfd 619{
f3e85e94
JF
620 JNIEnv *jni_;
621
dbf05bfd
JF
622 typedef std::vector<std::string> Path;
623 Path package_;
624
f3e85e94
JF
625 _finline CYJavaPackage(JNIEnv *jni, const Path &package) :
626 jni_(jni),
dbf05bfd
JF
627 package_(package)
628 {
629 }
630};
631
dbf05bfd 632JSValueRef CYJavaObject::GetPrototype(JSContextRef context) const {
fc664744
JF
633 CYJavaEnv jni(value_);
634 return CYGetProperty(context, CYGetJavaClass(context, jni.GetObjectClass(value_)), prototype_s);
dbf05bfd
JF
635}
636
4b645e23
JF
637JSValueRef CYJavaArray::GetPrototype(JSContextRef context) const {
638 return CYGetCachedObject(context, CYJSString("Array_prototype"));
639}
640
fc664744
JF
641static JSValueRef CYCastJSValue(JSContextRef context, const CYJavaRef<jobject> &value) {
642 if (!value)
dbf05bfd 643 return CYJSNull(context);
fc664744
JF
644 CYJavaEnv jni(value);
645
646 auto _class(jni.GetObjectClass(value));
647 if (jni.IsSameObject(_class, jni.FindClass("java/lang/String")))
648 return CYCastJSValue(context, CYJSString(value.cast<jstring>()));
649
650 auto Class$(jni.FindClass("java/lang/Class"));
651 auto Class$isArray(jni.GetMethodID(Class$, "isArray", "()Z"));
652 if (jni.CallBooleanMethod(_class, Class$isArray)) {
653 auto Class$getComponentType(jni.GetMethodID(Class$, "getComponentType", "()Ljava/lang/Class;"));
654 auto component(jni.CallObjectMethod<jclass>(_class, Class$getComponentType));
655 auto Class$getName(jni.GetMethodID(Class$, "getName", "()Ljava/lang/String;"));
d4222ffb 656 return CYPrivate<CYJavaArray>::Make(context, value.cast<jarray>(), CYJavaGetPrimitive(context, component, Class$getName));
c9c16dde
JF
657 }
658
fc664744
JF
659 auto Wrapper$(jni.FindClass("Cycript$Wrapper"));
660 if (jni.IsSameObject(_class, Wrapper$)) {
661 auto Wrapper$getProtect(jni.GetMethodID(Wrapper$, "getProtect", "()J"));
662 auto &protect(*reinterpret_cast<CYProtect *>(jni.CallLongMethod(value, Wrapper$getProtect)));
c9c16dde 663 return protect;
4b645e23
JF
664 }
665
fc664744 666 CYJavaClass *table(reinterpret_cast<CYJavaClass *>(JSObjectGetPrivate(CYGetJavaClass(context, _class))));
d4222ffb 667 return CYPrivate<CYJavaObject>::Make(context, value, table);
dbf05bfd
JF
668}
669
fc664744
JF
670static _finline JSObjectRef CYCastJSObject(JSContextRef context, const CYJavaRef<jobject> &value) {
671 return CYCastJSObject(context, CYCastJSValue(context, value));
c9c16dde
JF
672}
673
fc664744
JF
674static CYJavaLocal<jstring> CYCastJavaString(const CYJavaEnv &jni, JSContextRef context, CYUTF16String value) {
675 return jni.NewString(value.data, value.size);
dbf05bfd
JF
676}
677
fc664744 678static CYJavaLocal<jstring> CYCastJavaString(const CYJavaEnv &jni, JSContextRef context, JSStringRef value) {
c9c16dde 679 return CYCastJavaString(jni, context, CYCastUTF16String(value));
dbf05bfd
JF
680}
681
682#define CYCastJava$(T, Type, jtype, Cast) \
fc664744
JF
683_disused static CYJavaLocal<jobject> CYCastJava ## Type(const CYJavaEnv &jni, JSContextRef context, JSValueRef value) { \
684 auto Type$(jni.FindClass("java/lang/" #Type)); \
685 auto Type$init$(jni.GetMethodID(Type$, "<init>", "(" #T ")V")); \
686 return jni.NewObject(Type$, Type$init$, static_cast<jtype>(Cast(context, value))); \
dbf05bfd
JF
687}
688
689CYCastJava$(Z, Boolean, jboolean, CYCastBool)
690CYCastJava$(B, Byte, jbyte, CYCastDouble)
691CYCastJava$(C, Character, jchar, CYCastDouble)
692CYCastJava$(S, Short, jshort, CYCastDouble)
693CYCastJava$(I, Integer, jint, CYCastDouble)
694CYCastJava$(J, Long, jlong, CYCastDouble)
695CYCastJava$(F, Float, jfloat, CYCastDouble)
696CYCastJava$(D, Double, jdouble, CYCastDouble)
697
c9c16dde 698static CYJavaClass *CYGetJavaTable(JSContextRef context, JSObjectRef object) {
d4222ffb 699 if (!JSValueIsObjectOfClass(context, object, CYPrivate<CYJavaClass>::Class_))
c9c16dde
JF
700 return NULL;
701 return reinterpret_cast<CYJavaClass *>(JSObjectGetPrivate(object));
702}
703
704static CYJavaObject *CYGetJavaObject(JSContextRef context, JSObjectRef object) {
d4222ffb 705 if (!JSValueIsObjectOfClass(context, object, CYPrivate<CYJavaObject>::Class_))
c9c16dde
JF
706 return NULL;
707 return reinterpret_cast<CYJavaObject *>(JSObjectGetPrivate(object));
708}
709
fc664744 710static CYJavaLocal<jobject> CYCastJavaObject(const CYJavaEnv &jni, JSContextRef context, JSObjectRef value) {
c9c16dde 711 if (CYJavaObject *internal = CYGetJavaObject(context, value))
dbf05bfd 712 return internal->value_;
dbf05bfd 713
fc664744
JF
714 auto Wrapper$(jni.FindClass("Cycript$Wrapper"));
715 auto Wrapper$$init$(jni.GetMethodID(Wrapper$, "<init>", "(J)V"));
c9c16dde 716 CYProtect *protect(new CYProtect(context, value));
fc664744 717 return jni.NewObject(Wrapper$, Wrapper$$init$, reinterpret_cast<jlong>(protect));
dbf05bfd
JF
718}
719
fc664744 720static CYJavaLocal<jobject> CYCastJavaObject(const CYJavaEnv &jni, JSContextRef context, JSValueRef value) {
dbf05bfd
JF
721 switch (JSValueGetType(context, value)) {
722 case kJSTypeNull:
fc664744 723 return {jni, NULL};
dbf05bfd
JF
724 case kJSTypeBoolean:
725 return CYCastJavaBoolean(jni, context, value);
726 case kJSTypeNumber:
727 return CYCastJavaDouble(jni, context, value);
728 case kJSTypeString:
c9c16dde 729 return CYCastJavaString(jni, context, CYJSString(context, value));
dbf05bfd
JF
730 case kJSTypeObject:
731 return CYCastJavaObject(jni, context, CYCastJSObject(context, value));
732
733 case kJSTypeUndefined:
c9c16dde 734 // XXX: I am currently relying on this for dynamic proxy of void method
fc664744 735 return {jni, NULL};
dbf05bfd
JF
736 default:
737 _assert(false);
738 }
739}
740
fc664744
JF
741static JSObjectRef CYGetJavaClass(JSContextRef context, const CYJavaRef<jclass> &value) {
742 CYJavaEnv jni(value);
743 CYJavaFrame frame(jni, 64);
744
dbf05bfd
JF
745 JSObjectRef global(CYGetGlobalObject(context));
746 JSObjectRef cy(CYCastJSObject(context, CYGetProperty(context, global, cy_s)));
747
fc664744
JF
748 auto Class$(jni.FindClass("java/lang/Class"));
749 auto Class$getName(jni.GetMethodID(Class$, "getName", "()Ljava/lang/String;"));
dbf05bfd 750
7ab9e677
JF
751 auto string(jni.CallObjectMethod<jstring>(value, Class$getName));
752 CYJavaUTF8String utf8(string);
753 CYJSString name(utf8);
754
dbf05bfd
JF
755 JSValueRef cached(CYGetProperty(context, cy, name));
756 if (!JSValueIsUndefined(context, cached))
757 return CYCastJSObject(context, cached);
758
fc664744
JF
759 JSObjectRef constructor;
760 JSObjectRef prototype;
c9c16dde 761
fc664744 762 {
dbf05bfd 763
fc664744 764 auto Class$isInterface(jni.GetMethodID(Class$, "isInterface", "()Z"));
dbf05bfd 765
fc664744
JF
766 auto Class$getDeclaredConstructors(jni.GetMethodID(Class$, "getDeclaredConstructors", "()[Ljava/lang/reflect/Constructor;"));
767 auto Class$getDeclaredFields(jni.GetMethodID(Class$, "getDeclaredFields", "()[Ljava/lang/reflect/Field;"));
768 auto Class$getDeclaredMethods(jni.GetMethodID(Class$, "getDeclaredMethods", "()[Ljava/lang/reflect/Method;"));
dbf05bfd 769
fc664744
JF
770 auto Constructor$(jni.FindClass("java/lang/reflect/Constructor"));
771 //auto Constructor$getModifiers(jni.GetMethodID(Constructor$, "getModifiers", "()I"));
772 auto Constructor$getParameterTypes(jni.GetMethodID(Constructor$, "getParameterTypes", "()[Ljava/lang/Class;"));
dbf05bfd 773
fc664744
JF
774 auto Field$(jni.FindClass("java/lang/reflect/Field"));
775 auto Field$getModifiers(jni.GetMethodID(Field$, "getModifiers", "()I"));
776 auto Field$getName(jni.GetMethodID(Field$, "getName", "()Ljava/lang/String;"));
777 auto Field$getType(jni.GetMethodID(Field$, "getType", "()Ljava/lang/Class;"));
dbf05bfd 778
fc664744
JF
779 auto Method$(jni.FindClass("java/lang/reflect/Method"));
780 auto Method$getModifiers(jni.GetMethodID(Method$, "getModifiers", "()I"));
781 auto Method$getName(jni.GetMethodID(Method$, "getName", "()Ljava/lang/String;"));
782 auto Method$getParameterTypes(jni.GetMethodID(Method$, "getParameterTypes", "()[Ljava/lang/Class;"));
783 auto Method$getReturnType(jni.GetMethodID(Method$, "getReturnType", "()Ljava/lang/Class;"));
dbf05bfd 784
fc664744
JF
785 auto Modifier$(jni.FindClass("java/lang/reflect/Modifier"));
786 auto Modifier$isStatic(jni.GetStaticMethodID(Modifier$, "isStatic", "(I)Z"));
dbf05bfd 787
fc664744
JF
788 auto interface(jni.CallBooleanMethod(value, Class$isInterface));
789 auto table(new CYJavaClass(value, interface));
790
791 for (CYJavaLocal<jclass> prototype(value); prototype; prototype = jni.GetSuperclass(prototype)) {
792 auto fields(jni.CallObjectMethod<jobjectArray>(prototype, Class$getDeclaredFields));
793
794 for (jsize i(0), e(jni.GetArrayLength(fields)); i != e; ++i) {
795 auto field(jni.GetObjectArrayElement<jobject>(fields, e - i - 1));
796 auto modifiers(jni.CallIntMethod(field, Field$getModifiers));
797 auto instance(!jni.CallStaticBooleanMethod(Modifier$, Modifier$isStatic, modifiers));
dbf05bfd 798 auto &map(instance ? table->instance_ : table->static_);
3853f099
JF
799 auto string(jni.CallObjectMethod<jstring>(field, Field$getName));
800 CYJavaUTF8String name(string);
fc664744
JF
801 auto id(jni.FromReflectedField(field));
802 auto type(jni.CallObjectMethod<jclass>(field, Field$getType));
803 map.insert(std::make_pair(std::string(name), CYJavaField{id, CYJavaGetPrimitive(context, type, Class$getName)}));
dbf05bfd
JF
804 }
805 }
806
d4222ffb 807 constructor = JSObjectMake(context, CYPrivate<CYJavaClass>::Class_, table);
dbf05bfd 808
fc664744 809 prototype = JSObjectMake(context, NULL, NULL);
dbf05bfd
JF
810 CYSetProperty(context, constructor, prototype_s, prototype, kJSPropertyAttributeDontEnum);
811
fc664744 812 auto constructors(jni.CallObjectMethod<jobjectArray>(value, Class$getDeclaredConstructors));
dbf05bfd 813
fc664744
JF
814 for (jsize i(0), e(jni.GetArrayLength(constructors)); i != e; ++i) {
815 auto constructor(jni.GetObjectArrayElement<jobject>(constructors, i));
816 auto parameters(jni.CallObjectMethod<jobjectArray>(constructor, Constructor$getParameterTypes));
817 CYJavaShorty shorty(CYJavaGetShorty(context, parameters, Class$getName));
818 auto id(jni.FromReflectedMethod(constructor));
6bbc110e 819 table->overloads_[shorty.size()].insert(CYJavaSignature(constructor, id, CYJavaPrimitiveObject, shorty));
dbf05bfd
JF
820 }
821
6bbc110e
JF
822 std::map<std::pair<bool, std::string>, CYJavaOverloads> entries;
823
824 bool base(false);
825 for (CYJavaLocal<jclass> prototype(value); prototype; prototype = jni.GetSuperclass(prototype)) {
826 auto methods(jni.CallObjectMethod<jobjectArray>(prototype, Class$getDeclaredMethods));
dbf05bfd 827
6bbc110e
JF
828 for (jsize i(0), e(jni.GetArrayLength(methods)); i != e; ++i) {
829 auto method(jni.GetObjectArrayElement<jobject>(methods, i));
830 auto modifiers(jni.CallIntMethod(method, Method$getModifiers));
831 auto instance(!jni.CallStaticBooleanMethod(Modifier$, Modifier$isStatic, modifiers));
3853f099
JF
832 auto string(jni.CallObjectMethod<jstring>(method, Method$getName));
833 CYJavaUTF8String name(string);
6bbc110e
JF
834
835 auto parameters(jni.CallObjectMethod<jobjectArray>(method, Method$getParameterTypes));
836 CYJavaShorty shorty(CYJavaGetShorty(context, parameters, Class$getName));
837
838 CYJavaOverload *overload;
839 if (!base)
840 overload = &entries[std::make_pair(instance, std::string(name))][shorty.size()];
841 else {
842 auto entry(entries.find(std::make_pair(instance, std::string(name))));
843 if (entry == entries.end())
844 continue;
845 overload = &entry->second[shorty.size()];
846 }
847
848 auto type(jni.CallObjectMethod<jclass>(method, Method$getReturnType));
849 auto primitive(CYJavaGetPrimitive(context, type, Class$getName));
850 auto id(jni.FromReflectedMethod(method));
851 overload->insert(CYJavaSignature(method, id, primitive, shorty));
852 }
dbf05bfd 853
6bbc110e 854 base = true;
dbf05bfd
JF
855 }
856
857 for (const auto &entry : entries) {
858 bool instance(entry.first.first);
7ab9e677 859 CYJSString method(entry.first.second);
dbf05bfd 860 auto &overload(entry.second);
c9c16dde 861 if (instance)
7ab9e677 862 CYSetProperty(context, prototype, method, CYPrivate<CYJavaInstanceMethod>::Make(context, utf8, entry.first.second.c_str(), overload), kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete);
c9c16dde 863 else
7ab9e677 864 CYSetProperty(context, constructor, method, CYPrivate<CYJavaStaticMethod>::Make(context, utf8, entry.first.second.c_str(), overload), kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete);
dbf05bfd
JF
865 }
866
fc664744
JF
867 }
868
dbf05bfd
JF
869 // XXX: for some reason kJSPropertyAttributeDontEnum doesn't work if there's already a property with the same name
870 // by not linking the prototypes until after we set the properties, we hide the parent property from this issue :(
871
fc664744
JF
872 if (auto super = jni.GetSuperclass(value)) {
873 JSObjectRef parent(CYGetJavaClass(context, super));
4b645e23 874 CYSetPrototype(context, constructor, parent);
dbf05bfd
JF
875 CYSetPrototype(context, prototype, CYGetProperty(context, parent, prototype_s));
876 }
877
878 CYSetProperty(context, cy, name, constructor);
879 return constructor;
880}
881
4b645e23
JF
882static void CYCastJavaNumeric(jvalue &value, CYJavaPrimitive primitive, JSContextRef context, JSValueRef argument) {
883 switch (primitive) {
884#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
885 case CYJavaPrimitive ## Type: \
886 value.t = static_cast<j ## type>(CYCastDouble(context, argument)); \
887 break;
dbf05bfd
JF
888CYJavaForEachPrimitive
889#undef CYJavaForEachPrimitive_
4b645e23
JF
890 default:
891 _assert(false);
892 }
893}
894
4e2cc9d3
JF
895static bool CYCastJavaArguments(const CYJavaFrame &frame, const CYJavaShorty &shorty, JSContextRef context, const JSValueRef arguments[], jvalue *array) {
896 CYJavaEnv jni(frame);
897
4b645e23
JF
898 for (size_t index(0); index != shorty.size(); ++index) {
899 JSValueRef argument(arguments[index]);
900 JSType type(JSValueGetType(context, argument));
901 jvalue &value(array[index]);
902
903 switch (CYJavaPrimitive primitive = shorty[index]) {
904 case CYJavaPrimitiveObject:
4e2cc9d3 905 // XXX: figure out a way to tie this in to the CYJavaFrame
fc664744 906 value.l = CYCastJavaObject(jni, context, argument).leak();
4b645e23
JF
907 break;
908
909 case CYJavaPrimitiveBoolean:
910 if (type != kJSTypeBoolean)
911 return false;
912 value.z = CYCastBool(context, argument);
913 break;
914
915 case CYJavaPrimitiveCharacter:
916 if (type == kJSTypeNumber)
917 CYCastJavaNumeric(value, primitive, context, argument);
918 else if (type != kJSTypeString)
919 return false;
920 else {
921 CYJSString string(context, argument);
922 if (JSStringGetLength(string) != 1)
923 return false;
924 else
925 value.c = JSStringGetCharactersPtr(string)[0];
926 }
927 break;
928
929 case CYJavaPrimitiveByte:
930 case CYJavaPrimitiveShort:
931 case CYJavaPrimitiveInteger:
932 case CYJavaPrimitiveLong:
933 case CYJavaPrimitiveFloat:
934 case CYJavaPrimitiveDouble:
935 if (type != kJSTypeNumber)
936 return false;
937 CYCastJavaNumeric(value, primitive, context, argument);
938 break;
939
dbf05bfd
JF
940 default:
941 _assert(false);
942 }
dbf05bfd
JF
943 }
944
4b645e23 945 return true;
dbf05bfd
JF
946}
947
7ab9e677
JF
948static JSValueRef JavaInstanceMethod_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
949 auto internal(CYPrivate<CYJavaInstanceMethod>::Get(context, object));
c9c16dde 950 CYJavaObject *self(CYGetJavaObject(context, _this));
447b698c 951 _assert(self != NULL);
fc664744 952 CYJavaEnv jni(self->value_);
c9c16dde 953
6bbc110e
JF
954 auto overload(internal->overloads_.find(count));
955 if (overload != internal->overloads_.end())
956 for (auto signature(overload->second.begin()); signature != overload->second.end(); ++signature) {
4e2cc9d3 957 CYJavaFrame frame(jni, count + 16);
c9c16dde 958 jvalue array[count];
6bbc110e 959 if (!CYCastJavaArguments(frame, signature->shorty_, context, arguments, array))
c9c16dde 960 continue;
fc664744 961 jvalue *values(array);
6bbc110e 962 switch (signature->primitive_) {
c9c16dde 963 case CYJavaPrimitiveObject:
6bbc110e 964 return CYCastJSValue(context, jni.CallObjectMethodA<jobject>(self->value_, signature->method_, values));
c9c16dde 965 case CYJavaPrimitiveVoid:
6bbc110e 966 jni.CallVoidMethodA(self->value_, signature->method_, values);
c9c16dde
JF
967 return CYJSUndefined(context);
968#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
969 case CYJavaPrimitive ## Type: \
6bbc110e 970 return CYJavaCastJSValue(context, jni.Call ## Typ ## MethodA(self->value_, signature->method_, values));
c9c16dde
JF
971CYJavaForEachPrimitive
972#undef CYJavaForEachPrimitive_
973 default: _assert(false);
974 }
975 }
976
977 CYThrow("invalid method call");
978} CYCatch(NULL) }
979
980static JSValueRef JavaStaticMethod_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
d4222ffb 981 auto internal(CYPrivate<CYJavaStaticMethod>::Get(context, object));
c9c16dde 982 CYJavaClass *table(CYGetJavaTable(context, _this));
fc664744 983 CYJavaEnv jni(table->value_);
dbf05bfd 984
6bbc110e
JF
985 auto overload(internal->overloads_.find(count));
986 if (overload != internal->overloads_.end())
987 for (auto signature(overload->second.begin()); signature != overload->second.end(); ++signature) {
4e2cc9d3 988 CYJavaFrame frame(jni, count + 16);
4b645e23 989 jvalue array[count];
6bbc110e 990 if (!CYCastJavaArguments(frame, signature->shorty_, context, arguments, array))
4b645e23 991 continue;
fc664744 992 jvalue *values(array);
6bbc110e 993 switch (signature->primitive_) {
4b645e23 994 case CYJavaPrimitiveObject:
6bbc110e 995 return CYCastJSValue(context, jni.CallStaticObjectMethodA<jobject>(table->value_, signature->method_, values));
c9c16dde 996 case CYJavaPrimitiveVoid:
6bbc110e 997 jni.CallStaticVoidMethodA(table->value_, signature->method_, values);
c9c16dde 998 return CYJSUndefined(context);
4b645e23
JF
999#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
1000 case CYJavaPrimitive ## Type: \
6bbc110e 1001 return CYJavaCastJSValue(context, jni.CallStatic ## Typ ## MethodA(table->value_, signature->method_, values));
4b645e23
JF
1002CYJavaForEachPrimitive
1003#undef CYJavaForEachPrimitive_
1004 default: _assert(false);
1005 }
dbf05bfd
JF
1006 }
1007
1008 CYThrow("invalid method call");
1009} CYCatch(NULL) }
1010
1011static JSObjectRef JavaClass_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
d4222ffb 1012 auto table(CYPrivate<CYJavaClass>::Get(context, object));
fc664744 1013 CYJavaEnv jni(table->value_);
c9c16dde
JF
1014 jclass _class(table->value_);
1015
1016 if (table->interface_ && count == 1) {
fc664744 1017 auto Cycript$(jni.FindClass("Cycript"));
0e832de4
JF
1018 auto Cycript$Make(jni.GetStaticMethodID(Cycript$, "proxy", "(Ljava/lang/Class;LCycript$Wrapper;)Ljava/lang/Object;"));
1019 return CYCastJSObject(context, jni.CallObjectMethod<jobject>(Cycript$, Cycript$Make, _class, CYCastJavaObject(jni, context, CYCastJSObject(context, arguments[0])).get()));
c9c16dde 1020 }
dbf05bfd 1021
6bbc110e
JF
1022 auto overload(table->overloads_.find(count));
1023 if (overload != table->overloads_.end())
1024 for (auto signature(overload->second.begin()); signature != overload->second.end(); ++signature) {
4e2cc9d3 1025 CYJavaFrame frame(jni, count + 16);
4b645e23 1026 jvalue array[count];
6bbc110e 1027 if (!CYCastJavaArguments(frame, signature->shorty_, context, arguments, array))
4b645e23 1028 continue;
fc664744 1029 jvalue *values(array);
6bbc110e 1030 auto object(jni.NewObjectA(_class, signature->method_, values));
fc664744 1031 return CYCastJSObject(context, object);
dbf05bfd
JF
1032 }
1033
1034 CYThrow("invalid constructor call");
77dd5db9 1035} CYCatchObject() }
dbf05bfd 1036
c9c16dde 1037static bool JavaStaticInterior_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
d4222ffb 1038 auto internal(CYPrivate<CYJavaStaticInterior>::Get(context, object));
4b645e23 1039 CYJavaClass *table(internal->table_);
dbf05bfd
JF
1040 CYPool pool;
1041 auto name(CYPoolUTF8String(pool, context, property));
1042 auto field(table->static_.find(name));
1043 if (field == table->static_.end())
1044 return false;
1045 return true;
1046}
1047
c9c16dde 1048static JSValueRef JavaStaticInterior_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
d4222ffb 1049 auto internal(CYPrivate<CYJavaStaticInterior>::Get(context, object));
4b645e23 1050 CYJavaClass *table(internal->table_);
fc664744 1051 CYJavaEnv jni(table->value_);
dbf05bfd
JF
1052 CYPool pool;
1053 auto name(CYPoolUTF8String(pool, context, property));
1054 auto field(table->static_.find(name));
1055 if (field == table->static_.end())
1056 return NULL;
1057
1058 switch (field->second.primitive_) {
1059 case CYJavaPrimitiveObject:
fc664744 1060 return CYCastJSValue(context, jni.GetStaticObjectField<jobject>(table->value_, field->second.field_));
4b645e23 1061#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
dbf05bfd 1062 case CYJavaPrimitive ## Type: \
fc664744 1063 return CYJavaCastJSValue(context, jni.GetStatic ## Typ ## Field(table->value_, field->second.field_));
dbf05bfd
JF
1064CYJavaForEachPrimitive
1065#undef CYJavaForEachPrimitive_
1066 default: _assert(false);
1067 }
1068} CYCatch(NULL) }
1069
c9c16dde 1070static bool JavaStaticInterior_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
d4222ffb 1071 auto internal(CYPrivate<CYJavaStaticInterior>::Get(context, object));
4b645e23 1072 CYJavaClass *table(internal->table_);
fc664744 1073 CYJavaEnv jni(table->value_);
dbf05bfd
JF
1074 CYPool pool;
1075 auto name(CYPoolUTF8String(pool, context, property));
1076 auto field(table->static_.find(name));
1077 if (field == table->static_.end())
1078 return false;
1079
1080 switch (field->second.primitive_) {
1081 case CYJavaPrimitiveObject:
fc664744 1082 jni.SetStaticObjectField(table->value_, field->second.field_, CYCastJavaObject(jni, context, value));
4b645e23 1083#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
dbf05bfd 1084 case CYJavaPrimitive ## Type: \
fc664744 1085 jni.SetStatic ## Typ ## Field(table->value_, field->second.field_, CYCastDouble(context, value)); \
dbf05bfd
JF
1086 break;
1087CYJavaForEachPrimitive
1088#undef CYJavaForEachPrimitive_
1089 default: _assert(false);
1090 }
1091
1092 return true;
1093} CYCatch(false) }
1094
c9c16dde 1095static void JavaStaticInterior_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
d4222ffb 1096 auto internal(CYPrivate<CYJavaStaticInterior>::Get(context, object));
4b645e23 1097 CYJavaClass *table(internal->table_);
dbf05bfd
JF
1098 for (const auto &field : table->static_)
1099 JSPropertyNameAccumulatorAddName(names, CYJSString(field.first));
1100}
1101
1102static JSValueRef JavaClass_getProperty_class(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
d4222ffb 1103 auto table(CYPrivate<CYJavaClass>::Get(context, object));
fc664744 1104 return CYCastJSValue(context, table->value_);
dbf05bfd
JF
1105} CYCatch(NULL) }
1106
8effd381 1107static bool JavaInterior_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
d4222ffb 1108 auto internal(CYPrivate<CYJavaInterior>::Get(context, object));
8effd381 1109 CYJavaClass *table(internal->table_);
dbf05bfd
JF
1110 CYPool pool;
1111 auto name(CYPoolUTF8String(pool, context, property));
1112 auto field(table->instance_.find(name));
1113 if (field == table->instance_.end())
1114 return false;
1115 return true;
1116}
1117
8effd381 1118static JSValueRef JavaInterior_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
d4222ffb 1119 auto internal(CYPrivate<CYJavaInterior>::Get(context, object));
fc664744 1120 CYJavaEnv jni(internal->value_);
8effd381 1121 CYJavaClass *table(internal->table_);
dbf05bfd
JF
1122 CYPool pool;
1123 auto name(CYPoolUTF8String(pool, context, property));
1124 auto field(table->instance_.find(name));
1125 if (field == table->instance_.end())
1126 return NULL;
1127
1128 switch (field->second.primitive_) {
1129 case CYJavaPrimitiveObject:
fc664744 1130 return CYCastJSValue(context, jni.GetObjectField<jobject>(internal->value_, field->second.field_));
4b645e23 1131#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
dbf05bfd 1132 case CYJavaPrimitive ## Type: \
fc664744 1133 return CYJavaCastJSValue(context, jni.Get ## Typ ## Field(internal->value_, field->second.field_));
dbf05bfd
JF
1134CYJavaForEachPrimitive
1135#undef CYJavaForEachPrimitive_
1136 default: _assert(false);
1137 }
1138} CYCatch(NULL) }
1139
8effd381 1140static bool JavaInterior_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
d4222ffb 1141 auto internal(CYPrivate<CYJavaInterior>::Get(context, object));
fc664744 1142 CYJavaEnv jni(internal->value_);
8effd381 1143 CYJavaClass *table(internal->table_);
dbf05bfd
JF
1144 CYPool pool;
1145 auto name(CYPoolUTF8String(pool, context, property));
1146 auto field(table->instance_.find(name));
1147 if (field == table->instance_.end())
1148 return false;
1149
1150 switch (field->second.primitive_) {
1151 case CYJavaPrimitiveObject:
fc664744 1152 jni.SetObjectField(table->value_, field->second.field_, CYCastJavaObject(jni, context, value));
4b645e23 1153#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
dbf05bfd 1154 case CYJavaPrimitive ## Type: \
fc664744 1155 jni.Set ## Typ ## Field(table->value_, field->second.field_, CYCastDouble(context, value)); \
dbf05bfd
JF
1156 break;
1157CYJavaForEachPrimitive
1158#undef CYJavaForEachPrimitive_
1159 default: _assert(false);
1160 }
1161
1162 return true;
1163} CYCatch(false) }
1164
8effd381 1165static void JavaInterior_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
d4222ffb 1166 auto internal(CYPrivate<CYJavaInterior>::Get(context, object));
8effd381 1167 CYJavaClass *table(internal->table_);
dbf05bfd
JF
1168 for (const auto &field : table->instance_)
1169 JSPropertyNameAccumulatorAddName(names, CYJSString(field.first));
1170}
1171
1172static JSValueRef JavaObject_getProperty_constructor(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
d4222ffb 1173 auto internal(CYPrivate<CYJavaObject>::Get(context, object));
fc664744
JF
1174 CYJavaEnv jni(internal->value_);
1175 return CYGetJavaClass(context, jni.GetObjectClass(internal->value_));
dbf05bfd
JF
1176} CYCatch(NULL) }
1177
4b645e23 1178static JSValueRef JavaClass_getProperty_$cyi(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
d4222ffb
JF
1179 auto internal(CYPrivate<CYJavaClass>::Get(context, object));
1180 return CYPrivate<CYJavaStaticInterior>::Make(context, internal->value_, internal);
4b645e23
JF
1181} CYCatch(NULL) }
1182
8effd381 1183static JSValueRef JavaObject_getProperty_$cyi(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
d4222ffb
JF
1184 auto internal(CYPrivate<CYJavaObject>::Get(context, object));
1185 return CYPrivate<CYJavaInterior>::Make(context, internal->value_, internal->table_);
8effd381
JF
1186} CYCatch(NULL) }
1187
4b645e23 1188static JSValueRef JavaClass_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
d4222ffb 1189 auto internal(CYPrivate<CYJavaClass>::Get(context, _this));
fc664744
JF
1190 CYJavaEnv jni(internal->value_);
1191 auto Class$(jni.FindClass("java/lang/Class"));
1192 auto Class$getCanonicalName(jni.GetMethodID(Class$, "getCanonicalName", "()Ljava/lang/String;"));
1193 return CYCastJSValue(context, CYJSString(jni.CallObjectMethod<jstring>(internal->value_, Class$getCanonicalName)));
4b645e23
JF
1194} CYCatch(NULL) }
1195
1196static JSValueRef JavaMethod_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
7ab9e677 1197 auto internal(CYPrivate<CYJavaMethod>::Get(context, _this));
4b645e23 1198 std::ostringstream cyon;
7ab9e677
JF
1199 if (false)
1200 cyon << internal->type_ << "." << internal->name_;
1201 else {
1202 bool comma(false);
1203 for (auto overload(internal->overloads_.begin()); overload != internal->overloads_.end(); ++overload)
1204 for (auto signature(overload->second.begin()); signature != overload->second.end(); ++signature) {
1205 if (comma)
1206 cyon << std::endl;
1207 else
1208 comma = true;
1209 auto string(CYCastJavaString(signature->reflected_));
1210 cyon << CYJavaUTF8String(string);
1211 }
1212 }
c9c16dde
JF
1213 return CYCastJSValue(context, CYJSString(cyon.str()));
1214} CYCatch(NULL) }
1215
4b645e23 1216static JSValueRef JavaArray_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
d4222ffb 1217 auto internal(CYPrivate<CYJavaArray>::Get(context, object));
fc664744 1218 CYJavaEnv jni(internal->value_);
4b645e23 1219 if (JSStringIsEqual(property, length_s))
fc664744 1220 return CYCastJSValue(context, jni.GetArrayLength(internal->value_));
4b645e23
JF
1221
1222 CYPool pool;
1223 ssize_t offset;
1224 if (!CYGetOffset(pool, context, property, offset))
1225 return NULL;
1226
1227 if (internal->primitive_ == CYJavaPrimitiveObject)
fc664744 1228 return CYCastJSValue(context, jni.GetObjectArrayElement<jobject>(static_cast<jobjectArray>(internal->value_.value_), offset));
4b645e23
JF
1229 else switch (internal->primitive_) {
1230#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
1231 case CYJavaPrimitive ## Type: { \
1232 j ## type element; \
fc664744 1233 jni.Get ## Typ ## ArrayRegion(static_cast<j ## type ## Array>(internal->value_.value_), offset, 1, &element); \
4b645e23
JF
1234 return CYJavaCastJSValue(context, element); \
1235 } break;
1236CYJavaForEachPrimitive
1237#undef CYJavaForEachPrimitive_
1238 default: _assert(false);
1239 }
1240} CYCatch(NULL) }
1241
1242static bool JavaArray_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
d4222ffb 1243 auto internal(CYPrivate<CYJavaArray>::Get(context, object));
fc664744 1244 CYJavaEnv jni(internal->value_);
4b645e23
JF
1245
1246 CYPool pool;
1247 ssize_t offset;
1248 if (!CYGetOffset(pool, context, property, offset))
1249 return false;
1250
1251 if (internal->primitive_ == CYJavaPrimitiveObject)
fc664744 1252 jni.SetObjectArrayElement(static_cast<jobjectArray>(internal->value_.value_), offset, CYCastJavaObject(jni, context, value));
4b645e23
JF
1253 else switch (internal->primitive_) {
1254#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
1255 case CYJavaPrimitive ## Type: { \
1256 j ## type element; \
fc664744 1257 jni.Get ## Typ ## ArrayRegion(static_cast<j ## type ## Array>(internal->value_.value_), offset, 1, &element); \
4b645e23
JF
1258 return CYJavaCastJSValue(context, element); \
1259 } break;
1260CYJavaForEachPrimitive
1261#undef CYJavaForEachPrimitive_
1262 default: _assert(false);
1263 }
1264
1265 return true;
1266} CYCatch(false) }
1267
f45374f4
JF
1268static JNIEnv *GetJNI(JSContextRef context, JNIEnv *&env);
1269
4b645e23 1270static JSValueRef JavaPackage_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
d4222ffb 1271 auto internal(CYPrivate<CYJavaPackage>::Get(context, _this));
4b645e23
JF
1272 std::ostringstream name;
1273 for (auto &package : internal->package_)
1274 name << package << '.';
1275 name << '*';
1276 return CYCastJSValue(context, CYJSString(name.str()));
1277} CYCatch(NULL) }
1278
dbf05bfd
JF
1279static bool CYJavaPackage_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
1280 return true;
1281}
1282
1283static JSValueRef CYJavaPackage_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
d4222ffb 1284 auto internal(CYPrivate<CYJavaPackage>::Get(context, object));
dbf05bfd
JF
1285 CYJavaPackage::Path package(internal->package_);
1286
1287 CYPool pool;
1288 const char *next(CYPoolCString(pool, context, property));
1289
1290 std::ostringstream name;
1291 for (auto &package : internal->package_)
1292 name << package << '/';
1293 name << next;
1294
f45374f4
JF
1295 if (internal->jni_ == NULL)
1296 GetJNI(context, internal->jni_);
f3e85e94 1297 JNIEnv *jni(internal->jni_);
f45374f4 1298
fc664744
JF
1299 if (auto _class = jni->FindClass(name.str().c_str()))
1300 return CYGetJavaClass(context, CYJavaLocal<jclass>(jni, _class));
dbf05bfd
JF
1301 jni->ExceptionClear();
1302
1303 package.push_back(next);
d4222ffb 1304 return CYPrivate<CYJavaPackage>::Make(context, jni, package);
dbf05bfd
JF
1305} CYCatch(NULL) }
1306
fc664744 1307static void Cycript_delete(JNIEnv *env, jclass api, jlong jprotect) { CYJavaTry {
824bc1ec 1308 delete &protect;
c9c16dde
JF
1309} CYJavaCatch() }
1310
fc664744
JF
1311static jobject Cycript_handle(JNIEnv *env, jclass api, jlong jprotect, jstring property, jobjectArray jarguments) { CYJavaTry {
1312 JSValueRef function(CYGetProperty(context, object, CYJSString(CYJavaRef<jstring>(jni, property))));
c9c16dde
JF
1313 if (JSValueIsUndefined(context, function))
1314 return NULL;
1315
fc664744 1316 size_t count(jarguments == NULL ? 0 : jni.GetArrayLength(jarguments));
c9c16dde 1317 JSValueRef arguments[count];
4e2cc9d3 1318 for (size_t index(0); index != count; ++index)
fc664744 1319 arguments[index] = CYCastJSValue(context, jni.GetObjectArrayElement<jobject>(jarguments, index));
c9c16dde 1320
4e2cc9d3 1321 return CYCastJavaObject(jni, context, CYCallAsFunction(context, CYCastJSObject(context, function), object, count, arguments)).leak();
c9c16dde
JF
1322} CYJavaCatch(NULL) }
1323
1324static JNINativeMethod Cycript_[] = {
1325 {(char *) "delete", (char *) "(J)V", (void *) &Cycript_delete},
1326 {(char *) "handle", (char *) "(JLjava/lang/String;[Ljava/lang/Object;)Ljava/lang/Object;", (void *) &Cycript_handle},
1327};
1328
f2c357f9
JF
1329template <typename Type_>
1330static _finline void dlset(Type_ &function, const char *name, void *handle) {
1331 function = reinterpret_cast<Type_>(dlsym(handle, name));
1332}
1333
1334jint CYJavaVersion(JNI_VERSION_1_4);
1335
f3e85e94 1336static JavaVM *CYGetJavaVM(jint (*$JNI_GetCreatedJavaVMs)(JavaVM **, jsize, jsize *)) {
f2c357f9
JF
1337 jsize capacity(16);
1338 JavaVM *jvms[capacity];
1339 jsize size;
1340 _jnicall($JNI_GetCreatedJavaVMs(jvms, capacity, &size));
1341 if (size == 0)
1342 return NULL;
f3e85e94 1343 return jvms[0];
f2c357f9
JF
1344}
1345
f3e85e94 1346static JavaVM *CYGetJavaVM(JSContextRef context) {
f2c357f9
JF
1347 CYPool pool;
1348 void *handle(RTLD_DEFAULT);
1349 std::string library;
fc664744 1350
f2c357f9
JF
1351 jint (*$JNI_GetCreatedJavaVMs)(JavaVM **jvms, jsize capacity, jsize *size);
1352 dlset($JNI_GetCreatedJavaVMs, "JNI_GetCreatedJavaVMs", handle);
1353
1354 if ($JNI_GetCreatedJavaVMs != NULL) {
f3e85e94
JF
1355 if (JavaVM *jvm = CYGetJavaVM($JNI_GetCreatedJavaVMs))
1356 return jvm;
fc664744 1357 } else {
f2c357f9
JF
1358 std::vector<const char *> guesses;
1359
1360#ifdef __ANDROID__
1361 char android[PROP_VALUE_MAX];
1362 if (__system_property_get("persist.sys.dalvik.vm.lib", android) != 0)
1363 guesses.push_back(android);
1364#endif
1365
f3e85e94
JF
1366 guesses.push_back("/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jli/libjli.dylib");
1367 //guesses.push_back("/System/Library/Frameworks/JavaVM.framework/JavaVM");
4b5dc402 1368 guesses.push_back("libjvm.dylib");
f3e85e94 1369
f2c357f9
JF
1370 guesses.push_back("libart.so");
1371 guesses.push_back("libdvm.so");
1372 guesses.push_back("libjvm.so");
1373
1374 for (const char *guess : guesses) {
1375 handle = dlopen(guess, RTLD_LAZY | RTLD_GLOBAL);
1376 if (handle != NULL) {
1377 library = guess;
1378 break;
1379 }
fc664744
JF
1380 }
1381
f3e85e94
JF
1382 if (library.size() == 0)
1383 return NULL;
f2c357f9
JF
1384
1385 dlset($JNI_GetCreatedJavaVMs, "JNI_GetCreatedJavaVMs", handle);
f3e85e94
JF
1386 if (JavaVM *jvm = CYGetJavaVM($JNI_GetCreatedJavaVMs))
1387 return jvm;
fc664744
JF
1388 }
1389
f2c357f9
JF
1390 std::vector<JavaVMOption> options;
1391
1392 {
1393 std::ostringstream option;
1394 option << "-Djava.class.path=";
1395 option << CYPoolLibraryPath(pool) << "/libcycript.jar";
1396 if (const char *classpath = getenv("CLASSPATH"))
1397 option << ':' << classpath;
1398 options.push_back(JavaVMOption{pool.strdup(option.str().c_str()), NULL});
1399 }
1400
1401 // To use libnativehelper to access JNI_GetCreatedJavaVMs, you need JniInvocation.
1402 // ...but there can only be one JniInvocation, and assuradely the other VM has it.
1403 // Essentially, this API makes no sense. We need it for AndroidRuntime, though :/.
1404
1405 if (void *libnativehelper = dlopen("libnativehelper.so", RTLD_LAZY | RTLD_GLOBAL)) {
1406 class JniInvocation$;
1407 JniInvocation$ *(*JniInvocation$$init$)(JniInvocation$ *self)(NULL);
1408 bool (*JniInvocation$Init)(JniInvocation$ *self, const char *library)(NULL);
1409 JniInvocation$ *(*JniInvocation$finalize)(JniInvocation$ *self)(NULL);
1410
1411 dlset(JniInvocation$$init$, "_ZN13JniInvocationC1Ev", libnativehelper);
1412 dlset(JniInvocation$Init, "_ZN13JniInvocation4InitEPKc", libnativehelper);
1413 dlset(JniInvocation$finalize, "_ZN13JniInvocationD1Ev", libnativehelper);
1414
95be1645
JF
1415 if (JniInvocation$$init$ == NULL)
1416 dlclose(libnativehelper);
1417 else {
1418 // XXX: we should attach a pool to the VM itself and deallocate this there
1419 //auto invocation(pool.calloc<JniInvocation$>(1, 1024));
1420 //_assert(JniInvocation$finalize != NULL);
1421 //pool.atexit(reinterpret_cast<void (*)(void *)>(JniInvocation$finalize), invocation);
1422
1423 auto invocation(static_cast<JniInvocation$ *>(calloc(1, 1024)));
1424 JniInvocation$$init$(invocation);
1425
1426 _assert(JniInvocation$Init != NULL);
1427 JniInvocation$Init(invocation, NULL);
1428
1429 dlset($JNI_GetCreatedJavaVMs, "JNI_GetCreatedJavaVMs", libnativehelper);
f3e85e94
JF
1430 if (JavaVM *jvm = CYGetJavaVM($JNI_GetCreatedJavaVMs))
1431 return jvm;
95be1645 1432 }
f2c357f9
JF
1433 }
1434
f3e85e94
JF
1435 JavaVM *jvm;
1436 JNIEnv *env;
1437
f2c357f9
JF
1438 if (void *libandroid_runtime = dlopen("libandroid_runtime.so", RTLD_LAZY | RTLD_GLOBAL)) {
1439 class AndroidRuntime$;
1440 AndroidRuntime$ *(*AndroidRuntime$$init$)(AndroidRuntime$ *self, char *args, unsigned int size)(NULL);
f3e85e94
JF
1441 int (*AndroidRuntime$startVm)(AndroidRuntime$ *self, JavaVM **jvm, JNIEnv **env)(NULL);
1442 int (*AndroidRuntime$startReg)(JNIEnv *env)(NULL);
f2c357f9
JF
1443 int (*AndroidRuntime$addOption)(AndroidRuntime$ *self, const char *option, void *extra)(NULL);
1444 int (*AndroidRuntime$addVmArguments)(AndroidRuntime$ *self, int, const char *const argv[])(NULL);
1445 AndroidRuntime$ *(*AndroidRuntime$finalize)(AndroidRuntime$ *self)(NULL);
1446
1447 dlset(AndroidRuntime$$init$, "_ZN7android14AndroidRuntimeC1EPcj", libandroid_runtime);
1448 dlset(AndroidRuntime$startVm, "_ZN7android14AndroidRuntime7startVmEPP7_JavaVMPP7_JNIEnv", libandroid_runtime);
1449 dlset(AndroidRuntime$startReg, "_ZN7android14AndroidRuntime8startRegEP7_JNIEnv", libandroid_runtime);
1450 dlset(AndroidRuntime$addOption, "_ZN7android14AndroidRuntime9addOptionEPKcPv", libandroid_runtime);
1451 dlset(AndroidRuntime$addVmArguments, "_ZN7android14AndroidRuntime14addVmArgumentsEiPKPKc", libandroid_runtime);
1452 dlset(AndroidRuntime$finalize, "_ZN7android14AndroidRuntimeD1Ev", libandroid_runtime);
1453
1454 // XXX: it would also be interesting to attach this to a global pool
1455 AndroidRuntime$ *runtime(pool.calloc<AndroidRuntime$>(1, 1024));
1456
1457 _assert(AndroidRuntime$$init$ != NULL);
1458 AndroidRuntime$$init$(runtime, NULL, 0);
1459
1460 if (AndroidRuntime$addOption == NULL) {
1461 _assert(AndroidRuntime$addVmArguments != NULL);
1462 std::vector<const char *> arguments;
1463 for (const auto &option : options)
1464 arguments.push_back(option.optionString);
1465 AndroidRuntime$addVmArguments(runtime, arguments.size(), arguments.data());
1466 } else for (const auto &option : options)
1467 AndroidRuntime$addOption(runtime, option.optionString, option.extraInfo);
1468
1469 int failure;
1470
1471 _assert(AndroidRuntime$startVm != NULL);
f3e85e94 1472 failure = AndroidRuntime$startVm(runtime, &jvm, &env);
f2c357f9
JF
1473 _assert(failure == 0);
1474
1475 _assert(AndroidRuntime$startReg != NULL);
f3e85e94 1476 failure = AndroidRuntime$startReg(env);
f2c357f9
JF
1477 _assert(failure == 0);
1478
f3e85e94 1479 return jvm;
f2c357f9
JF
1480 }
1481
1482 jint (*$JNI_CreateJavaVM)(JavaVM **jvm, void **, void *);
1483 dlset($JNI_CreateJavaVM, "JNI_CreateJavaVM", handle);
1484
1485 JavaVMInitArgs args;
1486 memset(&args, 0, sizeof(args));
1487 args.version = CYJavaVersion;
1488 args.nOptions = options.size();
1489 args.options = options.data();
f3e85e94
JF
1490 _jnicall($JNI_CreateJavaVM(&jvm, reinterpret_cast<void **>(&env), &args));
1491 return jvm;
f2c357f9 1492}
fc664744 1493
f45374f4 1494static JNIEnv *GetJNI(JSContextRef context, JNIEnv *&env) {
f3e85e94 1495 auto jvm(CYGetJavaVM(context));
f45374f4 1496 _assert(jvm != NULL);
f3e85e94
JF
1497 _jnicall(jvm->GetEnv(reinterpret_cast<void **>(&env), CYJavaVersion));
1498 CYJavaEnv jni(env);
1499
f45374f4
JF
1500 // XXX: this happens once per stub :/
1501
f2c357f9
JF
1502 auto Cycript$(jni.FindClass("Cycript"));
1503 jni.RegisterNatives(Cycript$, Cycript_, sizeof(Cycript_) / sizeof(Cycript_[0]));
f3e85e94 1504
f45374f4
JF
1505 JSObjectRef java(CYGetCachedObject(context, CYJSString("Java")));
1506 JSValueRef arguments[1];
1507 arguments[0] = CYCastJSValue(context, CYJSString("setup"));
1508 CYCallAsFunction(context, CYCastJSObject(context, CYGetProperty(context, java, CYJSString("emit"))), java, 1, arguments);
1509
f3e85e94 1510 return env;
c9c16dde
JF
1511}
1512
4b645e23 1513static JSStaticValue JavaClass_staticValues[3] = {
dbf05bfd 1514 {"class", &JavaClass_getProperty_class, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
4b645e23 1515 {"$cyi", &JavaClass_getProperty_$cyi, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
dbf05bfd
JF
1516 {NULL, NULL, NULL, 0}
1517};
1518
4b645e23
JF
1519static JSStaticFunction JavaClass_staticFunctions[2] = {
1520 {"toCYON", &JavaClass_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
1521 {NULL, NULL, 0}
1522};
1523
8effd381 1524static JSStaticValue JavaObject_staticValues[3] = {
dbf05bfd 1525 {"constructor", &JavaObject_getProperty_constructor, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
8effd381 1526 {"$cyi", &JavaObject_getProperty_$cyi, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
dbf05bfd
JF
1527 {NULL, NULL, NULL, 0}
1528};
1529
7ab9e677 1530static JSStaticFunction JavaInstanceMethod_staticFunctions[2] = {
4b645e23
JF
1531 {"toCYON", &JavaMethod_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
1532 {NULL, NULL, 0}
1533};
1534
c9c16dde 1535static JSStaticFunction JavaStaticMethod_staticFunctions[2] = {
7ab9e677 1536 {"toCYON", &JavaMethod_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
c9c16dde
JF
1537 {NULL, NULL, 0}
1538};
1539
4b645e23
JF
1540static JSStaticFunction JavaPackage_staticFunctions[2] = {
1541 {"toCYON", &JavaPackage_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
dbf05bfd
JF
1542 {NULL, NULL, 0}
1543};
1544
1545void CYJava_Initialize() {
1546 Primitives_.insert(std::make_pair("void", CYJavaPrimitiveVoid));
4b645e23 1547#define CYJavaForEachPrimitive_(T, t, Typ, Type, type) \
42619b59
JF
1548 Primitives_.insert(std::make_pair(#type, CYJavaPrimitive ## Type));
1549CYJavaForEachPrimitive
1550#undef CYJavaForEachPrimitive_
dbf05bfd
JF
1551
1552 JSClassDefinition definition;
1553
1554 definition = kJSClassDefinitionEmpty;
1555 definition.className = "JavaClass";
1556 definition.staticValues = JavaClass_staticValues;
4b645e23 1557 definition.staticFunctions = JavaClass_staticFunctions;
dbf05bfd
JF
1558 definition.callAsConstructor = &JavaClass_callAsConstructor;
1559 definition.finalize = &CYFinalize;
d4222ffb 1560 CYPrivate<CYJavaClass>::Class_ = JSClassCreate(&definition);
dbf05bfd 1561
8effd381
JF
1562 definition = kJSClassDefinitionEmpty;
1563 definition.attributes = kJSClassAttributeNoAutomaticPrototype;
1564 definition.className = "JavaInterior";
1565 definition.hasProperty = &JavaInterior_hasProperty;
1566 definition.getProperty = &JavaInterior_getProperty;
1567 definition.setProperty = &JavaInterior_setProperty;
1568 definition.getPropertyNames = &JavaInterior_getPropertyNames;
1569 definition.finalize = &CYFinalize;
d4222ffb 1570 CYPrivate<CYJavaInterior>::Class_ = JSClassCreate(&definition);
8effd381 1571
dbf05bfd
JF
1572 definition = kJSClassDefinitionEmpty;
1573 definition.className = "JavaMethod";
dbf05bfd 1574 definition.finalize = &CYFinalize;
d4222ffb 1575 CYPrivate<CYJavaMethod>::Class_ = JSClassCreate(&definition);
dbf05bfd 1576
7ab9e677
JF
1577 definition = kJSClassDefinitionEmpty;
1578 definition.className = "JavaInstanceMethod";
1579 definition.parentClass = CYPrivate<CYJavaMethod>::Class_;
1580 definition.staticFunctions = JavaInstanceMethod_staticFunctions;
1581 definition.callAsFunction = &JavaInstanceMethod_callAsFunction;
1582 CYPrivate<CYJavaInstanceMethod>::Class_ = JSClassCreate(&definition);
1583
c9c16dde
JF
1584 definition = kJSClassDefinitionEmpty;
1585 definition.className = "JavaStaticMethod";
7ab9e677 1586 definition.parentClass = CYPrivate<CYJavaMethod>::Class_;
c9c16dde
JF
1587 definition.staticFunctions = JavaStaticMethod_staticFunctions;
1588 definition.callAsFunction = &JavaStaticMethod_callAsFunction;
d4222ffb 1589 CYPrivate<CYJavaStaticMethod>::Class_ = JSClassCreate(&definition);
c9c16dde 1590
dbf05bfd
JF
1591 definition = kJSClassDefinitionEmpty;
1592 definition.attributes = kJSClassAttributeNoAutomaticPrototype;
1593 definition.className = "JavaObject";
1594 definition.staticValues = JavaObject_staticValues;
dbf05bfd 1595 definition.finalize = &CYFinalize;
d4222ffb 1596 CYPrivate<CYJavaObject>::Class_ = JSClassCreate(&definition);
dbf05bfd 1597
4b645e23
JF
1598 definition = kJSClassDefinitionEmpty;
1599 definition.className = "JavaArray";
1600 definition.getProperty = &JavaArray_getProperty;
1601 definition.setProperty = &JavaArray_setProperty;
1602 definition.finalize = &CYFinalize;
d4222ffb 1603 CYPrivate<CYJavaArray>::Class_ = JSClassCreate(&definition);
4b645e23 1604
dbf05bfd
JF
1605 definition = kJSClassDefinitionEmpty;
1606 definition.className = "JavaPackage";
1607 definition.staticFunctions = JavaPackage_staticFunctions;
1608 definition.hasProperty = &CYJavaPackage_hasProperty;
1609 definition.getProperty = &CYJavaPackage_getProperty;
1610 definition.finalize = &CYFinalize;
d4222ffb 1611 CYPrivate<CYJavaPackage>::Class_ = JSClassCreate(&definition);
4b645e23
JF
1612
1613 definition = kJSClassDefinitionEmpty;
1614 definition.attributes = kJSClassAttributeNoAutomaticPrototype;
c9c16dde
JF
1615 definition.className = "JavaStaticInterior";
1616 definition.hasProperty = &JavaStaticInterior_hasProperty;
1617 definition.getProperty = &JavaStaticInterior_getProperty;
1618 definition.setProperty = &JavaStaticInterior_setProperty;
1619 definition.getPropertyNames = &JavaStaticInterior_getPropertyNames;
4b645e23 1620 definition.finalize = &CYFinalize;
d4222ffb 1621 CYPrivate<CYJavaStaticInterior>::Class_ = JSClassCreate(&definition);
dbf05bfd
JF
1622}
1623
1624void CYJava_SetupContext(JSContextRef context) {
1625 JSObjectRef global(CYGetGlobalObject(context));
f45374f4 1626 JSObjectRef cy(CYCastJSObject(context, CYGetProperty(context, global, cy_s)));
dbf05bfd
JF
1627 JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript"))));
1628 JSObjectRef all(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("all"))));
1629 //JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls"))));
1630
1631 JSObjectRef Java(JSObjectMake(context, NULL, NULL));
1632 CYSetProperty(context, cycript, CYJSString("Java"), Java);
f45374f4 1633 CYSetProperty(context, cy, CYJSString("Java"), Java);
dbf05bfd 1634
d4222ffb 1635 JSObjectRef Packages(CYPrivate<CYJavaPackage>::Make(context, nullptr, CYJavaPackage::Path()));
f45374f4 1636 CYSetProperty(context, all, CYJSString("Packages"), Packages, kJSPropertyAttributeDontEnum);
dbf05bfd
JF
1637
1638 for (auto name : (const char *[]) {"java", "javax", "android", "com", "net", "org"}) {
1639 CYJSString js(name);
d4222ffb 1640 CYSetProperty(context, all, js, CYPrivate<CYJavaPackage>::Make(context, nullptr, CYJavaPackage::Path(1, name)), kJSPropertyAttributeDontEnum);
dbf05bfd
JF
1641 }
1642}
1643
1644static CYHook CYJavaHook = {
1645 NULL,
1646 NULL,
1647 NULL,
1648 &CYJava_Initialize,
1649 &CYJava_SetupContext,
1650 NULL,
1651};
1652
1653CYRegisterHook CYJava(&CYJavaHook);