]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_sqlite3.cpp
/usr/local/include/openssl/pqueue.h:73: error: ISO C++ does not support `long long'
[user/henk/code/inspircd.git] / src / modules / extra / m_sqlite3.cpp
index 44007ea55de48721d6c2b2cfecabe08e40334cfe..6ba5967f372929d7201c73617285cfbdfac2396e 100644 (file)
  * ---------------------------------------------------
  */
 
-#include <string>
-#include <deque>
-#include <map>
+#include "inspircd.h"
 #include <sqlite3.h>
-
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "inspircd.h"
-#include "configreader.h"
 
 #include "m_sqlv2.h"
 
 /* $ModDesc: sqlite3 provider */
-/* $CompileFlags: pkgconfincludes("sqlite3","/sqlite3.h","") */
+/* $CompileFlags: pkgconfversion("sqlite3","3.3") pkgconfincludes("sqlite3","/sqlite3.h","") */
 /* $LinkerFlags: pkgconflibs("sqlite3","/libsqlite3.so","-lsqlite3") */
 /* $ModDep: m_sqlv2.h */
 
@@ -41,7 +36,7 @@ typedef std::deque<SQLite3Result*> ResultQueue;
 ResultNotifier* resultnotify = NULL;
 
 
-class ResultNotifier : public InspSocket
+class ResultNotifier : public BufferedSocket
 {
        Module* mod;
        insp_sockaddr sock_us;
@@ -50,9 +45,9 @@ class ResultNotifier : public InspSocket
  public:
        /* Create a socket on a random port. Let the tcp stack allocate us an available port */
 #ifdef IPV6
-       ResultNotifier(InspIRCd* SI, Module* m) : InspSocket(SI, "::1", 0, true, 3000), mod(m)
+       ResultNotifier(InspIRCd* SI, Module* m) : BufferedSocket(SI, "::1", 0, true, 3000), mod(m)
 #else
-       ResultNotifier(InspIRCd* SI, Module* m) : InspSocket(SI, "127.0.0.1", 0, true, 3000), mod(m)
+       ResultNotifier(InspIRCd* SI, Module* m) : BufferedSocket(SI, "127.0.0.1", 0, true, 3000), mod(m)
 #endif
        {
                uslen = sizeof(sock_us);
@@ -62,9 +57,8 @@ class ResultNotifier : public InspSocket
                }
        }
 
-       ResultNotifier(InspIRCd* SI, Module* m, int newfd, char* ip) : InspSocket(SI, newfd, ip), mod(m)
+       ResultNotifier(InspIRCd* SI, Module* m, int newfd, char* ip) : BufferedSocket(SI, newfd, ip), mod(m)
        {
-               Instance->Log(DEBUG,"Constructor of new socket");
        }
 
        /* Using getsockname and ntohs, we can determine which port number we were allocated */
@@ -79,7 +73,6 @@ class ResultNotifier : public InspSocket
 
        virtual int OnIncomingConnection(int newsock, char* ip)
        {
-               Instance->Log(DEBUG,"Inbound connection on fd %d!",newsock);
                Dispatch();
                return false;
        }
@@ -126,6 +119,11 @@ class SQLite3Result : public SQLresult
                rows++;
        }
 
+       void UpdateAffectedCount()
+       {
+               rows++;
+       }
+
        virtual int Rows()
        {
                return rows;
@@ -264,12 +262,7 @@ class SQLConn : public classbase
        SQLConn(InspIRCd* SI, Module* m, const SQLhost& hi)
        : Instance(SI), mod(m), host(hi)
        {
-               int result;
-               if ((result = OpenDB()) == SQLITE_OK)
-               {
-                       Instance->Log(DEBUG, "Opened sqlite DB: " + host.host);
-               }
-               else
+               if (OpenDB() != SQLITE_OK)
                {
                        Instance->Log(DEFAULT, "WARNING: Could not open DB with id: " + host.id);
                        CloseDB();
@@ -306,7 +299,6 @@ class SQLConn : public classbase
                 *
                 * The +1 is for null-terminating the string for mysql_real_escape_string
                 */
-
                query = new char[req.query.q.length() + (paramlen*2) + 1];
                queryend = query;
 
@@ -339,8 +331,6 @@ class SQLConn : public classbase
                *queryend = 0;
                req.query.q = query;
 
-//             Instance->Log(DEBUG, "<******> Doing query: " + ConvToStr(req.query.q.data()));
-
                SQLite3Result* res = new SQLite3Result(mod, req.GetSource(), req.id);
                res->dbid = host.id;
                res->query = req.query.q;
@@ -349,15 +339,15 @@ class SQLConn : public classbase
                params.push_back(res);
 
                char *errmsg = 0;
+               sqlite3_update_hook(conn, QueryUpdateHook, &params);
                if (sqlite3_exec(conn, req.query.q.data(), QueryResult, &params, &errmsg) != SQLITE_OK)
                {
-                       Instance->Log(DEBUG, "Query failed: " + ConvToStr(errmsg));
+                       std::string error(errmsg);
                        sqlite3_free(errmsg);
                        delete[] query;
                        delete res;
-                       return SQLerror(QSEND_FAIL, ConvToStr(errmsg));
+                       return SQLerror(QSEND_FAIL, error);
                }
-               Instance->Log(DEBUG, "Dispatched query successfully. ID: %d resulting rows %d", req.id, res->Rows());
                delete[] query;
 
                results.push_back(res);
@@ -372,11 +362,22 @@ class SQLConn : public classbase
                return 0;
        }
 
+       static void QueryUpdateHook(void *params, int eventid, char const * azSQLite, char const * azColName, sqlite_int64 rowid)
+       {
+               paramlist* p = (paramlist*)params;
+               ((SQLConn*)(*p)[0])->AffectedReady(((SQLite3Result*)(*p)[1]));
+       }
+
        void ResultReady(SQLite3Result *res, int cols, char **data, char **colnames)
        {
                res->AddRow(cols, data, colnames);
        }
 
+       void AffectedReady(SQLite3Result *res)
+       {
+               res->UpdateAffectedCount();
+       }
+
        int OpenDB()
        {
                return sqlite3_open(host.host.c_str(), &conn);
@@ -408,7 +409,6 @@ class SQLConn : public classbase
                                 * the pointer to NULL. We cannot just cancel the query as the result will still come
                                 * through at some point...and it could get messy if we play with invalid pointers...
                                 */
-                               Instance->Log(DEBUG, "Looks like we're handling a zombie query from a module which unloaded before it got a result..fun. ID: " + ConvToStr(res->GetId()));
                                delete res;
                        }
                        results.pop_front();
@@ -468,19 +468,18 @@ class ModuleSQLite3 : public Module
        ModuleSQLite3(InspIRCd* Me)
        : Module::Module(Me), currid(0)
        {
-               ServerInstance->UseInterface("SQLutils");
+               ServerInstance->Modules->UseInterface("SQLutils");
 
-               if (!ServerInstance->PublishFeature("SQL", this))
+               if (!ServerInstance->Modules->PublishFeature("SQL", this))
                {
                        throw ModuleException("m_sqlite3: Unable to publish feature 'SQL'");
                }
 
                resultnotify = new ResultNotifier(ServerInstance, this);
-               ServerInstance->Log(DEBUG,"Bound notifier to 127.0.0.1:%d",resultnotify->GetPort());
 
                ReadConf();
 
-               ServerInstance->PublishInterface("SQL", this);
+               ServerInstance->Modules->PublishInterface("SQL", this);
        }
 
        virtual ~ModuleSQLite3()
@@ -491,19 +490,15 @@ class ModuleSQLite3 : public Module
                resultnotify->state = I_ERROR;
                resultnotify->OnError(I_ERR_SOCKET);
                resultnotify->ClosePending = true;
-               if (!ServerInstance->SE->DelFd(resultnotify))
-               {
-                       ServerInstance->Log(DEBUG, "m_sqlite3: unable to remove notifier from socket engine!");
-               }
                delete resultnotify;
-               ServerInstance->UnpublishInterface("SQL", this);
-               ServerInstance->UnpublishFeature("SQL");
-               ServerInstance->DoneWithInterface("SQLutils");
+               ServerInstance->Modules->UnpublishInterface("SQL", this);
+               ServerInstance->Modules->UnpublishFeature("SQL");
+               ServerInstance->Modules->DoneWithInterface("SQLutils");
        }
 
        void Implements(char* List)
        {
-               List[I_OnRequest] = List[I_OnRequest] = 1;
+               List[I_OnRequest] = List[I_OnRehash] = 1;
        }
 
        void SendQueue()
@@ -615,7 +610,7 @@ class ModuleSQLite3 : public Module
                }
        }
 
-       virtual void OnRehash(userrec* user, const std::string &parameter)
+       virtual void OnRehash(User* user, const std::string &parameter)
        {
                ReadConf();
        }
@@ -626,7 +621,6 @@ class ModuleSQLite3 : public Module
                {
                        SQLrequest* req = (SQLrequest*)request;
                        ConnMap::iterator iter;
-                       ServerInstance->Log(DEBUG, "Got query: '%s' with %d replacement parameters on id '%s'", req->query.q.c_str(), req->query.p.size(), req->dbid.c_str());
                        if((iter = connections.find(req->dbid)) != connections.end())
                        {
                                req->id = NewID();
@@ -639,7 +633,6 @@ class ModuleSQLite3 : public Module
                                return NULL;
                        }
                }
-               ServerInstance->Log(DEBUG, "Got unsupported API version string: %s", request->GetId());
                return NULL;
        }
 
@@ -663,24 +656,5 @@ void ResultNotifier::Dispatch()
        ((ModuleSQLite3*)mod)->SendQueue();
 }
 
-class ModuleSQLite3Factory : public ModuleFactory
-{
-  public:
-       ModuleSQLite3Factory()
-       {
-       }
+MODULE_INIT(ModuleSQLite3)
 
-       ~ModuleSQLite3Factory()
-       {
-       }
-
-       virtual Module * CreateModule(InspIRCd* Me)
-       {
-               return new ModuleSQLite3(Me);
-       }
-};
-
-extern "C" void * init_module( void )
-{
-       return new ModuleSQLite3Factory;
-}