-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathJNIMethod.swift
280 lines (253 loc) · 18.3 KB
/
JNIMethod.swift
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
//
// JNIMethod.swift
// SwiftJava
//
// Created by John Holdsworth on 17/07/2016.
// Copyright (c) 2016 John Holdsworth. All rights reserved.
//
// Static functions related to calling a static or instance method
//
public class JNIMethod {
static func getStaticMethodID( _ methodName: UnsafePointer<Int8>, _ methodSig: UnsafePointer<Int8>,
_ methodCache: UnsafeMutablePointer<jmethodID?>,
_ className: UnsafePointer<Int8>, _ classCache: UnsafeMutablePointer<jclass?>,
_ file: StaticString = #file, _ line: Int = #line ) {
JNI.CachedFindClass( className, classCache, file, line )
methodCache.pointee = JNI.api.GetStaticMethodID( JNI.env, classCache.pointee, methodName, methodSig )
if methodCache.pointee == nil {
JNI.report( "Failed to lookup static method \(String(cString: methodName))( \(String(cString: methodSig)) )", file, line )
}
}
static func getMethodID( _ methodName: UnsafePointer<Int8>, _ methodSig: UnsafePointer<Int8>,
_ methodCache: UnsafeMutablePointer<jmethodID?>, _ object: jobject?,
_ locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) {
let clazz: jclass? = JNI.GetObjectClass( object, locals, file, line )
methodCache.pointee = JNI.api.GetMethodID( JNI.env, clazz, methodName, methodSig )
if methodCache.pointee == nil {
JNI.report( "Failed to lookup method \(String(describing: object)).\(String(describing: clazz)).\(String(cString: methodName))( \(String(cString: methodSig)) )", file, line )
}
}
public static func NewObject( className: UnsafePointer<Int8>, classObject: jclass?,
methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jobject? {
methodCache.pointee = JNI.api.GetMethodID( JNI.env, classObject, "<init>", methodSig )
if methodCache.pointee == nil {
JNI.report( "Failed to lookup constructor \(String(cString: className)).<init>( \(String(cString: methodSig)) )", file, line )
}
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.NewObjectA( JNI.env, classObject, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func NewObject( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jobject? {
JNI.CachedFindClass( className, classCache, file, line )
return NewObject( className: className, classObject: classCache.pointee,
methodSig: methodSig, methodCache: methodCache,
args: args, locals: locals )
}
public static func CallStaticObjectMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jobject? {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallStaticObjectMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallStaticBooleanMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jboolean {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallStaticBooleanMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallStaticByteMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jbyte {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallStaticByteMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallStaticCharMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jchar {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallStaticCharMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallStaticShortMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jshort {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallStaticShortMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallStaticIntMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jint {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallStaticIntMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallStaticLongMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jlong {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallLongMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallStaticFloatMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jfloat {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallStaticFloatMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallStaticDoubleMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jdouble {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallDoubleMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallStaticVoidMethod( className: UnsafePointer<Int8>, classCache: UnsafeMutablePointer<jclass?>,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) {
getStaticMethodID( methodName, methodSig, methodCache, className, classCache, file, line )
withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
JNI.check( JNI.api.CallStaticVoidMethodA( JNI.env, classCache.pointee, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallObjectMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jobject! {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallObjectMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallBooleanMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jboolean {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallBooleanMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallByteMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jbyte {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallByteMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallCharMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jchar {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallCharMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallShortMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jshort {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallShortMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallIntMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jint {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallIntMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallLongMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jlong {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallLongMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallFloatMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jfloat {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallFloatMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallDoubleMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) -> jdouble {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
return withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
return JNI.check( JNI.api.CallDoubleMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
public static func CallVoidMethod( object: jobject?,
methodName: UnsafePointer<Int8>, methodSig: UnsafePointer<Int8>, methodCache: UnsafeMutablePointer<jmethodID?>,
args: UnsafeMutablePointer<[jvalue]>, locals: UnsafeMutablePointer<[jobject]>,
_ file: StaticString = #file, _ line: Int = #line ) {
getMethodID( methodName, methodSig, methodCache, object, locals, file, line )
withUnsafePointer(to: &args.pointee[0]) {
argsPtr in
JNI.check( JNI.api.CallVoidMethodA( JNI.env, object, methodCache.pointee, argsPtr ), locals, file, line )
}
}
}