Index: src/org/adblockplus/android/ABPEngine.java |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/src/org/adblockplus/android/ABPEngine.java |
@@ -0,0 +1,66 @@ |
+/* |
+ * This file is part of Adblock Plus <http://adblockplus.org/>, |
+ * Copyright (C) 2006-2013 Eyeo GmbH |
+ * |
+ * 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.android; |
+ |
+import android.content.Context; |
+import android.content.Intent; |
+ |
+public class ABPEngine |
+{ |
+ private final static String TAG = "ABPEngine"; |
+ |
+ private Context context; |
+ |
+ public ABPEngine(Context context, String basePath) |
+ { |
+ this.context = context; |
+ initialize(basePath); |
+ } |
+ |
+ public void onFilterChanged(String url, String status, long time) |
+ { |
+ context.sendBroadcast(new Intent(AdblockPlus.BROADCAST_SUBSCRIPTION_STATUS).putExtra("url", url).putExtra("status", status).putExtra("time", time)); |
+ } |
+ |
+ private native void initialize(String basePath); |
+ |
+ public native void release(); |
+ |
+ public native boolean isFirstRun(); |
+ |
+ public native Subscription[] getListedSubscriptions(); |
+ |
+ public native Subscription[] getRecommendedSubscriptions(); |
+ |
+ public native void addSubscription(String url); |
+ |
+ public native void removeSubscription(String url); |
+ |
+ public native void refreshSubscription(String url); |
+ |
+ public native void actualizeSubscriptionStatus(String url); |
+ |
+ public native boolean matches(String url, String contentType, String documentUrl); |
+ |
+ public native String[] getSelectorsForDomain(String domain); |
+ |
+ static |
+ { |
+ System.loadLibrary("abpEngine"); |
+ } |
+} |