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

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

Issue 29678581: Issue 6000 - Rename "libadblockplus-android" (Closed)
Patch Set: addressed comments Created Jan. 29, 2018, 11:04 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/src/org/adblockplus/libadblockplus/FilterEngine.java
diff --git a/libadblockplus-android/src/org/adblockplus/libadblockplus/FilterEngine.java b/libadblockplus-android/src/org/adblockplus/libadblockplus/FilterEngine.java
deleted file mode 100644
index 182ef7499b190366617a73496af6ba2bda33e15c..0000000000000000000000000000000000000000
--- a/libadblockplus-android/src/org/adblockplus/libadblockplus/FilterEngine.java
+++ /dev/null
@@ -1,266 +0,0 @@
-/*
- * This file is part of Adblock Plus <https://adblockplus.org/>,
- * Copyright (C) 2006-present 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;
-
-public final class FilterEngine
-{
- protected final long ptr;
-
- static
- {
- System.loadLibrary("adblockplus-jni");
- registerNatives();
- }
-
- public static enum ContentType
- {
- OTHER, SCRIPT, IMAGE, STYLESHEET, OBJECT, SUBDOCUMENT, DOCUMENT, WEBSOCKET,
- WEBRTC, PING, XMLHTTPREQUEST, OBJECT_SUBREQUEST, MEDIA, FONT, GENERICBLOCK,
- ELEMHIDE, GENERICHIDE
- }
-
- FilterEngine(long jniPlatformPtr)
- {
- this.ptr = jniPlatformPtr;
- }
-
- 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 removeUpdateAvailableCallback()
- {
- removeUpdateAvailableCallback(this.ptr);
- }
-
- public void setUpdateAvailableCallback(final UpdateAvailableCallback callback)
- {
- setUpdateAvailableCallback(this.ptr, callback.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 UpdateCheckDoneCallback callback)
- {
- forceUpdateCheck(this.ptr, callback != null ? callback.ptr : 0);
- }
-
- public List<String> getElementHidingSelectors(final String domain)
- {
- return getElementHidingSelectors(this.ptr, domain);
- }
-
- public void showNextNotification(final String url)
- {
- showNextNotification(this.ptr, url);
- }
-
- public void showNextNotification()
- {
- showNextNotification(this.ptr, null);
- }
-
- public void setShowNotificationCallback(final ShowNotificationCallback callback)
- {
- setShowNotificationCallback(this.ptr, callback.ptr);
- }
-
- public void removeShowNotificationCallback()
- {
- removeShowNotificationCallback(this.ptr);
- }
-
- public Filter matches(final String url, final ContentType contentType, final String documentUrl)
- {
- return matches(this.ptr, url, contentType, documentUrl);
- }
-
- public Filter matches(final String url, final ContentType contentType, final String[] documentUrls)
- {
- return matches(this.ptr, url, contentType, documentUrls);
- }
-
- public boolean isDocumentWhitelisted(String url, String[] documentUrls)
- {
- return isDocumentWhitelisted(this.ptr, url, documentUrls);
- }
-
- public boolean isElemhideWhitelisted(String url, String[] documentUrls)
- {
- return isElemhideWhitelisted(this.ptr, url, 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);
- }
-
- public String getHostFromURL(String url)
- {
- return getHostFromURL(this.ptr, url);
- }
-
- public void setAllowedConnectionType(String value)
- {
- setAllowedConnectionType(this.ptr, value);
- }
-
- public String getAllowedConnectionType()
- {
- return getAllowedConnectionType(this.ptr);
- }
-
- public void setAcceptableAdsEnabled(final boolean enabled)
- {
- setAcceptableAdsEnabled(this.ptr, enabled);
- }
-
- public boolean isAcceptableAdsEnabled()
- {
- return isAcceptableAdsEnabled(this.ptr);
- }
-
- public String getAcceptableAdsSubscriptionURL()
- {
- return getAcceptableAdsSubscriptionURL(this.ptr);
- }
-
- /**
- * Schedules updating of a subscription corresponding to the passed URL.
- * @param subscriptionUrl may contain query parameters, only the beginning of the string is used
- * to find a corresponding subscription.
- */
- public void updateFiltersAsync(String subscriptionUrl)
- {
- updateFiltersAsync(this.ptr, subscriptionUrl);
- }
-
- /**
- * Get FilterEngine pointer
- * @return C++ FilterEngine instance pointer (AdblockPlus::FilterEngine*)
- */
- public long getNativePtr() {
- return getNativePtr(this.ptr);
- }
-
- private final static native void registerNatives();
-
- 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 removeUpdateAvailableCallback(long ptr);
-
- private final static native void setUpdateAvailableCallback(long ptr, long filterPtr);
-
- 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 void showNextNotification(long ptr, String url);
-
- private final static native void setShowNotificationCallback(long ptr, long callbackPtr);
-
- private final static native void removeShowNotificationCallback(long ptr);
-
- private final static native JsValue getPref(long ptr, String pref);
-
- private final static native Filter matches(long ptr, String url, ContentType contentType, String documentUrl);
-
- private final static native Filter matches(long ptr, String url, ContentType contentType, String[] documentUrls);
-
- private final static native boolean isDocumentWhitelisted(long ptr, String url, String[] documentUrls);
-
- private final static native boolean isElemhideWhitelisted(long ptr, String url, String[] documentUrls);
-
- private final static native void setPref(long ptr, String pref, long valuePtr);
-
- private final static native String getHostFromURL(long ptr, String url);
-
- private final static native void setAllowedConnectionType(long ptr, String value);
-
- private final static native String getAllowedConnectionType(long ptr);
-
- private final static native void setAcceptableAdsEnabled(long ptr, boolean enabled);
-
- private final static native boolean isAcceptableAdsEnabled(long ptr);
-
- private final static native String getAcceptableAdsSubscriptionURL(long ptr);
-
- private final static native void updateFiltersAsync(long ptr, String subscriptionUrl);
-
- private final static native long getNativePtr(long ptr);
-}

Powered by Google App Engine
This is Rietveld