Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/Engine.java

Issue 29453722: Noissue - Lint adjustments and optimizations (Closed)
Patch Set: Adjusting HashSet initialization in Subscription Created July 19, 2017, 4:40 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/Engine.java
===================================================================
--- a/adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/Engine.java
+++ b/adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/engine/Engine.java
@@ -51,52 +51,48 @@ import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.Uri;
import android.os.Handler;
import android.os.Looper;
import android.text.TextUtils;
+import android.text.format.DateUtils;
import android.util.Log;
public final class Engine
{
private static final String TAG = Engine.class.getSimpleName();
public static final String USER_FILTERS_TITLE = "__filters";
public static final String USER_EXCEPTIONS_TITLE = "__exceptions";
public static final String SBROWSER_APP_ID = "com.sec.android.app.sbrowser";
- public static final String ACTION_OPEN_SETTINGS = "com.samsung.android.sbrowser.contentBlocker.ACTION_SETTING";
- public static final String ACTION_UPDATE = "com.samsung.android.sbrowser.contentBlocker.ACTION_UPDATE";
- public static final String EASYLIST_URL = "https://easylist-downloads.adblockplus.org/easylist.txt";
+ private static final String ACTION_OPEN_SETTINGS = "com.samsung.android.sbrowser.contentBlocker.ACTION_SETTING";
+ private static final String ACTION_UPDATE = "com.samsung.android.sbrowser.contentBlocker.ACTION_UPDATE";
+ private static final String EASYLIST_URL = "https://easylist-downloads.adblockplus.org/easylist.txt";
public static final String SUBSCRIPTIONS_EXCEPTIONSURL = "subscriptions_exceptionsurl";
// The value below specifies an interval of [x, 2*x[, where x =
- // INITIAL_UPDATE_CHECK_DELAY_SECONDS
- private static final long INITIAL_UPDATE_CHECK_DELAY_SECONDS = 5;
- private static final long UPDATE_CHECK_INTERVAL_MINUTES = 30;
- private static final long BROADCAST_COMBINATION_DELAY_MILLIS = 2500;
-
- public static final long MILLIS_PER_SECOND = 1000;
- public static final long MILLIS_PER_MINUTE = 60 * MILLIS_PER_SECOND;
- public static final long MILLIS_PER_HOUR = 60 * MILLIS_PER_MINUTE;
- public static final long MILLIS_PER_DAY = 24 * MILLIS_PER_HOUR;
+ // INITIAL_UPDATE_CHECK_DELAY
+ private static final long INITIAL_UPDATE_CHECK_DELAY = 5 * DateUtils.SECOND_IN_MILLIS;
+ private static final long UPDATE_CHECK_INTERVAL = 30 * DateUtils.MINUTE_IN_MILLIS;
+ private static final long BROADCAST_COMBINATION_DELAY = 2500;
private static final int NO_FLAG = 0;
private static final int OLDEST_SAMSUNG_INTERNET_5_VERSIONCODE = 500000000;
private final ReentrantLock accessLock = new ReentrantLock();
private DefaultSubscriptions defaultSubscriptions;
private Subscriptions subscriptions;
private JSONPrefs jsonPrefs;
private AppInfo appInfo;
- private LinkedBlockingQueue<EngineEvent> engineEvents = new LinkedBlockingQueue<>();
+ private final LinkedBlockingQueue<EngineEvent> engineEvents = new LinkedBlockingQueue<>();
private Thread handlerThread;
private Downloader downloader;
private SubscriptionUpdateCallback subscriptionUpdateCallback;
private final Context serviceContext;
private boolean wasFirstRun = false;
private long nextUpdateBroadcast = Long.MAX_VALUE;
private Engine(final Context context)
@@ -174,17 +170,17 @@ public final class Engine
public void setSubscriptionUpdateCallback(final SubscriptionUpdateCallback subscriptionUpdateCallback)
{
this.subscriptionUpdateCallback = subscriptionUpdateCallback;
}
public void requestUpdateBroadcast()
{
- this.nextUpdateBroadcast = System.currentTimeMillis() + BROADCAST_COMBINATION_DELAY_MILLIS;
+ this.nextUpdateBroadcast = System.currentTimeMillis() + BROADCAST_COMBINATION_DELAY;
}
private void writeFileAndSendUpdateBroadcast()
{
createAndWriteFile();
runOnUiThread(new Runnable()
{
@@ -421,17 +417,17 @@ public final class Engine
Log.d(TAG, "Added " + additional + " additional default/built-in subscriptions");
engine.subscriptions.persistSubscriptions();
}
engine.handlerThread = new Thread(new EventHandler(engine));
engine.handlerThread.setDaemon(true);
engine.handlerThread.start();
- engine.downloader = Downloader.create(context, engine);
+ engine.downloader = Downloader.create(engine);
final File cachedFilterFile = getCachedFilterFile(context);
if (cachedFilterFile == null || !cachedFilterFile.exists())
{
engine.writeFileAndSendUpdateBroadcast();
}
return engine;
@@ -603,17 +599,17 @@ public final class Engine
}
@Override
public void run()
{
Log.d(TAG, "Handler thread started");
boolean interrupted = false;
long nextUpdateCheck = System.currentTimeMillis()
- + (long) ((1 + Math.random()) * INITIAL_UPDATE_CHECK_DELAY_SECONDS * MILLIS_PER_SECOND);
+ + (long) ((1 + Math.random()) * INITIAL_UPDATE_CHECK_DELAY);
while (!interrupted)
{
try
{
final EngineEvent event = this.engine.engineEvents.poll(100, TimeUnit.MILLISECONDS);
engine.lock();
try
{
@@ -641,17 +637,17 @@ public final class Engine
Log.d(TAG, "Unhandled type: " + event.getType());
break;
}
}
final long currentTime = System.currentTimeMillis();
if (currentTime > nextUpdateCheck)
{
- nextUpdateCheck = currentTime + UPDATE_CHECK_INTERVAL_MINUTES * MILLIS_PER_MINUTE;
+ nextUpdateCheck = currentTime + UPDATE_CHECK_INTERVAL;
this.engine.subscriptions.checkForUpdates();
}
if (currentTime > this.engine.nextUpdateBroadcast)
{
this.engine.nextUpdateBroadcast = Long.MAX_VALUE;
Log.d(TAG, "Sending update broadcast");
@@ -683,17 +679,17 @@ public final class Engine
{
CHANGE_ENABLED_STATE,
FORCE_DOWNLOAD,
DOWNLOAD_FINISHED
}
private final EngineEventType type;
- protected EngineEvent(final EngineEventType type)
+ EngineEvent(final EngineEventType type)
{
this.type = type;
}
public EngineEventType getType()
{
return this.type;
}

Powered by Google App Engine
This is Rietveld