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
|
/*
* Copyright (C) 2012-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include <stdlib.h>
#include <errno.h>
#include <android_native_app_glue.h>
#include "EventLoop.h"
#include "XBMCApp.h"
#include "android/jni/SurfaceTexture.h"
#include "utils/StringUtils.h"
#include "CompileInfo.h"
// copied from new android_native_app_glue.c
static void process_input(struct android_app* app, struct android_poll_source* source) {
AInputEvent* event = NULL;
int processed = 0;
while (AInputQueue_getEvent(app->inputQueue, &event) >= 0) {
if (AInputQueue_preDispatchEvent(app->inputQueue, event)) {
continue;
}
int32_t handled = 0;
if (app->onInputEvent != NULL) handled = app->onInputEvent(app, event);
AInputQueue_finishEvent(app->inputQueue, event, handled);
processed = 1;
}
if (processed == 0) {
CXBMCApp::android_printf("process_input: Failure reading next input event: %s", strerror(errno));
}
}
extern void android_main(struct android_app* state)
{
{
// make sure that the linker doesn't strip out our glue
app_dummy();
// revector inputPollSource.process so we can shut up
// its useless verbose logging on new events (see ouya)
// and fix the error in handling multiple input events.
// see https://code.google.com/p/android/issues/detail?id=41755
state->inputPollSource.process = process_input;
CEventLoop eventLoop(state);
CXBMCApp xbmcApp(state->activity);
if (xbmcApp.isValid())
{
IInputHandler inputHandler;
eventLoop.run(xbmcApp, inputHandler);
}
else
CXBMCApp::android_printf("android_main: setup failed");
CXBMCApp::android_printf("android_main: Exiting");
// We need to call exit() so that all loaded libraries are properly unloaded
// otherwise on the next start of the Activity android will simple re-use
// those loaded libs in the state they were in when we quit XBMC last time
// which will lead to crashes because of global/static classes that haven't
// been properly uninitialized
}
exit(0);
}
extern "C" JNIEXPORT jint JNI_OnLoad(JavaVM *vm, void *reserved)
{
jint version = JNI_VERSION_1_6;
JNIEnv* env;
if (vm->GetEnv(reinterpret_cast<void**>(&env), version) != JNI_OK)
return -1;
std::string appName = CCompileInfo::GetAppName();
StringUtils::ToLower(appName);
std::string mainClass = "org/xbmc/" + appName + "/Main";
std::string bcReceiver = "org/xbmc/" + appName + "/XBMCBroadcastReceiver";
std::string frameListener = "org/xbmc/" + appName + "/XBMCOnFrameAvailableListener";
jclass cMain = env->FindClass(mainClass.c_str());
if(cMain)
{
JNINativeMethod mOnNewIntent = {
"_onNewIntent",
"(Landroid/content/Intent;)V",
(void*)&CJNIContext::_onNewIntent
};
env->RegisterNatives(cMain, &mOnNewIntent, 1);
}
jclass cBroadcastReceiver = env->FindClass(bcReceiver.c_str());
if(cBroadcastReceiver)
{
JNINativeMethod mOnReceive = {
"_onReceive",
"(Landroid/content/Intent;)V",
(void*)&CJNIBroadcastReceiver::_onReceive
};
env->RegisterNatives(cBroadcastReceiver, &mOnReceive, 1);
}
jclass cFrameAvailableListener = env->FindClass(frameListener.c_str());
if(cFrameAvailableListener)
{
JNINativeMethod mOnFrameAvailable = {
"_onFrameAvailable",
"(Landroid/graphics/SurfaceTexture;)V",
(void*)&CJNISurfaceTextureOnFrameAvailableListener::_onFrameAvailable
};
env->RegisterNatives(cFrameAvailableListener, &mOnFrameAvailable, 1);
}
return version;
}
|