]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_regex_glob.cpp
Merge branch 'insp20' into insp3.
[user/henk/code/inspircd.git] / src / modules / m_regex_glob.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 "modules/regex.h"
22 #include "inspircd.h"
23
24 class GlobRegex : public Regex
25 {
26 public:
27         GlobRegex(const std::string& rx) : Regex(rx)
28         {
29         }
30
31         bool Matches(const std::string& text) CXX11_OVERRIDE
32         {
33                 return InspIRCd::Match(text, this->regex_string);
34         }
35 };
36
37 class GlobFactory : public RegexFactory
38 {
39  public:
40         Regex* Create(const std::string& expr) CXX11_OVERRIDE
41         {
42                 return new GlobRegex(expr);
43         }
44
45         GlobFactory(Module* m) : RegexFactory(m, "regex/glob") {}
46 };
47
48 class ModuleRegexGlob : public Module
49 {
50         GlobFactory gf;
51 public:
52         ModuleRegexGlob()
53                 : gf(this)
54         {
55         }
56
57         Version GetVersion() CXX11_OVERRIDE
58         {
59                 return Version("Regex provider module using plain wildcard matching", VF_VENDOR);
60         }
61 };
62
63 MODULE_INIT(ModuleRegexGlob)