From dd737891345a7ff80f601ab0c0ba712de5e10943 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 13 Apr 2008 03:28:56 +0000 Subject: Port a bunch of methods of InspIRCd to functors. IsChannel, IsSID, Rehash. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9474 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/server.cpp | 31 +++++++++++-------------------- 1 file changed, 11 insertions(+), 20 deletions(-) (limited to 'src/server.cpp') diff --git a/src/server.cpp b/src/server.cpp index a24a1092f..c713a028f 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -23,7 +23,7 @@ void InspIRCd::SignalHandler(int signal) switch (signal) { case SIGHUP: - Rehash(); + Rehash("due to SIGHUP"); break; case SIGTERM: Exit(signal); @@ -44,33 +44,24 @@ void InspIRCd::Exit(int status) exit (status); } -void InspIRCd::Rehash() +void RehashHandler::Call(const std::string &reason) { - this->SNO->WriteToSnoMask('A', "Rehashing config file %s due to SIGHUP",ServerConfig::CleanFilename(this->ConfigFileName)); - this->RehashUsersAndChans(); - FOREACH_MOD_I(this, I_OnGarbageCollect, OnGarbageCollect()); - if (!this->ConfigThread) + Server->SNO->WriteToSnoMask('A', "Rehashing config file %s %s",ServerConfig::CleanFilename(Server->ConfigFileName), reason.c_str()); + Server->RehashUsersAndChans(); + FOREACH_MOD_I(Server, I_OnGarbageCollect, OnGarbageCollect()); + if (!Server->ConfigThread) { - Config->RehashUser = NULL; - Config->RehashParameter = ""; + Server->Config->RehashUser = NULL; + Server->Config->RehashParameter = ""; - ConfigThread = new ConfigReaderThread(this, false, NULL); - Threads->Create(ConfigThread); + Server->ConfigThread = new ConfigReaderThread(Server, false, NULL); + Server->Threads->Create(Server->ConfigThread); } } void InspIRCd::RehashServer() { - this->SNO->WriteToSnoMask('A', "Rehashing config file"); - this->RehashUsersAndChans(); - if (!this->ConfigThread) - { - Config->RehashUser = NULL; - Config->RehashParameter = ""; - - ConfigThread = new ConfigReaderThread(this, false, NULL); - Threads->Create(ConfigThread); - } + this->Rehash(""); } std::string InspIRCd::GetVersionString() -- cgit v1.2.3