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

Unified Diff: libadblockplus-android-settings/src/org/adblockplus/libadblockplus/android/settings/ConnectionType.java

Issue 29379647: Issue 4948 - add possibility to not send data depending on connection properties (Closed)
Patch Set: updated to 4931 code review patch set 3 and later Created March 21, 2017, 10:28 a.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: libadblockplus-android-settings/src/org/adblockplus/libadblockplus/android/settings/ConnectionType.java
diff --git a/libadblockplus-android-settings/src/org/adblockplus/libadblockplus/android/settings/ConnectionType.java b/libadblockplus-android-settings/src/org/adblockplus/libadblockplus/android/settings/ConnectionType.java
new file mode 100644
index 0000000000000000000000000000000000000000..fb95d0ad0391c58256d534382f0e3698ca8a94fa
--- /dev/null
+++ b/libadblockplus-android-settings/src/org/adblockplus/libadblockplus/android/settings/ConnectionType.java
@@ -0,0 +1,104 @@
+/*
+ * This file is part of Adblock Plus <https://adblockplus.org/>,
+ * Copyright (C) 2006-2016 Eyeo GmbH
Felix Dahlke 2017/03/24 07:37:24 2017 :)
anton 2017/03/24 09:43:11 Yes, i've left it 2016 as i will update 2016 to 20
Felix Dahlke 2017/03/27 14:18:11 Acknowledged.
+ *
+ * Adblock Plus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * Adblock Plus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package org.adblockplus.libadblockplus.android.settings;
+
+import android.net.ConnectivityManager;
+
+public enum ConnectionType {
+
+ // All WiFi networks
+ WIFI(
+ "wifi",
+ new ConnectionChecker()
+ {
+ @Override
+ public boolean isRequiredConnection(ConnectivityManager manager)
+ {
+ return manager.getActiveNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI;
+ }
+ }),
+
+ // Non-metered WiFi networks
+ WIFI_NON_METERED(
+ "wifi_non_metered",
+ new ConnectionChecker()
+ {
+ @Override
+ public boolean isRequiredConnection(ConnectivityManager manager)
+ {
+ return
+ manager.getActiveNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI &&
+ !manager.isActiveNetworkMetered();
+ }
+ }),
+
+ // Any connection
+ ANY(
+ "any",
+ new ConnectionChecker()
+ {
+ @Override
+ public boolean isRequiredConnection(ConnectivityManager manager)
+ {
+ return true;
+ }
+ });
+
+ private String value;
+ private ConnectionChecker checker;
+
+ public String getValue()
+ {
+ return value;
+ }
+
+ public ConnectionChecker getChecker()
+ {
+ return checker;
+ }
+
+ ConnectionType(String value, ConnectionChecker checker)
+ {
+ this.value = value;
+ this.checker = checker;
+ }
+
+ interface ConnectionChecker
+ {
+ boolean isRequiredConnection(ConnectivityManager manager);
+ }
+
+ public static ConnectionType findByValue(String value)
+ {
+ if (value == null)
+ {
+ return null;
+ }
+
+ for (ConnectionType eachConnectionType : ConnectionType.values())
+ {
+ if (eachConnectionType.getValue().equals(value))
+ {
+ return eachConnectionType;
+ }
+ }
+
+ // not found
+ return null;
+ }
+}

Powered by Google App Engine
This is Rietveld