/* +------------------------------------+ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * * InspIRCd: (C) 2002-2009 InspIRCd Development Team * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ #include "inspircd.h" #include void CullList::Apply() { std::set gone; std::vector queue; queue.reserve(list.size() + 32); for(unsigned int i=0; i < list.size(); i++) { classbase* c = list[i]; if (gone.insert(c).second) { ServerInstance->Logs->Log("CULLLIST", DEBUG, "Deleting %s @%p", typeid(*c).name(), (void*)c); if (c->cull()) queue.push_back(c); } else { ServerInstance->Logs->Log("CULLLIST",DEBUG, "WARNING: Object @%p culled twice!", (void*)c); } } list.clear(); for(unsigned int i=0; i < queue.size(); i++) { classbase* c = queue[i]; delete c; } if (list.size()) { ServerInstance->Logs->Log("CULLLIST",DEBUG, "WARNING: Objects added to cull list in a destructor"); Apply(); } }