]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules.cpp
Correctly ignore dummy argument to Version
[user/henk/code/inspircd.git] / src / modules.cpp
index d38496444160842ed986a3b01c071e5ccb719827..ee18112a1597dfaecad4a2bf42883be5af470df4 100644 (file)
@@ -27,8 +27,9 @@
 
 
 // version is a simple class for holding a modules version number
-Version::Version(const std::string &modv, int flags, int api_ver, const std::string& rev)
-: description(modv), version(rev), Flags(flags), API(api_ver)
+template<>
+VersionBase<API_VERSION>::VersionBase(const std::string &modv, int flags, int, const std::string& rev)
+: description(modv), version(rev), Flags(flags)
 {
 }
 
@@ -90,7 +91,7 @@ Module* Event::GetSource()
        return this->source;
 }
 
-char* Event::Send(InspIRCd* SI)
+char* Event::Send()
 {
        FOREACH_MOD(I_OnEvent,OnEvent(this));
        return NULL;
@@ -104,7 +105,12 @@ std::string Event::GetEventID()
 
 // These declarations define the behavours of the base class Module (which does nothing at all)
 
-Module::Module(InspIRCd*) { }
+Module::Module() { }
+bool Module::cull()
+{
+       ServerInstance->GlobalCulls.AddItem(ModuleDLLFactory);
+       return true;
+}
 Module::~Module() { }
 
 ModResult      Module::OnSendSnotice(char &snomask, std::string &type, const std::string &message) { return MOD_RES_PASSTHRU; }
@@ -188,15 +194,13 @@ void              Module::OnChannelDelete(Channel*) { }
 ModResult      Module::OnSetAway(User*, const std::string &) { return MOD_RES_PASSTHRU; }
 ModResult      Module::OnUserList(User*, Channel*) { return MOD_RES_PASSTHRU; }
 ModResult      Module::OnWhoisLine(User*, User*, int&, std::string&) { return MOD_RES_PASSTHRU; }
-void           Module::OnBuildExemptList(MessageType, Channel*, User*, char, CUList&, const std::string&) { }
+void           Module::OnBuildNeighborList(User*, UserChanList&, std::map<User*,bool>&) { }
 void           Module::OnGarbageCollect() { }
-void           Module::OnBufferFlushed(User*) { }
 void           Module::OnText(User*, void*, int, const std::string&, char, CUList&) { }
 void           Module::OnRunTestSuite() { }
 void           Module::OnNamesListItem(User*, Membership*, std::string&, std::string&) { }
 ModResult      Module::OnNumeric(User*, unsigned int, const std::string&) { return MOD_RES_PASSTHRU; }
 void           Module::OnHookIO(StreamSocket*, ListenSocketBase*) { }
-ModResult      Module::OnHostCycle(User*) { return MOD_RES_PASSTHRU; }
 void           Module::OnSendWhoLine(User*, User*, Channel*, std::string&) { }
 
 ModuleManager::ModuleManager() : ModCount(0)
@@ -419,36 +423,26 @@ bool ModuleManager::Load(const char* filename)
        }
 
        Module* newmod = NULL;
-       ircd_module* newhandle = NULL;
+       DLLFactory* newhandle = NULL;
 
        try
        {
                /* This will throw a CoreException if there's a problem loading
                 * the module file or getting a pointer to the init_module symbol.
                 */
-               newhandle = new ircd_module(ServerInstance, modfile, "init_module");
-               newmod = newhandle->CallInit();
+               newhandle = new DLLFactory(modfile, "init_module");
+               if (newhandle->init_func)
+                       newmod = newhandle->init_func();
 
                if (newmod)
                {
                        newmod->ModuleSourceFile = filename_str;
+                       newmod->ModuleDLLFactory = newhandle;
                        Version v = newmod->GetVersion();
 
-                       if (v.API != API_VERSION)
-                       {
-                               DetachAll(newmod);
-                               delete newmod;
-                               delete newhandle;
-                               LastModuleError = "Unable to load " + filename_str + ": Incorrect module API version: " + ConvToStr(v.API) + " (our version: " + ConvToStr(API_VERSION) + ")";
-                               ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
-                               return false;
-                       }
-                       else
-                       {
-                               ServerInstance->Logs->Log("MODULE", DEFAULT,"New module introduced: %s (API version %d, Module version %s)%s", filename, v.API, v.version.c_str(), (!(v.Flags & VF_VENDOR) ? " [3rd Party]" : " [Vendor]"));
-                       }
+                       ServerInstance->Logs->Log("MODULE", DEFAULT,"New module introduced: %s (Module version %s)%s", filename, v.version.c_str(), (!(v.Flags & VF_VENDOR) ? " [3rd Party]" : " [Vendor]"));
 
-                       Modules[filename_str] = std::make_pair(newhandle, newmod);
+                       Modules[filename_str] = newmod;
                }
                else
                {
@@ -458,7 +452,9 @@ bool ModuleManager::Load(const char* filename)
                        return false;
                }
        }
-       /** XXX: Is there anything we can do about this mess? -- Brain */
+       /** XXX: Is there anything we can do about this mess? -- Brain
+        * Yeah, don't use exceptions without RAII. -- Daniel
+        */
        catch (LoadModuleException& modexcept)
        {
                DetachAll(newmod);
@@ -494,7 +490,7 @@ bool ModuleManager::Load(const char* filename)
        }
 
        this->ModCount++;
