]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_regex_posix.cpp
Merge pull request #92 from Robby-/insp20-headers
[user/henk/code/inspircd.git] / src / modules / extra / m_regex_posix.cpp
index ea016ae64917004462fa71d2478f71b3ce3d5e6d..4cb1a03d57d5f8ae6f52a8cf92e11637f15f994d 100644 (file)
@@ -1,16 +1,23 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+
 #include "inspircd.h"
 #include "m_regex.h"
 #include <sys/types.h>
@@ -71,46 +78,37 @@ public:
        }
 };
 
-class ModuleRegexPOSIX : public Module
+class PosixFactory : public RegexFactory
 {
-private:
+ public:
        bool extended;
+       PosixFactory(Module* m) : RegexFactory(m, "regex/posix") {}
+       Regex* Create(const std::string& expr)
+       {
+               return new POSIXRegex(expr, extended);
+       }
+};
+
+class ModuleRegexPOSIX : public Module
+{
+       PosixFactory ref;
 public:
-       ModuleRegexPOSIX()      {
-               ServerInstance->Modules->PublishInterface("RegularExpression", this);
+       ModuleRegexPOSIX() : ref(this) {
+               ServerInstance->Modules->AddService(ref);
                Implementation eventlist[] = { I_OnRehash };
                ServerInstance->Modules->Attach(eventlist, this, 1);
                OnRehash(NULL);
        }
 
-       virtual Version GetVersion()
+       Version GetVersion()
        {
-               return Version("Regex Provider Module for POSIX Regular Expressions", VF_COMMON | VF_VENDOR);
+               return Version("Regex Provider Module for POSIX Regular Expressions", VF_VENDOR);
        }
 
-       virtual ~ModuleRegexPOSIX()
-       {
-               ServerInstance->Modules->UnpublishInterface("RegularExpression", this);
-       }
-
-       virtual void OnRehash(User* u)
+       void OnRehash(User* u)
        {
                ConfigReader Conf;
-               extended = Conf.ReadFlag("posix", "extended", 0);
-       }
-
-       void OnRequest(Request& request)
-       {
-               if (strcmp("REGEX-NAME", request.id) == 0)
-               {
-                       static_cast<RegexNameRequest&>(request).result = "posix";
-               }
-               else if (strcmp("REGEX", request.id) == 0)
-               {
-                       RegexFactoryRequest& rfr = (RegexFactoryRequest&)request;
-                       std::string rx = rfr.GetRegex();
-                       rfr.result = new POSIXRegex(rx, extended);
-               }
+               ref.extended = Conf.ReadFlag("posix", "extended", 0);
        }
 };