2023-02-28 01:15:26 +00:00
|
|
|
// AUTOGENERATED COPYRIGHT HEADER START
|
|
|
|
// Copyright (C) 2020-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
|
|
|
|
// AUTOGENERATED COPYRIGHT HEADER END
|
2020-04-22 20:58:33 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "common.hpp"
|
2022-08-29 10:29:44 +00:00
|
|
|
|
|
|
|
#include "warning-disable.hpp"
|
2020-04-22 20:58:33 +00:00
|
|
|
#include <filesystem>
|
|
|
|
#include <memory>
|
2022-09-18 17:53:11 +00:00
|
|
|
#include <new>
|
2022-08-29 10:29:44 +00:00
|
|
|
#include "warning-enable.hpp"
|
2020-04-22 20:58:33 +00:00
|
|
|
|
|
|
|
namespace streamfx {
|
|
|
|
class configuration {
|
2022-09-18 17:53:11 +00:00
|
|
|
std::filesystem::path _config_path;
|
|
|
|
|
2020-04-22 20:58:33 +00:00
|
|
|
std::shared_ptr<obs_data_t> _data;
|
|
|
|
|
2022-09-18 17:53:11 +00:00
|
|
|
#if __cpp_lib_hardware_interference_size >= 201603
|
|
|
|
alignas(std::hardware_destructive_interference_size)
|
|
|
|
#endif
|
|
|
|
std::mutex _task_lock;
|
|
|
|
|
|
|
|
std::shared_ptr<streamfx::util::threadpool::task> _save_task;
|
2020-04-22 20:58:33 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
~configuration();
|
|
|
|
configuration();
|
|
|
|
|
2022-09-18 17:53:11 +00:00
|
|
|
public:
|
|
|
|
void save();
|
|
|
|
|
2020-04-22 20:58:33 +00:00
|
|
|
public:
|
|
|
|
std::shared_ptr<obs_data_t> get();
|
|
|
|
|
|
|
|
uint64_t version();
|
|
|
|
|
|
|
|
bool is_different_version();
|
|
|
|
|
|
|
|
public /* Singleton */:
|
|
|
|
static void initialize();
|
|
|
|
static void finalize();
|
|
|
|
static std::shared_ptr<streamfx::configuration> instance();
|
|
|
|
};
|
|
|
|
} // namespace streamfx
|