| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_GLUE_H | 5 #ifndef EMBEDDERS_ANDROID_VM_GLUE_H_ |
| 6 #define VM_GLUE_H | 6 #define EMBEDDERS_ANDROID_VM_GLUE_H_ |
| 7 | 7 |
| 8 #include <android_native_app_glue.h> | 8 #include <android_native_app_glue.h> |
| 9 | 9 |
| 10 #include "include/dart_api.h" | 10 #include "include/dart_api.h" |
| 11 #include "jni/graphics.h" | 11 #include "embedders/android/graphics.h" |
| 12 | 12 |
| 13 class VMGlue { | 13 class VMGlue { |
| 14 public: | 14 public: |
| 15 explicit VMGlue(Graphics* graphics); | 15 explicit VMGlue(Graphics* graphics); |
| 16 | 16 |
| 17 int InitializeVM(); | 17 int InitializeVM(); |
| 18 int StartMainIsolate(); | 18 int StartMainIsolate(); |
| 19 int CallSetup(); | 19 int CallSetup(); |
| 20 int CallUpdate(); | 20 int CallUpdate(); |
| 21 int OnMotionEvent(const char* function, int64_t when, | 21 int OnMotionEvent(const char* function, int64_t when, |
| 22 float move_x, float move_y); | 22 float move_x, float move_y); |
| 23 int OnKeyEvent(const char* function, int64_t when, int32_t flags, | 23 int OnKeyEvent(const char* function, int64_t when, int32_t flags, |
| 24 int32_t key_code, int32_t meta_state, int32_t repeat); | 24 int32_t key_code, int32_t meta_state, int32_t repeat); |
| 25 void FinishMainIsolate(); | 25 void FinishMainIsolate(); |
| 26 | 26 |
| 27 private: | 27 private: |
| 28 int Invoke(const char *function, int argc, Dart_Handle* args); | 28 int Invoke(const char *function, int argc, Dart_Handle* args); |
| 29 | 29 |
| 30 static int ErrorExit(const char* format, ...); | 30 static int ErrorExit(const char* format, ...); |
| 31 static Dart_Handle CheckError(Dart_Handle); | 31 static Dart_Handle CheckError(Dart_Handle); |
| 32 | 32 |
| 33 static bool CreateIsolateAndSetupHelper(const char* script_uri, | 33 static bool CreateIsolateAndSetupHelper(const char* script_uri, |
| 34 const char* main, | 34 const char* main, |
| 35 void* data, | 35 void* data, |
| 36 char** error); | 36 char** error); |
| 37 static bool CreateIsolateAndSetup(const char* script_uri, | 37 static bool CreateIsolateAndSetup(const char* script_uri, |
| 38 const char* main, | 38 const char* main, |
| 39 void* data, char** error); | 39 void* data, char** error); |
| 40 static Dart_Handle LibraryTagHandler(Dart_LibraryTag tag, | 40 static Dart_Handle LibraryTagHandler(Dart_LibraryTag tag, |
| 41 » » » » Dart_Handle library, | 41 Dart_Handle library, |
| 42 » » » » Dart_Handle urlHandle); | 42 Dart_Handle urlHandle); |
| 43 static Dart_Handle LoadSourceFromFile(const char* url); | 43 static Dart_Handle LoadSourceFromFile(const char* url); |
| 44 static void ShutdownIsolate(void* callback_data); | 44 static void ShutdownIsolate(void* callback_data); |
| 45 | 45 |
| 46 Graphics* graphics_; | 46 Graphics* graphics_; |
| 47 Dart_Isolate isolate_; | 47 Dart_Isolate isolate_; |
| 48 bool initialized_vm_; | 48 bool initialized_vm_; |
| 49 bool initialized_script_; | 49 bool initialized_script_; |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 #endif | 52 #endif // EMBEDDERS_ANDROID_VM_GLUE_H_ |
| 53 | |
| OLD | NEW |