mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 04:20:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			120 lines
		
	
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#define _SILENCE_STDEXT_ARR_ITERS_DEPRECATION_WARNING
 | 
						|
 | 
						|
#include <scwx/qt/config/radar_site.hpp>
 | 
						|
#include <scwx/qt/main/main_window.hpp>
 | 
						|
#include <scwx/qt/main/versions.hpp>
 | 
						|
#include <scwx/qt/manager/radar_product_manager.hpp>
 | 
						|
#include <scwx/qt/manager/resource_manager.hpp>
 | 
						|
#include <scwx/qt/manager/settings_manager.hpp>
 | 
						|
#include <scwx/qt/settings/general_settings.hpp>
 | 
						|
#include <scwx/qt/types/qt_types.hpp>
 | 
						|
#include <scwx/qt/ui/setup/setup_wizard.hpp>
 | 
						|
#include <scwx/network/cpr.hpp>
 | 
						|
#include <scwx/util/logger.hpp>
 | 
						|
#include <scwx/util/threads.hpp>
 | 
						|
 | 
						|
#include <aws/core/Aws.h>
 | 
						|
#include <boost/asio.hpp>
 | 
						|
#include <fmt/format.h>
 | 
						|
#include <spdlog/spdlog.h>
 | 
						|
#include <QApplication>
 | 
						|
#include <QTranslator>
 | 
						|
 | 
						|
static const std::string logPrefix_ = "scwx::main";
 | 
						|
static const auto        logger_    = scwx::util::Logger::Create(logPrefix_);
 | 
						|
 | 
						|
int main(int argc, char* argv[])
 | 
						|
{
 | 
						|
   // Initialize logger
 | 
						|
   scwx::util::Logger::Initialize();
 | 
						|
   spdlog::set_level(spdlog::level::debug);
 | 
						|
 | 
						|
   QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, true);
 | 
						|
 | 
						|
   QApplication a(argc, argv);
 | 
						|
 | 
						|
   QCoreApplication::setApplicationName("Supercell Wx");
 | 
						|
   scwx::network::cpr::SetUserAgent(
 | 
						|
      fmt::format("SupercellWx/{}", scwx::qt::main::kVersionString_));
 | 
						|
 | 
						|
   // Enable internationalization support
 | 
						|
   QTranslator translator;
 | 
						|
   if (translator.load(QLocale(), "scwx", "_", ":/i18n"))
 | 
						|
   {
 | 
						|
      QCoreApplication::installTranslator(&translator);
 | 
						|
   }
 | 
						|
 | 
						|
   // Start the io_context main loop
 | 
						|
   boost::asio::io_context& ioContext = scwx::util::io_context();
 | 
						|
   auto                     work      = boost::asio::make_work_guard(ioContext);
 | 
						|
   boost::asio::thread_pool threadPool {4};
 | 
						|
   boost::asio::post(threadPool,
 | 
						|
                     [&]()
 | 
						|
                     {
 | 
						|
                        while (true)
 | 
						|
                        {
 | 
						|
                           try
 | 
						|
                           {
 | 
						|
                              ioContext.run();
 | 
						|
                              break; // run() exited normally
 | 
						|
                           }
 | 
						|
                           catch (std::exception& ex)
 | 
						|
                           {
 | 
						|
                              // Log exception and continue
 | 
						|
                              logger_->error(ex.what());
 | 
						|
                           }
 | 
						|
                        }
 | 
						|
                     });
 | 
						|
 | 
						|
   // Initialize AWS SDK
 | 
						|
   Aws::SDKOptions awsSdkOptions;
 | 
						|
   Aws::InitAPI(awsSdkOptions);
 | 
						|
 | 
						|
   // Initialize application
 | 
						|
   scwx::qt::config::RadarSite::Initialize();
 | 
						|
   scwx::qt::manager::SettingsManager::Instance().Initialize();
 | 
						|
 | 
						|
   // Theme
 | 
						|
   auto uiStyle = scwx::qt::types::GetUiStyle(
 | 
						|
      scwx::qt::settings::GeneralSettings::Instance().theme().GetValue());
 | 
						|
   if (uiStyle != scwx::qt::types::UiStyle::Default)
 | 
						|
   {
 | 
						|
      QApplication::setStyle(
 | 
						|
         QString::fromStdString(scwx::qt::types::GetUiStyleName(uiStyle)));
 | 
						|
   }
 | 
						|
 | 
						|
   // Run initial setup if required
 | 
						|
   if (scwx::qt::ui::setup::SetupWizard::IsSetupRequired())
 | 
						|
   {
 | 
						|
      scwx::qt::ui::setup::SetupWizard w;
 | 
						|
      w.show();
 | 
						|
      a.exec();
 | 
						|
   }
 | 
						|
 | 
						|
   // Run further application initialization
 | 
						|
   scwx::qt::manager::ResourceManager::Initialize();
 | 
						|
 | 
						|
   // Run Qt main loop
 | 
						|
   int result;
 | 
						|
   {
 | 
						|
      scwx::qt::main::MainWindow w;
 | 
						|
      w.show();
 | 
						|
      result = a.exec();
 | 
						|
   }
 | 
						|
 | 
						|
   // Deinitialize application
 | 
						|
   scwx::qt::manager::RadarProductManager::Cleanup();
 | 
						|
 | 
						|
   // Gracefully stop the io_context main loop
 | 
						|
   work.reset();
 | 
						|
   threadPool.join();
 | 
						|
 | 
						|
   // Shutdown application
 | 
						|
   scwx::qt::manager::ResourceManager::Shutdown();
 | 
						|
   scwx::qt::manager::SettingsManager::Instance().Shutdown();
 | 
						|
 | 
						|
   // Shutdown AWS SDK
 | 
						|
   Aws::ShutdownAPI(awsSdkOptions);
 | 
						|
 | 
						|
   return result;
 | 
						|
}
 |