mirror of
https://github.com/anope/anope.git
synced 2026-06-23 21:06:38 +02:00
108 lines
2.8 KiB
C++
108 lines
2.8 KiB
C++
// Anope IRC Services <https://www.anope.org/>
|
|
//
|
|
// Copyright (C) 2003-2025 Anope Contributors
|
|
//
|
|
// Anope is free software. You can use, modify, and/or distribute it under the
|
|
// terms of version 2 of the GNU General Public License. See docs/LICENSE.txt
|
|
// for the complete terms of this license and docs/AUTHORS.txt for a list of
|
|
// contributors.
|
|
//
|
|
// Based on the original code of Epona by Lara
|
|
// Based on the original code of Services by Andy Church
|
|
//
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
/// BEGIN CMAKE
|
|
/// if(WIN32)
|
|
/// target_link_libraries(${SO} PRIVATE CONAN_PKG::pcre2)
|
|
/// else()
|
|
/// pkg_check_modules("PCRE2" IMPORTED_TARGET REQUIRED "libpcre2-8")
|
|
/// target_link_libraries(${SO} PRIVATE PkgConfig::PCRE2)
|
|
/// endif()
|
|
/// END CMAKE
|
|
|
|
#include "module.h"
|
|
|
|
#define PCRE2_CODE_UNIT_WIDTH 8
|
|
#include <pcre2.h>
|
|
|
|
class PCRERegex final
|
|
: public Regex
|
|
{
|
|
pcre2_code *regex;
|
|
|
|
public:
|
|
PCRERegex(const Anope::string &expr) : Regex(expr)
|
|
{
|
|
int errcode;
|
|
PCRE2_SIZE erroffset;
|
|
this->regex = pcre2_compile(reinterpret_cast<PCRE2_SPTR8>(expr.c_str()), expr.length(), PCRE2_CASELESS, &errcode, &erroffset, NULL);
|
|
|
|
if (!this->regex)
|
|
{
|
|
PCRE2_UCHAR error[128];
|
|
pcre2_get_error_message(errcode, error, sizeof error);
|
|
throw RegexException("Error in regex " + expr + " at offset " + Anope::ToString(erroffset) + ": " + reinterpret_cast<const char*>(error));
|
|
}
|
|
}
|
|
|
|
~PCRERegex()
|
|
{
|
|
pcre2_code_free(this->regex);
|
|
}
|
|
|
|
bool Matches(const Anope::string &str)
|
|
{
|
|
pcre2_match_data *unused = pcre2_match_data_create_from_pattern(this->regex, NULL);
|
|
int result = pcre2_match(regex, reinterpret_cast<PCRE2_SPTR8>(str.c_str()), str.length(), 0, 0, unused, NULL);
|
|
pcre2_match_data_free(unused);
|
|
return result >= 0;
|
|
}
|
|
};
|
|
|
|
class PCRERegexProvider final
|
|
: public RegexProvider
|
|
{
|
|
public:
|
|
PCRERegexProvider(Module *creator) : RegexProvider(creator, "regex/pcre") { }
|
|
|
|
Regex *Compile(const Anope::string &expression) override
|
|
{
|
|
return new PCRERegex(expression);
|
|
}
|
|
};
|
|
|
|
class ModuleRegexPCRE final
|
|
: public Module
|
|
{
|
|
PCRERegexProvider pcre_regex_provider;
|
|
|
|
public:
|
|
ModuleRegexPCRE(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, EXTRA | VENDOR),
|
|
pcre_regex_provider(this)
|
|
{
|
|
this->SetPermanent(true);
|
|
|
|
std::vector<char> pcre_version(16);
|
|
if (pcre2_config(PCRE2_CONFIG_VERSION, pcre_version.data()) >= 0)
|
|
Log(this) << "Module was compiled against PCRE2 version " << PCRE2_MAJOR << "." << PCRE2_MINOR << " and is running against version " << pcre_version.data();
|
|
}
|
|
|
|
~ModuleRegexPCRE()
|
|
{
|
|
for (auto *xlm : XLineManager::XLineManagers)
|
|
{
|
|
for (auto *x : xlm->GetList())
|
|
{
|
|
if (x->regex && dynamic_cast<PCRERegex *>(x->regex))
|
|
{
|
|
delete x->regex;
|
|
x->regex = NULL;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(ModuleRegexPCRE)
|