]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/inspircd.cpp
Provide a facility for modules to flag a config file completed
[user/henk/code/inspircd.git] / src / inspircd.cpp
index e6d453ed272476fcf1f61b76bd50204cf03a31bd..12a9bf756612fe80febb17afc00e4bdb831fe46e 100644 (file)
@@ -428,33 +428,11 @@ InspIRCd::InspIRCd(int argc, char** argv)
        Config->ClearStack();
 
        this->Modes = new ModeParser(this);
-       this->AddServerName(Config->ServerName);
 
-       /*
-        * Initialise SID/UID.
-        * For an explanation as to exactly how this works, and why it works this way, see GetUID().
-        *   -- w00t
-        */
-       /* Generate SID */
-       size_t sid = 0;
-       if (Config->sid)
-       {
-               sid = Config->sid;
-       }
-       else
-       {
-               for (const char* x = Config->ServerName; *x; ++x)
-                       sid = 5 * sid + *x;
-               for (const char* y = Config->ServerDesc; *y; ++y)
-                       sid = 5 * sid + *y;
-               sid = sid % 999;
-
-               Config->sid = sid;
-       }
-
-       this->InitialiseUID();
-
-       /* set up fake client */
+       /* set up fake client (uid is incorrect at this point,
+         * until after config is read. we set up the user again
+         * at that point 
+         */
        this->FakeClient = new User(this);
        this->FakeClient->SetFd(FD_MAGIC_NUMBER);
 
@@ -498,7 +476,8 @@ InspIRCd::InspIRCd(int argc, char** argv)
        Config->StartDownloads();
        
        /* Now the downloads are started, we monitor them for completion.
-        * On completion, we call Read again with pass = 1
+        * On completion, we call Read again with pass = 1.
+        * NOTE: We really should add a timeout here
         */
 
        while (Config->Downloading())
@@ -507,9 +486,56 @@ InspIRCd::InspIRCd(int argc, char** argv)
                this->BufferedSocketCull();
        }
 
+       printf("\n");
+
+       if (Config->FileErrors)
+       {
+               /* One or more file download/access errors, do not
+                * proceed to second pass
+                */
+               for (std::map<std::string, std::istream*>::iterator x = Config->IncludedFiles.begin(); x != Config->IncludedFiles.end(); ++x)
+               {
+                       if (!x->second)
+                               printf("ERROR: Failed to access the file: %s.\n", x->first.c_str());
+               }
+               printf("Initialisation of configuration failed.\n");
+               Exit(EXIT_STATUS_CONFIG);
+       }
+
        /* We have all the files we can get, initiate pass 1 */
        Config->Read(true, NULL, 1);
 
+        this->AddServerName(Config->ServerName);
+
+        /* set up fake client again this time with the correct uid */
+        delete FakeClient;
+        this->FakeClient = new User(this);
+        this->FakeClient->SetFd(FD_MAGIC_NUMBER);
+
+        /*
+         * Initialise SID/UID.
+         * For an explanation as to exactly how this works, and why it works this way, see GetUID().
+         *   -- w00t
+         */
+        /* Generate SID */
+        size_t sid = 0;
+        if (Config->sid)
+        {
+                sid = Config->sid;
+        }
+        else
+        {
+                for (const char* x = Config->ServerName; *x; ++x)
+                        sid = 5 * sid + *x;
+                for (const char* y = Config->ServerDesc; *y; ++y)
+                        sid = 5 * sid + *y;
+                sid = sid % 999;
+
+                Config->sid = sid;
+        }
+
+        this->InitialiseUID();
+
         // Get XLine to do it's thing.
         this->XLines->CheckELines();
         this->XLines->ApplyLines();