]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_sqlutils.cpp
In the grand tradition of huge fucking commits:
[user/henk/code/inspircd.git] / src / modules / extra / m_sqlutils.cpp
index 6ce57db454a81517c0826212fd5179567d6e0089..b53186f71d6b3620e7adace64374f0ad66a0b06b 100644 (file)
@@ -2,46 +2,34 @@
  *       | 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 "inspircd.h"
 #include <sstream>
-#include <string>
-#include <map>
 #include <list>
-
 #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 */
 
-extern InspIRCd* ServerInstance;
-
-typedef std::map<unsigned long, userrec*> IdUserMap;
-typedef std::map<unsigned long, chanrec*> IdChanMap;
+typedef std::map<unsigned long, User*> IdUserMap;
+typedef std::map<unsigned long, Channel*> IdChanMap;
 typedef std::list<unsigned long> AssocIdList;
 
 class ModuleSQLutils : public Module
 {
 private:
-       Server* Srv;
-
        IdUserMap iduser;
        IdChanMap idchan;
 
@@ -49,9 +37,14 @@ public:
        ModuleSQLutils(InspIRCd* Me)
        : Module::Module(Me)
        {
-               log(DEBUG, "%s 'SQLutils' feature", ServerInstance->PublishFeature("SQLutils", this) ? "Published" : "Couldn't publish");
+               ServerInstance->Modules->PublishInterface("SQLutils", this);
        }
 
+       virtual ~ModuleSQLutils()
+       {
+               ServerInstance->Modules->UnpublishInterface("SQLutils", this);
+       }       
+
        void Implements(char* List)
        {
                List[I_OnChannelDelete] = List[I_OnUnloadModule] = List[I_OnRequest] =  List[I_OnUserDisconnect] = 1;
@@ -63,8 +56,6 @@ public:
                {
                        AssociateUser* req = (AssociateUser*)request;
                        
-                       log(DEBUG, "Associated ID %lu with user %s", req->id, req->user->nick);
-                       
                        iduser.insert(std::make_pair(req->id, req->user));
                        
                        AttachList(req->user, req->id);
@@ -72,8 +63,6 @@ public:
                else if(strcmp(SQLUTILAC, request->GetId()) == 0)
                {
                        AssociateChan* req = (AssociateChan*)request;
-
-                       log(DEBUG, "Associated ID %lu with channel %s", req->id, req->chan->name);
                        
                        idchan.insert(std::make_pair(req->id, req->chan));                      
                        
@@ -87,8 +76,6 @@ public:
                         * it is associated with.
                         */
                        
-                       log(DEBUG, "Unassociating ID %lu with all users and channels", req->id);
-                       
                        DoUnAssociate(iduser, req->id);
                        DoUnAssociate(idchan, req->id);
                }
@@ -98,11 +85,8 @@ public:
                        
                        IdUserMap::iterator iter = iduser.find(req->id);
                        
-                       log(DEBUG, "Looking up user associated with ID %lu", req->id);
-                       
                        if(iter != iduser.end())
                        {
-                               log(DEBUG, "Found user %s", iter->second->nick);
                                req->user = iter->second;
                        }
                }
@@ -112,24 +96,16 @@ public:
                        
                        IdChanMap::iterator iter = idchan.find(req->id);
                        
-                       log(DEBUG, "Looking up channel associated with ID %lu", req->id);
-                       
                        if(iter != idchan.end())
                        {
-                               log(DEBUG, "Found channel %s", iter->second->name);
                                req->chan = iter->second;
                        }
                }
-               else
-               {
-                       log(DEBUG, "Got unsupported API version string: %s", request->GetId());
-                       return NULL;
-               }
                
                return SQLUTILSUCCESS;
        }
        
-       virtual void OnUserDisconnect(userrec* user)
+       virtual void OnUserDisconnect(User* user)
        {
                /* A user is disconnecting, first we need to check if they have a list of queries associated with them.
                 * Then, if they do, we need to erase each of them from our IdUserMap (iduser) so when the module that
@@ -147,20 +123,16 @@ public:
                        
                                if(iter != iduser.end())
                                {
-                                       if(iter->second == user)
+                                       if(iter->second != user)
                                        {
-                                               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 User* associated with it in the map (erasing anyway)", user->nick);
                                        }
 
-                                       iduser.erase(iter);                                     
+                                       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);
                                }
                        }
                        
@@ -217,16 +189,10 @@ public:
                         * to the value.
                         */
                        RemoveFromList(iter->second, id);
-                       
-                       log(DEBUG, "Removed query %lu from map and removed references to it on value", id);
-               }
-               else
-               {
-                       log(DEBUG, "Nothing associated with query %lu", id);
                }
        }
        
-       virtual void OnChannelDelete(chanrec* chan)
+       virtual void OnChannelDelete(Channel* chan)
        {
                /* A channel is being destroyed, first we need to check if it has a list of queries associated with it.
                 * Then, if it does, we need to erase each of them from our IdChanMap (idchan) so when the module that
@@ -244,20 +210,15 @@ public:
                        
                                if(iter != idchan.end())
                                {
-                                       if(iter->second == chan)
-                                       {
-                                               log(DEBUG, "Erased query from map associated with dying channnel %s", chan->name);
-                                       }
-                                       else
+                                       if(iter->second != chan)
                                        {
-                                               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 Channel* 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);
                                }
                        }
                        
@@ -268,33 +229,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
-{
- public:
-       ModuleSQLutilsFactory()
-       {
-       }
-       
-       ~ModuleSQLutilsFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(InspIRCd* Me)
-       {
-               return new ModuleSQLutils(Me);
-       }
-};
-
-
-extern "C" void * init_module( void )
-{
-       return new ModuleSQLutilsFactory;
-}
+MODULE_INIT(ModuleSQLutils);