2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5 * Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
7 * This file is part of InspIRCd. InspIRCd is free software: you can
8 * redistribute it and/or modify it under the terms of the GNU General Public
9 * License as published by the Free Software Foundation, version 2.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 /// $CompilerFlags: execute("pcre-config --cflags" "PCRE_CXXFLAGS")
21 /// $LinkerFlags: execute("pcre-config --libs" "PCRE_LDFLAGS" "-lpcre")
23 /// $PackageInfo: require_system("centos") pcre-devel pkgconfig
24 /// $PackageInfo: require_system("darwin") pcre pkg-config
25 /// $PackageInfo: require_system("ubuntu") libpcre3-dev pkg-config
30 #include "modules/regex.h"
33 # pragma comment(lib, "libpcre.lib")
36 class PCRERegex : public Regex
41 PCRERegex(const std::string& rx) : Regex(rx)
45 regex = pcre_compile(rx.c_str(), 0, &error, &erroffset, NULL);
48 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "pcre_compile failed: /%s/ [%d] %s", rx.c_str(), erroffset, error);
49 throw RegexException(rx, error, erroffset);
58 bool Matches(const std::string& text) CXX11_OVERRIDE
60 return (pcre_exec(regex, NULL, text.c_str(), text.length(), 0, 0, NULL, 0) >= 0);
64 class PCREFactory : public RegexFactory
67 PCREFactory(Module* m) : RegexFactory(m, "regex/pcre") {}
68 Regex* Create(const std::string& expr) CXX11_OVERRIDE
70 return new PCRERegex(expr);
74 class ModuleRegexPCRE : public Module
78 ModuleRegexPCRE() : ref(this)
82 Version GetVersion() CXX11_OVERRIDE
84 return Version("Regex Provider Module for PCRE", VF_VENDOR);
88 MODULE_INIT(ModuleRegexPCRE)