2013-05-22 10:23:53 -07:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; 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.health;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.ContentProviderClient;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import org.mozilla.gecko.AppConstants;
|
2013-05-30 17:42:56 -07:00
|
|
|
import org.mozilla.gecko.GeckoAppShell;
|
|
|
|
import org.mozilla.gecko.GeckoEvent;
|
2013-05-22 10:23:53 -07:00
|
|
|
import org.mozilla.gecko.PrefsHelper;
|
|
|
|
import org.mozilla.gecko.PrefsHelper.PrefHandler;
|
|
|
|
|
|
|
|
import org.mozilla.gecko.background.healthreport.EnvironmentBuilder;
|
|
|
|
import org.mozilla.gecko.background.healthreport.HealthReportDatabaseStorage;
|
|
|
|
import org.mozilla.gecko.background.healthreport.HealthReportStorage.Field;
|
|
|
|
import org.mozilla.gecko.background.healthreport.HealthReportStorage.MeasurementFields;
|
|
|
|
import org.mozilla.gecko.background.healthreport.HealthReportStorage.MeasurementFields.FieldSpec;
|
|
|
|
import org.mozilla.gecko.background.healthreport.ProfileInformationCache;
|
|
|
|
|
|
|
|
import org.mozilla.gecko.util.EventDispatcher;
|
|
|
|
import org.mozilla.gecko.util.GeckoEventListener;
|
|
|
|
import org.mozilla.gecko.util.ThreadUtils;
|
|
|
|
|
|
|
|
import org.json.JSONObject;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.OutputStreamWriter;
|
|
|
|
import java.nio.charset.Charset;
|
|
|
|
import java.util.Scanner;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* BrowserHealthRecorder is the browser's interface to the Firefox Health
|
|
|
|
* Report storage system. It manages environments (a collection of attributes
|
|
|
|
* that are tracked longitudinally) on the browser's behalf, exposing a simpler
|
|
|
|
* interface for recording changes.
|
|
|
|
*
|
|
|
|
* Keep an instance of this class around.
|
|
|
|
*
|
|
|
|
* Tell it when an environment attribute has changed: call {@link
|
|
|
|
* #onBlocklistPrefChanged(boolean)} or {@link
|
|
|
|
* #onTelemetryPrefChanged(boolean)}, followed by {@link
|
|
|
|
* #onEnvironmentChanged()}.
|
|
|
|
*
|
|
|
|
* Use it to record events: {@link #recordSearch(String, String)}.
|
|
|
|
*
|
|
|
|
* Shut it down when you're done being a browser: {@link #close(EventDispatcher)}.
|
|
|
|
*/
|
|
|
|
public class BrowserHealthRecorder implements GeckoEventListener {
|
|
|
|
private static final String LOG_TAG = "GeckoHealthRec";
|
|
|
|
private static final String PREF_BLOCKLIST_ENABLED = "extensions.blocklist.enabled";
|
2013-05-30 17:42:56 -07:00
|
|
|
private static final String EVENT_ADDONS_ALL = "Addons:All";
|
|
|
|
private static final String EVENT_ADDONS_CHANGE = "Addons:Change";
|
|
|
|
private static final String EVENT_PREF_CHANGE = "Pref:Change";
|
2013-05-22 10:23:53 -07:00
|
|
|
|
|
|
|
public enum State {
|
|
|
|
NOT_INITIALIZED,
|
|
|
|
INITIALIZING,
|
|
|
|
INITIALIZED,
|
|
|
|
INITIALIZATION_FAILED,
|
|
|
|
CLOSED
|
|
|
|
}
|
|
|
|
|
|
|
|
protected volatile State state = State.NOT_INITIALIZED;
|
|
|
|
|
|
|
|
private volatile int env = -1;
|
2013-05-22 17:24:28 -07:00
|
|
|
private volatile HealthReportDatabaseStorage storage;
|
|
|
|
private final ProfileInformationCache profileCache;
|
2013-05-22 10:23:53 -07:00
|
|
|
private ContentProviderClient client;
|
2013-05-30 17:42:56 -07:00
|
|
|
private final EventDispatcher dispatcher;
|
2013-05-22 10:23:53 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Persist the opaque identifier for the current Firefox Health Report environment.
|
|
|
|
* This changes in certain circumstances; be sure to use the current value when recording data.
|
|
|
|
*/
|
|
|
|
private void setHealthEnvironment(final int env) {
|
|
|
|
this.env = env;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This constructor does IO. Run it on a background thread.
|
|
|
|
*/
|
|
|
|
public BrowserHealthRecorder(final Context context, final String profilePath, final EventDispatcher dispatcher) {
|
|
|
|
Log.d(LOG_TAG, "Initializing. Dispatcher is " + dispatcher);
|
2013-05-30 17:42:56 -07:00
|
|
|
this.dispatcher = dispatcher;
|
2013-05-22 10:23:53 -07:00
|
|
|
this.client = EnvironmentBuilder.getContentProviderClient(context);
|
|
|
|
if (this.client == null) {
|
|
|
|
throw new IllegalStateException("Could not fetch Health Report content provider.");
|
|
|
|
}
|
|
|
|
|
|
|
|
this.storage = EnvironmentBuilder.getStorage(this.client, profilePath);
|
|
|
|
if (this.storage == null) {
|
|
|
|
throw new IllegalStateException("No storage in health recorder!");
|
|
|
|
}
|
|
|
|
|
|
|
|
this.profileCache = new ProfileInformationCache(profilePath);
|
|
|
|
try {
|
2013-05-30 17:42:56 -07:00
|
|
|
this.initialize(context, profilePath);
|
2013-05-22 10:23:53 -07:00
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(LOG_TAG, "Exception initializing.", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: record session start and end?
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shut down database connections, unregister event listeners, and perform
|
|
|
|
* provider-specific uninitialization.
|
|
|
|
*/
|
2013-05-30 17:42:56 -07:00
|
|
|
public synchronized void close() {
|
2013-05-22 10:23:53 -07:00
|
|
|
switch (this.state) {
|
|
|
|
case CLOSED:
|
|
|
|
Log.w(LOG_TAG, "Ignoring attempt to double-close closed BrowserHealthRecorder.");
|
|
|
|
return;
|
|
|
|
case INITIALIZED:
|
|
|
|
Log.i(LOG_TAG, "Closing Health Report client.");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Log.i(LOG_TAG, "Closing incompletely initialized BrowserHealthRecorder.");
|
|
|
|
}
|
|
|
|
|
|
|
|
this.state = State.CLOSED;
|
2013-05-30 17:42:56 -07:00
|
|
|
this.unregisterEventListeners();
|
2013-05-22 10:23:53 -07:00
|
|
|
|
|
|
|
// Add any necessary provider uninitialization here.
|
|
|
|
this.storage = null;
|
|
|
|
if (this.client != null) {
|
|
|
|
this.client.release();
|
|
|
|
this.client = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:42:56 -07:00
|
|
|
private void unregisterEventListeners() {
|
|
|
|
this.dispatcher.unregisterEventListener(EVENT_ADDONS_ALL, this);
|
|
|
|
this.dispatcher.unregisterEventListener(EVENT_ADDONS_CHANGE, this);
|
|
|
|
this.dispatcher.unregisterEventListener(EVENT_PREF_CHANGE, this);
|
2013-05-22 10:23:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void onBlocklistPrefChanged(boolean to) {
|
|
|
|
this.profileCache.beginInitialization();
|
|
|
|
this.profileCache.setBlocklistEnabled(to);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onTelemetryPrefChanged(boolean to) {
|
|
|
|
this.profileCache.beginInitialization();
|
|
|
|
this.profileCache.setTelemetryEnabled(to);
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:42:56 -07:00
|
|
|
public void onAddonChanged(String id, JSONObject json) {
|
|
|
|
this.profileCache.beginInitialization();
|
|
|
|
try {
|
|
|
|
this.profileCache.updateJSONForAddon(id, json);
|
|
|
|
} catch (IllegalStateException e) {
|
|
|
|
Log.w(LOG_TAG, "Attempted to update add-on cache prior to full init.", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-22 10:23:53 -07:00
|
|
|
/**
|
|
|
|
* Call this when a material change has occurred in the running environment,
|
|
|
|
* such that a new environment should be computed and prepared for use in
|
|
|
|
* future events.
|
|
|
|
*
|
|
|
|
* Invoke this method after calls that mutate the environment, such as
|
|
|
|
* {@link #onBlocklistPrefChanged(boolean)}.
|
|
|
|
*
|
|
|
|
* TODO: record a session transition with the new environment.
|
|
|
|
*/
|
|
|
|
public synchronized void onEnvironmentChanged() {
|
|
|
|
this.env = -1;
|
|
|
|
try {
|
|
|
|
profileCache.completeInitialization();
|
|
|
|
} catch (java.io.IOException e) {
|
|
|
|
Log.e(LOG_TAG, "Error completing profile cache initialization.", e);
|
|
|
|
this.state = State.INITIALIZATION_FAILED;
|
|
|
|
return;
|
|
|
|
}
|
2013-05-30 17:42:56 -07:00
|
|
|
ensureEnvironment();
|
2013-05-22 10:23:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
protected synchronized int ensureEnvironment() {
|
|
|
|
if (!(state == State.INITIALIZING ||
|
|
|
|
state == State.INITIALIZED)) {
|
|
|
|
throw new IllegalStateException("Not initialized.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.env != -1) {
|
|
|
|
return this.env;
|
|
|
|
}
|
|
|
|
return this.env = EnvironmentBuilder.registerCurrentEnvironment(this.storage,
|
|
|
|
this.profileCache);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static final String getTimesPath(final String profilePath) {
|
|
|
|
return profilePath + File.separator + "times.json";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the stored profile creation time from the profile directory.
|
|
|
|
*
|
|
|
|
* @return the <code>created</code> value from the times.json file, or -1 on failure.
|
|
|
|
*/
|
|
|
|
protected static long getProfileInitTimeFromFile(final String profilePath) {
|
|
|
|
final File times = new File(getTimesPath(profilePath));
|
|
|
|
Log.d(LOG_TAG, "Looking for " + times.getAbsolutePath());
|
|
|
|
if (!times.exists()) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Log.d(LOG_TAG, "Using times.json for profile creation time.");
|
|
|
|
Scanner scanner = null;
|
|
|
|
try {
|
|
|
|
scanner = new Scanner(times, "UTF-8");
|
|
|
|
final String contents = scanner.useDelimiter("\\A").next();
|
|
|
|
return new JSONObject(contents).getLong("created");
|
|
|
|
} catch (Exception e) {
|
|
|
|
// There are assorted reasons why this might occur, but we
|
|
|
|
// don't care. Move on.
|
|
|
|
Log.w(LOG_TAG, "Failed to read times.json.", e);
|
|
|
|
} finally {
|
|
|
|
if (scanner != null) {
|
|
|
|
scanner.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Only works on API 9 and up.
|
|
|
|
*
|
|
|
|
* @return the package install time, or -1 if an error occurred.
|
|
|
|
*/
|
|
|
|
protected static long getPackageInstallTime(final Context context) {
|
|
|
|
if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.GINGERBREAD) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
return context.getPackageManager().getPackageInfo(AppConstants.ANDROID_PACKAGE_NAME, 0).firstInstallTime;
|
|
|
|
} catch (android.content.pm.PackageManager.NameNotFoundException e) {
|
|
|
|
Log.e(LOG_TAG, "Unable to fetch our own package info. This should never occur.", e);
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static long getProfileInitTimeHeuristic(final Context context, final String profilePath) {
|
|
|
|
// As a pretty good shortcut, settle for installation time.
|
|
|
|
// In all recent Firefox profiles, times.json should exist.
|
|
|
|
final long time = getPackageInstallTime(context);
|
|
|
|
if (time != -1) {
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, fall back to the filesystem.
|
|
|
|
// We'll settle for the modification time of the profile directory.
|
|
|
|
Log.d(LOG_TAG, "Using profile directory modified time as proxy for profile creation time.");
|
|
|
|
return new File(profilePath).lastModified();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static long getAndPersistProfileInitTime(final Context context, final String profilePath) {
|
|
|
|
// Let's look in the profile.
|
|
|
|
long time = getProfileInitTimeFromFile(profilePath);
|
|
|
|
if (time > 0) {
|
2013-05-30 17:42:56 -07:00
|
|
|
Log.d(LOG_TAG, "Incorporating environment: times.json profile creation = " + time);
|
2013-05-22 10:23:53 -07:00
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, we need to compute a valid creation time and write it out.
|
|
|
|
time = getProfileInitTimeHeuristic(context, profilePath);
|
|
|
|
|
|
|
|
if (time > 0) {
|
|
|
|
// Write out a stub times.json.
|
|
|
|
try {
|
|
|
|
FileOutputStream stream = new FileOutputStream(getTimesPath(profilePath));
|
|
|
|
OutputStreamWriter writer = new OutputStreamWriter(stream, Charset.forName("UTF-8"));
|
|
|
|
try {
|
|
|
|
writer.append("{\"created\": " + time + "}\n");
|
|
|
|
} finally {
|
|
|
|
writer.close();
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
// Best-effort.
|
|
|
|
Log.w(LOG_TAG, "Couldn't write times.json.", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:42:56 -07:00
|
|
|
Log.d(LOG_TAG, "Incorporating environment: profile creation = " + time);
|
2013-05-22 10:23:53 -07:00
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:42:56 -07:00
|
|
|
private void handlePrefValue(final String pref, final boolean value) {
|
|
|
|
Log.d(LOG_TAG, "Incorporating environment: " + pref + " = " + value);
|
|
|
|
if (AppConstants.TELEMETRY_PREF_NAME.equals(pref)) {
|
|
|
|
profileCache.setTelemetryEnabled(value);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (PREF_BLOCKLIST_ENABLED.equals(pref)) {
|
|
|
|
profileCache.setBlocklistEnabled(value);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Log.w(LOG_TAG, "Unexpected pref: " + pref);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Background init helper.
|
|
|
|
*/
|
|
|
|
private void initializeStorage() {
|
|
|
|
Log.d(LOG_TAG, "Done initializing profile cache. Beginning storage init.");
|
|
|
|
|
|
|
|
final BrowserHealthRecorder self = this;
|
|
|
|
ThreadUtils.postToBackgroundThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
synchronized (self) {
|
|
|
|
if (state != State.INITIALIZING) {
|
|
|
|
Log.w(LOG_TAG, "Unexpected state during init: " + state);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Belt and braces.
|
|
|
|
if (storage == null) {
|
|
|
|
Log.w(LOG_TAG, "Storage is null during init; shutting down?");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
storage.beginInitialization();
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(LOG_TAG, "Failed to init storage.", e);
|
|
|
|
state = State.INITIALIZATION_FAILED;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Listen for add-ons and prefs changes.
|
|
|
|
dispatcher.registerEventListener(EVENT_ADDONS_CHANGE, self);
|
|
|
|
dispatcher.registerEventListener(EVENT_PREF_CHANGE, self);
|
|
|
|
|
|
|
|
// Initialize each provider here.
|
|
|
|
|
|
|
|
Log.d(LOG_TAG, "Ensuring environment.");
|
|
|
|
ensureEnvironment();
|
|
|
|
|
|
|
|
Log.d(LOG_TAG, "Finishing init.");
|
|
|
|
storage.finishInitialization();
|
|
|
|
state = State.INITIALIZED;
|
|
|
|
} catch (Exception e) {
|
|
|
|
state = State.INITIALIZATION_FAILED;
|
|
|
|
storage.abortInitialization();
|
|
|
|
Log.e(LOG_TAG, "Initialization failed.", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-05-22 10:23:53 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add provider-specific initialization in this method.
|
|
|
|
*/
|
2013-05-22 17:24:28 -07:00
|
|
|
private synchronized void initialize(final Context context,
|
2013-05-30 17:42:56 -07:00
|
|
|
final String profilePath)
|
2013-05-22 10:23:53 -07:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
|
|
|
Log.d(LOG_TAG, "Initializing profile cache.");
|
|
|
|
this.state = State.INITIALIZING;
|
|
|
|
|
2013-05-30 17:42:56 -07:00
|
|
|
// If we can restore state from last time, great.
|
|
|
|
if (this.profileCache.restoreUnlessInitialized()) {
|
|
|
|
Log.i(LOG_TAG, "Successfully restored state. Initializing storage.");
|
|
|
|
initializeStorage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, let's initialize it from scratch.
|
|
|
|
this.profileCache.beginInitialization();
|
2013-05-22 10:23:53 -07:00
|
|
|
this.profileCache.setProfileCreationTime(getAndPersistProfileInitTime(context, profilePath));
|
|
|
|
|
2013-05-22 17:24:28 -07:00
|
|
|
final BrowserHealthRecorder self = this;
|
|
|
|
|
2013-05-22 10:23:53 -07:00
|
|
|
PrefHandler handler = new PrefsHelper.PrefHandlerBase() {
|
|
|
|
@Override
|
|
|
|
public void prefValue(String pref, boolean value) {
|
2013-05-30 17:42:56 -07:00
|
|
|
handlePrefValue(pref, value);
|
2013-05-22 10:23:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void finish() {
|
2013-05-30 17:42:56 -07:00
|
|
|
Log.d(LOG_TAG, "Requesting all add-ons from Gecko.");
|
|
|
|
dispatcher.registerEventListener(EVENT_ADDONS_ALL, self);
|
|
|
|
GeckoAppShell.sendEventToGecko(GeckoEvent.createBroadcastEvent("Addons:FetchAll", null));
|
|
|
|
// Wait for the broadcast event which completes our initialization.
|
2013-05-22 10:23:53 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Oh, singletons.
|
|
|
|
PrefsHelper.getPrefs(new String[] {
|
|
|
|
AppConstants.TELEMETRY_PREF_NAME,
|
|
|
|
PREF_BLOCKLIST_ENABLED
|
|
|
|
},
|
|
|
|
handler);
|
|
|
|
Log.d(LOG_TAG, "Done initializing profile cache. Beginning storage init.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void handleMessage(String event, JSONObject message) {
|
|
|
|
try {
|
2013-05-30 17:42:56 -07:00
|
|
|
if (EVENT_ADDONS_ALL.equals(event)) {
|
|
|
|
Log.d(LOG_TAG, "Got all add-ons.");
|
|
|
|
try {
|
|
|
|
JSONObject addons = message.getJSONObject("json");
|
|
|
|
Log.d(LOG_TAG, "Persisting " + addons.length() + " add-ons.");
|
|
|
|
profileCache.setJSONForAddons(addons);
|
|
|
|
profileCache.completeInitialization();
|
|
|
|
} catch (java.io.IOException e) {
|
|
|
|
Log.e(LOG_TAG, "Error completing profile cache initialization.", e);
|
|
|
|
state = State.INITIALIZATION_FAILED;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state == State.INITIALIZING) {
|
|
|
|
initializeStorage();
|
|
|
|
} else {
|
|
|
|
this.onEnvironmentChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (EVENT_ADDONS_CHANGE.equals(event)) {
|
|
|
|
Log.d(LOG_TAG, "Add-on changed: " + message.getString("id"));
|
|
|
|
this.onAddonChanged(message.getString("id"), message.getJSONObject("json"));
|
|
|
|
this.onEnvironmentChanged();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (EVENT_PREF_CHANGE.equals(event)) {
|
|
|
|
final String pref = message.getString("pref");
|
|
|
|
Log.d(LOG_TAG, "Pref changed: " + pref);
|
|
|
|
handlePrefValue(pref, message.getBoolean("value"));
|
|
|
|
this.onEnvironmentChanged();
|
|
|
|
return;
|
|
|
|
}
|
2013-05-22 10:23:53 -07:00
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(LOG_TAG, "Exception handling message \"" + event + "\":", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|