summaryrefslogtreecommitdiff
path: root/src/libandroid.c
blob: 52effae6efa3d892400b89db1a38fe183af5424d (plain)
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>

#define GLFW_INCLUDE_NONE
#include <GLFW/glfw3.h>

#include "jvm/jni.h"

// https://android.googlesource.com/platform/bionic/+/master/docs/32-bit-abi.md
typedef uint32_t bionic_off_t;

// AAsset

struct AAsset {
   char nop;
};

void
AAsset_close(struct AAsset *asset)
{
   free(asset);
}

bionic_off_t
AAsset_getLength(struct AAsset *asset)
{
    return 0;
}

bionic_off_t
AAsset_seek(struct AAsset *asset, bionic_off_t offset, int whence)
{
   return 0;
}


int
AAsset_read(struct AAsset *asset, void *buf, size_t count)
{
   return 0;
}

// AAssetManager

struct AAssetManager {
   char nop;
};

struct AAssetManager*
AAssetManager_fromJava(JNIEnv *env, jobject assetManager)
{
   return calloc(1sizeof(struct AAssetManager));
}

struct AAsset*
AAssetManager_open(struct AAssetManager *amgr, const char *filename, int mode)
{
   return calloc(1sizeof(struct AAsset));
}

// AConfiguration

struct AConfiguration {
   char nop;
};

struct AConfiguration*
AConfiguration_new(void)
{
   return calloc(1sizeof(struct AConfiguration));
}

void
AConfiguration_delete(struct AConfiguration *config)
{
   free(config);
}

void
AConfiguration_fromAssetManager(struct AConfiguration *out, struct AAssetManager *am)
{
}

// ALooper

static struct ALooper {
   char nop;
} thread_looper;

typedef void* ALooper_callbackFunc;

struct ALooper*
ALooper_forThread(void)
{
   return &thread_looper;
}

struct ALooper*
ALooper_prepare(int opts)
{
   return &thread_looper;
}

void
ALooper_wake(struct ALooper *looper)
{
}

int
ALooper_pollAll(int timeoutMillis, int *outFd, int *outEvents, void **outData)
{
   return 0;
}

int
ALooper_pollOnce(int timeoutMillis, int *outFd, int *outEvents, void **outData)
{
   return 0;
}

// ASensor

struct ASensor {
   char nop;
};

const char*
ASensor_getName(struct ASensor const *sensor)
{
   return NULL;
}

const char*
ASensor_getVendor(struct ASensor const *sensor)
{
   return NULL;
}

int
ASensor_getType(struct ASensor const *sensor)
{
   return 0;
}

float
ASensor_getResolution(struct ASensor const *sensor)
{
   return 0;
}

int
ASensor_getMinDelay(struct ASensor const *sensor)
{
   return 0;
}

struct ASensorEvent {
   char nop;
};

struct ASensorEventQueue {
   char nop;
};

int
ASensorEventQueue_enableSensor(struct ASensorEventQueue *queue, struct ASensor const *sensor)
{
   return 0;
}

int
ASensorEventQueue_disableSensor(struct ASensorEventQueue *queue, struct ASensor const *sensor)
{
   return 0;
}

int
ASensorEventQueue_setEventRate(struct ASensorEventQueue *queue, struct ASensor const *sensor, int32_t usec)
{
   return 0;
}

int
ASensorEventQueue_hasEvents(struct ASensorEventQueue *queue)
{
   return 0;
}

size_t
ASensorEventQueue_getEvents(struct ASensorEventQueue *queue, struct ASensorEvent *events, size_t count)
{
   return 0;
}

struct ASensorManager {
   char nop;
};

struct ASensorList {
   char nop;
};

struct ASensorManager*
ASensorManager_getInstance()
{
   return NULL;
}

struct ASensor const*
ASensorManager_getDefaultSensor(struct ASensorManager *manager, int type)
{
   return NULL;
}

int
ASensorManager_getSensorList(struct ASensorManager *manager, struct ASensorList *list)
{
   return 0;
}

struct ASensorEventQueue*
ASensorManager_createEventQueue(struct ASensorManager *manager, struct ALooper *looper, int ident, ALooper_callbackFunc callback, void *data)
{
   return NULL;
}

int
ASensorManager_destroyEventQueue(struct ASensorManager *manager, struct ASensorEventQueue *queue)
{
   return 0;
}

// AInput

struct AInputEvent {
   char nop;
};

int32_t
AInputEvent_getType(const struct AInputEvent *event)
{
   return 0;
}

int32_t
AInputEvent_getDeviceId(const struct AInputEvent *event)
{
   return 0;
}

int32_t
AInputEvent_getSource(const struct AInputEvent *event)
{
   return 0;
}

int32_t
AMotionEvent_getEdgeFlags(const struct AInputEvent *motion_event)
{
   return 0;
}

