Define simple configuration on INI files.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TheoryOfNekomata 482c2faf41 Update transformer macro 1 year ago
subprojects Initial commit 1 year ago
.gitignore Initial commit 1 year ago
.gitmodules Initial commit 1 year ago
CMakeLists.txt Initial commit 1 year ago
LICENSE Initial commit 1 year ago
README.md Initial commit 1 year ago
ini-config.c Add other int types 1 year ago
ini-config.h Update transformer macro 1 year ago

README.md

Procedure

Subsystem calls its initialize method.

  1. Subsystem copies hardcoded default values to its in-memory state container.
  2. Subsystem defines the available config items it has, and how it is connected to various config sources (i.e. specify its section and key in the config file, as well as supplying command line options connected to this config item).
  3. Subsystem binds the config items with their respective sections and keys in the config file (i.e. correctly point the values to the respective internal state container of the app).
  4. Subsystem retrieves the config file values as well as command line arguments (higher priority) supplied to the app upon invocation.
  5. Subsystem checks if there are some volatile state data to retrieve and syncs it with the state.
  6. Subsystem saves the state to the config file.