[map] Fix non-stop file read exceptions in the Qt application

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 <ferenc.gm@gmail.com>
This commit is contained in:
Ferenc Géczi 2024-12-18 00:00:00 +00:00
parent ea01aeb994
commit 51ea83c2aa
No known key found for this signature in database
GPG key ID: D8C1C26616451E4B
3 changed files with 11 additions and 0 deletions

View file

@ -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();

View file

@ -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

View file

@ -40,6 +40,7 @@ public:
void Subscribe(Subscriber * subscriber);
void UnsubscribeAll();
void Init();
private:
struct Config