]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_regex_re2.cpp
Remove $ModDep comments
[user/henk/code/inspircd.git] / src / modules / extra / m_regex_re2.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013 Peter Powell <petpow@saberuk.com>
5  *   Copyright (C) 2012 ChrisTX <chris@rev-crew.info>
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 #if defined __GNUC__
22 # pragma GCC diagnostic ignored "-Wshadow"
23 #endif
24
25 #include "inspircd.h"
26 #include "modules/regex.h"
27 #include <re2/re2.h>
28
29
30 /* $CompileFlags: -std=c++11 */
31 /* $LinkerFlags: -lre2 */
32
33 class RE2Exception : public ModuleException
34 {
35  public:
36          RE2Exception(const std::string& rx, const std::string& error)
37                 : ModuleException(std::string("Error in regex ") + rx + ": " + error)
38         {
39         }
40 };
41
42 class RE2Regex : public Regex
43 {
44         RE2 regexcl;
45
46  public:
47         RE2Regex(const std::string& rx) : Regex(rx), regexcl(rx, RE2::Quiet)
48         {
49                 if (!regexcl.ok())
50                 {
51                         throw RE2Exception(rx, regexcl.error());
52                 }
53         }
54
55         bool Matches(const std::string& text)
56         {
57                 return RE2::FullMatch(text, regexcl);
58         }
59 };
60
61 class RE2Factory : public RegexFactory
62 {
63  public:
64         RE2Factory(Module* m) : RegexFactory(m, "regex/re2") { }
65         Regex* Create(const std::string& expr)
66         {
67                 return new RE2Regex(expr);
68         }
69 };
70
71 class ModuleRegexRE2 : public Module
72 {
73         RE2Factory ref;
74
75  public:
76         ModuleRegexRE2() : ref(this)
77         {
78                 ServerInstance->Modules->AddService(ref);
79         }
80
81         Version GetVersion() CXX11_OVERRIDE
82         {
83                 return Version("Regex Provider Module for RE2", VF_VENDOR);
84         }
85 };
86
87 MODULE_INIT(ModuleRegexRE2)