]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/helperfuncs.cpp
Pedantic safe
[user/henk/code/inspircd.git] / src / helperfuncs.cpp
index 66c9f21ba3edee5dbe410bcec5f968eb533d8796..a1d40cc5fabe1932b4e05a7d4cb5bf3958fddead 100644 (file)
  * ---------------------------------------------------
  */
 
+/* $Core: libIRCDhelper */
+
 #include "inspircd.h"
 #include <stdarg.h>
-#include "configreader.h"
-#include "users.h"
-#include "modules.h"
 #include "wildcard.h"
-#include "mode.h"
 #include "xline.h"
 #include "exitcodes.h"
 
@@ -118,9 +116,9 @@ void InspIRCd::WriteOpers(const char* text, ...)
 
 void InspIRCd::WriteOpers(const std::string &text)
 {
-       for (std::vector<userrec*>::iterator i = this->all_opers.begin(); i != this->all_opers.end(); i++)
+       for (std::list<User*>::iterator i = this->all_opers.begin(); i != this->all_opers.end(); i++)
        {
-               userrec* a = *i;
+               User* a = *i;
                if (IS_LOCAL(a) && a->IsModeSet('s'))
                {
                        // send server notices to all with +s
@@ -143,9 +141,9 @@ void InspIRCd::ServerNoticeAll(char* text, ...)
 
        snprintf(formatbuffer,MAXBUF,"NOTICE $%s :%s",Config->ServerName,textbuffer);
 
-       for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
+       for (std::vector<User*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
        {
-               userrec* t = *i;
+               User* t = *i;
                t->WriteServ(std::string(formatbuffer));
        }
 }
@@ -164,9 +162,9 @@ void InspIRCd::ServerPrivmsgAll(char* text, ...)
 
        snprintf(formatbuffer,MAXBUF,"PRIVMSG $%s :%s",Config->ServerName,textbuffer);
 
-       for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
+       for (std::vector<User*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
        {
-               userrec* t = *i;
+               User* t = *i;
                t->WriteServ(std::string(formatbuffer));
        }
 }
@@ -190,9 +188,9 @@ void InspIRCd::WriteMode(const char* modes, int flags, const char* text, ...)
 
        if (flags == WM_AND)
        {
-               for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
+               for (std::vector<User*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
                {
-                       userrec* t = *i;
+                       User* t = *i;
                        bool send_to_user = true;
 
                        for (int n = 0; n < modelen; n++)
@@ -211,9 +209,9 @@ void InspIRCd::WriteMode(const char* modes, int flags, const char* text, ...)
        }
        else if (flags == WM_OR)
        {
-               for (std::vector<userrec*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
+               for (std::vector<User*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
                {
-                       userrec* t = *i;
+                       User* t = *i;
                        bool send_to_user = false;
 
                        for (int n = 0; n < modelen; n++)
@@ -234,7 +232,7 @@ void InspIRCd::WriteMode(const char* modes, int flags, const char* text, ...)
 }
 
 /* Find a user record by nickname and return a pointer to it */
-userrec* InspIRCd::FindNick(const std::string &nick)
+User* InspIRCd::FindNick(const std::string &nick)
 {
        if (!nick.empty() && isdigit(*nick.begin()))
                return FindUUID(nick);
@@ -248,7 +246,7 @@ userrec* InspIRCd::FindNick(const std::string &nick)
        return iter->second;
 }
 
-userrec* InspIRCd::FindNick(const char* nick)
+User* InspIRCd::FindNick(const char* nick)
 {
        if (isdigit(*nick))
                return FindUUID(nick);
@@ -261,7 +259,7 @@ userrec* InspIRCd::FindNick(const char* nick)
        return iter->second;
 }
 
-userrec* InspIRCd::FindNickOnly(const std::string &nick)
+User* InspIRCd::FindNickOnly(const std::string &nick)
 {
        user_hash::iterator iter = clientlist->find(nick);
 
@@ -271,7 +269,7 @@ userrec* InspIRCd::FindNickOnly(const std::string &nick)
        return iter->second;
 }
 
-userrec* InspIRCd::FindNickOnly(const char* nick)
+User* InspIRCd::FindNickOnly(const char* nick)
 {
        user_hash::iterator iter = clientlist->find(nick);
 
@@ -281,12 +279,12 @@ userrec* InspIRCd::FindNickOnly(const char* nick)
        return iter->second;
 }
 
-userrec *InspIRCd::FindUUID(const std::string &uid)
+User *InspIRCd::FindUUID(const std::string &uid)
 {
        return FindUUID(uid.c_str());
 }
 
-userrec *InspIRCd::FindUUID(const char *uid)
+User *InspIRCd::FindUUID(const char *uid)
 {
        user_hash::iterator finduuid = uuidlist->find(uid);
 
@@ -297,7 +295,7 @@ userrec *InspIRCd::FindUUID(const char *uid)
 }
 
 /* find a channel record by channel name and return a pointer to it */
-chanrec* InspIRCd::FindChan(const char* chan)
+Channel* InspIRCd::FindChan(const char* chan)
 {
        chan_hash::iterator iter = chanlist->find(chan);
 
@@ -308,7 +306,7 @@ chanrec* InspIRCd::FindChan(const char* chan)
        return iter->second;
 }
 
-chanrec* InspIRCd::FindChan(const std::string &chan)
+Channel* InspIRCd::FindChan(const std::string &chan)
 {
        chan_hash::iterator iter = chanlist->find(chan);
 
@@ -322,7 +320,7 @@ chanrec* InspIRCd::FindChan(const std::string &chan)
 /* Send an error notice to all users, registered or not */
 void InspIRCd::SendError(const std::string &s)
 {
-       for (std::vector<userrec*>::const_iterator i = this->local_users.begin(); i != this->local_users.end(); i++)
+       for (std::vector<User*>::const_iterator i = this->local_users.begin(); i != this->local_users.end(); i++)
        {
                if ((*i)->registered == REG_ALL)
                {
@@ -364,12 +362,6 @@ int InspIRCd::ModeCount(const char mode)
                return 0;
 }
 
-/* wrapper for readability */
-int InspIRCd::InvisibleUserCount()
-{
-       return ModeCount('i');
-}
-
 /* return how many users are opered */
 int InspIRCd::OperCount()
 {
@@ -395,6 +387,38 @@ long InspIRCd::LocalUserCount()
        return (local_users.size() - this->UnregisteredUserCount());
 }
 
+bool InspIRCd::IsValidMask(const std::string &mask)
+{
+       char* dest = (char*)mask.c_str();
+       int exclamation = 0;
+       int atsign = 0;
+
+       for (char* i = dest; *i; i++)
+       {
+               /* out of range character, bad mask */
+               if (*i < 32 || *i > 126)
+               {
+                       return false;
+               }
+
+               switch (*i)
+               {
+                       case '!':
+                               exclamation++;
+                               break;
+                       case '@':
+                               atsign++;
+                               break;
+               }
+       }
+
+       /* valid masks only have 1 ! and @ */
+       if (exclamation != 1 || atsign != 1)
+               return false;
+
+       return true;
+}
+
 /* true for valid channel name, false else */
 bool InspIRCd::IsChannel(const char *chname)
 {
@@ -483,7 +507,7 @@ bool IsIdentHandler::Call(const char* n)
 }
 
 /* open the proper logfile */
-bool InspIRCd::OpenLog(char** argv, int argc)
+bool InspIRCd::OpenLog(char**, int)
 {
        Config->MyDir = Config->GetFullProgDir();
 
@@ -531,30 +555,7 @@ void InspIRCd::CheckDie()
        }
 }
 
-/* We must load the modules AFTER initializing the socket engine, now */
-void InspIRCd::LoadAllModules()
-{
-       char configToken[MAXBUF];
-       Config->module_names.clear();
-       this->ModCount = -1;
-
-       for (int count = 0; count < Config->ConfValueEnum(Config->config_data, "module"); count++)
-       {
-               Config->ConfValue(Config->config_data, "module", "name", count, configToken, MAXBUF);
-               printf_c("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",configToken);
-               
-               if (!this->LoadModule(configToken))             
-               {
-                       this->Log(DEFAULT,"There was an error loading the module '%s': %s", configToken, this->ModuleError());
-                       printf_c("\n[\033[1;31m*\033[0m] There was an error loading the module '%s': %s\n\n", configToken, this->ModuleError());
-                       Exit(EXIT_STATUS_MODULE);
-               }
-       }
-       printf_c("\nA total of \033[1;32m%d\033[0m module%s been loaded.\n", this->ModCount+1, this->ModCount+1 == 1 ? " has" : "s have");
-       this->Log(DEFAULT,"Total loaded modules: %d", this->ModCount+1);
-}
-
-void InspIRCd::SendWhoisLine(userrec* user, userrec* dest, int numeric, const std::string &text)
+void InspIRCd::SendWhoisLine(User* user, User* dest, int numeric, const std::string &text)
 {
        std::string copy_text = text;
 
@@ -565,7 +566,7 @@ void InspIRCd::SendWhoisLine(userrec* user, userrec* dest, int numeric, const st
                user->WriteServ("%d %s", numeric, copy_text.c_str());
 }
 
-void InspIRCd::SendWhoisLine(userrec* user, userrec* dest, int numeric, const char* format, ...)
+void InspIRCd::SendWhoisLine(User* user, User* dest, int numeric, const char* format, ...)
 {
        char textbuffer[MAXBUF];
        va_list argsPtr;
@@ -576,3 +577,69 @@ void InspIRCd::SendWhoisLine(userrec* user, userrec* dest, int numeric, const ch
        this->SendWhoisLine(user, dest, numeric, std::string(textbuffer));
 }
 
+/** Refactored by Brain, Jun 2007. Much faster with some clever O(1) array
+ * lookups and pointer maths.
+ */
+long InspIRCd::Duration(const std::string &str)
+{
+       unsigned char multiplier = 0;
+       long total = 0;
+       long times = 1;
+       long subtotal = 0;
+
+       /* Iterate each item in the string, looking for number or multiplier */
+       for (std::string::const_reverse_iterator i = str.rbegin(); i != str.rend(); ++i)
+       {
+               /* Found a number, queue it onto the current number */
+               if ((*i >= '0') && (*i <= '9'))
+               {
+                       subtotal = subtotal + ((*i - '0') * times);
+                       times = times * 10;
+               }
+               else
+               {
+                       /* Found something thats not a number, find out how much
+                        * it multiplies the built up number by, multiply the total
+                        * and reset the built up number.
+                        */
+                       if (subtotal)
+                               total += subtotal * duration_multi[multiplier];
+
+                       /* Next subtotal please */
+                       subtotal = 0;
+                       multiplier = *i;
+                       times = 1;
+               }
+       }
+       if (multiplier)
+       {
+               total += subtotal * duration_multi[multiplier];
+               subtotal = 0;
+       }
+       /* Any trailing values built up are treated as raw seconds */
+       return total + subtotal;
+}
+
+bool InspIRCd::ULine(const char* server)
+{
+       if (!server)
+               return false;
+       if (!*server)
+               return true;
+
+       return (Config->ulines.find(server) != Config->ulines.end());
+}
+
+bool InspIRCd::SilentULine(const char* server)
+{
+       std::map<irc::string,bool>::iterator n = Config->ulines.find(server);
+       if (n != Config->ulines.end())
+               return n->second;
+       else return false;
+}
+
+std::string InspIRCd::TimeString(time_t curtime)
+{
+       return std::string(ctime(&curtime),24);
+}
+