]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_regex_pcre.cpp
095513782a8693c0514a2d486fb539cfe9b42426
[user/henk/code/inspircd.git] / src / modules / extra / m_regex_pcre.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include <pcre.h>
16 #include "m_regex.h"
17
18 /* $ModDesc: Regex Provider Module for PCRE */
19 /* $ModDep: m_regex.h */
20 /* $CompileFlags: exec("pcre-config --cflags") */
21 /* $LinkerFlags: exec("pcre-config --libs") rpath("pcre-config --libs") -lpcre */
22
23 #ifdef WINDOWS
24 #pragma comment(lib, "pcre.lib")
25 #endif
26
27 class PCREException : public ModuleException
28 {
29 public:
30         PCREException(const std::string& rx, const std::string& error, int erroffset)
31                 : ModuleException(std::string("Error in regex ") + rx + " at offset " + ConvToStr(erroffset) + ": " + error)
32         {
33         }
34 };
35
36 class PCRERegex : public Regex
37 {
38 private:
39         pcre* regex;
40
41 public:
42         PCRERegex(const std::string& rx) : Regex(rx)
43         {
44                 const char* error;
45                 int erroffset;
46                 regex = pcre_compile(rx.c_str(), 0, &error, &erroffset, NULL);
47                 if (!regex)
48                 {
49                         ServerInstance->Logs->Log("REGEX", DEBUG, "pcre_compile failed: /%s/ [%d] %s", rx.c_str(), erroffset, error);
50                         throw PCREException(rx, error, erroffset);
51                 }
52         }
53
54         virtual ~PCRERegex()
55         {
56                 pcre_free(regex);
57         }
58
59         virtual bool Matches(const std::string& text)
60         {
61                 if (pcre_exec(regex, NULL, text.c_str(), text.length(), 0, 0, NULL, 0) > -1)
62                 {
63                         // Bang. :D
64                         return true;
65                 }
66                 return false;
67         }
68 };
69
70 class PCREFactory : public RegexFactory
71 {
72  public:
73         PCREFactory(Module* m) : RegexFactory(m, "regex/pcre") {}
74         Regex* Create(const std::string& expr)
75         {
76                 return new PCRERegex(expr);
77         }
78 };
79
80 class ModuleRegexPCRE : public Module
81 {
82 public:
83         PCREFactory ref;
84         ModuleRegexPCRE() : ref(this) {
85                 ServerInstance->Modules->AddService(ref);
86         }
87
88         Version GetVersion()
89         {
90                 return Version("Regex Provider Module for PCRE", VF_VENDOR);
91         }
92 };
93
94 MODULE_INIT(ModuleRegexPCRE)