1
0
mirror of https://github.com/anope/anope.git synced 2026-06-24 20:26:39 +02:00
Files
anope/modules/extra/m_regex_posix.cpp
T

57 lines
1.1 KiB
C++

#include "module.h"
#include <sys/types.h>
#include <regex.h>
class POSIXRegex : public Regex
{
regex_t regbuf;
public:
POSIXRegex(const Anope::string &expr) : Regex(expr)
{
int err = regcomp(&this->regbuf, expr.c_str(), REG_EXTENDED | REG_NOSUB);
if (err)
{
char buf[BUFSIZE];
regerror(err, &this->regbuf, buf, sizeof(buf));
regfree(&this->regbuf);
throw RegexException("Error in regex " + expr + ": " + buf);
}
}
~POSIXRegex()
{
regfree(&this->regbuf);
}
bool Matches(const Anope::string &str)
{
return regexec(&this->regbuf, str.c_str(), 0, NULL, 0) == 0;
}
};
class POSIXRegexProvider : public RegexProvider
{
public:
POSIXRegexProvider(Module *creator) : RegexProvider(creator, "regex/posix") { }
Regex *Compile(const Anope::string &expression) anope_override
{
return new POSIXRegex(expression);
}
};
class ModuleRegexPOSIX : public Module
{
POSIXRegexProvider posix_regex_provider;
public:
ModuleRegexPOSIX(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, EXTRA | VENDOR),
posix_regex_provider(this)
{
this->SetPermanent(true);
}
};
MODULE_INIT(ModuleRegexPOSIX)