From 51ea83c2aa6e9f6e7d0a5006c86c34d1fe15bda0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Wed, 18 Dec 2024 00:00:00 +0000 Subject: [PATCH] [map] Fix non-stop file read exceptions in the Qt application MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Unless the `OMaps/power_manager_config` file has been created on the system by a previous version of OM, or by hand, the current `master` version of the Qt application kept logging the following exception on every single restart: ```` power_management/power_manager.cpp:71 Load(): Cannot read power manager config file. Exception: [...]; READ; No such file or directory ```` This commit fixes that by creating and initializing the file with defaults if it is not found. Signed-off-by: Ferenc Géczi --- map/framework.cpp | 1 + map/power_management/power_manager.cpp | 9 +++++++++ map/power_management/power_manager.hpp | 1 + 3 files changed, 11 insertions(+) diff --git a/map/framework.cpp b/map/framework.cpp index 734ea57059..a34ac7c1ab 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -373,6 +373,7 @@ Framework::Framework(FrameworkParams const & params, bool loadMaps) InitTransliteration(); LOG(LDEBUG, ("Transliterators initialized")); + GetPowerManager().Init(); /// @todo No any real config loading here for now. GetPowerManager().Subscribe(this); GetPowerManager().Load(); diff --git a/map/power_management/power_manager.cpp b/map/power_management/power_manager.cpp index fc3f33cd1f..353ae3a3bc 100644 --- a/map/power_management/power_manager.cpp +++ b/map/power_management/power_manager.cpp @@ -225,4 +225,13 @@ bool PowerManager::Save() Load(); return false; } + +void PowerManager::Init() +{ + FILE* fp = std::fopen(GetConfigPath().c_str(), "r"); + if (fp) + std::fclose(fp); + else + Save(); +} } // namespace power_management diff --git a/map/power_management/power_manager.hpp b/map/power_management/power_manager.hpp index 4d6935631e..c099679e9f 100644 --- a/map/power_management/power_manager.hpp +++ b/map/power_management/power_manager.hpp @@ -40,6 +40,7 @@ public: void Subscribe(Subscriber * subscriber); void UnsubscribeAll(); + void Init(); private: struct Config -- 2.45.3