1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 17:04:47 +02:00
Files
anope/modules/regex_stdlib.cpp
2026-01-01 18:07:12 +00:00

114 lines
2.6 KiB
C++

// Anope IRC Services <https://www.anope.org/>
//
// Copyright (C) 2003-2026 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
#include "module.h"
#include <regex>
class StdLibRegex final
: public Regex
{
private:
std::regex regex;
public:
StdLibRegex(const Anope::string &expr, std::regex::flag_type type)
: Regex(expr)
{
try
{
regex.assign(expr.str(), type | std::regex::optimize);
}
catch (const std::regex_error &error)
{
throw RegexException("Error in regex " + expr + ": " + error.what());
}
}
bool Matches(const Anope::string &str)
{
return std::regex_search(str.str(), regex);
}
};
class StdLibRegexProvider final
: public RegexProvider
{
public:
std::regex_constants::syntax_option_type type;
StdLibRegexProvider(Module *creator)
: RegexProvider(creator, "regex/stdlib")
{
}
Regex *Compile(const Anope::string &expression) override
{
return new StdLibRegex(expression, type);
}
};
class ModuleRegexStdLib final
: public Module
{
private:
StdLibRegexProvider stdlib_regex_provider;
public:
ModuleRegexStdLib(const Anope::string &modname, const Anope::string &creator)
: Module(modname, creator, EXTRA | VENDOR)
, stdlib_regex_provider(this)
{
this->SetPermanent(true);
}
void OnReload(Configuration::Conf &conf) override
{
const auto &block = conf.GetModule(this);
const Anope::string syntax = block.Get<const Anope::string>("syntax", "ecmascript");
if (syntax == "awk")
stdlib_regex_provider.type = std::regex::awk;
else if (syntax == "basic")
stdlib_regex_provider.type = std::regex::basic;
else if (syntax == "ecmascript")
stdlib_regex_provider.type = std::regex::ECMAScript;
else if (syntax == "egrep")
stdlib_regex_provider.type = std::regex::egrep;
else if (syntax == "extended")
stdlib_regex_provider.type = std::regex::extended;
else if (syntax == "grep")
stdlib_regex_provider.type = std::regex::grep;
else
throw ConfigException(this->name + ": syntax must be set to awk, basic, ecmascript, egrep, extended, or grep.");
}
~ModuleRegexStdLib()
{
for (auto *xlm : XLineManager::XLineManagers)
{
for (auto *x : xlm->GetList())
{
if (x->regex && dynamic_cast<StdLibRegex *>(x->regex))
{
delete x->regex;
x->regex = NULL;
}
}
}
}
};
MODULE_INIT(ModuleRegexStdLib)