#include "arc/std/hashtable.h"
#include "arc/std/string.h"
#include <stdint.h>
Go to the source code of this file.
|
| void | ARC_Config_AddKey (ARC_Config *config, ARC_String *type, ARC_ConfigKeyRead keyRead, ARC_ConfigKeyDelete keyDelete) |
| | adds a usable key to ARC_Config
|
| |
| void | ARC_Config_AddKeyCString (ARC_Config *config, const char *type, uint64_t length, ARC_ConfigKeyRead keyRead, ARC_ConfigKeyDelete keyDelete) |
| | adds a key from a cstring
|
| |
| void | ARC_Config_Create (ARC_Config **config) |
| | creates ARC_Config type
|
| |
| void | ARC_Config_Destroy (ARC_Config *config) |
| | destroys ARC_Config type
|
| |
| void | ARC_Config_SetGroup (ARC_Config *config, ARC_String *groupname) |
| | sets current group in config
|
| |
| void | ARC_Config_Get (ARC_Config *config, ARC_String *keyname, void **value) |
| | get a value from a given keyname
|
| |
| void | ARC_Config_FileIO (ARC_Config *config, ARC_String *path, uint8_t command) |
| | handles file io for ARC_Config Type
|
| |
◆ ARC_CONFIG_FILE_IO_LOAD
| #define ARC_CONFIG_FILE_IO_LOAD 0x00 |
commands that can be used in ARC_Config_FileIO
Definition at line 107 of file config.h.
◆ ARC_CONFIG_FILE_IO_UNLOAD
| #define ARC_CONFIG_FILE_IO_UNLOAD 0x01 |
◆ ARC_GROUP_BUCKET_SIZE
| #define ARC_GROUP_BUCKET_SIZE 0x20 |
◆ ARC_GROUP_DATA_BUCKET_SIZE
| #define ARC_GROUP_DATA_BUCKET_SIZE 0x20 |
◆ ARC_KEY_BUCKET_SIZE
| #define ARC_KEY_BUCKET_SIZE 0x20 |
◆ ARC_ConfigKey_AddFunc
| typedef void(* ARC_ConfigKey_AddFunc) (ARC_Config *config) |
external callback to add keys to config
Definition at line 69 of file config.h.
◆ ARC_ConfigKeyDelete
a function to delete a value from a key in ARC_Config
- Parameters
-
| config | ARC_Config that can be used to check for references in data |
| value | pointer of data to be deleted |
- Note
- this function can be NULL if memory does not need to be cleaned for this type if there is an error, set arc_errno
Definition at line 44 of file config.h.
◆ ARC_ConfigKeyRead
a function to read a key from string to a ARC_ConfigTypeTemplate
- Parameters
-
| config | ARC_Config to store data to |
| string | ARC_String of data that is being read in |
| value | value that is read in |
- Note
- use ARC_Config_StoreValue(ARC_Config *config, ARC_String *name, void *value); to store a value to the config if there is an error, set arc_errno
- Returns
- 0 if value not a reference, 1 if value is a reference
Definition at line 33 of file config.h.
◆ ARC_Config_AddKey()
adds a usable key to ARC_Config
- Parameters
-
| config | ARC_Config to add keys to |
| type | string of key type |
| keyRead | function for reading/creating key from string |
| keyDelete | function for deleting stored key |
◆ ARC_Config_AddKeyCString()
adds a key from a cstring
- Parameters
-
| config | ARC_Config to add keys to |
| type | cstring of key type |
| length | length of cstring |
| keyRead | function for reading/creating key from string |
| keyDelete | function for deleting stored key |
◆ ARC_Config_Create()
creates ARC_Config type
- Parameters
-
| config | ARC_Config to initialize |
◆ ARC_Config_Destroy()
◆ ARC_Config_FileIO()
handles file io for ARC_Config Type
- Parameters
-
| config | ARC_Config where io operations will take place |
| path | file path for io |
◆ ARC_Config_Get()
get a value from a given keyname
- Note
- name may be prefaced with <group>:: to specify group
- Parameters
-
| config | ARC_Config to get value from |
| keyname | name of key to get from config |
| value | data retrieved from config |
◆ ARC_Config_SetGroup()
sets current group in config
- Note
- ARC_Config_Get will use this set group
- Parameters
-
| config | ARC_Config we are setting current group in |
| groupname | name of group that will be set |