Add generic INI config parser and resolution chain #2
Labels
No labels
coordination/cross-repo
coordination/needed
effort
large
effort
medium
effort
small
meta/duplicate
meta/planning
meta/wontfix
priority
high
priority
low
priority
medium
session
blocker
session
handover
session
next
status
blocked
status
done
status
in-progress
status
review
status
to-go
type
admin
type
bug
type
config
type
deployment
type
docs
type
enhancement
type
feature
type
handover
type
infrastructure
type
installation
type
maintenance
type
migration
type
research
type
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DAW/daw-lua-common#2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Generic INI config parser and config resolution chain for all DAW projects.
Background
An INI parser exists in DAW/furt (src/config_parser.lua) but is tightly
coupled to furt-specific validation (server, api_keys, smtp_default).
Two things need to be split out into daw-lua-common:
Deliverables
src/daw/lua/common/config.luaAPI
config.load()returns a plain key-value table. No validation --that is the responsibility of the calling project.
Rules
parse_file()returns a plain nested table (section -> key -> value)[section])Reference
Resolution chain defined in: DAW/steurjan#25
Existing parser to adapt: DAW/furt (src/config_parser.lua)