mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
137 lines
4.7 KiB
Java
137 lines
4.7 KiB
Java
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
import org.mozilla.gecko.gfx.GfxInfoThread;
|
|
import org.mozilla.gecko.util.GeckoEventListener;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
import android.content.Intent;
|
|
import android.content.res.Configuration;
|
|
import android.content.res.Resources;
|
|
import android.os.SystemClock;
|
|
import android.util.Log;
|
|
|
|
import java.util.Locale;
|
|
|
|
public class GeckoThread extends Thread implements GeckoEventListener {
|
|
private static final String LOGTAG = "GeckoThread";
|
|
|
|
public enum LaunchState {
|
|
Launching,
|
|
WaitForDebugger,
|
|
Launched,
|
|
GeckoRunning,
|
|
GeckoExiting
|
|
};
|
|
|
|
private static LaunchState sLaunchState = LaunchState.Launching;
|
|
|
|
private Intent mIntent;
|
|
private final String mUri;
|
|
|
|
GeckoThread(Intent intent, String uri) {
|
|
mIntent = intent;
|
|
mUri = uri;
|
|
setName("Gecko");
|
|
GeckoAppShell.getEventDispatcher().registerEventListener("Gecko:Ready", this);
|
|
}
|
|
|
|
private String initGeckoEnvironment() {
|
|
// At some point while loading the gecko libs our default locale gets set
|
|
// so just save it to locale here and reset it as default after the join
|
|
Locale locale = Locale.getDefault();
|
|
|
|
GeckoApp app = GeckoApp.mAppContext;
|
|
String resourcePath = app.getApplication().getPackageResourcePath();
|
|
GeckoAppShell.setupGeckoEnvironment(app);
|
|
GeckoAppShell.loadSQLiteLibs(app, resourcePath);
|
|
GeckoAppShell.loadNSSLibs(app, resourcePath);
|
|
GeckoAppShell.loadGeckoLibs(resourcePath);
|
|
|
|
Locale.setDefault(locale);
|
|
|
|
Resources res = app.getBaseContext().getResources();
|
|
Configuration config = res.getConfiguration();
|
|
config.locale = locale;
|
|
res.updateConfiguration(config, res.getDisplayMetrics());
|
|
|
|
return resourcePath;
|
|
}
|
|
|
|
private String getTypeFromAction(String action) {
|
|
if (action != null && action.startsWith(GeckoApp.ACTION_WEBAPP_PREFIX)) {
|
|
return "-webapp";
|
|
}
|
|
if (GeckoApp.ACTION_BOOKMARK.equals(action)) {
|
|
return "-bookmark";
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private String addCustomProfileArg(String args) {
|
|
String profile = GeckoApp.sIsUsingCustomProfile ? "" : (" -P " + GeckoApp.mAppContext.getProfile().getName());
|
|
return (args != null ? args : "") + profile;
|
|
}
|
|
|
|
public void run() {
|
|
// Here we start the GfxInfo thread, which will query OpenGL
|
|
// system information for Gecko. This must be done early enough that the data will be
|
|
// ready by the time it's needed to initialize the LayerManager (it takes about 100 ms
|
|
// to obtain). Doing it here seems to have no negative effect on startup time. See bug 766251.
|
|
// Starting the GfxInfoThread here from the GeckoThread, ensures that
|
|
// the Gecko thread is started first, adding some determinism there.
|
|
GeckoAppShell.sGfxInfoThread = new GfxInfoThread();
|
|
GeckoAppShell.sGfxInfoThread.start();
|
|
|
|
String path = initGeckoEnvironment();
|
|
|
|
Log.w(LOGTAG, "zerdatime " + SystemClock.uptimeMillis() + " - runGecko");
|
|
|
|
String args = addCustomProfileArg(mIntent.getStringExtra("args"));
|
|
String type = getTypeFromAction(mIntent.getAction());
|
|
mIntent = null;
|
|
|
|
// and then fire us up
|
|
Log.i(LOGTAG, "RunGecko - args = " + args);
|
|
GeckoAppShell.runGecko(path, args, mUri, type);
|
|
}
|
|
|
|
public void handleMessage(String event, JSONObject message) {
|
|
if ("Gecko:Ready".equals(event)) {
|
|
GeckoAppShell.getEventDispatcher().unregisterEventListener(event, this);
|
|
setLaunchState(LaunchState.GeckoRunning);
|
|
GeckoAppShell.sendPendingEventsToGecko();
|
|
}
|
|
}
|
|
|
|
public static boolean checkLaunchState(LaunchState checkState) {
|
|
synchronized (sLaunchState) {
|
|
return sLaunchState == checkState;
|
|
}
|
|
}
|
|
|
|
static void setLaunchState(LaunchState setState) {
|
|
synchronized (sLaunchState) {
|
|
sLaunchState = setState;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set the launch state to <code>setState</code> and return true if the current launch
|
|
* state is <code>checkState</code>; otherwise do nothing and return false.
|
|
*/
|
|
static boolean checkAndSetLaunchState(LaunchState checkState, LaunchState setState) {
|
|
synchronized (sLaunchState) {
|
|
if (sLaunchState != checkState)
|
|
return false;
|
|
sLaunchState = setState;
|
|
return true;
|
|
}
|
|
}
|
|
}
|