From c3559b24eba76052deb9d4ce79e4704815d902a5 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Mon, 10 Feb 2020 20:58:39 +0200 Subject: staging: rewrite AdblockPlus parser yet again --- staging/adblock/rule.cpp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 staging/adblock/rule.cpp (limited to 'staging/adblock/rule.cpp') diff --git a/staging/adblock/rule.cpp b/staging/adblock/rule.cpp new file mode 100644 index 0000000..38d6b40 --- /dev/null +++ b/staging/adblock/rule.cpp @@ -0,0 +1,35 @@ +/* + * This file is part of smolbote. It's copyrighted by the contributors recorded + * in the version control history of the file, available from its original + * location: https://library.iserlohn-fortress.net/aqua/smolbote.git + * + * SPDX-License-Identifier: GPL-3.0 + */ + +#include "rule.h" +#include +#include + +using namespace AdblockPlus; + +MatcherRule::MatcherRule(const QString &rule, const Options &opt) + : options(opt) +{ + matcher = new QStringMatcher(rule, Qt::CaseInsensitive); +} + +MatcherRule::~MatcherRule() +{ + delete matcher; +} + +RegexRule::RegexRule(const QString &rule, const Options &opt) + : options(opt) +{ + regex = new QRegularExpression(rule, QRegularExpression::CaseInsensitiveOption); +} + +RegexRule::~RegexRule() +{ + delete regex; +} -- cgit v1.2.1