]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modules/regex.h
Fix a bunch of weird indentation and spacing issues.
[user/henk/code/inspircd.git] / include / modules / regex.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2013 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2010 Craig Edwards <brain@inspircd.org>
8  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
9  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
10  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #pragma once
27
28 #include "event.h"
29
30 class Regex : public classbase
31 {
32 protected:
33         /** The uncompiled regex string. */
34         std::string regex_string;
35
36         // Constructor may as well be protected, as this class is abstract.
37         Regex(const std::string& rx) : regex_string(rx) { }
38
39 public:
40
41         virtual ~Regex() { }
42
43         virtual bool Matches(const std::string& text) = 0;
44
45         const std::string& GetRegexString() const
46         {
47                 return regex_string;
48         }
49 };
50
51 class RegexFactory : public DataProvider
52 {
53  public:
54         RegexFactory(Module* Creator, const std::string& Name) : DataProvider(Creator, Name) { }
55
56         virtual Regex* Create(const std::string& expr) = 0;
57 };
58
59 class RegexException : public ModuleException
60 {
61  public:
62         RegexException(const std::string& regex, const std::string& error)
63                 : ModuleException("Error in regex '" + regex + "': " + error) { }
64
65         RegexException(const std::string& regex, const std::string& error, int offset)
66                 : ModuleException("Error in regex '" + regex + "' at offset " + ConvToStr(offset) + ": " + error) { }
67 };