-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathArrayElementAccessor.cpp
211 lines (188 loc) · 9.77 KB
/
ArrayElementAccessor.cpp
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
#include "ArrayElementAccessor.h"
#include "JsArgToArrayConverter.h"
#include "ArgConverter.h"
#include "Util.h"
#include "NativeScriptException.h"
#include "Runtime.h"
using namespace v8;
using namespace std;
using namespace tns;
Local<Value> ArrayElementAccessor::GetArrayElement(Local<Context> context, const Local<Object>& array, uint32_t index, const string& arraySignature) {
JEnv env;
Isolate* isolate = context->GetIsolate();
EscapableHandleScope handleScope(isolate);
auto runtime = Runtime::GetRuntime(isolate);
auto objectManager = runtime->GetObjectManager();
auto arr = objectManager->GetJavaObjectByJsObject(array);
assertNonNullNativeArray(arr);
Local<Value> value;
jsize startIndex = index;
const jsize length = 1;
const string elementSignature = arraySignature.substr(1);
jboolean isCopy = false;
if (elementSignature == "Z") {
jbooleanArray boolArr = static_cast<jbooleanArray>(arr);
jboolean boolArrValue;
env.GetBooleanArrayRegion(boolArr, startIndex, length, &boolArrValue);
value = ConvertToJsValue(isolate, objectManager, env, elementSignature, &boolArrValue);
} else if (elementSignature == "B") {
jbyteArray byteArr = static_cast<jbyteArray>(arr);
jbyte byteArrValue;
env.GetByteArrayRegion(byteArr, startIndex, length, &byteArrValue);
value = ConvertToJsValue(isolate, objectManager, env, elementSignature, &byteArrValue);
} else if (elementSignature == "C") {
jcharArray charArr = static_cast<jcharArray>(arr);
jchar charArrValue;
env.GetCharArrayRegion(charArr, startIndex, length, &charArrValue);
JniLocalRef s(env.NewString(&charArrValue, 1));
const char* singleChar = env.GetStringUTFChars(s, &isCopy);
value = ConvertToJsValue(isolate, objectManager, env, elementSignature, singleChar);
env.ReleaseStringUTFChars(s, singleChar);
} else if (elementSignature == "S") {
jshortArray shortArr = static_cast<jshortArray>(arr);
jshort shortArrValue;
env.GetShortArrayRegion(shortArr, startIndex, length, &shortArrValue);
value = ConvertToJsValue(isolate, objectManager, env, elementSignature, &shortArrValue);
} else if (elementSignature == "I") {
jintArray intArr = static_cast<jintArray>(arr);
jint intArrValue;
env.GetIntArrayRegion(intArr, startIndex, length, &intArrValue);
value = ConvertToJsValue(isolate, objectManager, env, elementSignature, &intArrValue);
} else if (elementSignature == "J") {
jlongArray longArr = static_cast<jlongArray>(arr);
jlong longArrValue;
env.GetLongArrayRegion(longArr, startIndex, length, &longArrValue);
value = ConvertToJsValue(isolate, objectManager, env, elementSignature, &longArrValue);
} else if (elementSignature == "F") {
jfloatArray floatArr = static_cast<jfloatArray>(arr);
jfloat floatArrValue;
env.GetFloatArrayRegion(floatArr, startIndex, length, &floatArrValue);
value = ConvertToJsValue(isolate, objectManager, env, elementSignature, &floatArrValue);
} else if (elementSignature == "D") {
jdoubleArray doubleArr = static_cast<jdoubleArray>(arr);
jdouble doubleArrValue;
env.GetDoubleArrayRegion(doubleArr, startIndex, length, &doubleArrValue);
value = ConvertToJsValue(isolate, objectManager, env, elementSignature, &doubleArrValue);
} else {
jobject result = env.GetObjectArrayElement(static_cast<jobjectArray>(arr), index);
value = ConvertToJsValue(isolate, objectManager, env, elementSignature, &result);
env.DeleteLocalRef(result);
}
return handleScope.Escape(value);
}
void ArrayElementAccessor::SetArrayElement(Local<Context> context, const Local<Object>& array, uint32_t index, const string& arraySignature, Local<Value>& value) {
JEnv env;
Isolate* isolate = context->GetIsolate();
HandleScope handleScope(isolate);
auto runtime = Runtime::GetRuntime(isolate);
auto objectManager = runtime->GetObjectManager();
tns::JniLocalRef arr = objectManager->GetJavaObjectByJsObject(array);
assertNonNullNativeArray(arr);
const string elementSignature = arraySignature.substr(1);
jboolean isCopy = false;
if (elementSignature == "Z") { //bool
jboolean boolElementValue = (jboolean) value->BooleanValue(isolate);
jbooleanArray boolArr = static_cast<jbooleanArray>(arr);
env.SetBooleanArrayRegion(boolArr, index, 1, &boolElementValue);
} else if (elementSignature == "B") { //byte
jbyte byteElementValue = (jbyte) value->Int32Value(context).ToChecked();
jbyteArray byteArr = static_cast<jbyteArray>(arr);
env.SetByteArrayRegion(byteArr, index, 1, &byteElementValue);
} else if (elementSignature == "C") { //char
String::Utf8Value utf8(isolate, value->ToString(context).ToLocalChecked());
JniLocalRef s(env.NewString((jchar*) *utf8, 1));
const char* singleChar = env.GetStringUTFChars(s, &isCopy);
jchar charElementValue = *singleChar;
env.ReleaseStringUTFChars(s, singleChar);
jcharArray charArr = static_cast<jcharArray>(arr);
env.SetCharArrayRegion(charArr, index, 1, &charElementValue);
} else if (elementSignature == "S") { //short
jshort shortElementValue = (jshort) value->Int32Value(context).ToChecked();
jshortArray shortArr = static_cast<jshortArray>(arr);
env.SetShortArrayRegion(shortArr, index, 1, &shortElementValue);
} else if (elementSignature == "I") { //int
jint intElementValue = value->Int32Value(context).ToChecked();
jintArray intArr = static_cast<jintArray>(arr);
env.SetIntArrayRegion(intArr, index, 1, &intElementValue);
} else if (elementSignature == "J") { //long
jlong longElementValue;
if (value->IsObject()) {
longElementValue = (jlong) ArgConverter::ConvertToJavaLong(isolate, value);
} else {
longElementValue = (jlong) value->IntegerValue(context).ToChecked();
}
jlongArray longArr = static_cast<jlongArray>(arr);
env.SetLongArrayRegion(longArr, index, 1, &longElementValue);
} else if (elementSignature == "F") { //float
jfloat floatElementValue = (jfloat) value->NumberValue(context).ToChecked();
jfloatArray floatArr = static_cast<jfloatArray>(arr);
env.SetFloatArrayRegion(floatArr, index, 1, &floatElementValue);
} else if (elementSignature == "D") { //double
jdouble doubleElementValue = (jdouble) value->NumberValue(context).ToChecked();
jdoubleArray doubleArr = static_cast<jdoubleArray>(arr);
env.SetDoubleArrayRegion(doubleArr, index, 1, &doubleElementValue);
} else { //string or object
bool isReferenceType = value->IsObject() || value->IsString();
if (isReferenceType) {
auto object = value.As<Object>();
JsArgToArrayConverter argConverter(context, value, false, (int) Type::Null);
if (argConverter.IsValid()) {
jobjectArray objArr = static_cast<jobjectArray>(arr);
jobject objectElementValue = argConverter.GetConvertedArg();
env.SetObjectArrayElement(objArr, index, objectElementValue);
} else {
JsArgToArrayConverter::Error err = argConverter.GetError();
throw NativeScriptException(string(err.msg));
}
} else {
throw NativeScriptException(string("Cannot assign primitive value to array of objects."));
}
}
}
Local<Value> ArrayElementAccessor::ConvertToJsValue(Isolate* isolate, ObjectManager* objectManager, JEnv& env, const string& elementSignature, const void* value) {
Local<Value> jsValue;
if (elementSignature == "Z") {
jsValue = Boolean::New(isolate, *(jboolean*) value);
} else if (elementSignature == "B") {
jsValue = Integer::New(isolate, *(jbyte*) value);
} else if (elementSignature == "C") {
jsValue = ArgConverter::ConvertToV8String(isolate, (const char*) value, 1);
} else if (elementSignature == "S") {
jsValue = Integer::New(isolate, *(jshort*) value);
} else if (elementSignature == "I") {
jsValue = Integer::New(isolate, *(jint*) value);
} else if (elementSignature == "J") {
jsValue = ArgConverter::ConvertFromJavaLong(isolate, *(jlong*) value);
} else if (elementSignature == "F") {
jsValue = Number::New(isolate, *(jfloat*) value);
} else if (elementSignature == "D") {
jsValue = Number::New(isolate, *(jdouble*) value);
} else {
if (nullptr != (*(jobject*) value)) {
bool isString = elementSignature == "Ljava/lang/String;";
if (isString) {
jsValue = ArgConverter::jstringToV8String(isolate, *(jstring*) value);
} else {
jint javaObjectID = objectManager->GetOrCreateObjectId(*(jobject*) value);
jsValue = objectManager->GetJsObjectByJavaObject(javaObjectID);
if (jsValue.IsEmpty()) {
string className;
if (elementSignature[0] == '[') {
className = Util::JniClassPathToCanonicalName(elementSignature);
} else {
className = env.GetClassName(*(jobject*) value);
}
jsValue = objectManager->CreateJSWrapper(javaObjectID, className);
}
}
} else {
jsValue = Null(isolate);
}
}
return jsValue;
}
void ArrayElementAccessor::assertNonNullNativeArray(tns::JniLocalRef& arrayReference) {
if(arrayReference.IsNull()){
throw NativeScriptException("Failed calling indexer operator on native array. The JavaScript instance no longer has available Java instance counterpart.");
}
}