]> git.stg.codes - stg.git/blobdiff - projects/stargazer/main.cpp
Add async pool (to replace EVENT_LOOP).
[stg.git] / projects / stargazer / main.cpp
index 825cba582e344faf7dfc5df230b5b192d7b7b043..3ee229c2aff35a5c15e79f0dcd527b801e4db416 100644 (file)
@@ -29,6 +29,7 @@
 #include "traffcounter_impl.h"
 #include "settings_impl.h"
 #include "pidfile.h"
+#include "async_pool.h"
 #include "eventloop.h"
 #include "stg_timer.h"
 
@@ -282,7 +283,8 @@ int main(int argc, char* argv[])
         return -1;
     }
 
-    auto& loop = EVENT_LOOP_SINGLETON::GetInstance();
+    auto& loop = EVENT_LOOP::instance();
+    STG::AsyncPoolST::start();
 
     StoreLoader storeLoader(settings);
     if (storeLoader.load())
@@ -304,6 +306,7 @@ int main(int argc, char* argv[])
 
     AdminsImpl admins(store);
     TariffsImpl tariffs(&store);
+    tariffs.ReadTariffs();
     ServicesImpl services(&store);
     CorporationsImpl corps(&store);
     UsersImpl users(&settings, &store, &tariffs, services, admins.sysAdmin());
@@ -376,6 +379,7 @@ int main(int argc, char* argv[])
 
     manager.stop();
 
+    STG::AsyncPoolST::stop();
     if (loop.Stop())
         WriteServLog("Event loop not stopped.");