]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_sqlutils.cpp
Change the SQLutils and SQL providers to also use interfaces for proper unload order...
[user/henk/code/inspircd.git] / src / modules / extra / m_sqlutils.cpp
index bbda7f3ea7e3a404f49a493f0dc472f105793e2f..bec8a4450bfee013e6523647b98e903afd643cb8 100644 (file)
@@ -2,13 +2,9 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2004 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *                <omster@gmail.com>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
 #include "inspircd.h"
 #include "configreader.h"
 
 #include "m_sqlutils.h"
 
 /* $ModDesc: Provides some utilities to SQL client modules, such as mapping queries to users and channels */
+/* $ModDep: m_sqlutils.h */
 
 typedef std::map<unsigned long, userrec*> IdUserMap;
 typedef std::map<unsigned long, chanrec*> IdChanMap;
@@ -38,18 +35,21 @@ typedef std::list<unsigned long> AssocIdList;
 class ModuleSQLutils : public Module
 {
 private:
-       Server* Srv;
-
        IdUserMap iduser;
        IdChanMap idchan;
 
 public:
-       ModuleSQLutils(Server* Me)
-       : Module::Module(Me), Srv(Me)
+       ModuleSQLutils(InspIRCd* Me)
+       : Module::Module(Me)
        {
-               log(DEBUG, "%s 'SQLutils' feature", Srv->PublishFeature("SQLutils", this) ? "Published" : "Couldn't publish");
+               ServerInstance->PublishInterface("SQLutils", this);
        }
 
+       virtual ~ModuleSQLutils()
+       {
+               ServerInstance->UnpublishInterface("SQLutils", this);
+       }       
+
        void Implements(char* List)
        {
                List[I_OnChannelDelete] = List[I_OnUnloadModule] = List[I_OnRequest] =  List[I_OnUserDisconnect] = 1;
@@ -61,7 +61,7 @@ public:
                {
                        AssociateUser* req = (AssociateUser*)request;
                        
-                       log(DEBUG, "Associated ID %lu with user %s", req->id, req->user->nick);
+                       ServerInstance->Log(DEBUG, "Associated ID %lu with user %s", req->id, req->user->nick);
                        
                        iduser.insert(std::make_pair(req->id, req->user));
                        
@@ -71,7 +71,7 @@ public:
                {
                        AssociateChan* req = (AssociateChan*)request;
 
-                       log(DEBUG, "Associated ID %lu with channel %s", req->id, req->chan->name);
+                       ServerInstance->Log(DEBUG, "Associated ID %lu with channel %s", req->id, req->chan->name);
                        
                        idchan.insert(std::make_pair(req->id, req->chan));                      
                        
@@ -85,7 +85,7 @@ public:
                         * it is associated with.
                         */
                        
-                       log(DEBUG, "Unassociating ID %lu with all users and channels", req->id);
+                       ServerInstance->Log(DEBUG, "Unassociating ID %lu with all users and channels", req->id);
                        
                        DoUnAssociate(iduser, req->id);
                        DoUnAssociate(idchan, req->id);
@@ -96,11 +96,11 @@ public:
                        
                        IdUserMap::iterator iter = iduser.find(req->id);
                        
-                       log(DEBUG, "Looking up user associated with ID %lu", req->id);
+                       ServerInstance->Log(DEBUG, "Looking up user associated with ID %lu", req->id);
                        
                        if(iter != iduser.end())
                        {
-                               log(DEBUG, "Found user %s", iter->second->nick);
+                               ServerInstance->Log(DEBUG, "Found user %s", iter->second->nick);
                                req->user = iter->second;
                        }
                }
@@ -110,17 +110,17 @@ public:
                        
                        IdChanMap::iterator iter = idchan.find(req->id);
                        
-                       log(DEBUG, "Looking up channel associated with ID %lu", req->id);
+                       ServerInstance->Log(DEBUG, "Looking up channel associated with ID %lu", req->id);
                        
                        if(iter != idchan.end())
                        {
-                               log(DEBUG, "Found channel %s", iter->second->name);
+                               ServerInstance->Log(DEBUG, "Found channel %s", iter->second->name);
                                req->chan = iter->second;
                        }
                }
                else
                {
-                       log(DEBUG, "Got unsupported API version string: %s", request->GetId());
+                       ServerInstance->Log(DEBUG, "Got unsupported API version string: %s", request->GetId());
                        return NULL;
                }
                
@@ -147,18 +147,18 @@ public:
                                {
                                        if(iter->second == user)
                                        {
-                                               log(DEBUG, "Erased query from map associated with quitting user %s", user->nick);
+                                               ServerInstance->Log(DEBUG, "Erased query from map associated with quitting user %s", user->nick);
                                        }
                                        else
                                        {
-                                               log(DEBUG, "BUG: ID associated with user %s doesn't have the same userrec* associated with it in the map (erasing anyway)", user->nick);
+                                               ServerInstance->Log(DEBUG, "BUG: ID associated with user %s doesn't have the same userrec* associated with it in the map (erasing anyway)", user->nick);
                                        }
 
                                        iduser.erase(iter);                                     
                                }
                                else
                                {
-                                       log(DEBUG, "BUG: user %s was extended with sqlutils_queryids but there was nothing matching in the map", user->nick);
+                                       ServerInstance->Log(DEBUG, "BUG: user %s was extended with sqlutils_queryids but there was nothing matching in the map", user->nick);
                                }
                        }
                        
@@ -216,11 +216,11 @@ public:
                         */
                        RemoveFromList(iter->second, id);
                        
-                       log(DEBUG, "Removed query %lu from map and removed references to it on value", id);
+                       ServerInstance->Log(DEBUG, "Removed query %lu from map and removed references to it on value", id);
                }
                else
                {
-                       log(DEBUG, "Nothing associated with query %lu", id);
+                       ServerInstance->Log(DEBUG, "Nothing associated with query %lu", id);
                }
        }
        
@@ -244,18 +244,18 @@ public:
                                {
                                        if(iter->second == chan)
                                        {
-                                               log(DEBUG, "Erased query from map associated with dying channnel %s", chan->name);
+                                               ServerInstance->Log(DEBUG, "Erased query from map associated with dying channnel %s", chan->name);
                                        }
                                        else
                                        {
-                                               log(DEBUG, "BUG: ID associated with channel %s doesn't have the same chanrec* associated with it in the map (erasing anyway)", chan->name);
+                                               ServerInstance->Log(DEBUG, "BUG: ID associated with channel %s doesn't have the same chanrec* associated with it in the map (erasing anyway)", chan->name);
                                        }
 
                                        idchan.erase(iter);                                     
                                }
                                else
                                {
-                                       log(DEBUG, "BUG: channel %s was extended with sqlutils_queryids but there was nothing matching in the map", chan->name);
+                                       ServerInstance->Log(DEBUG, "BUG: channel %s was extended with sqlutils_queryids but there was nothing matching in the map", chan->name);
                                }
                        }
                        
@@ -266,12 +266,9 @@ public:
                        
        virtual Version GetVersion()
        {
-               return Version(1, 0, 0, 0, VF_STATIC|VF_VENDOR|VF_SERVICEPROVIDER);
+               return Version(1, 1, 0, 0, VF_VENDOR|VF_SERVICEPROVIDER, API_VERSION);
        }
        
-       virtual ~ModuleSQLutils()
-       {
-       }       
 };
 
 class ModuleSQLutilsFactory : public ModuleFactory
@@ -285,7 +282,7 @@ class ModuleSQLutilsFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleSQLutils(Me);
        }