JJ: Description from the destination commit:

wip: remake parser

JJ: Description from source commit:
ok parser
This commit is contained in:
swrup 2025-10-13 08:19:38 +02:00
parent b20c558da4
commit 59d636b644
2 changed files with 59 additions and 63 deletions

View file

@ -1,10 +1,17 @@
# comment 1
# foo
# barr
[currency-EUR] [currency-EUR]
enabled = NO enabled = NO
# comment 2
code= "EUR" code= "EUR"
name =euro name =euro
fractional_input_digits = 2 fractional_input_digits = 2
fractional_normal_digits =2 fractional_normal_digits =2
fractional_trailing_zero_digits= 2 fractional_trailing_zero_digits= 2
% comment 3
alt_unit_names = "{"0":"€","3":"k€"}" alt_unit_names = "{"0":"€","3":"k€"}"
# comment 1 % comment 4
# comment 2
[dummy-section]
dummy = "blah"

View file

@ -38,101 +38,90 @@ let duration_value =
let read_file file = In_channel.with_open_bin file In_channel.input_all let read_file file = In_channel.with_open_bin file In_channel.input_all
open Angstrom
type item = { type item = {
key: string; key: string;
value: string; value: string;
} }
type section = { type line =
name: string; | Blank
items: item list; | Comment of string
} | Header of string
| Item of item
type config = section list open Angstrom
let is_eol = function '\n' | '\r' -> true | _ -> false
let is_whitespace = function ' ' | '\t' -> true | _ -> false let is_whitespace = function ' ' | '\t' -> true | _ -> false
let whitespace = skip_while is_whitespace let whitespace = skip_while is_whitespace
let blank_line = whitespace *> end_of_line
let is_eol = function '\n' | '\r' -> true | _ -> false
let comment = let id =
whitespace *> peek_char >>= function
| None -> fail "peek_char end_of_file failure"
| Some c ->
if c = '#' || c = '%' then
skip_while (fun c -> not (is_eol c)) *> end_of_line
else fail "not a comment"
let skip_ignored = skip_many (choice [ comment; blank_line ])
let identifier =
let ident_char = function let ident_char = function
| 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' | '-' -> true | 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' | '-' -> true
| _ -> false | _ -> false
in in
take_while1 ident_char >>| String.lowercase_ascii take_while1 ident_char >>| String.lowercase_ascii
let value = let take_till_end_of_line =
take_till is_eol >>= fun s -> return s <* end_of_line
let blank = whitespace <* end_of_line >>| fun () -> Blank
let comment =
whitespace *> (char '#' <|> char '%') *> take_till_end_of_line >>| fun s ->
Comment s
let header = char '[' *> id <* char ']' <* end_of_line >>| fun s -> Header s
let item_value =
let unquoted_value = let unquoted_value =
take_while1 (fun c -> not (is_whitespace c || is_eol c)) take_while1 (fun c -> not (is_whitespace c || is_eol c))
in in
let quoted_value = let quoted_value =
char '"' *> take_till is_eol >>= fun line_rest -> char '"' *> take_till is_eol >>= fun s ->
match String.rindex_opt line_rest '"' with match String.ends_with ~suffix:"\"" s with
| None -> fail "unterminated quoted value" | false -> fail "invalid quoted value"
| Some i -> | true ->
let value = String.sub line_rest 0 i in let value = String.sub s 0 (String.length s - 1) in
(* consume up to and including the closing quote *) return value
let len = String.length line_rest in
let remaining_len = len - i - 1 in
advance (len - remaining_len) *> return value
in in
whitespace *> (quoted_value <|> unquoted_value) <* skip_ignored quoted_value <|> unquoted_value
let item = let item =
lift2 lift2
(fun key value -> { key; value }) (fun key value -> Item { key; value })
(identifier <* whitespace <* char '=') id
value (whitespace *> char '=' *> whitespace *> item_value)
<* end_of_line
let section_header = char '[' *> identifier <* char ']' let config = many (choice [ blank; comment; header; item ]) <* end_of_input
let section = let pp_line ppf line =
lift2 let open Fmt in
(fun name items -> { name; items }) match line with
(skip_ignored *> section_header) | Blank -> Fmt.nop ppf ()
(many (skip_ignored *> item)) | Comment s -> pf ppf "#%s" s
| Header s -> pf ppf "[%s]" s
| Item { key; value } -> (
match String.contains value '"' || String.contains value ' ' with
| false -> pf ppf "%s = %s" key value
| true -> pf ppf "%s = \"%s\"" key value)
let config : config Angstrom.t = let pp ppf raw_line_l =
many_till (section <* skip_ignored) end_of_input let open Fmt in
pf ppf "%a" (list ~sep:(any "\n") pp_line) raw_line_l
let parse_config s = let parse s =
match parse_string ~consume:Consume.All config s with match parse_string ~consume:All config s with
| Error msg -> Fmt.failwith "config parse error: %s" msg
| Ok v -> v | Ok v -> v
| Error msg -> failwith msg
let pp_item ppf { key; value } =
let open Fmt in
pf ppf "%s = %s" key value
let pp_section ppf (sec : section) =
let open Fmt in
pf ppf "[%s]@\n%a@." sec.name (list ~sep:(any "@\n") pp_item) sec.items
let pp_config ppf (cfg : config) =
let open Fmt in
pf ppf "%a@." (list ~sep:(any "@\n") pp_section) cfg
(* --- --- *)
let () = let () =
let content = read_file "default.config" in let content = read_file "default.config" in
(*Fmt.pr "%s" content;*) (*Fmt.pr "%s" content;*)
let config = parse_config content in let config = parse content in
Fmt.pr "%a" pp_config config; Fmt.pr "%a@." pp config;
() ()