-       FOREACH_MOD_I(ServerInstance,I_OnLoadModule,OnLoadModule(newmod, filename_str));
+       FOREACH_MOD(I_OnLoadModule,OnLoadModule(newmod, filename_str));
 
        /* We give every module a chance to re-prioritize when we introduce a new one,
         * not just the one thats loading, as the new module could affect the preference
@@ -503,8 +499,8 @@ bool ModuleManager::Load(const char* filename)
        for(int tries = 0; tries < 20; tries++)
        {
                prioritizationState = tries > 0 ? PRIO_STATE_LAST : PRIO_STATE_FIRST;
-               for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
-                       n->second.second->Prioritize();
+               for (std::map<std::string, Module*>::iterator n = Modules.begin(); n != Modules.end(); ++n)
+                       n->second->Prioritize();
 
                if (prioritizationState == PRIO_STATE_LAST)
                        break;
@@ -519,17 +515,17 @@ bool ModuleManager::Load(const char* filename)
 bool ModuleManager::Unload(const char* filename)
 {
        std::string filename_str(filename);
-       std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(filename);
+       std::map<std::string, Module*>::iterator modfind = Modules.find(filename);
 
        if (modfind != Modules.end())
        {
-               if (modfind->second.second->GetVersion().Flags & VF_STATIC)
+               if (modfind->second->GetVersion().Flags & VF_STATIC)
                {
                        LastModuleError = "Module " + filename_str + " not unloadable (marked static)";
                        ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
                        return false;
                }
-               std::pair<int,std::string> intercount = GetInterfaceInstanceCount(modfind->second.second);
+               std::pair<int,std::string> intercount = GetInterfaceInstanceCount(modfind->second);
                if (intercount.first > 0)
                {
                        LastModuleError = "Failed to unload module " + filename_str + ", being used by " + ConvToStr(intercount.first) + " other(s) via interface '" + intercount.second + "'";
@@ -537,11 +533,11 @@ bool ModuleManager::Unload(const char* filename)
                        return false;
                }
 
-               std::vector<ExtensionItem*> items = Extensible::BeginUnregister(modfind->second.second);
+               std::vector<ExtensionItem*> items = Extensible::BeginUnregister(modfind->second);
                /* Give the module a chance to tidy out all its metadata */
                for (chan_hash::iterator c = ServerInstance->chanlist->begin(); c != ServerInstance->chanlist->end(); c++)
                {
-                       modfind->second.second->OnCleanup(TYPE_CHANNEL,c->second);
+                       modfind->second->OnCleanup(TYPE_CHANNEL,c->second);
                        c->second->doUnhookExtensions(items);
                        const UserMembList* users = c->second->GetUsers();
                        for(UserMembCIter mi = users->begin(); mi != users->end(); mi++)
@@ -549,21 +545,21 @@ bool ModuleManager::Unload(const char* filename)
                }
                for (user_hash::iterator u = ServerInstance->Users->clientlist->begin(); u != ServerInstance->Users->clientlist->end(); u++)
                {
-                       modfind->second.second->OnCleanup(TYPE_USER,u->second);
+                       modfind->second->OnCleanup(TYPE_USER,u->second);
                        u->second->doUnhookExtensions(items);
                }
 
                /* Tidy up any dangling resolvers */
-               ServerInstance->Res->CleanResolvers(modfind->second.second);
+               ServerInstance->Res->CleanResolvers(modfind->second);
 
-               FOREACH_MOD_I(ServerInstance,I_OnUnloadModule,OnUnloadModule(modfind->second.second, modfind->first));
+               FOREACH_MOD(I_OnUnloadModule,OnUnloadModule(modfind->second, modfind->first));
 
-               this->DetachAll(modfind->second.second);
+               this->DetachAll(modfind->second);
 
-               ServerInstance->Parser->RemoveCommands(modfind->second.second);
+               ServerInstance->Parser->RemoveCommands(modfind->second);
+               ServerInstance->Modes->RemoveModes(modfind->second);
 
-               delete modfind->second.second;
-               delete modfind->second.first;
+               ServerInstance->GlobalCulls.AddItem(modfind->second);
                Modules.erase(modfind);
 
                ServerInstance->Logs->Log("MODULE", DEFAULT,"Module %s unloaded",filename);
@@ -747,9 +743,9 @@ const std::string& ModuleManager::GetModuleName(Module* m)
 {
        static std::string nothing;
 
-       for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
+       for (std::map<std::string, Module*>::iterator n = Modules.begin(); n != Modules.end(); ++n)
        {
-               if (n->second.second == m)
+               if (n->second == m)
                        return n->first;
        }
 
@@ -860,24 +856,24 @@ bool InspIRCd::AddResolver(Resolver* r, bool cached)
 
 Module* ModuleManager::Find(const std::string &name)
 {
-       std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(name);
+       std::map<std::string, Module*>::iterator modfind = Modules.find(name);
 
        if (modfind == Modules.end())
                return NULL;
        else
-               return modfind->second.second;
+               return modfind->second;
 }
 
 const std::vector<std::string> ModuleManager::GetAllModuleNames(int filter)
 {
        std::vector<std::string> retval;
-       for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator x = Modules.begin(); x != Modules.end(); ++x)
-               if (!filter || (x->second.second->GetVersion().Flags & filter))
+       for (std::map<std::string, Module*>::iterator x = Modules.begin(); x != Modules.end(); ++x)
+               if (!filter || (x->second->GetVersion().Flags & filter))
                        retval.push_back(x->first);
        return retval;
 }
 
-ConfigReader::ConfigReader(InspIRCd* Instance)
+ConfigReader::ConfigReader()
 {
        this->error = 0;
 }
@@ -957,12 +953,12 @@ int ConfigReader::EnumerateValues(const std::string &tag, int index)
        return ServerInstance->Config->ConfVarEnum(tag, index);
 }
 
-FileReader::FileReader(InspIRCd* Instance, const std::string &filename)
+FileReader::FileReader(const std::string &filename)
 {
        LoadFile(filename);
 }
 
-FileReader::FileReader(InspIRCd* Instance)
+FileReader::FileReader()
 {
 }