]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_regex_pcre.cpp
Improve escaping strings in the MySQL module.
[user/henk/code/inspircd.git] / src / modules / extra / m_regex_pcre.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
6  *
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.
10  *
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
14  * details.
15  *
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/>.
18  */
19
20 /// $CompilerFlags: execute("pcre-config --cflags" "PCRE_CXXFLAGS")
21 /// $LinkerFlags: execute("pcre-config --libs" "PCRE_LDFLAGS" "-lpcre")
22
23 /// $PackageInfo: require_system("arch") pcre
24 /// $PackageInfo: require_system("centos") pcre-devel
25 /// $PackageInfo: require_system("darwin") pcre 
26 /// $PackageInfo: require_system("debian") libpcre3-dev
27 /// $PackageInfo: require_system("ubuntu") libpcre3-dev
28
29
30 #include "inspircd.h"
31 #include <pcre.h>
32 #include "modules/regex.h"
33
34 #ifdef _WIN32
35 # pragma comment(lib, "libpcre.lib")
36 #endif
37
38 class PCRERegex : public Regex
39 {
40         pcre* regex;
41
42  public:
43         PCRERegex(const std::string& rx) : Regex(rx)
44         {
45                 const char* error;
46                 int erroffset;
47                 regex = pcre_compile(rx.c_str(), 0, &error, &erroffset, NULL);
48                 if (!regex)
49                 {
50                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "pcre_compile failed: /%s/ [%d] %s", rx.c_str(), erroffset, error);
51                         throw RegexException(rx, error, erroffset);
52                 }
53         }
54
55         ~PCRERegex()
56         {
57                 pcre_free(regex);
58         }
59
60         bool Matches(const std::string& text) CXX11_OVERRIDE
61         {
62                 return (pcre_exec(regex, NULL, text.c_str(), text.length(), 0, 0, NULL, 0) >= 0);
63         }
64 };
65
66 class PCREFactory : public RegexFactory
67 {
68  public:
69         PCREFactory(Module* m) : RegexFactory(m, "regex/pcre") {}
70         Regex* Create(const std::string& expr) CXX11_OVERRIDE
71         {
72                 return new PCRERegex(expr);
73         }
74 };
75
76 class ModuleRegexPCRE : public Module
77 {
78  public:
79         PCREFactory ref;
80         ModuleRegexPCRE() : ref(this)
81         {
82         }
83
84         Version GetVersion() CXX11_OVERRIDE
85         {
86                 return Version("Regex Provider Module for PCRE", VF_VENDOR);
87         }
88 };
89
90 MODULE_INIT(ModuleRegexPCRE)