android: declare Activities for the manifest in an annotation
[nit.git] / lib / android / native_app_glue.nit
1 # This file is part of NIT (http://www.nitlanguage.org).
2 #
3 # Copyright 2014 Alexis Laferrière <alexis.laf@xymus.net>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Some documentation of this module has been adapted from the documentation
18 # of the Android NDK projet.
19
20 # Wrapper of the Android native_app_glue framework to implement app.nit
21 #
22 # The framework provides 3 different structures for a single C application
23 # under Android. We use all 3 structures in this API to implement app.nit
24 # on Android. Each structure is wrapped in a Nit extern class:
25 #
26 # * `NativeAppGlue` is the lowest level class, it is implemented by the C
27 # structure `android_app`. It offers features on the main Android thread
28 # (not on the same thread as Nit). For this reason, prefer to use
29 # `NdkNativeActivity`.
30 #
31 # * `NdkNativeActivity` is implemented by the C structure `ANativeActivity`. It
32 # is on the same thread as Nit and manages the synchronization with the
33 # main Android thread.
34 #
35 # * `NativeNativeActivity` is implemented in Java by `android.app.NativeActivity`,
36 # which is a subclass of `Activity` and `Context` (in Java). It represent
37 # main activity of the running application. Use it to get anything related
38 # to the `Context` and as anchor to execute Java UI code.
39 module native_app_glue is
40 ldflags "-landroid"
41 android_activity "android.app.NativeActivity"
42 end
43
44 import platform
45 import log
46 import dalvik
47
48 in "C header" `{
49 #include <android_native_app_glue.h>
50 `}
51
52 in "C body" `{
53 struct android_app* native_app_glue_data;
54
55 // Entry point called by the native_app_glue_framework framework
56 // We relay the call to the Nit application.
57 void android_main(struct android_app* app) {
58 native_app_glue_data = app;
59 app_dummy();
60 main(0, NULL);
61 }
62
63 // Main callback on the native_app_glue framework
64 //
65 // We relay everything to our App.
66 static void app_cmd_handler(struct android_app* app, int32_t cmd) {
67 App nit_app = app->userData;
68 switch (cmd) {
69 case APP_CMD_SAVE_STATE:
70 App_save_state(nit_app);
71 break;
72 case APP_CMD_INIT_WINDOW:
73 App_init_window(nit_app);
74 break;
75 case APP_CMD_TERM_WINDOW:
76 App_term_window(nit_app);
77 break;
78 case APP_CMD_GAINED_FOCUS:
79 App_gained_focus(nit_app);
80 break;
81 case APP_CMD_LOST_FOCUS:
82 App_lost_focus(nit_app);
83 break;
84 case APP_CMD_PAUSE:
85 App_pause(nit_app);
86 break;
87 case APP_CMD_STOP:
88 App_stop(nit_app);
89 break;
90 case APP_CMD_DESTROY:
91 App_destroy(nit_app);
92 break;
93 case APP_CMD_START:
94 App_start(nit_app);
95 break;
96 case APP_CMD_RESUME:
97 App_resume(nit_app);
98 break;
99 case APP_CMD_LOW_MEMORY:
100 App_low_memory(nit_app);
101 break;
102 case APP_CMD_CONFIG_CHANGED:
103 App_config_changed(nit_app);
104 break;
105 case APP_CMD_INPUT_CHANGED:
106 App_input_changed(nit_app);
107 break;
108 case APP_CMD_WINDOW_RESIZED:
109 App_window_resized(nit_app);
110 break;
111 case APP_CMD_WINDOW_REDRAW_NEEDED:
112 App_window_redraw_needed(nit_app);
113 break;
114 case APP_CMD_CONTENT_RECT_CHANGED:
115 App_content_rect_changed(nit_app);
116 break;
117 }
118 }
119 `}
120
121 # Android SDK's `android.app.NativeActivity`.
122 #
123 # Can be used to get anything related to the `Context` of the activity in Java
124 # and as anchor to execute Java UI code.
125 extern class NativeNativeActivity in "Java" `{ android.app.NativeActivity `}
126 super NativeActivity
127 end
128
129 redef class Sys
130 redef fun jvm do return app.native_app_glue.ndk_native_activity.vm
131 end
132
133 redef class App
134 redef fun setup
135 do
136 var native_app_glue = native_app_glue
137 native_app_glue.user_data = self
138
139 set_as_cmd_handler(native_app_glue)
140 end
141
142 # The underlying implementation using the Android native_app_glue framework
143 fun native_app_glue: NativeAppGlue `{ return native_app_glue_data; `}
144
145 redef fun native_activity do return native_app_glue.ndk_native_activity.java_native_activity
146
147 # Set `native_app_glue` command handler to our C implementation which
148 # will callback self.
149 private fun set_as_cmd_handler(native_app_glue: NativeAppGlue) import save_state,
150 init_window, term_window, gained_focus, lost_focus, pause, stop, destroy,
151 start, resume, low_memory, config_changed, input_changed, window_resized,
152 window_redraw_needed, content_rect_changed `{
153 native_app_glue->onAppCmd = &app_cmd_handler;
154 `}
155
156 # Notification from the Android framework to generate a new saved state
157 #
158 # You can use the `shared_preferences` module or `NativeAppGlue::saved_state`.
159 fun save_state do end
160
161 # Notification from the native_app glue framework, a new ANativeWindow is ready
162 #
163 # When called, `NativeAppGlue::window` returns a poiter to the new window surface.
164 fun init_window do end
165
166 # Notification from the native_app glue framework, the existing window needs to be terminated
167 #
168 # Upon receiving this command, `native_app_glue.window` still contains the existing window.
169 fun term_window do end
170
171 # Notification from the Android framework, `native_activity` has gained focus
172 fun gained_focus do end
173
174 # Notification from the Android framework, `native_activity` has lost focus
175 fun lost_focus do end
176
177 # Notification from the Android framework, your app has been paused
178 fun pause do end
179
180 # Notification from the Android framework, your app has been stopped
181 fun stop do end
182
183 # Notification from the Android framework, `native_activity` is being destroyed
184 #
185 # Clean up and exit.
186 fun destroy do end
187
188 # Notification from the Android framework, `native_activity` has been started
189 fun start do end
190
191 # Notification from the Android framework, `native_activity` has been resumed
192 fun resume do end
193
194 # Notification from the Android framework, the system is running low on memory
195 #
196 # Try to reduce your memory use.
197 fun low_memory do end
198
199 # Notification from the Android framework, the current device configuration has changed
200 fun config_changed do end
201
202 # Notification from the Android framework, `native_app_glue.input_queue` has changed
203 fun input_changed do end
204
205 # Notification from the Android framework, the window has been resized.
206 #
207 # Please redraw with its new size.
208 fun window_resized do end
209
210 # Notification from the Android framework, the current ANativeWindow must be redrawn
211 fun window_redraw_needed do end
212
213 # Notification from the Android framework, the content area of the window has changed
214 #
215 # Raised when the soft input window being shown or hidden, and similar events.
216 fun content_rect_changed do end
217
218 # Call the `ALooper` to retrieve events and callback the application
219 fun poll_looper(timeout_ms: Int) import handle_looper_event `{
220 int ident;
221 int event;
222 void* source;
223 while ((ident=ALooper_pollAll(timeout_ms, NULL, &event, &source)) >= 0) {
224 App_handle_looper_event(recv, ident, event, source);
225 }
226 `}
227
228 # Handle an event retrieved by the `ALooper` and `poll_looper` without a callback
229 protected fun handle_looper_event(ident, event: Int, data: Pointer) import native_app_glue,
230 save_state, init_window, term_window, gained_focus, lost_focus, pause, stop,
231 destroy, start, resume, low_memory, config_changed, input_changed,
232 window_resized, window_redraw_needed, content_rect_changed `{
233
234 struct android_app *app_glue = App_native_app_glue(recv);
235 struct android_poll_source* source = (struct android_poll_source*)data;
236
237 // Process this event.
238 if (source != NULL) source->process(app_glue, source);
239 `}
240 end
241
242 # An Android activity implemented in C. This is the C part of `NativeActivity`
243 # which is the Java part.
244 #
245 # The callbacks at this level are synchronous on the UI thread. Thus app.nit
246 # do not use them, and instead rely on `NativeAppGlue`.
247 extern class NdkNativeActivity `{ ANativeActivity * `}
248
249 # Callbacks on the main thread
250 # FIXME This would not yet be usable, to implement when Nit has threads
251 #fun set_callbacks_handler(handler: App) or callbacks= ...
252
253 # Java VM associated to `self`
254 fun vm: JavaVM `{ return recv->vm; `}
255
256 # JNI environmnet associated to `self`
257 fun env: JniEnv `{ return recv->env; `}
258
259 # The `NativeActivity`, as in the Java object, associated to `self`
260 fun java_native_activity: NativeActivity `{ return recv->clazz; `}
261
262 # Path to this application's internal data directory.
263 fun internal_data_path: NativeString `{ return (char*)recv->internalDataPath; `}
264
265 # Path to this application's external (removable/mountable) data directory.
266 fun external_data_path: NativeString `{ return (char*)recv->externalDataPath; `}
267
268 # The platform's SDK version code.
269 fun sdk_version: Int `{ return recv->sdkVersion; `}
270
271 # This is the native instance of the application. It is not used by
272 # the framework, but can be set by the application to its own instance
273 # state.
274 fun instance: Pointer `{ return recv->instance; `}
275
276 # Pointer to the Asset Manager instance for the application. The application
277 # uses this to access binary assets bundled inside its own .apk file.
278 #
279 # TODO activate in a future `asset_manager` module if it cannot be done in Java
280 #fun asset_manager: AssetManager `{ return recv->assetManager; `}
281
282 # Available starting with Honeycomb: path to the directory containing
283 # the application's OBB files (if any). If the app doesn't have any
284 # OBB files, this directory may not exist.
285 # api?
286 #
287 # TODO activate in a future module at API 11
288 #fun obb_path: NativeString `{ return (char*)recv->obbPath; `}
289 end
290
291 # This is the interface for the standard glue code of a threaded
292 # application. In this model, the application's code is running
293 # in its own thread separate from the main thread of the process.
294 # It is not required that this thread be associated with the Java
295 # VM, although it will need to be in order to make JNI calls any
296 # Java objects.
297 extern class NativeAppGlue `{ struct android_app* `}
298 # We use the `userData` field of the C structure to store an handle to
299 # the associated App
300 private fun user_data: App `{ return recv->userData; `}
301 private fun user_data=(val: App) `{
302 App_incr_ref(val);
303 recv->userData = val;
304 `}
305
306 # Fill this in with the function to process input events. At this point
307 # the event has already been pre-dispatched, and it will be finished upon
308 # return. Return 1 if you have handled the event, 0 for any default
309 # dispatching.
310 #int32_t (*onInputEvent)(struct android_app* app, AInputEvent* event);
311 #fun set_input_event_handler(handler: App) `{ `}
312
313 # The ANativeActivity object instance that this app is running in.
314 fun ndk_native_activity: NdkNativeActivity `{ return recv->activity; `}
315
316 # The current configuration the app is running in.
317 fun config: AConfiguration `{ return recv->config; `}
318
319 # This is the last instance's saved state, as provided at creation time.
320 # It is NULL if there was no state. You can use this as you need; the
321 # memory will remain around until you call android_app_exec_cmd() for
322 # APP_CMD_RESUME, at which point it will be freed and savedState set to NULL.
323 # These variables should only be changed when processing a APP_CMD_SAVE_STATE,
324 # at which point they will be initialized to NULL and you can malloc your
325 # state and place the information here. In that case the memory will be
326 # freed for you later.
327 fun saved_state: Pointer `{ return recv->savedState; `}
328 fun saved_state_size: Int `{ return recv->savedStateSize; `}
329
330 # The ALooper associated with the app's thread.
331 fun looper: ALooper `{ return recv->looper; `}
332
333 # When non-NULL, this is the input queue from which the app will
334 # receive user input events.
335 fun input_queue: AInputQueue `{ return recv->inputQueue; `}
336
337 # When non-NULL, this is the window surface that the app can draw in.
338 fun window: ANativeWindow `{ return recv->window; `}
339
340 # Current content rectangle of the window; this is the area where the
341 # window's content should be placed to be seen by the user.
342 #
343 # TODO activate when we know what to return (returns a struct not a pointer)
344 #fun content_recv: ARect `{ return recv->contentRect; `}
345
346 # Current state of the app's activity. May be either APP_CMD_START,
347 # APP_CMD_RESUME, APP_CMD_PAUSE, or APP_CMD_STOP; see below.
348 fun activity_state: Int `{ return recv->activityState; `}
349
350 # This is non-zero when the application's NativeActivity is being
351 # destroyed and waiting for the app thread to complete.
352 fun detroy_request: Bool `{ return recv->destroyRequested; `}
353 end
354
355 # Android NDK's struture holding configurations of the native app
356 extern class AConfiguration `{ AConfiguration* `}
357 end
358
359 # Android NDK's structure to handle events synchronously
360 extern class ALooper `{ ALooper* `}
361 # Returns the looper associated with the calling thread, or NULL if there is not one
362 new for_thread `{ return ALooper_forThread(); `}
363 end
364
365 # Android NDK's struture to handle input events synchronously
366 extern class AInputQueue `{ AInputQueue* `}
367 end
368
369 # Android NDK's structure to control the native window for drawing
370 extern class ANativeWindow `{ ANativeWindow* `}
371 end