29 #ifndef GPGFRONTEND_DATAOBJECTOPERATOR_H
30 #define GPGFRONTEND_DATAOBJECTOPERATOR_H
32 #include "core/GpgFunctionObject.h"
33 #include "core/function/GlobalSettingStation.h"
48 std::string SaveDataObj(
const std::string &_key,
const nlohmann::json &value);
50 std::optional<nlohmann::json> GetDataObject(
const std::string &_key);
52 std::optional<nlohmann::json> GetDataObjectByRef(
const std::string &_ref);
59 void init_app_secure_key();
63 std::filesystem::path app_secure_path_ =
64 global_setting_station_.GetAppConfigPath() /
66 std::filesystem::path app_secure_key_path_ =
67 app_secure_path_ /
"app.key";
68 std::filesystem::path app_data_objs_path_ =
69 global_setting_station_.GetAppDataPath() /
"data_objs";
73 std::random_device
rd_;
74 std::mt19937 mt_ = std::mt19937(rd_());
Definition: DataObjectOperator.h:38
std::random_device rd_
Random device.
Definition: DataObjectOperator.h:73
QByteArray hash_key_
Hash key.
Definition: DataObjectOperator.h:75
Definition: GlobalSettingStation.h:45
Definition: GpgFunctionObject.h:150
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
static GlobalSettingStation & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:172
Definition: CoreCommonUtil.cpp:31