]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_regex_pcre.cpp
Merge insp20
[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
21 #include "inspircd.h"
22 #include <pcre.h>
23 #include "modules/regex.h"
24
25 /* $CompileFlags: exec("pcre-config --cflags") */
26 /* $LinkerFlags: exec("pcre-config --libs") rpath("pcre-config --libs") -lpcre */
27
28 #ifdef _WIN32
29 # pragma comment(lib, "libpcre.lib")
30 #endif
31
32 class PCRERegex : public Regex
33 {
34         pcre* regex;
35
36  public:
37         PCRERegex(const std::string& rx) : Regex(rx)
38         {
39                 const char* error;
40                 int erroffset;
41                 regex = pcre_compile(rx.c_str(), 0, &error, &erroffset, NULL);
42                 if (!regex)
43                 {
44                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "pcre_compile failed: /%s/ [%d] %s", rx.c_str(), erroffset, error);
45                         throw RegexException(rx, error, erroffset);
46                 }
47         }
48
49         ~PCRERegex()
50         {
51                 pcre_free(regex);
52         }
53
54         bool Matches(const std::string& text) CXX11_OVERRIDE
55         {
56                 return (pcre_exec(regex, NULL, text.c_str(), text.length(), 0, 0, NULL, 0) >= 0);
57         }
58 };
59
60 class PCREFactory : public RegexFactory
61 {
62  public:
63         PCREFactory(Module* m) : RegexFactory(m, "regex/pcre") {}
64         Regex* Create(const std::string& expr) CXX11_OVERRIDE
65         {
66                 return new PCRERegex(expr);
67         }
68 };
69
70 class ModuleRegexPCRE : public Module
71 {
72  public:
73         PCREFactory ref;
74         ModuleRegexPCRE() : ref(this)
75         {
76         }
77
78         Version GetVersion() CXX11_OVERRIDE
79         {
80                 return Version("Regex Provider Module for PCRE", VF_VENDOR);
81         }
82 };
83
84 MODULE_INIT(ModuleRegexPCRE)