libtextworker::get_config::GetConfig
#include <get_config.h>
Inherited by libtextworker::UI::ColorManager
Public Functions
Json::Value &
Json::Value &
void
void
void
void
void
void
void
Json::Value
void
Json::Value &
void
void
Public Attributes
std::vector< const char * >
std::vector< const char * >
Json::Value
std::map< Json::Value, Json::Value >
Protected Attributes
const char *
Json::Value
Json::Value
Detailed Description
An user-friendly JSON parser. Changes from the Python implementation:
Changed class methods
No INI support
EFSW (Entropia File System Watcher) for what? You know it.
GetConfig::Get() by default won't write changes to file by default.
Objects to change.
See the documentation in /usage/getconfig.
Public Functions Documentation
function operator[]
Access an object value with its name. If the desired object does not exist:
A NULL section will be created;
The returned thing will be NULL;
function operator[]
Access an object value with its name. If the desired object does not exist:
A NULL section will be created;
The returned thing will be NULL;
function WriteBack
Writes current settings to a file other than the loaded one.
function WriteBack
Writes current settings to the currently loaded file.
function SetAndUpdate
Sets an option and eventually writes it to the loaded file.
function Set
Sets an option to the desired value.
function Restore
Restores backed up settings. The actual file will be modified.
Since: 0.1.4
function Reset
Loads default settings to GetConfig and target file, also restore backup if needed. The file will also be rewritten.
Parameters:
restore (bool = false): Restore backup if any.
function Move
Since: 0.1.3
Moves values around. Maybe to another option, another section->option, or even another file. Below is an example:
section->option1 will be "moved" to section_one->option_one, still the same file.
section->option2 will be "moved" to ~/.config/test.ini as a valud of section_new->opt.
function GetConfig
function GetConfig
Constructor with OEM settings and the main file to use.
function Get
Gets the value of a given option in a given section. Aliases are also used. If defaultValue is blank and defaultsFromOEM is true, the default value will be taken from OEM settings.
Parameters:
section
option
defaultValue
silent Do not raise any exceptions. This means that you also accept null.
defaultsFromOEM If true, the default value will be taken from OEM settings.
Return: A Json::Value.
function Create
function Backup
Parameters:
keys A dictionary containing keys and options to backup
directly_to_keys Backup directly to the
keys
parameter
Backups data. If direct_to_keys is true, the backup will be written directly to the keys parameter.
function AliasYesNo
The same as Alias(from, to), but for booleans.
function Alias
Makes an alias.
Public Attributes Documentation
variable true_values
Aliases for key values that have possitive state (e.g true or yes)
variable false_values
Aliases for key values that have negative state (e.g false or no)
variable backups
Backups.
variable aliases
Aliases.
Protected Attributes Documentation
variable _file
variable OEMSettings
Default settings.
variable JSONreader
Updated on 2025-03-30 at 22:24:10 +0700
Last updated