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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwVariationsSeedFetchService.java

Issue 2975693002: Add AwVariationsSeedFetchService and refactory VariationsSeedFetcher (Closed)
Patch Set: Update for comments of Patch 6 Created 3 years, 5 months 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: android_webview/java/src/org/chromium/android_webview/AwVariationsSeedFetchService.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwVariationsSeedFetchService.java b/android_webview/java/src/org/chromium/android_webview/AwVariationsSeedFetchService.java
new file mode 100644
index 0000000000000000000000000000000000000000..24bb209a525138f8343c527907c743c02b753f39
--- /dev/null
+++ b/android_webview/java/src/org/chromium/android_webview/AwVariationsSeedFetchService.java
@@ -0,0 +1,162 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.android_webview;
+
+import android.annotation.SuppressLint;
+import android.app.job.JobParameters;
+import android.app.job.JobService;
+import android.os.AsyncTask;
+
+import org.chromium.base.ContextUtils;
+import org.chromium.base.Log;
+import org.chromium.base.ThreadUtils;
+import org.chromium.components.variations.firstrun.VariationsSeedFetcher;
+import org.chromium.components.variations.firstrun.VariationsSeedFetcher.SeedInfo;
+
+import java.io.Closeable;
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.ObjectOutputStream;
+import java.io.Serializable;
+import java.util.concurrent.locks.Lock;
+import java.util.concurrent.locks.ReentrantLock;
+
+/**
+ * AwVariationsSeedFetchService is a Job Service to fetch test seed data which is used by Finch
+ * to enable AB testing experiments in the native code. The fetched data is stored in the local
+ * directory which belongs to the Service process.
+ */
+@SuppressLint("NewApi") // JobService requires API level 21.
+public class AwVariationsSeedFetchService extends JobService {
+ private static final String TAG = "AwVartnsSeedFetchSvc";
+
+ public static final String WEBVIEW_VARIATIONS_DIR = "WebView_Variations/";
+ public static final String SEED_DATA_FILENAME = "variations_seed_data";
+ public static final String SEED_PREF_FILENAME = "variations_seed_pref";
+
+ // Synchronization lock to prevent simultaneous local seed file writing.
+ private static final Lock sLock = new ReentrantLock();
+
+ @Override
+ public boolean onStartJob(JobParameters params) {
+ new FetchFinchSeedDataTask(params).execute();
+ return true;
+ }
+
+ @Override
+ public boolean onStopJob(JobParameters params) {
+ // When job parameter is not satisfied any more, the job should be rescheduled.
+ return true;
+ }
+
+ private class FetchFinchSeedDataTask extends AsyncTask<Void, Void, Void> {
+ private JobParameters mJobParams;
+
+ FetchFinchSeedDataTask(JobParameters params) {
+ mJobParams = params;
+ }
+
+ @Override
+ protected Void doInBackground(Void... params) {
+ AwVariationsSeedFetchService.fetchSeed();
+ return null;
+ }
+
+ @Override
+ protected void onPostExecute(Void success) {
+ jobFinished(mJobParams, false);
+ }
+ }
+
+ private static void fetchSeed() {
+ assert !ThreadUtils.runningOnUiThread();
+ // TryLock will drop calls from other threads when one threads are executing the function.
+ // TODO(yiyuny): Add explicitly control to to ensure there's only one threading fetching at
+ // a time and that the seed doesn't get fetched too frequently
+ if (sLock.tryLock()) {
+ try {
+ SeedInfo seedInfo = VariationsSeedFetcher.get().downloadContent(
+ VariationsSeedFetcher.VariationsPlatform.ANDROID_WEBVIEW, "");
+ storeVariationsSeed(seedInfo);
+ } catch (IOException e) {
+ // Exceptions are handled in the downloadContent function and rethrowing the
+ // exception is to stop the normal logic flow after it, so no error-handling here.
+ // Not explicitly handing SocketTimeoutException and UnknownHostException for they
+ // are both subclasses of IOException.
+ } finally {
+ sLock.unlock();
+ }
+ }
+ }
+
+ /**
+ * SeedPreference serialize related fields of seed data and is used when reading or writing
Alexei Svitkine (slow) 2017/07/12 19:01:21 Nit: "serializes" or "is used to serialize"
yiyuny 2017/07/12 22:22:05 Done.
+ * the fields to the internal storage. serialVersionUID can let the program deserialize the data
+ * when the fields are changed.
Alexei Svitkine (slow) 2017/07/12 19:01:21 Nit: Move the last sentence to be about serialVers
yiyuny 2017/07/12 22:22:06 Done.
+ */
+ public static class SeedPreference implements Serializable {
+ private static final long serialVersionUID = 0L;
Alexei Svitkine (slow) 2017/07/12 19:01:21 Nit: Add an empty line after this.
yiyuny 2017/07/12 22:22:05 Done.
+ public final String signature;
+ public final String country;
+ public final String date;
+ public final boolean isGzipCompressed;
+
+ public SeedPreference(SeedInfo seedInfo) {
+ signature = seedInfo.signature;
+ country = seedInfo.country;
+ date = seedInfo.date;
+ isGzipCompressed = seedInfo.isGzipCompressed;
+ }
+ }
+
+ private static File getOrCreateWebViewVariationsDir() {
+ File webViewFileDir = ContextUtils.getApplicationContext().getFilesDir();
+ File dir = new File(webViewFileDir, WEBVIEW_VARIATIONS_DIR);
+ if (dir.mkdir() || dir.isDirectory()) {
+ return dir;
+ }
+ return null;
+ }
+
+ private static void storeVariationsSeed(SeedInfo seedInfo) {
+ File webViewVariationsDir = getOrCreateWebViewVariationsDir();
+ if (webViewVariationsDir == null) {
+ return;
+ }
+
+ FileOutputStream fosSeed = null;
+ ObjectOutputStream oosSeedPref = null;
+ try {
+ fosSeed = new FileOutputStream(new File(webViewVariationsDir, SEED_DATA_FILENAME));
+ fosSeed.write(seedInfo.seedData, 0, seedInfo.seedData.length);
Alexei Svitkine (slow) 2017/07/12 19:01:21 How will you read this? I think you need to also
yiyuny 2017/07/12 22:22:06 I choose to store the seed data and preference sep
Alexei Svitkine (slow) 2017/07/13 20:36:25 Ah, sorry I had missed that you're writing to diff
+ // Store separately so that reading large seed data (which is expensive) can be
+ // prevented when checking the last seed fetch time.
+ oosSeedPref = new ObjectOutputStream(
+ new FileOutputStream(new File(webViewVariationsDir, SEED_PREF_FILENAME)));
+ oosSeedPref.writeObject(new SeedPreference(seedInfo));
+ } catch (FileNotFoundException e) {
+ Log.e(TAG,
+ "FileNotFoundException failed to open file to write seed data or preference.");
Alexei Svitkine (slow) 2017/07/12 19:01:21 Nit: If you pass e as a last param, you don't need
paulmiller 2017/07/12 20:21:59 I recommended not passing e, because I thought a s
Alexei Svitkine (slow) 2017/07/12 20:32:31 Ah, fair enough. Maybe log e.getMessage() then, at
yiyuny 2017/07/12 22:22:06 I don't know the default value of the Exception's
+ } catch (IOException e) {
+ Log.e(TAG,
+ "IOException failed to write variations seed data or preference to the file.");
+ } finally {
+ closeStream(fosSeed, SEED_DATA_FILENAME);
+ closeStream(oosSeedPref, SEED_PREF_FILENAME);
+ }
+ }
+
+ private static void closeStream(Closeable stream, String filename) {
+ if (stream != null) {
+ try {
+ stream.close();
+ } catch (IOException e) {
+ Log.e(TAG, "IOException failed to close " + filename + " file.");
+ }
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698