]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_regex_tre.cpp
Merge pull request #1219 from SaberUK/master+directive
[user/henk/code/inspircd.git] / src / modules / extra / m_regex_tre.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: find_compiler_flags("tre")
21 /// $LinkerFlags: find_linker_flags("tre" "-ltre")
22
23 /// $PackageInfo: require_system("darwin") pkg-config tre
24 /// $PackageInfo: require_system("ubuntu") libtre-dev pkg-config
25
26 #include "inspircd.h"
27 #include "modules/regex.h"
28 #include <sys/types.h>
29 #include <tre/regex.h>
30
31 class TRERegex : public Regex
32 {
33         regex_t regbuf;
34
35 public:
36         TRERegex(const std::string& rx) : Regex(rx)
37         {
38                 int flags = REG_EXTENDED | REG_NOSUB;
39                 int errcode;
40                 errcode = regcomp(&regbuf, rx.c_str(), flags);
41                 if (errcode)
42                 {
43                         // Get the error string into a std::string. YUCK this involves at least 2 string copies.
44                         std::string error;
45                         char* errbuf;
46                         size_t sz = regerror(errcode, &regbuf, NULL, 0);
47                         errbuf = new char[sz + 1];
48                         memset(errbuf, 0, sz + 1);
49                         regerror(errcode, &regbuf, errbuf, sz + 1);
50                         error = errbuf;
51                         delete[] errbuf;
52                         regfree(&regbuf);
53                         throw RegexException(rx, error);
54                 }
55         }
56
57         ~TRERegex()
58         {
59                 regfree(&regbuf);
60         }
61
62         bool Matches(const std::string& text)  CXX11_OVERRIDE
63         {
64                 return (regexec(&regbuf, text.c_str(), 0, NULL, 0) == 0);
65         }
66 };
67
68 class TREFactory : public RegexFactory
69 {
70  public:
71         TREFactory(Module* m) : RegexFactory(m, "regex/tre") {}
72         Regex* Create(const std::string& expr) CXX11_OVERRIDE
73         {
74                 return new TRERegex(expr);
75         }
76 };
77
78 class ModuleRegexTRE : public Module
79 {
80         TREFactory trf;
81
82  public:
83         ModuleRegexTRE() : trf(this)
84         {
85         }
86
87         Version GetVersion() CXX11_OVERRIDE
88         {
89                 return Version("Regex Provider Module for TRE Regular Expressions", VF_VENDOR);
90         }
91 };
92
93 MODULE_INIT(ModuleRegexTRE)