]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modmanager_static.cpp
Add fine-grained command flood controls
[user/henk/code/inspircd.git] / src / modmanager_static.cpp
1 #include "inspircd.h"
2
3 #ifdef PURE_STATIC
4
5 static std::vector<AllCommandList::fn>* cmdlist = NULL;
6 static std::vector<AllModuleList*>* modlist = NULL;
7
8 AllCommandList::AllCommandList(fn cmd)
9 {
10         if (!cmdlist)
11                 cmdlist = new std::vector<AllCommandList::fn>();
12         cmdlist->push_back(cmd);
13 }
14
15 AllModuleList::AllModuleList(AllModuleList::fn mod, const std::string& Name) : init(mod), name(Name)
16 {
17         if (!modlist)
18                 modlist = new std::vector<AllModuleList*>();
19         modlist->push_back(this);
20 }
21
22 class AllModule : public Module
23 {
24         std::vector<Command*> cmds;
25  public:
26         AllModule()
27         {
28                 if (!cmdlist)
29                         return;
30                 try
31                 {
32                         cmds.reserve(cmdlist->size());
33                         for(std::vector<AllCommandList::fn>::iterator i = cmdlist->begin(); i != cmdlist->end(); ++i)
34                         {
35                                 Command* c = (*i)(this);
36                                 cmds.push_back(c);
37                                 ServerInstance->AddCommand(c);
38                         }
39                 }
40                 catch (...)
41                 {
42                         this->AllModule::~AllModule();
43                         throw;
44                 }
45         }
46
47         ~AllModule()
48         {
49                 for(std::vector<Command*>::iterator i = cmds.begin(); i != cmds.end(); ++i)
50                         delete *i;
51         }
52
53         Version GetVersion()
54         {
55                 return Version("All commands", VF_VENDOR|VF_CORE);
56         }
57 };
58
59 MODULE_INIT(AllModule)
60
61 bool ModuleManager::Load(const char* filename)
62 {
63         return false;
64 }
65
66 bool ModuleManager::CanUnload(Module* mod)
67 {
68         return false;
69 }
70
71 void ModuleManager::DoSafeUnload(Module* mod)
72 {
73 }
74
75 bool ModuleManager::Unload(Module* mod)
76 {
77         return false;
78 }
79
80 void ModuleManager::Reload(Module* mod, HandlerBase1<void, bool>* callback)
81 {
82         callback->Call(false);
83 }
84
85 void ModuleManager::LoadAll()
86 {
87         ModCount = 0;
88         for(std::vector<AllModuleList*>::iterator i = modlist->begin(); i != modlist->end(); ++i)
89         {
90                 try
91                 {
92                         Module* c = (*(**i).init)();
93                         c->ModuleSourceFile = (**i).name;
94                         Modules[(**i).name] = c;
95                         FOREACH_MOD(I_OnLoadModule,OnLoadModule(c));
96                 }
97                 catch (CoreException& modexcept)
98                 {
99                         ServerInstance->Logs->Log("MODULE", DEFAULT, "Unable to load " + (**i).name + ": " + modexcept.GetReason());
100                 }
101         }
102
103         /* We give every module a chance to re-prioritize when we introduce a new one,
104          * not just the one thats loading, as the new module could affect the preference
105          * of others
106          */
107         for(int tries = 0; tries < 20; tries++)
108         {
109                 prioritizationState = tries > 0 ? PRIO_STATE_LAST : PRIO_STATE_FIRST;
110                 for (std::map<std::string, Module*>::iterator n = Modules.begin(); n != Modules.end(); ++n)
111                         n->second->Prioritize();
112
113                 if (prioritizationState == PRIO_STATE_LAST)
114                         break;
115                 if (tries == 19)
116                         ServerInstance->Logs->Log("MODULE", DEFAULT, "Hook priority dependency loop detected");
117         }
118
119         ServerInstance->BuildISupport();
120 }
121
122 void ModuleManager::UnloadAll()
123 {
124         // TODO don't really need this, who cares if we leak on exit?
125 }
126
127 #endif