Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
1375 lines (1126 loc) · 47.8 KB

SDL_android.c

File metadata and controls

1375 lines (1126 loc) · 47.8 KB
 
1
2
/*
Simple DirectMedia Layer
Feb 15, 2013
Feb 15, 2013
3
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
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
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SDL_config.h"
#include "SDL_stdinc.h"
#include "SDL_assert.h"
#include "SDL_log.h"
#ifdef __ANDROID__
#include "SDL_system.h"
#include "SDL_android.h"
Dec 31, 2012
Dec 31, 2012
30
#include <EGL/egl.h>
31
32
33
34
35
36
37
38
#include "../../events/SDL_events_c.h"
#include "../../video/android/SDL_androidkeyboard.h"
#include "../../video/android/SDL_androidtouch.h"
#include "../../video/android/SDL_androidvideo.h"
#include <android/log.h>
#include <pthread.h>
Jan 8, 2013
Jan 8, 2013
39
40
#include <sys/types.h>
#include <unistd.h>
41
42
43
44
45
46
47
48
49
50
51
#define LOG_TAG "SDL_android"
//#define LOGI(...) __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
//#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)
#define LOGI(...) do {} while (false)
#define LOGE(...) do {} while (false)
/* Uncomment this to log messages entering and exiting methods in this file */
//#define DEBUG_JNI
/* Implemented in audio/android/SDL_androidaudio.c */
extern void Android_RunAudioThread();
May 30, 2013
May 30, 2013
52
53
static void Android_JNI_ThreadDestroyed(void*);
54
55
56
57
58
59
/*******************************************************************************
This file links the Java side of Android with libsdl
*******************************************************************************/
#include <jni.h>
#include <android/log.h>
Jul 22, 2013
Jul 22, 2013
60
#include <stdbool.h>
61
62
63
64
65
66
67
68
69
70
71
72
73
/*******************************************************************************
Globals
*******************************************************************************/
static pthread_key_t mThreadKey;
static JavaVM* mJavaVM;
// Main activity
static jclass mActivityClass;
// method signatures
static jmethodID midCreateGLContext;
Aug 3, 2013
Aug 3, 2013
74
static jmethodID midDeleteGLContext;
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
static jmethodID midFlipBuffers;
static jmethodID midAudioInit;
static jmethodID midAudioWriteShortBuffer;
static jmethodID midAudioWriteByteBuffer;
static jmethodID midAudioQuit;
// Accelerometer data storage
static float fLastAccelerometer[3];
static bool bHasNewData;
/*******************************************************************************
Functions called by JNI
*******************************************************************************/
// Library init
Jul 22, 2013
Jul 22, 2013
90
jint JNI_OnLoad(JavaVM* vm, void* reserved)
91
92
93
94
{
JNIEnv *env;
mJavaVM = vm;
LOGI("JNI_OnLoad called");
Jul 22, 2013
Jul 22, 2013
95
if ((*mJavaVM)->GetEnv(mJavaVM, (void**) &env, JNI_VERSION_1_4) != JNI_OK) {
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
LOGE("Failed to get the environment using GetEnv()");
return -1;
}
/*
* Create mThreadKey so we can keep track of the JNIEnv assigned to each thread
* Refer to http://developer.android.com/guide/practices/design/jni.html for the rationale behind this
*/
if (pthread_key_create(&mThreadKey, Android_JNI_ThreadDestroyed)) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Error initializing pthread key");
}
else {
Android_JNI_SetupThread();
}
return JNI_VERSION_1_4;
}
// Called before SDL_main() to initialize JNI bindings
Jul 22, 2013
Jul 22, 2013
114
void SDL_Android_Init(JNIEnv* mEnv, jclass cls)
115
116
117
118
119
{
__android_log_print(ANDROID_LOG_INFO, "SDL", "SDL_Android_Init()");
Android_JNI_SetupThread();
Jul 22, 2013
Jul 22, 2013
120
mActivityClass = (jclass)((*mEnv)->NewGlobalRef(mEnv, cls));
Jul 22, 2013
Jul 22, 2013
122
midCreateGLContext = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
Dec 31, 2012
Dec 31, 2012
123
"createGLContext","(II[I)Z");
Aug 3, 2013
Aug 3, 2013
124
125
midDeleteGLContext = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
"deleteGLContext","()V");
Jul 22, 2013
Jul 22, 2013
126
midFlipBuffers = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
127
"flipBuffers","()V");
Jul 22, 2013
Jul 22, 2013
128
midAudioInit = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
Jul 31, 2013
Jul 31, 2013
129
"audioInit", "(IZZI)I");
Jul 22, 2013
Jul 22, 2013
130
midAudioWriteShortBuffer = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
131
"audioWriteShortBuffer", "([S)V");
Jul 22, 2013
Jul 22, 2013
132
midAudioWriteByteBuffer = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
133
"audioWriteByteBuffer", "([B)V");
Jul 22, 2013
Jul 22, 2013
134
midAudioQuit = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
135
136
137
138
139
140
141
142
143
144
145
146
"audioQuit", "()V");
bHasNewData = false;
if(!midCreateGLContext || !midFlipBuffers || !midAudioInit ||
!midAudioWriteShortBuffer || !midAudioWriteByteBuffer || !midAudioQuit) {
__android_log_print(ANDROID_LOG_WARN, "SDL", "SDL: Couldn't locate Java callbacks, check that they're named and typed correctly");
}
__android_log_print(ANDROID_LOG_INFO, "SDL", "SDL_Android_Init() finished!");
}
// Resize
Jul 22, 2013
Jul 22, 2013
147
void Java_org_libsdl_app_SDLActivity_onNativeResize(
148
149
150
151
152
153
154
JNIEnv* env, jclass jcls,
jint width, jint height, jint format)
{
Android_SetScreenResolution(width, height, format);
}
// Keydown
Jul 22, 2013
Jul 22, 2013
155
void Java_org_libsdl_app_SDLActivity_onNativeKeyDown(
156
157
158
159
160
161
JNIEnv* env, jclass jcls, jint keycode)
{
Android_OnKeyDown(keycode);
}
// Keyup
Jul 22, 2013
Jul 22, 2013
162
void Java_org_libsdl_app_SDLActivity_onNativeKeyUp(
163
164
165
166
167
JNIEnv* env, jclass jcls, jint keycode)
{
Android_OnKeyUp(keycode);
}
Aug 2, 2013
Aug 2, 2013
168
169
170
171
172
173
174
175
176
// Keyboard Focus Lost
void Java_org_libsdl_app_SDLActivity_onNativeKeyboardFocusLost(
JNIEnv* env, jclass jcls)
{
/* Calling SDL_StopTextInput will take care of hiding the keyboard and cleaning up the DummyText widget */
SDL_StopTextInput();
}
Jul 22, 2013
Jul 22, 2013
178
void Java_org_libsdl_app_SDLActivity_onNativeTouch(
179
180
181
182
183
184
185
186
JNIEnv* env, jclass jcls,
jint touch_device_id_in, jint pointer_finger_id_in,
jint action, jfloat x, jfloat y, jfloat p)
{
Android_OnTouch(touch_device_id_in, pointer_finger_id_in, action, x, y, p);
}
// Accelerometer
Jul 22, 2013
Jul 22, 2013
187
void Java_org_libsdl_app_SDLActivity_onNativeAccel(
188
189
190
191
192
193
194
195
196
JNIEnv* env, jclass jcls,
jfloat x, jfloat y, jfloat z)
{
fLastAccelerometer[0] = x;
fLastAccelerometer[1] = y;
fLastAccelerometer[2] = z;
bHasNewData = true;
}
May 18, 2013
May 18, 2013
197
// Low memory
Jul 22, 2013
Jul 22, 2013
198
void Java_org_libsdl_app_SDLActivity_nativeLowMemory(
May 18, 2013
May 18, 2013
199
JNIEnv* env, jclass cls)
May 18, 2013
May 18, 2013
200
{
May 18, 2013
May 18, 2013
201
202
203
SDL_SendAppEvent(SDL_APP_LOWMEMORY);
}
Jul 22, 2013
Jul 22, 2013
205
void Java_org_libsdl_app_SDLActivity_nativeQuit(
206
JNIEnv* env, jclass cls)
May 18, 2013
May 18, 2013
207
{
208
209
// Inject a SDL_QUIT event
SDL_SendQuit();
May 18, 2013
May 18, 2013
210
SDL_SendAppEvent(SDL_APP_TERMINATING);
Jul 22, 2013
Jul 22, 2013
214
void Java_org_libsdl_app_SDLActivity_nativePause(
215
216
217
218
219
220
221
222
JNIEnv* env, jclass cls)
{
if (Android_Window) {
/* Signal the pause semaphore so the event loop knows to pause and (optionally) block itself */
if (!SDL_SemValue(Android_PauseSem)) SDL_SemPost(Android_PauseSem);
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_FOCUS_LOST, 0, 0);
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
}
May 18, 2013
May 18, 2013
223
224
225
226
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "nativePause()");
SDL_SendAppEvent(SDL_APP_WILLENTERBACKGROUND);
SDL_SendAppEvent(SDL_APP_DIDENTERBACKGROUND);
Jul 22, 2013
Jul 22, 2013
230
void Java_org_libsdl_app_SDLActivity_nativeResume(
231
232
JNIEnv* env, jclass cls)
{
May 18, 2013
May 18, 2013
233
234
235
236
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "nativeResume()");
SDL_SendAppEvent(SDL_APP_WILLENTERFOREGROUND);
SDL_SendAppEvent(SDL_APP_DIDENTERFOREGROUND);
237
238
239
240
241
242
243
244
245
246
247
if (Android_Window) {
/* Signal the resume semaphore so the event loop knows to resume and restore the GL Context
* We can't restore the GL Context here because it needs to be done on the SDL main thread
* and this function will be called from the Java thread instead.
*/
if (!SDL_SemValue(Android_ResumeSem)) SDL_SemPost(Android_ResumeSem);
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_FOCUS_GAINED, 0, 0);
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_RESTORED, 0, 0);
}
}
Jul 22, 2013
Jul 22, 2013
248
void Java_org_libsdl_app_SDLActivity_nativeRunAudioThread(
249
250
251
252
253
254
255
256
JNIEnv* env, jclass cls)
{
/* This is the audio thread, with a different environment */
Android_JNI_SetupThread();
Android_RunAudioThread();
}
Jul 22, 2013
Jul 22, 2013
257
void Java_org_libsdl_app_SDLInputConnection_nativeCommitText(
258
259
260
JNIEnv* env, jclass cls,
jstring text, jint newCursorPosition)
{
Jul 22, 2013
Jul 22, 2013
261
const char *utftext = (*env)->GetStringUTFChars(env, text, NULL);
262
263
264
SDL_SendKeyboardText(utftext);
Jul 22, 2013
Jul 22, 2013
265
(*env)->ReleaseStringUTFChars(env, text, utftext);
Jul 22, 2013
Jul 22, 2013
268
void Java_org_libsdl_app_SDLInputConnection_nativeSetComposingText(
269
270
271
JNIEnv* env, jclass cls,
jstring text, jint newCursorPosition)
{
Jul 22, 2013
Jul 22, 2013
272
const char *utftext = (*env)->GetStringUTFChars(env, text, NULL);
273
274
275
SDL_SendEditingText(utftext, 0, 0);
Jul 22, 2013
Jul 22, 2013
276
(*env)->ReleaseStringUTFChars(env, text, utftext);
277
278
279
280
281
282
283
284
}
/*******************************************************************************
Functions called by SDL into Java
*******************************************************************************/
Jul 22, 2013
Jul 22, 2013
285
286
static int s_active = 0;
struct LocalReferenceHolder
Jul 22, 2013
Jul 22, 2013
288
289
290
JNIEnv *m_env;
const char *m_func;
};
Jul 22, 2013
Jul 22, 2013
292
293
294
295
296
static struct LocalReferenceHolder LocalReferenceHolder_Setup(const char *func)
{
struct LocalReferenceHolder refholder;
refholder.m_env = NULL;
refholder.m_func = func;
Jul 22, 2013
Jul 22, 2013
298
SDL_Log("Entering function %s", func);
Jul 22, 2013
Jul 22, 2013
300
301
302
303
304
305
306
307
return refholder;
}
static SDL_bool LocalReferenceHolder_Init(struct LocalReferenceHolder *refholder, JNIEnv *env)
{
const int capacity = 16;
if ((*env)->PushLocalFrame(env, capacity) < 0) {
SDL_SetError("Failed to allocate enough JVM local references");
Jul 24, 2013
Jul 24, 2013
308
return SDL_FALSE;
Jul 22, 2013
Jul 22, 2013
310
311
312
313
314
315
316
++s_active;
refholder->m_env = env;
return SDL_TRUE;
}
static void LocalReferenceHolder_Cleanup(struct LocalReferenceHolder *refholder)
{
Jul 22, 2013
Jul 22, 2013
318
SDL_Log("Leaving function %s", refholder->m_func);
Jul 22, 2013
Jul 22, 2013
320
321
322
323
if (refholder->m_env) {
JNIEnv* env = refholder->m_env;
(*env)->PopLocalFrame(env, NULL);
--s_active;
Jul 22, 2013
Jul 22, 2013
325
}
Jul 22, 2013
Jul 22, 2013
327
328
329
330
static SDL_bool LocalReferenceHolder_IsActive()
{
return s_active > 0;
}
Jul 22, 2013
Jul 22, 2013
333
SDL_bool Android_JNI_CreateContext(int majorVersion, int minorVersion,
Dec 31, 2012
Dec 31, 2012
334
335
336
int red, int green, int blue, int alpha,
int buffer, int depth, int stencil,
int buffers, int samples)
Dec 31, 2012
Dec 31, 2012
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
JNIEnv *env = Android_JNI_GetEnv();
jint attribs[] = {
EGL_RED_SIZE, red,
EGL_GREEN_SIZE, green,
EGL_BLUE_SIZE, blue,
EGL_ALPHA_SIZE, alpha,
EGL_BUFFER_SIZE, buffer,
EGL_DEPTH_SIZE, depth,
EGL_STENCIL_SIZE, stencil,
EGL_SAMPLE_BUFFERS, buffers,
EGL_SAMPLES, samples,
EGL_RENDERABLE_TYPE, (majorVersion == 1 ? EGL_OPENGL_ES_BIT : EGL_OPENGL_ES2_BIT),
EGL_NONE
};
int len = SDL_arraysize(attribs);
jintArray array;
Jul 22, 2013
Jul 22, 2013
357
358
array = (*env)->NewIntArray(env, len);
(*env)->SetIntArrayRegion(env, array, 0, len, attribs);
Dec 31, 2012
Dec 31, 2012
359
Jul 22, 2013
Jul 22, 2013
360
jboolean success = (*env)->CallStaticBooleanMethod(env, mActivityClass, midCreateGLContext, majorVersion, minorVersion, array);
Dec 31, 2012
Dec 31, 2012
361
Jul 22, 2013
Jul 22, 2013
362
(*env)->DeleteLocalRef(env, array);
Dec 31, 2012
Dec 31, 2012
363
364
return success ? SDL_TRUE : SDL_FALSE;
Aug 3, 2013
Aug 3, 2013
367
368
369
370
SDL_bool Android_JNI_DeleteContext(SDL_GLContext context)
{
/* There's only one context, so the parameter is ignored for now */
JNIEnv *env = Android_JNI_GetEnv();
Aug 3, 2013
Aug 3, 2013
371
(*env)->CallStaticVoidMethod(env, mActivityClass, midDeleteGLContext);
Aug 3, 2013
Aug 3, 2013
372
373
}
Jul 22, 2013
Jul 22, 2013
374
void Android_JNI_SwapWindow()
375
376
{
JNIEnv *mEnv = Android_JNI_GetEnv();
Jul 22, 2013
Jul 22, 2013
377
(*mEnv)->CallStaticVoidMethod(mEnv, mActivityClass, midFlipBuffers);
Jul 22, 2013
Jul 22, 2013
380
void Android_JNI_SetActivityTitle(const char *title)
381
382
383
{
jmethodID mid;
JNIEnv *mEnv = Android_JNI_GetEnv();
Jul 22, 2013
Jul 22, 2013
384
mid = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,"setActivityTitle","(Ljava/lang/String;)Z");
Jul 22, 2013
Jul 22, 2013
386
387
388
jstring jtitle = (jstring)((*mEnv)->NewStringUTF(mEnv, title));
(*mEnv)->CallStaticBooleanMethod(mEnv, mActivityClass, mid, jtitle);
(*mEnv)->DeleteLocalRef(mEnv, jtitle);
Jul 22, 2013
Jul 22, 2013
392
SDL_bool Android_JNI_GetAccelerometerValues(float values[3])
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
{
int i;
SDL_bool retval = SDL_FALSE;
if (bHasNewData) {
for (i = 0; i < 3; ++i) {
values[i] = fLastAccelerometer[i];
}
bHasNewData = false;
retval = SDL_TRUE;
}
return retval;
}
static void Android_JNI_ThreadDestroyed(void* value) {
/* The thread is being destroyed, detach it from the Java VM and set the mThreadKey value to NULL as required */
JNIEnv *env = (JNIEnv*) value;
if (env != NULL) {
Jul 22, 2013
Jul 22, 2013
412
(*mJavaVM)->DetachCurrentThread(mJavaVM);
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
pthread_setspecific(mThreadKey, NULL);
}
}
JNIEnv* Android_JNI_GetEnv(void) {
/* From http://developer.android.com/guide/practices/jni.html
* All threads are Linux threads, scheduled by the kernel.
* They're usually started from managed code (using Thread.start), but they can also be created elsewhere and then
* attached to the JavaVM. For example, a thread started with pthread_create can be attached with the
* JNI AttachCurrentThread or AttachCurrentThreadAsDaemon functions. Until a thread is attached, it has no JNIEnv,
* and cannot make JNI calls.
* Attaching a natively-created thread causes a java.lang.Thread object to be constructed and added to the "main"
* ThreadGroup, making it visible to the debugger. Calling AttachCurrentThread on an already-attached thread
* is a no-op.
* Note: You can call this function any number of times for the same thread, there's no harm in it
*/
JNIEnv *env;
Jul 22, 2013
Jul 22, 2013
431
int status = (*mJavaVM)->AttachCurrentThread(mJavaVM, &env, NULL);
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
if(status < 0) {
LOGE("failed to attach current thread");
return 0;
}
return env;
}
int Android_JNI_SetupThread(void) {
/* From http://developer.android.com/guide/practices/jni.html
* Threads attached through JNI must call DetachCurrentThread before they exit. If coding this directly is awkward,
* in Android 2.0 (Eclair) and higher you can use pthread_key_create to define a destructor function that will be
* called before the thread exits, and call DetachCurrentThread from there. (Use that key with pthread_setspecific
* to store the JNIEnv in thread-local-storage; that way it'll be passed into your destructor as the argument.)
* Note: The destructor is not called unless the stored value is != NULL
* Note: You can call this function any number of times for the same thread, there's no harm in it
* (except for some lost CPU cycles)
*/
JNIEnv *env = Android_JNI_GetEnv();
pthread_setspecific(mThreadKey, (void*) env);
return 1;
}
//
// Audio support
//
static jboolean audioBuffer16Bit = JNI_FALSE;
static jboolean audioBufferStereo = JNI_FALSE;
static jobject audioBuffer = NULL;
static void* audioBufferPinned = NULL;
Jul 22, 2013
Jul 22, 2013
463
int Android_JNI_OpenAudioDevice(int sampleRate, int is16Bit, int channelCount, int desiredBufferFrames)
464
465
466
467
468
469
470
471
472
473
474
475
476
477
{
int audioBufferFrames;
JNIEnv *env = Android_JNI_GetEnv();
if (!env) {
LOGE("callback_handler: failed to attach current thread");
}
Android_JNI_SetupThread();
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "SDL audio: opening device");
audioBuffer16Bit = is16Bit;
audioBufferStereo = channelCount > 1;
Jul 31, 2013
Jul 31, 2013
478
479
480
481
482
if ((*env)->CallStaticIntMethod(env, mActivityClass, midAudioInit, sampleRate, audioBuffer16Bit, audioBufferStereo, desiredBufferFrames) != 0) {
/* Error during audio initialization */
__android_log_print(ANDROID_LOG_WARN, "SDL", "SDL audio: error on AudioTrack initialization!");
return 0;
}
Jan 7, 2013
Jan 7, 2013
483
484
485
/* Allocating the audio buffer from the Java side and passing it as the return value for audioInit no longer works on
* Android >= 4.2 due to a "stale global reference" error. So now we allocate this buffer directly from this side. */
May 18, 2013
May 18, 2013
486
Jan 7, 2013
Jan 7, 2013
487
if (is16Bit) {
Jul 22, 2013
Jul 22, 2013
488
jshortArray audioBufferLocal = (*env)->NewShortArray(env, desiredBufferFrames * (audioBufferStereo ? 2 : 1));
Jan 7, 2013
Jan 7, 2013
489
if (audioBufferLocal) {
Jul 22, 2013
Jul 22, 2013
490
491
audioBuffer = (*env)->NewGlobalRef(env, audioBufferLocal);
(*env)->DeleteLocalRef(env, audioBufferLocal);
Jan 7, 2013
Jan 7, 2013
492
493
494
}
}
else {
Jul 22, 2013
Jul 22, 2013
495
jbyteArray audioBufferLocal = (*env)->NewByteArray(env, desiredBufferFrames * (audioBufferStereo ? 2 : 1));
Jan 7, 2013
Jan 7, 2013
496
if (audioBufferLocal) {
Jul 22, 2013
Jul 22, 2013
497
498
audioBuffer = (*env)->NewGlobalRef(env, audioBufferLocal);
(*env)->DeleteLocalRef(env, audioBufferLocal);
Jan 7, 2013
Jan 7, 2013
499
500
}
}
501
502
if (audioBuffer == NULL) {
Jan 7, 2013
Jan 7, 2013
503
__android_log_print(ANDROID_LOG_WARN, "SDL", "SDL audio: could not allocate an audio buffer!");
504
505
506
507
508
return 0;
}
jboolean isCopy = JNI_FALSE;
if (audioBuffer16Bit) {
Jul 22, 2013
Jul 22, 2013
509
510
audioBufferPinned = (*env)->GetShortArrayElements(env, (jshortArray)audioBuffer, &isCopy);
audioBufferFrames = (*env)->GetArrayLength(env, (jshortArray)audioBuffer);
Jul 22, 2013
Jul 22, 2013
512
513
audioBufferPinned = (*env)->GetByteArrayElements(env, (jbyteArray)audioBuffer, &isCopy);
audioBufferFrames = (*env)->GetArrayLength(env, (jbyteArray)audioBuffer);
514
515
516
517
}
if (audioBufferStereo) {
audioBufferFrames /= 2;
}
Feb 12, 2013
Feb 12, 2013
518
519
520
521
return audioBufferFrames;
}
Jul 22, 2013
Jul 22, 2013
522
void * Android_JNI_GetAudioBuffer()
523
524
525
526
{
return audioBufferPinned;
}
Jul 22, 2013
Jul 22, 2013
527
void Android_JNI_WriteAudioBuffer()
528
529
530
531
{
JNIEnv *mAudioEnv = Android_JNI_GetEnv();
if (audioBuffer16Bit) {
Jul 22, 2013
Jul 22, 2013
532
533
(*mAudioEnv)->ReleaseShortArrayElements(mAudioEnv, (jshortArray)audioBuffer, (jshort *)audioBufferPinned, JNI_COMMIT);
(*mAudioEnv)->CallStaticVoidMethod(mAudioEnv, mActivityClass, midAudioWriteShortBuffer, (jshortArray)audioBuffer);
Jul 22, 2013
Jul 22, 2013
535
536
(*mAudioEnv)->ReleaseByteArrayElements(mAudioEnv, (jbyteArray)audioBuffer, (jbyte *)audioBufferPinned, JNI_COMMIT);
(*mAudioEnv)->CallStaticVoidMethod(mAudioEnv, mActivityClass, midAudioWriteByteBuffer, (jbyteArray)audioBuffer);
537
538
539
540
541
}
/* JNI_COMMIT means the changes are committed to the VM but the buffer remains pinned */
}
Jul 22, 2013
Jul 22, 2013
542
void Android_JNI_CloseAudioDevice()
543
544
545
{
JNIEnv *env = Android_JNI_GetEnv();
Jul 22, 2013
Jul 22, 2013
546
(*env)->CallStaticVoidMethod(env, mActivityClass, midAudioQuit);
547
548
if (audioBuffer) {
Jul 22, 2013
Jul 22, 2013
549
(*env)->DeleteGlobalRef(env, audioBuffer);
550
551
552
553
554
555
audioBuffer = NULL;
audioBufferPinned = NULL;
}
}
// Test for an exception and call SDL_SetError with its detail if one occurs
Jul 24, 2013
Jul 24, 2013
556
// If the parameter silent is truthy then SDL_SetError() will not be called.
Jul 22, 2013
Jul 22, 2013
557
static bool Android_JNI_ExceptionOccurred(bool silent)
Jul 22, 2013
Jul 22, 2013
559
SDL_assert(LocalReferenceHolder_IsActive());
560
561
JNIEnv *mEnv = Android_JNI_GetEnv();
Jul 22, 2013
Jul 22, 2013
562
jthrowable exception = (*mEnv)->ExceptionOccurred(mEnv);
563
564
565
566
if (exception != NULL) {
jmethodID mid;
// Until this happens most JNI operations have undefined behaviour
Jul 22, 2013
Jul 22, 2013
567
(*mEnv)->ExceptionClear(mEnv);
Apr 2, 2013
Apr 2, 2013
569
if (!silent) {
Jul 22, 2013
Jul 22, 2013
570
571
jclass exceptionClass = (*mEnv)->GetObjectClass(mEnv, exception);
jclass classClass = (*mEnv)->FindClass(mEnv, "java/lang/Class");
Jul 22, 2013
Jul 22, 2013
573
574
575
mid = (*mEnv)->GetMethodID(mEnv, classClass, "getName", "()Ljava/lang/String;");
jstring exceptionName = (jstring)(*mEnv)->CallObjectMethod(mEnv, exceptionClass, mid);
const char* exceptionNameUTF8 = (*mEnv)->GetStringUTFChars(mEnv, exceptionName, 0);
Jul 22, 2013
Jul 22, 2013
577
578
mid = (*mEnv)->GetMethodID(mEnv, exceptionClass, "getMessage", "()Ljava/lang/String;");
jstring exceptionMessage = (jstring)(*mEnv)->CallObjectMethod(mEnv, exception, mid);
Apr 2, 2013
Apr 2, 2013
580
if (exceptionMessage != NULL) {
Jul 22, 2013
Jul 22, 2013
581
const char* exceptionMessageUTF8 = (*mEnv)->GetStringUTFChars(mEnv, exceptionMessage, 0);
Apr 2, 2013
Apr 2, 2013
582
SDL_SetError("%s: %s", exceptionNameUTF8, exceptionMessageUTF8);
Jul 22, 2013
Jul 22, 2013
583
(*mEnv)->ReleaseStringUTFChars(mEnv, exceptionMessage, exceptionMessageUTF8);
Apr 2, 2013
Apr 2, 2013
584
585
586
} else {
SDL_SetError("%s", exceptionNameUTF8);
}
Jul 22, 2013
Jul 22, 2013
588
(*mEnv)->ReleaseStringUTFChars(mEnv, exceptionName, exceptionNameUTF8);
Apr 2, 2013
Apr 2, 2013
589
}
590
591
592
593
594
595
596
return true;
}
return false;
}
Jul 22, 2013
Jul 22, 2013
597
static int Internal_Android_JNI_FileOpen(SDL_RWops* ctx)
Jul 22, 2013
Jul 22, 2013
599
600
struct LocalReferenceHolder refs = LocalReferenceHolder_Setup(__FUNCTION__);
601
602
603
604
605
606
607
608
609
int result = 0;
jmethodID mid;
jobject context;
jobject assetManager;
jobject inputStream;
jclass channels;
jobject readableByteChannel;
jstring fileNameJString;
Jan 8, 2013
Jan 8, 2013
610
611
612
jobject fd;
jclass fdCls;
jfieldID descriptor;
613
614
JNIEnv *mEnv = Android_JNI_GetEnv();
Jul 22, 2013
Jul 22, 2013
615
if (!LocalReferenceHolder_Init(&refs, mEnv)) {
616
617
618
619
goto failure;
}
fileNameJString = (jstring)ctx->hidden.androidio.fileNameRef;
Jan 8, 2013
Jan 8, 2013
620
ctx->hidden.androidio.position = 0;
621
622
// context = SDLActivity.getContext();
Jul 22, 2013
Jul 22, 2013
623
mid = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
624
"getContext","()Landroid/content/Context;");
Jul 22, 2013
Jul 22, 2013
625
context = (*mEnv)->CallStaticObjectMethod(mEnv, mActivityClass, mid);
May 18, 2013
May 18, 2013
626
627
628
// assetManager = context.getAssets();
Jul 22, 2013
Jul 22, 2013
629
mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, context),
630
"getAssets", "()Landroid/content/res/AssetManager;");
Jul 22, 2013
Jul 22, 2013
631
assetManager = (*mEnv)->CallObjectMethod(mEnv, context, mid);
Jan 8, 2013
Jan 8, 2013
633
634
635
/* First let's try opening the file to obtain an AssetFileDescriptor.
* This method reads the files directly from the APKs using standard *nix calls
*/
Jul 22, 2013
Jul 22, 2013
636
637
mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, assetManager), "openFd", "(Ljava/lang/String;)Landroid/content/res/AssetFileDescriptor;");
inputStream = (*mEnv)->CallObjectMethod(mEnv, assetManager, mid, fileNameJString);
Apr 2, 2013
Apr 2, 2013
638
if (Android_JNI_ExceptionOccurred(true)) {
Jan 8, 2013
Jan 8, 2013
639
goto fallback;
Jul 22, 2013
Jul 22, 2013
642
643
mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, inputStream), "getStartOffset", "()J");
ctx->hidden.androidio.offset = (*mEnv)->CallLongMethod(mEnv, inputStream, mid);
Apr 2, 2013
Apr 2, 2013
644
if (Android_JNI_ExceptionOccurred(true)) {
Jan 8, 2013
Jan 8, 2013
645
goto fallback;
Jul 22, 2013
Jul 22, 2013
648
649
mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, inputStream), "getDeclaredLength", "()J");
ctx->hidden.androidio.size = (*mEnv)->CallLongMethod(mEnv, inputStream, mid);
Apr 2, 2013
Apr 2, 2013
650
if (Android_JNI_ExceptionOccurred(true)) {
Jan 8, 2013
Jan 8, 2013
651
goto fallback;
Jul 22, 2013
Jul 22, 2013
654
655
656
657
658
659
mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, inputStream), "getFileDescriptor", "()Ljava/io/FileDescriptor;");
fd = (*mEnv)->CallObjectMethod(mEnv, inputStream, mid);
fdCls = (*mEnv)->GetObjectClass(mEnv, fd);
descriptor = (*mEnv)->GetFieldID(mEnv, fdCls, "descriptor", "I");
ctx->hidden.androidio.fd = (*mEnv)->GetIntField(mEnv, fd, descriptor);
ctx->hidden.androidio.assetFileDescriptorRef = (*mEnv)->NewGlobalRef(mEnv, inputStream);
Jan 14, 2013
Jan 14, 2013
661
662
663
// Seek to the correct offset in the file.
lseek(ctx->hidden.androidio.fd, (off_t)ctx->hidden.androidio.offset, SEEK_SET);
Jan 8, 2013
Jan 8, 2013
664
665
if (false) {
fallback:
May 18, 2013
May 18, 2013
666
667
668
// Disabled log message because of spam on the Nexus 7
//__android_log_print(ANDROID_LOG_DEBUG, "SDL", "Falling back to legacy InputStream method for opening file");
Jan 8, 2013
Jan 8, 2013
669
670
671
672
/* Try the old method using InputStream */
ctx->hidden.androidio.assetFileDescriptorRef = NULL;
// inputStream = assetManager.open(<filename>);
Jul 22, 2013
Jul 22, 2013
673
mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, assetManager),
Jan 8, 2013
Jan 8, 2013
674
"open", "(Ljava/lang/String;I)Ljava/io/InputStream;");
Jul 22, 2013
Jul 22, 2013
675
676
inputStream = (*mEnv)->CallObjectMethod(mEnv, assetManager, mid, fileNameJString, 1 /*ACCESS_RANDOM*/);
if (Android_JNI_ExceptionOccurred(false)) {
Jan 8, 2013
Jan 8, 2013
677
678
goto failure;
}
Jul 22, 2013
Jul 22, 2013
680
ctx->hidden.androidio.inputStreamRef = (*mEnv)->NewGlobalRef(mEnv, inputStream);
Jan 8, 2013
Jan 8, 2013
681
682
683
684
685
686
687
688
// Despite all the visible documentation on [Asset]InputStream claiming
// that the .available() method is not guaranteed to return the entire file
// size, comments in <sdk>/samples/<ver>/ApiDemos/src/com/example/ ...
// android/apis/content/ReadAsset.java imply that Android's
// AssetInputStream.available() /will/ always return the total file size
// size = inputStream.available();
Jul 22, 2013
Jul 22, 2013
689
mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, inputStream),
Jan 8, 2013
Jan 8, 2013
690
"available", "()I");
Jul 22, 2013
Jul 22, 2013
691
692
ctx->hidden.androidio.size = (long)(*mEnv)->CallIntMethod(mEnv, inputStream, mid);
if (Android_JNI_ExceptionOccurred(false)) {
Jan 8, 2013
Jan 8, 2013
693
694
695
696
goto failure;
}
// readableByteChannel = Channels.newChannel(inputStream);
Jul 22, 2013
Jul 22, 2013
697
698
channels = (*mEnv)->FindClass(mEnv, "java/nio/channels/Channels");
mid = (*mEnv)->GetStaticMethodID(mEnv, channels,
Jan 8, 2013
Jan 8, 2013
699
700
"newChannel",
"(Ljava/io/InputStream;)Ljava/nio/channels/ReadableByteChannel;");
Jul 22, 2013
Jul 22, 2013
701
702
703
readableByteChannel = (*mEnv)->CallStaticObjectMethod(
mEnv, channels, mid, inputStream);
if (Android_JNI_ExceptionOccurred(false)) {
Jan 8, 2013
Jan 8, 2013
704
705
706
707
goto failure;
}
ctx->hidden.androidio.readableByteChannelRef =
Jul 22, 2013
Jul 22, 2013
708
(*mEnv)->NewGlobalRef(mEnv, readableByteChannel);
Jan 8, 2013
Jan 8, 2013
709
710
// Store .read id for reading purposes
Jul 22, 2013
Jul 22, 2013
711
mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, readableByteChannel),
Jan 8, 2013
Jan 8, 2013
712
713
714
"read", "(Ljava/nio/ByteBuffer;)I");
ctx->hidden.androidio.readMethod = mid;
}
715
716
717
718
719
if (false) {
failure:
result = -1;
Jul 22, 2013
Jul 22, 2013
720
(*mEnv)->DeleteGlobalRef(mEnv, (jobject)ctx->hidden.androidio.fileNameRef);
721
722
if(ctx->hidden.androidio.inputStreamRef != NULL) {
Jul 22, 2013
Jul 22, 2013
723
(*mEnv)->DeleteGlobalRef(mEnv, (jobject)ctx->hidden.androidio.inputStreamRef);
724
725
726
}
if(ctx->hidden.androidio.readableByteChannelRef != NULL) {
Jul 22, 2013
Jul 22, 2013
727
(*mEnv)->DeleteGlobalRef(mEnv, (jobject)ctx->hidden.androidio.readableByteChannelRef);
Jan 8, 2013
Jan 8, 2013
730
if(ctx->hidden.androidio.assetFileDescriptorRef != NULL) {
Jul 22, 2013
Jul 22, 2013
731
(*mEnv)->DeleteGlobalRef(mEnv, (jobject)ctx->hidden.androidio.assetFileDescriptorRef);
Jan 8, 2013
Jan 8, 2013
732
733
}
Jul 22, 2013
Jul 22, 2013
735
736
LocalReferenceHolder_Cleanup(&refs);
737
738
739
return result;
}
Jul 22, 2013
Jul 22, 2013
740
741
int Android_JNI_FileOpen(SDL_RWops* ctx,
const char* fileName, const char* mode)
Jul 22, 2013
Jul 22, 2013
743
struct LocalReferenceHolder refs = LocalReferenceHolder_Setup(__FUNCTION__);
744
JNIEnv *mEnv = Android_JNI_GetEnv();
Jul 22, 2013
Jul 22, 2013
745
int retval;
Jul 22, 2013
Jul 22, 2013
747
748
if (!LocalReferenceHolder_Init(&refs, mEnv)) {
LocalReferenceHolder_Cleanup(&refs);
749
750
751
752
return -1;
}
if (!ctx) {
Jul 22, 2013
Jul 22, 2013
753
LocalReferenceHolder_Cleanup(&refs);
Jul 22, 2013
Jul 22, 2013
757
758
jstring fileNameJString = (*mEnv)->NewStringUTF(mEnv, fileName);
ctx->hidden.androidio.fileNameRef = (*mEnv)->NewGlobalRef(mEnv, fileNameJString);
759
760
761
ctx->hidden.androidio.inputStreamRef = NULL;
ctx->hidden.androidio.readableByteChannelRef = NULL;
ctx->hidden.androidio.readMethod = NULL;
Jan 8, 2013
Jan 8, 2013
762
ctx->hidden.androidio.assetFileDescriptorRef = NULL;
Jul 22, 2013
Jul 22, 2013
764
765
766
retval = Internal_Android_JNI_FileOpen(ctx);
LocalReferenceHolder_Cleanup(&refs);
return retval;
Jul 22, 2013
Jul 22, 2013
769
size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer,
770
771
size_t size, size_t maxnum)
{
Jul 22, 2013
Jul 22, 2013
772
struct LocalReferenceHolder refs = LocalReferenceHolder_Setup(__FUNCTION__);
Jan 8, 2013
Jan 8, 2013
774
775
776
777
778
779
780
781
if (ctx->hidden.androidio.assetFileDescriptorRef) {
size_t bytesMax = size * maxnum;
if (ctx->hidden.androidio.size != -1 /*UNKNOWN_LENGTH*/ && ctx->hidden.androidio.position + bytesMax > ctx->hidden.androidio.size) {
bytesMax = ctx->hidden.androidio.size - ctx->hidden.androidio.position;
}
size_t result = read(ctx->hidden.androidio.fd, buffer, bytesMax );
if (result > 0) {
ctx->hidden.androidio.position += result;
Jul 22, 2013
Jul 22, 2013
782
LocalReferenceHolder_Cleanup(&refs);
Jan 8, 2013
Jan 8, 2013
783
784
return result / size;
}
Jul 22, 2013
Jul 22, 2013
785
LocalReferenceHolder_Cleanup(&refs);
Jan 8, 2013
Jan 8, 2013
786
787
788
789
790
return 0;
} else {
jlong bytesRemaining = (jlong) (size * maxnum);
jlong bytesMax = (jlong) (ctx->hidden.androidio.size - ctx->hidden.androidio.position);
int bytesRead = 0;
Jan 8, 2013
Jan 8, 2013
792
793
/* Don't read more bytes than those that remain in the file, otherwise we get an exception */
if (bytesRemaining > bytesMax) bytesRemaining = bytesMax;
Jan 8, 2013
Jan 8, 2013
795
JNIEnv *mEnv = Android_JNI_GetEnv();
Jul 22, 2013
Jul 22, 2013
796
797
if (!LocalReferenceHolder_Init(&refs, mEnv)) {
LocalReferenceHolder_Cleanup(&refs);
Jul 7, 2013
Jul 7, 2013
798
return 0;
Jan 8, 2013
Jan 8, 2013
799
}
Jan 8, 2013
Jan 8, 2013
801
802
jobject readableByteChannel = (jobject)ctx->hidden.androidio.readableByteChannelRef;
jmethodID readMethod = (jmethodID)ctx->hidden.androidio.readMethod;
Jul 22, 2013
Jul 22, 2013
803
jobject byteBuffer = (*mEnv)->NewDirectByteBuffer(mEnv, buffer, bytesRemaining);
Jan 8, 2013
Jan 8, 2013
805
806
while (bytesRemaining > 0) {
// result = readableByteChannel.read(...);
Jul 22, 2013
Jul 22, 2013
807
int result = (*mEnv)->CallIntMethod(mEnv, readableByteChannel, readMethod, byteBuffer);
Jul 22, 2013
Jul 22, 2013
809
810
if (Android_JNI_ExceptionOccurred(false)) {
LocalReferenceHolder_Cleanup(&refs);
Jan 8, 2013
Jan 8, 2013
811
812
return 0;
}
Jan 8, 2013
Jan 8, 2013
814
815
816
if (result < 0) {
break;
}
Jan 8, 2013
Jan 8, 2013
818
819
820
821
bytesRemaining -= result;
bytesRead += result;
ctx->hidden.androidio.position += result;
}
Jul 22, 2013
Jul 22, 2013
822
LocalReferenceHolder_Cleanup(&refs);
Jan 8, 2013
Jan 8, 2013
823
return bytesRead / size;
May 18, 2013
May 18, 2013
824
}
Jul 22, 2013
Jul 22, 2013
827
size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer,
828
829
830
831
832
833
size_t size, size_t num)
{
SDL_SetError("Cannot write to Android package filesystem");
return 0;
}
Jul 22, 2013
Jul 22, 2013
834
static int Internal_Android_JNI_FileClose(SDL_RWops* ctx, bool release)
Jul 22, 2013
Jul 22, 2013
836
837
struct LocalReferenceHolder refs = LocalReferenceHolder_Setup(__FUNCTION__);
838
839
840
int result = 0;
JNIEnv *mEnv = Android_JNI_GetEnv();
Jul 22, 2013
Jul 22, 2013
841
842
if (!LocalReferenceHolder_Init(&refs, mEnv)) {
LocalReferenceHolder_Cleanup(&refs);
Mar 31, 2013
Mar 31, 2013
843
return SDL_SetError("Failed to allocate enough JVM local references");
844
845
846
847
}
if (ctx) {
if (release) {
Jul 22, 2013
Jul 22, 2013
848
(*mEnv)->DeleteGlobalRef(mEnv, (jobject)ctx->hidden.androidio.fileNameRef);
Jan 8, 2013
Jan 8, 2013
851
852
if (ctx->hidden.androidio.assetFileDescriptorRef) {
jobject inputStream = (jobject)ctx->hidden.androidio.assetFileDescriptorRef;
Jul 22, 2013
Jul 22, 2013
853
jmethodID mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, inputStream),
Jan 8, 2013
Jan 8, 2013
854
"close", "()V");
Jul 22, 2013
Jul 22, 2013
855
856
857
(*mEnv)->CallVoidMethod(mEnv, inputStream, mid);
(*mEnv)->DeleteGlobalRef(mEnv, (jobject)ctx->hidden.androidio.assetFileDescriptorRef);
if (Android_JNI_ExceptionOccurred(false)) {
Jan 8, 2013
Jan 8, 2013
858
859
860
861
862
result = -1;
}
}
else {
jobject inputStream = (jobject)ctx->hidden.androidio.inputStreamRef;
Jan 8, 2013
Jan 8, 2013
864
// inputStream.close();
Jul 22, 2013
Jul 22, 2013
865
jmethodID mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, inputStream),
Jan 8, 2013
Jan 8, 2013
866
"close", "()V");
Jul 22, 2013
Jul 22, 2013
867
868
869
870
(*mEnv)->CallVoidMethod(mEnv, inputStream, mid);
(*mEnv)->DeleteGlobalRef(mEnv, (jobject)ctx->hidden.androidio.inputStreamRef);
(*mEnv)->DeleteGlobalRef(mEnv, (jobject)ctx->hidden.androidio.readableByteChannelRef);
if (Android_JNI_ExceptionOccurred(false)) {
Jan 8, 2013
Jan 8, 2013
871
872
result = -1;
}
873
874
875
876
877
878
879
}
if (release) {
SDL_FreeRW(ctx);
}
}
Jul 22, 2013
Jul 22, 2013
880
LocalReferenceHolder_Cleanup(&refs);
881
882
883
884
return result;
}
Jul 22, 2013
Jul 22, 2013
885
Sint64 Android_JNI_FileSize(SDL_RWops* ctx)
886
887
888
889
{
return ctx->hidden.androidio.size;
}
Jul 22, 2013
Jul 22, 2013
890
Sint64 Android_JNI_FileSeek(SDL_RWops* ctx, Sint64 offset, int whence)
Jan 8, 2013
Jan 8, 2013
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
if (ctx->hidden.androidio.assetFileDescriptorRef) {
switch (whence) {
case RW_SEEK_SET:
if (ctx->hidden.androidio.size != -1 /*UNKNOWN_LENGTH*/ && offset > ctx->hidden.androidio.size) offset = ctx->hidden.androidio.size;
offset += ctx->hidden.androidio.offset;
break;
case RW_SEEK_CUR:
offset += ctx->hidden.androidio.position;
if (ctx->hidden.androidio.size != -1 /*UNKNOWN_LENGTH*/ && offset > ctx->hidden.androidio.size) offset = ctx->hidden.androidio.size;
offset += ctx->hidden.androidio.offset;
break;
case RW_SEEK_END:
offset = ctx->hidden.androidio.offset + ctx->hidden.androidio.size + offset;
break;
default:
Mar 31, 2013
Mar 31, 2013
907
return SDL_SetError("Unknown value for 'whence'");
Jan 8, 2013
Jan 8, 2013
908
909
}
whence = SEEK_SET;
Jan 8, 2013
Jan 8, 2013
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
off_t ret = lseek(ctx->hidden.androidio.fd, (off_t)offset, SEEK_SET);
if (ret == -1) return -1;
ctx->hidden.androidio.position = ret - ctx->hidden.androidio.offset;
} else {
Sint64 newPosition;
switch (whence) {
case RW_SEEK_SET:
newPosition = offset;
break;
case RW_SEEK_CUR:
newPosition = ctx->hidden.androidio.position + offset;
break;
case RW_SEEK_END:
newPosition = ctx->hidden.androidio.size + offset;
break;
default:
Mar 31, 2013
Mar 31, 2013
928
return SDL_SetError("Unknown value for 'whence'");
Jan 8, 2013
Jan 8, 2013
929
}
Jan 8, 2013
Jan 8, 2013
931
932
/* Validate the new position */
if (newPosition < 0) {
Mar 31, 2013
Mar 31, 2013
933
return SDL_Error(SDL_EFSEEK);
Jan 8, 2013
Jan 8, 2013
934
935
936
937
}
if (newPosition > ctx->hidden.androidio.size) {
newPosition = ctx->hidden.androidio.size;
}
Jan 8, 2013
Jan 8, 2013
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
Sint64 movement = newPosition - ctx->hidden.androidio.position;
if (movement > 0) {
unsigned char buffer[4096];
// The easy case where we're seeking forwards
while (movement > 0) {
Sint64 amount = sizeof (buffer);
if (amount > movement) {
amount = movement;
}
size_t result = Android_JNI_FileRead(ctx, buffer, 1, amount);
if (result <= 0) {
// Failed to read/skip the required amount, so fail
return -1;
}
movement -= result;
Jan 8, 2013
Jan 8, 2013
958
959
960
} else if (movement < 0) {
// We can't seek backwards so we have to reopen the file and seek
// forwards which obviously isn't very efficient
Jul 22, 2013
Jul 22, 2013
961
962
Internal_Android_JNI_FileClose(ctx, false);
Internal_Android_JNI_FileOpen(ctx);
Jan 8, 2013
Jan 8, 2013
963
Android_JNI_FileSeek(ctx, newPosition, RW_SEEK_SET);
964
965
966
967
}
}
return ctx->hidden.androidio.position;
May 18, 2013
May 18, 2013
968
Jul 22, 2013
Jul 22, 2013
971
int Android_JNI_FileClose(SDL_RWops* ctx)
Jul 22, 2013
Jul 22, 2013
973
return Internal_Android_JNI_FileClose(ctx, true);
974
975
976
977
978
}
// returns a new global reference which needs to be released later
static jobject Android_JNI_GetSystemServiceObject(const char* name)
{
Jul 22, 2013
Jul 22, 2013
979
struct LocalReferenceHolder refs = LocalReferenceHolder_Setup(__FUNCTION__);
980
JNIEnv* env = Android_JNI_GetEnv();
Jul 22, 2013
Jul 22, 2013
981
982
983
984
jobject retval = NULL;
if (!LocalReferenceHolder_Init(&refs, env)) {
LocalReferenceHolder_Cleanup(&refs);
985
986
987
return NULL;
}
Jul 22, 2013
Jul 22, 2013
988
jstring service = (*env)->NewStringUTF(env, name);
989
990
991
jmethodID mid;
Jul 22, 2013
Jul 22, 2013
992
993
mid = (*env)->GetStaticMethodID(env, mActivityClass, "getContext", "()Landroid/content/Context;");
jobject context = (*env)->CallStaticObjectMethod(env, mActivityClass, mid);
Jul 22, 2013
Jul 22, 2013
995
996
mid = (*env)->GetMethodID(env, mActivityClass, "getSystemService", "(Ljava/lang/String;)Ljava/lang/Object;");
jobject manager = (*env)->CallObjectMethod(env, context, mid, service);
Jul 22, 2013
Jul 22, 2013
998
(*env)->DeleteLocalRef(env, service);
Jul 22, 2013
Jul 22, 2013
1000
retval = manager ? (*env)->NewGlobalRef(env, manager) : NULL;