Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Unified Diff: mojo/shell/android/android_handler.cc

Issue 772393003: Android handler: inject the application loading part from the shell .so. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/shell/android/android_handler.cc
diff --git a/mojo/shell/android/android_handler.cc b/mojo/shell/android/android_handler.cc
index 2c1f6544ae750580c5e25b1b6aa7573a1ab9e513..fc7fe0f7b7cbbdf437043979fe4405889757fbde 100644
--- a/mojo/shell/android/android_handler.cc
+++ b/mojo/shell/android/android_handler.cc
@@ -6,16 +6,16 @@
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
-#include "base/files/file.h"
#include "base/files/file_path.h"
#include "base/logging.h"
+#include "base/scoped_native_library.h"
#include "jni/AndroidHandler_jni.h"
#include "mojo/common/data_pipe_utils.h"
#include "mojo/public/c/system/main.h"
#include "mojo/public/cpp/application/application_impl.h"
+#include "mojo/shell/android/run_android_application_function.h"
+#include "mojo/shell/dynamic_service_runner.h"
-using base::FilePath;
-using base::File;
using base::android::AttachCurrentThread;
using base::android::ScopedJavaLocalRef;
using base::android::ConvertJavaStringToUTF8;
@@ -24,18 +24,62 @@ using base::android::GetApplicationContext;
namespace mojo {
-namespace {} // namespace
+namespace {
+// This function loads the application library, sets the application context and
+// thunks and calls into the application MojoMain. To ensure that the thunks are
+// set correctly we keep it in the Mojo shell .so and pass the function pointer
+// to the helper libbootstrap.so.
+void RunAndroidApplication(JNIEnv* env,
+ jobject j_context,
+ const base::FilePath& app_path,
+ jint j_handle) {
+ ScopedMessagePipeHandle handle((mojo::MessagePipeHandle(j_handle)));
+
+ // Load the library, so that we can set the application context there if
+ // needed.
+ base::NativeLibraryLoadError error;
+ base::ScopedNativeLibrary app_library(
+ base::LoadNativeLibrary(app_path, &error));
+ if (!app_library.is_valid()) {
+ LOG(ERROR) << "Failed to load app library (error: " << error.ToString()
+ << ")";
+ return;
+ }
+
+ // Set the application context if needed. Most applications will need to
+ // access the Android ApplicationContext in which they are run. If the
+ // application library exports the InitApplicationContext function, we will
+ // set it there.
+ const char* init_application_context_name = "InitApplicationContext";
+ typedef void (*InitApplicationContextFn)(
+ const base::android::JavaRef<jobject>&);
+ InitApplicationContextFn init_application_context =
+ reinterpret_cast<InitApplicationContextFn>(
+ app_library.GetFunctionPointer(init_application_context_name));
+ if (init_application_context) {
+ base::android::ScopedJavaLocalRef<jobject> scoped_context(env, j_context);
+ init_application_context(scoped_context);
+ }
+
+ // Run the application.
+ base::ScopedNativeLibrary app_library_from_runner(
+ shell::DynamicServiceRunner::LoadAndRunService(app_path, handle.Pass()));
+}
+} // namespace
void AndroidHandler::RunApplication(ShellPtr shell, URLResponsePtr response) {
JNIEnv* env = AttachCurrentThread();
ScopedJavaLocalRef<jstring> j_archive_path =
Java_AndroidHandler_getNewTempArchivePath(env, GetApplicationContext());
- FilePath archive_path(ConvertJavaStringToUTF8(env, j_archive_path.obj()));
+ base::FilePath archive_path(
+ ConvertJavaStringToUTF8(env, j_archive_path.obj()));
mojo::common::BlockingCopyToFile(response->body.Pass(), archive_path);
- Java_AndroidHandler_bootstrap(env, GetApplicationContext(),
- j_archive_path.obj(),
- shell.PassMessagePipe().release().value());
+ RunAndroidApplicationFn run_android_application_fn = &RunAndroidApplication;
+ Java_AndroidHandler_bootstrap(
+ env, GetApplicationContext(), j_archive_path.obj(),
+ shell.PassMessagePipe().release().value(),
+ reinterpret_cast<jlong>(run_android_application_fn));
}
void AndroidHandler::Initialize(ApplicationImpl* app) {

Powered by Google App Engine
This is Rietveld 408576698