]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_regex_re2.cpp
Merge pull request #574 from SaberUK/master+build-comment-cleanup
[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 /* $ModDep: modules/regex.h */
33
34 class RE2Exception : public ModuleException
35 {
36  public:
37          RE2Exception(const std::string& rx, const std::string& error)
38                 : ModuleException(std::string("Error in regex ") + rx + ": " + error)
39         {
40         }
41 };
42
43 class RE2Regex : public Regex
44 {
45         RE2 regexcl;
46
47  public:
48         RE2Regex(const std::string& rx) : Regex(rx), regexcl(rx, RE2::Quiet)
49         {
50                 if (!regexcl.ok())
51                 {
52                         throw RE2Exception(rx, regexcl.error());
53                 }
54         }
55
56         bool Matches(const std::string& text)
57         {
58                 return RE2::FullMatch(text, regexcl);
59         }
60 };
61
62 class RE2Factory : public RegexFactory
63 {
64  public:
65         RE2Factory(Module* m) : RegexFactory(m, "regex/re2") { }
66         Regex* Create(const std::string& expr)
67         {
68                 return new RE2Regex(expr);
69         }
70 };
71
72 class ModuleRegexRE2 : public Module
73 {
74         RE2Factory ref;
75
76  public:
77         ModuleRegexRE2() : ref(this)
78         {
79                 ServerInstance->Modules->AddService(ref);
80         }
81
82         Version GetVersion() CXX11_OVERRIDE
83         {
84                 return Version("Regex Provider Module for RE2", VF_VENDOR);
85         }
86 };
87
88 MODULE_INIT(ModuleRegexRE2)