float
AMotionEvent_getTouchMajor(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

float
AMotionEvent_getTouchMinor(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

int32_t
AMotionEvent_getPointerId(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

int64_t
AMotionEvent_getDownTime(const struct AInputEvent *motion_event)
{
   return 0;
}

size_t
AMotionEvent_getPointerCount(const struct AInputEvent *motion_event)
{
   return 0;
}

float
AMotionEvent_getXPrecision(const struct AInputEvent *motion_event)
{
   return 0;
}

float
AMotionEvent_getYPrecision(const struct AInputEvent *motion_event)
{
   return 0;
}

float
AMotionEvent_getToolMajor(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

float
AMotionEvent_getToolMinor(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

float
AMotionEvent_getX(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

float
AMotionEvent_getY(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

float
AMotionEvent_getSize(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

float
AMotionEvent_getPressure(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

int64_t
AMotionEvent_getEventTime(const struct AInputEvent *motion_event)
{
   return 0;
}

int32_t
AMotionEvent_getFlags(const struct AInputEvent *motion_event)
{
   return 0;
}

int32_t
AMotionEvent_getMetaState(const struct AInputEvent *motion_event)
{
   return 0;
}

int32_t
AMotionEvent_getAction(const struct AInputEvent *motion_event)
{
   return 0;
}

size_t
AMotionEvent_getHistorySize(const struct AInputEvent *motion_event)
{
   return 0;
}

int64_t
AMotionEvent_getHistoricalEventTime(const struct AInputEvent *motion_event, size_t history_index)
{
   return 0;
}

size_t
AMotionEvent_getHistoricalSize(const struct AInputEvent *motion_event, size_t pointer_index, size_t history_index)
{
   return 0;
}

float
AMotionEvent_getHistoricalPressure(const struct AInputEvent *motion_event, size_t pointer_index, size_t history_index)
{
   return 0;
}

float
AMotionEvent_getHistoricalX(const struct AInputEvent *motion_event, size_t pointer_index, size_t history_index)
{
   return 0;
}

float
AMotionEvent_getHistoricalY(const struct AInputEvent *motion_event, size_t pointer_index, size_t history_index)
{
   return 0;
}

float
AMotionEvent_getOrientation(const struct AInputEvent *motion_event, size_t pointer_index)
{
   return 0;
}

int32_t
AKeyEvent_getKeyCode(const struct AInputEvent *key_event)
{
   return 0;
}

int32_t
AKeyEvent_getMetaState(const struct AInputEvent *key_event)
{
   return 0;
}

int32_t
AKeyEvent_getAction(const struct AInputEvent *key_event)
{
   return 0;
}

struct AInputQueue {
   char nop;
};

void
AInputQueue_attachLooper(struct AInputQueue *queue, struct ALooper *looper, int ident, ALooper_callbackFunc callback, void *data)
{
}

void
AInputQueue_detachLooper(struct AInputQueue *queue)
{
}

int32_t
AInputQueue_hasEvents(struct AInputQueue *queue)
{
   return 0;
}

int32_t
AInputQueue_getEvent(struct AInputQueue *queue, struct AInputEvent **outEvent)
{
   return 0;
}

int32_t
AInputQueue_preDispatchEvent(struct AInputQueue *queue, struct AInputEvent *event)
{
   return 0;
}

void
AInputQueue_finishEvent(struct AInputQueue *queue, struct AInputEvent *event, int handled)
{
}

// ANative

struct ANativeWindow {
   char header[4];
   GLFWwindow *glfw;
};

enum {
   WINDOW_FORMAT_RGBA_8888          = 1,
   WINDOW_FORMAT_RGBX_8888          = 2,
   WINDOW_FORMAT_RGB_565            = 4,
};

struct ANativeWindow_Buffer {
   // The number of pixels that are show horizontally.
   int32_t width;

   // The number of pixels that are shown vertically.
   int32_t height;

   // The number of *pixels* that a line in the buffer takes in
   // memory.  This may be >= width.
   int32_t stride;

   // The format of the buffer.  One of WINDOW_FORMAT_*
   int32_t format;

   // The actual bits.
   void* bits;

   // Do not touch.
   uint32_t reserved[6];
};

struct ARect {
   int32_t left, top, right, bottom;
};

static void
glfw_error_cb(int code, const char *error)
{
   fprintf(stderr"glfw: (%d%s\n", code, error);
}

struct ANativeWindow*
ANativeWindow_fromSurface(JNIEnv* env, jobject surface)
{
   assert(env && surface);

   struct ANativeWindow *window;
   if (!(window = calloc(1sizeof(*window))))
      return NULL;

   memcpy(window->header, "andr"sizeof(window->header));

   glfwInit();
   fprintf(stderr"glfw: %s\n", glfwGetVersionString());
   glfwSetErrorCallback(glfw_error_cb);
   glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
   window->glfw = glfwCreateWindow(1024768"ANativeWindow"NULLNULL);
   assert(window->glfw);
   return window;
}

void
ANativeWindow_acquire(struct ANativeWindow *window)
{
   assert(window);
   // FIXME: refcount
}

void
ANativeWindow_release(struct ANativeWindow *window)
{
   assert(window);
   // FIXME: refcount
}

int32_t
ANativeWindow_getWidth(struct ANativeWindow *window)
{
   assert(window);
   int v = 0;
   glfwGetWindowSize(window->glfw, &v, NULL);
   return v;
}

int32_t
ANativeWindow_getHeight(struct ANativeWindow *window)
{
   assert(window);
   int v = 0;
   glfwGetWindowSize(window->glfw, NULL, &v);
   return v;
}

int32_t
ANativeWindow_setBuffersGeometry(struct ANativeWindow *window, int32_t width, int32_t height, int32_t format)
{
   assert(window);
   return 0;
}

int32_t
ANativeWindow_lock(struct ANativeWindow *window, struct ANativeWindow_Buffer *outBuffer, struct ARect *inOutDirtyBounds)
{
   assert(window);
   *outBuffer = (struct ANativeWindow_Buffer){0};
   return 0;
}

int32_t
ANativeWindow_unlockAndPost(struct ANativeWindow *window)
{
   assert(window);
   return 0;
}