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