Files
tactility/Tactility/Source/bluetooth/BluetoothSettings.cpp
2026-07-04 23:49:19 +02:00

119 lines
3.3 KiB
C++

#include <Tactility/bluetooth/BluetoothSettings.h>
#include <Tactility/file/File.h>
#include <Tactility/file/PropertiesFile.h>
#include <Tactility/Mutex.h>
#include <Tactility/Paths.h>
#include <tactility/log.h>
namespace tt::bluetooth::settings {
constexpr auto* TAG = "BluetoothSettings";
static std::string getSettingsPath() {
return getUserDataPath() + "/settings/bluetooth.settings";
}
constexpr auto* KEY_ENABLE_ON_BOOT = "enableOnBoot";
constexpr auto* KEY_SPP_AUTO_START = "sppAutoStart";
constexpr auto* KEY_MIDI_AUTO_START = "midiAutoStart";
struct BluetoothSettings {
bool enableOnBoot = false;
bool sppAutoStart = false;
bool midiAutoStart = false;
};
static Mutex settings_mutex;
static BluetoothSettings cached;
static bool cached_valid = false;
static bool load(BluetoothSettings& out) {
auto settings_path = getSettingsPath();
if (!file::isFile(settings_path)) {
return false;
}
std::map<std::string, std::string> map;
if (!file::loadPropertiesFile(settings_path, map)) {
return false;
}
auto it = map.find(KEY_ENABLE_ON_BOOT);
if (it == map.end()) return false;
out.enableOnBoot = (it->second == "true");
auto spp_it = map.find(KEY_SPP_AUTO_START);
out.sppAutoStart = (spp_it != map.end() && spp_it->second == "true");
auto midi_it = map.find(KEY_MIDI_AUTO_START);
out.midiAutoStart = (midi_it != map.end() && midi_it->second == "true");
return true;
}
static bool save(const BluetoothSettings& s) {
std::map<std::string, std::string> map;
if (file::isFile(getSettingsPath())) {
file::loadPropertiesFile(getSettingsPath(), map);
}
map[KEY_ENABLE_ON_BOOT] = s.enableOnBoot ? "true" : "false";
map[KEY_SPP_AUTO_START] = s.sppAutoStart ? "true" : "false";
map[KEY_MIDI_AUTO_START] = s.midiAutoStart ? "true" : "false";
auto settings_path = getSettingsPath();
if (!file::findOrCreateParentDirectory(settings_path, 0755)) {
LOG_E(TAG, "Failed to create parent dir for %s", settings_path.c_str());
return false;
}
return file::savePropertiesFile(settings_path, map);
}
static BluetoothSettings getCachedOrLoad() {
settings_mutex.lock();
if (!cached_valid) {
if (!load(cached)) {
cached = BluetoothSettings{};
}
cached_valid = true;
}
auto result = cached;
settings_mutex.unlock();
return result;
}
void setEnableOnBoot(bool enable) {
settings_mutex.lock();
cached.enableOnBoot = enable;
cached_valid = true;
settings_mutex.unlock();
if (!save(cached)) LOG_E(TAG, "Failed to save");
}
bool shouldEnableOnBoot() {
return getCachedOrLoad().enableOnBoot;
}
void setSppAutoStart(bool enable) {
settings_mutex.lock();
cached.sppAutoStart = enable;
cached_valid = true;
settings_mutex.unlock();
if (!save(cached)) LOG_E(TAG, "Failed to save (setSppAutoStart)");
}
bool shouldSppAutoStart() {
return getCachedOrLoad().sppAutoStart;
}
void setMidiAutoStart(bool enable) {
settings_mutex.lock();
cached.midiAutoStart = enable;
cached_valid = true;
settings_mutex.unlock();
if (!save(cached)) LOG_E(TAG, "Failed to save (setMidiAutoStart)");
}
bool shouldMidiAutoStart() {
return getCachedOrLoad().midiAutoStart;
}
} // namespace tt::bluetooth::settings