2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5 * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6 * Copyright (C) 2004-2006 Craig Edwards <craigedwards@brainbox.cc>
7 * Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
9 * This file is part of InspIRCd. InspIRCd is free software: you can
10 * redistribute it and/or modify it under the terms of the GNU General Public
11 * License as published by the Free Software Foundation, version 2.
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #ifdef INSPIRCD_ENABLE_RTTI
30 classbase::classbase()
33 ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "classbase::+ @%p", (void*)this);
36 CullResult classbase::cull()
39 #ifdef INSPIRCD_ENABLE_RTTI
40 ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "classbase::-%s @%p",
41 typeid(*this).name(), (void*)this);
43 ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "classbase::- @%p", (void*)this);
48 classbase::~classbase()
51 ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "classbase::~ @%p", (void*)this);
54 CullResult::CullResult()
58 // This trick detects heap allocations of refcountbase objects
59 static void* last_heap = NULL;
61 void* refcountbase::operator new(size_t size)
63 last_heap = ::operator new(size);
67 void refcountbase::operator delete(void* obj)
71 ::operator delete(obj);
74 refcountbase::refcountbase() : refcount(0)
76 if (this != last_heap)
77 throw CoreException("Reference allocate on the stack!");
80 refcountbase::~refcountbase()
82 if (refcount && ServerInstance)
83 ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "refcountbase::~ @%p with refcount %d",
84 (void*)this, refcount);
87 usecountbase::~usecountbase()
89 if (usecount && ServerInstance)
90 ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "usecountbase::~ @%p with refcount %d",
91 (void*)this, usecount);
94 ServiceProvider::~ServiceProvider()
98 ExtensionItem::ExtensionItem(const std::string& Key, ExtensibleType exttype, Module* mod)
99 : ServiceProvider(mod, Key, SERVICE_METADATA)
104 ExtensionItem::~ExtensionItem()
108 void* ExtensionItem::get_raw(const Extensible* container) const
110 Extensible::ExtensibleStore::const_iterator i =
111 container->extensions.find(const_cast<ExtensionItem*>(this));
112 if (i == container->extensions.end())
117 void* ExtensionItem::set_raw(Extensible* container, void* value)
119 std::pair<Extensible::ExtensibleStore::iterator,bool> rv =
120 container->extensions.insert(std::make_pair(this, value));
127 void* old = rv.first->second;
128 rv.first->second = value;
133 void* ExtensionItem::unset_raw(Extensible* container)
135 Extensible::ExtensibleStore::iterator i = container->extensions.find(this);
136 if (i == container->extensions.end())
138 void* rv = i->second;
139 container->extensions.erase(i);
143 bool ExtensionManager::Register(ExtensionItem* item)
145 return types.insert(std::make_pair(item->name, item)).second;
148 void ExtensionManager::BeginUnregister(Module* module, std::vector<reference<ExtensionItem> >& list)
150 std::map<std::string, reference<ExtensionItem> >::iterator i = types.begin();
151 while (i != types.end())
153 std::map<std::string, reference<ExtensionItem> >::iterator me = i++;
154 ExtensionItem* item = me->second;
155 if (item->creator == module)
157 list.push_back(item);
163 ExtensionItem* ExtensionManager::GetItem(const std::string& name)
165 std::map<std::string, reference<ExtensionItem> >::iterator i = types.find(name);
166 if (i == types.end())
171 void Extensible::doUnhookExtensions(const std::vector<reference<ExtensionItem> >& toRemove)
173 for(std::vector<reference<ExtensionItem> >::const_iterator i = toRemove.begin(); i != toRemove.end(); ++i)
175 ExtensionItem* item = *i;
176 ExtensibleStore::iterator e = extensions.find(item);
177 if (e != extensions.end())
179 item->free(e->second);
185 Extensible::Extensible()
190 CullResult Extensible::cull()
194 return classbase::cull();
197 void Extensible::FreeAllExtItems()
199 for(ExtensibleStore::iterator i = extensions.begin(); i != extensions.end(); ++i)
201 i->first->free(i->second);
206 Extensible::~Extensible()
208 if ((!extensions.empty() || !culled) && ServerInstance)
209 ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "Extensible destructor called without cull @%p", (void*)this);
212 LocalExtItem::LocalExtItem(const std::string& Key, ExtensibleType exttype, Module* mod)
213 : ExtensionItem(Key, exttype, mod)
217 LocalExtItem::~LocalExtItem()
221 std::string LocalExtItem::serialize(SerializeFormat format, const Extensible* container, void* item) const
226 void LocalExtItem::unserialize(SerializeFormat format, Extensible* container, const std::string& value)
230 LocalStringExt::LocalStringExt(const std::string& Key, ExtensibleType exttype, Module* Owner)
231 : SimpleExtItem<std::string>(Key, exttype, Owner)
235 LocalStringExt::~LocalStringExt()
239 std::string LocalStringExt::serialize(SerializeFormat format, const Extensible* container, void* item) const
241 if (item && format == FORMAT_USER)
242 return *static_cast<std::string*>(item);
246 LocalIntExt::LocalIntExt(const std::string& Key, ExtensibleType exttype, Module* mod)
247 : LocalExtItem(Key, exttype, mod)
251 LocalIntExt::~LocalIntExt()
255 std::string LocalIntExt::serialize(SerializeFormat format, const Extensible* container, void* item) const
257 if (format != FORMAT_USER)
259 return ConvToStr(reinterpret_cast<intptr_t>(item));
262 intptr_t LocalIntExt::get(const Extensible* container) const
264 return reinterpret_cast<intptr_t>(get_raw(container));
267 intptr_t LocalIntExt::set(Extensible* container, intptr_t value)
270 return reinterpret_cast<intptr_t>(set_raw(container, reinterpret_cast<void*>(value)));
272 return reinterpret_cast<intptr_t>(unset_raw(container));
275 void LocalIntExt::free(void*)
279 StringExtItem::StringExtItem(const std::string& Key, ExtensibleType exttype, Module* mod)
280 : ExtensionItem(Key, exttype, mod)
284 StringExtItem::~StringExtItem()
288 std::string* StringExtItem::get(const Extensible* container) const
290 return static_cast<std::string*>(get_raw(container));
293 std::string StringExtItem::serialize(SerializeFormat format, const Extensible* container, void* item) const
295 return item ? *static_cast<std::string*>(item) : "";
298 void StringExtItem::unserialize(SerializeFormat format, Extensible* container, const std::string& value)
303 set(container, value);
306 void StringExtItem::set(Extensible* container, const std::string& value)
308 void* old = set_raw(container, new std::string(value));
309 delete static_cast<std::string*>(old);
312 void StringExtItem::unset(Extensible* container)
314 void* old = unset_raw(container);
315 delete static_cast<std::string*>(old);
318 void StringExtItem::free(void* item)
320 delete static_cast<std::string*>(item);
323 ModuleException::ModuleException(const std::string &message, Module* who)
324 : CoreException(message, who ? who->ModuleSourceFile : "A Module")