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

Unified Diff: src/org/adblockplus/libadblockplus/FilterEngine.java

Issue 6606493159784448: New JNI bindings (Closed)
Patch Set: Removed TODO from AppInfo. Created April 11, 2014, 1:28 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: src/org/adblockplus/libadblockplus/FilterEngine.java
diff --git a/src/org/adblockplus/libadblockplus/FilterEngine.java b/src/org/adblockplus/libadblockplus/FilterEngine.java
new file mode 100644
index 0000000000000000000000000000000000000000..a2c0f07fd8de3a691b7c991e1fbc9caaa445ef51
--- /dev/null
+++ b/src/org/adblockplus/libadblockplus/FilterEngine.java
@@ -0,0 +1,172 @@
+/*
+ * This file is part of Adblock Plus <http://adblockplus.org/>,
+ * Copyright (C) 2006-2014 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.libadblockplus;
+
+import java.util.List;
+
+import com.github.rjeschke.neetutils.dispose.Disposable;
+import com.github.rjeschke.neetutils.dispose.Disposer;
+
+public final class FilterEngine implements Disposable
+{
+ private final Disposer disposer;
+ protected final long ptr;
+
+ static
+ {
+ System.loadLibrary("adblockplus-jni");
+ registerNatives();
+ }
+
+ public FilterEngine(final JsEngine jsEngine)
+ {
+ this.ptr = ctor(jsEngine.ptr);
+ this.disposer = new Disposer(this, new DisposeWrapper(this.ptr));
+ }
+
+ public boolean isFirstRun()
+ {
+ return isFirstRun(this.ptr);
+ }
+
+ public Filter getFilter(final String text)
+ {
+ return getFilter(this.ptr, text);
+ }
+
+ public List<Filter> getListedFilters()
+ {
+ return getListedFilters(this.ptr);
+ }
+
+ public Subscription getSubscription(final String url)
+ {
+ return getSubscription(this.ptr, url);
+ }
+
+ public List<Subscription> getListedSubscriptions()
+ {
+ return getListedSubscriptions(this.ptr);
+ }
+
+ public List<Subscription> fetchAvailableSubscriptions()
+ {
+ return fetchAvailableSubscriptions(this.ptr);
+ }
+
+ public void removeFilterChangeCallback()
+ {
+ removeFilterChangeCallback(this.ptr);
+ }
+
+ public void setFilterChangeCallback(final FilterChangeCallback callback)
+ {
+ setFilterChangeCallback(this.ptr, callback.ptr);
+ }
+
+ public void forceUpdateCheck()
+ {
+ forceUpdateCheck(this.ptr, 0);
+ }
+
+ public void forceUpdateCheck(final UpdaterCallback callback)
+ {
+ forceUpdateCheck(this.ptr, callback != null ? callback.ptr : 0);
+ }
+
+ public List<String> getElementHidingSelectors(final String domain)
+ {
+ return getElementHidingSelectors(this.ptr, domain);
+ }
+
+ public Filter matches(final String url, final String contentType, final String documentUrl)
+ {
+ return matches(this.ptr, url, contentType, documentUrl);
+ }
+
+ public Filter matches(final String url, final String contentType, final String[] documentUrls)
+ {
+ return matches(this.ptr, url, contentType, documentUrls);
+ }
+
+ public JsValue getPref(final String pref)
+ {
+ return getPref(this.ptr, pref);
+ }
+
+ public void setPref(final String pref, final JsValue value)
+ {
+ setPref(this.ptr, pref, value.ptr);
+ }
+
+ @Override
+ public void dispose()
+ {
+ this.disposer.dispose();
+ }
+
+ private final static class DisposeWrapper implements Disposable
+ {
+ private final long ptr;
+
+ public DisposeWrapper(final long ptr)
+ {
+ this.ptr = ptr;
+ }
+
+ @Override
+ public void dispose()
+ {
+ dtor(this.ptr);
+ }
+ }
+
+ private final static native void registerNatives();
+
+ private final static native long ctor(long jsEnginePtr);
+
+ private final static native boolean isFirstRun(long ptr);
+
+ private final static native Filter getFilter(long ptr, String text);
+
+ private final static native List<Filter> getListedFilters(long ptr);
+
+ private final static native Subscription getSubscription(long ptr, String url);
+
+ private final static native List<Subscription> getListedSubscriptions(long ptr);
+
+ private final static native List<Subscription> fetchAvailableSubscriptions(long ptr);
+
+ private final static native void removeFilterChangeCallback(long ptr);
+
+ private final static native void setFilterChangeCallback(long ptr, long filterPtr);
+
+ private final static native void forceUpdateCheck(long ptr, long updatePtr);
+
+ private final static native List<String> getElementHidingSelectors(long ptr, String domain);
+
+ private final static native JsValue getPref(long ptr, String pref);
+
+ private final static native Filter matches(long ptr, String url, String contentType, String documentUrl);
+
+ private final static native Filter matches(long ptr, String url, String contentType, String[] documentUrls);
+
+ private final static native void setPref(long ptr, String pref, long valuePtr);
+
+ private final static native void dtor(long ptr);
+}

Powered by Google App Engine
This is Rietveld