summaryrefslogtreecommitdiff
path: root/util/config.lua
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2025-02-27 23:23:57 +0000
committerubq323 <ubq323@ubq323.website>2025-02-27 23:23:57 +0000
commit5dea96ad915692e9abbc0620930756c51c256179 (patch)
tree881d7680a521474f262bac262f382e778c1fc191 /util/config.lua
parentec4053dea479c3c85d57c447e262a90addcce5c3 (diff)
restructure, refactor, a bit
Diffstat (limited to 'util/config.lua')
-rw-r--r--util/config.lua45
1 files changed, 0 insertions, 45 deletions
diff --git a/util/config.lua b/util/config.lua
deleted file mode 100644
index c19a087..0000000
--- a/util/config.lua
+++ /dev/null
@@ -1,45 +0,0 @@
-local function partial(f,x) return function(...) return f(x,...) end end
-
-local function kv_syntax(block,line)
- local k,v = line:match"^([a-z0-9_-]+)%s*=%s*(.*)$"
- assert(k,"syntax error in kv line: "..line)
- k = k:gsub("-","_")
- block[k]=v
-end
-
-local function tuple_syntax(pattern) return function(block,line)
- local matches = {line:match(pattern)}
- assert(matches[1], "syntax error in tuple line: "..line)
- table.insert(block, matches)
-end end
-
-local schema = {
- pylon = kv_syntax,
- bus = tuple_syntax"^(%S+)%s+(%S+)$",
-}
-
-local function parse_file(file)
- local blocks = {}
- for k in pairs(schema) do blocks[k] = {} end
- local line_handler = function() error("line outside of block") end
-
- for line in file:lines() do
- line = line:gsub(";.*$",""):gsub("^%s*",""):gsub("%s*$","")
- if line == '' then goto next end
-
- local block_type, block_name = line:match"%[%s*(%S+)%s+(%S+)%s*%]"
- if block_type then
- local blocks_of_this_type = assert(blocks[block_type],"no such block type "..block_type)
- local block = {}
- blocks_of_this_type[block_name] = block
- line_handler = partial(schema[block_type], block)
- else
- line_handler(line)
- end
- ::next::
- end
-
- return blocks
-end
-
-return {parse=parse_file}