]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_regex_re2.cpp
Automatically register ServiceProviders created by modules
[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 RE2Regex : public Regex
34 {
35         RE2 regexcl;
36
37  public:
38         RE2Regex(const std::string& rx) : Regex(rx), regexcl(rx, RE2::Quiet)
39         {
40                 if (!regexcl.ok())
41                 {
42                         throw RegexException(rx, regexcl.error());
43                 }
44         }
45
46         bool Matches(const std::string& text) CXX11_OVERRIDE
47         {
48                 return RE2::FullMatch(text, regexcl);
49         }
50 };
51
52 class RE2Factory : public RegexFactory
53 {
54  public:
55         RE2Factory(Module* m) : RegexFactory(m, "regex/re2") { }
56         Regex* Create(const std::string& expr) CXX11_OVERRIDE
57         {
58                 return new RE2Regex(expr);
59         }
60 };
61
62 class ModuleRegexRE2 : public Module
63 {
64         RE2Factory ref;
65
66  public:
67         ModuleRegexRE2() : ref(this)
68         {
69         }
70
71         Version GetVersion() CXX11_OVERRIDE
72         {
73                 return Version("Regex Provider Module for RE2", VF_VENDOR);
74         }
75 };
76
77 MODULE_INIT(ModuleRegexRE2)