2021-09-24 20:13:52 +02:00
|
|
|
// Copyright (c) 2021 Lars Pontoppidan. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
module toml
|
|
|
|
|
|
|
|
import toml.ast
|
|
|
|
import toml.input
|
|
|
|
import toml.scanner
|
|
|
|
import toml.parser
|
|
|
|
|
|
|
|
// Null is used in sumtype checks as a "default" value when nothing else is possible.
|
|
|
|
pub struct Null {
|
|
|
|
}
|
|
|
|
|
2021-11-18 12:27:59 +01:00
|
|
|
// DateTime is the representation of an RFC 3339 datetime string.
|
2021-11-18 06:44:24 +01:00
|
|
|
pub struct DateTime {
|
|
|
|
datetime string
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (dt DateTime) str() string {
|
|
|
|
return dt.datetime
|
|
|
|
}
|
|
|
|
|
2021-11-18 12:27:59 +01:00
|
|
|
// Date is the representation of an RFC 3339 date-only string.
|
2021-11-18 06:44:24 +01:00
|
|
|
pub struct Date {
|
|
|
|
date string
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (d Date) str() string {
|
|
|
|
return d.date
|
|
|
|
}
|
|
|
|
|
|
|
|
// Time is the representation of an RFC 3339 time-only string.
|
|
|
|
pub struct Time {
|
|
|
|
time string
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (t Time) str() string {
|
|
|
|
return t.time
|
|
|
|
}
|
|
|
|
|
2021-09-24 20:13:52 +02:00
|
|
|
// Config is used to configure the toml parser.
|
|
|
|
// Only one of the fields `text` or `file_path`, is allowed to be set at time of configuration.
|
|
|
|
pub struct Config {
|
|
|
|
pub:
|
|
|
|
text string // TOML text
|
|
|
|
file_path string // '/path/to/file.toml'
|
|
|
|
parse_comments bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// Doc is a representation of a TOML document.
|
|
|
|
// A document can be constructed from a `string` buffer or from a file path
|
|
|
|
pub struct Doc {
|
|
|
|
pub:
|
|
|
|
ast &ast.Root
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse_file parses the TOML file in `path`.
|
|
|
|
pub fn parse_file(path string) ?Doc {
|
|
|
|
input_config := input.Config{
|
|
|
|
file_path: path
|
|
|
|
}
|
|
|
|
scanner_config := scanner.Config{
|
|
|
|
input: input_config
|
|
|
|
}
|
|
|
|
parser_config := parser.Config{
|
|
|
|
scanner: scanner.new_scanner(scanner_config) ?
|
|
|
|
}
|
|
|
|
mut p := parser.new_parser(parser_config)
|
|
|
|
ast := p.parse() ?
|
|
|
|
return Doc{
|
|
|
|
ast: ast
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse_text parses the TOML document provided in `text`.
|
|
|
|
pub fn parse_text(text string) ?Doc {
|
|
|
|
input_config := input.Config{
|
|
|
|
text: text
|
|
|
|
}
|
|
|
|
scanner_config := scanner.Config{
|
|
|
|
input: input_config
|
|
|
|
}
|
|
|
|
parser_config := parser.Config{
|
|
|
|
scanner: scanner.new_scanner(scanner_config) ?
|
|
|
|
}
|
|
|
|
mut p := parser.new_parser(parser_config)
|
|
|
|
ast := p.parse() ?
|
|
|
|
return Doc{
|
|
|
|
ast: ast
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-26 06:34:47 +02:00
|
|
|
// parse parses the TOML document provided in `toml`.
|
|
|
|
// parse automatically try to determine if the type of `toml` is a file or text.
|
|
|
|
// For explicit parsing of input types see `parse_file` or `parse_text`.
|
2021-09-24 20:13:52 +02:00
|
|
|
pub fn parse(toml string) ?Doc {
|
2021-09-29 13:53:06 +02:00
|
|
|
mut input_config := input.auto_config(toml) ?
|
2021-09-24 20:13:52 +02:00
|
|
|
scanner_config := scanner.Config{
|
|
|
|
input: input_config
|
|
|
|
}
|
|
|
|
parser_config := parser.Config{
|
|
|
|
scanner: scanner.new_scanner(scanner_config) ?
|
|
|
|
}
|
|
|
|
mut p := parser.new_parser(parser_config)
|
|
|
|
ast := p.parse() ?
|
|
|
|
return Doc{
|
|
|
|
ast: ast
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-18 12:27:59 +01:00
|
|
|
// parse_dotted_key converts `key` string to an array of strings.
|
|
|
|
// parse_dotted_key preserves strings delimited by both `"` and `'`.
|
|
|
|
pub fn parse_dotted_key(key string) ?[]string {
|
|
|
|
mut out := []string{}
|
|
|
|
mut buf := ''
|
|
|
|
mut in_string := false
|
|
|
|
mut delim := byte(` `)
|
|
|
|
for ch in key {
|
|
|
|
if ch in [`"`, `'`] {
|
|
|
|
if !in_string {
|
|
|
|
delim = ch
|
|
|
|
}
|
|
|
|
in_string = !in_string && ch == delim
|
|
|
|
if !in_string {
|
|
|
|
if buf != '' && buf != ' ' {
|
|
|
|
out << buf
|
|
|
|
}
|
|
|
|
buf = ''
|
|
|
|
delim = ` `
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
buf += ch.ascii_str()
|
|
|
|
if !in_string && ch == `.` {
|
|
|
|
if buf != '' && buf != ' ' {
|
2021-11-25 15:51:54 +01:00
|
|
|
buf = buf[..buf.len - 1]
|
|
|
|
if buf != '' && buf != ' ' {
|
|
|
|
out << buf
|
|
|
|
}
|
2021-11-18 12:27:59 +01:00
|
|
|
}
|
|
|
|
buf = ''
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if buf != '' && buf != ' ' {
|
|
|
|
out << buf
|
|
|
|
}
|
|
|
|
if in_string {
|
|
|
|
return error(@FN +
|
|
|
|
': could not parse key, missing closing string delimiter `$delim.ascii_str()`')
|
|
|
|
}
|
|
|
|
return out
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
|
2021-11-24 19:39:22 +01:00
|
|
|
// parse_array_key converts `key` string to a key and index part.
|
|
|
|
fn parse_array_key(key string) (string, int) {
|
|
|
|
mut index := -1
|
|
|
|
mut k := key
|
|
|
|
if k.contains('[') {
|
|
|
|
index = k.all_after('[').all_before(']').int()
|
|
|
|
if k.starts_with('[') {
|
|
|
|
k = '' // k.all_after(']')
|
|
|
|
} else {
|
|
|
|
k = k.all_before('[')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return k, index
|
|
|
|
}
|
|
|
|
|
2021-11-15 18:00:09 +01:00
|
|
|
// to_any converts the `Doc` to toml.Any type.
|
|
|
|
pub fn (d Doc) to_any() Any {
|
2021-11-25 11:33:54 +01:00
|
|
|
return ast_to_any(d.ast.table)
|
2021-11-15 18:00:09 +01:00
|
|
|
}
|
|
|
|
|
2021-12-03 22:07:44 +01:00
|
|
|
// reflect returns `T` with `T.<field>`'s value set to the
|
|
|
|
// value of any 1st level TOML key by the same name.
|
2021-12-03 11:40:46 +01:00
|
|
|
pub fn (d Doc) reflect<T>() T {
|
|
|
|
return d.to_any().reflect<T>()
|
|
|
|
}
|
|
|
|
|
2021-09-24 20:13:52 +02:00
|
|
|
// value queries a value from the TOML document.
|
2021-11-20 18:45:17 +01:00
|
|
|
// `key` supports a small query syntax scheme:
|
|
|
|
// Maps can be queried in "dotted" form e.g. `a.b.c`.
|
|
|
|
// quoted keys are supported as `a."b.c"` or `a.'b.c'`.
|
2021-11-24 19:39:22 +01:00
|
|
|
// Arrays can be queried with `a[0].b[1].[2]`.
|
2021-09-24 20:13:52 +02:00
|
|
|
pub fn (d Doc) value(key string) Any {
|
2021-11-18 12:27:59 +01:00
|
|
|
key_split := parse_dotted_key(key) or { return Any(Null{}) }
|
2021-11-20 18:45:17 +01:00
|
|
|
return d.value_(d.ast.table, key_split)
|
2021-11-13 10:17:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// value_ returns the value found at `key` in the map `values` as `Any` type.
|
2021-11-20 18:45:17 +01:00
|
|
|
fn (d Doc) value_(value ast.Value, key []string) Any {
|
|
|
|
assert key.len > 0
|
|
|
|
mut ast_value := ast.Value(ast.Null{})
|
2021-11-24 19:39:22 +01:00
|
|
|
k, index := parse_array_key(key[0])
|
|
|
|
|
2021-11-20 18:45:17 +01:00
|
|
|
if k == '' {
|
|
|
|
a := value as []ast.Value
|
|
|
|
ast_value = a[index] or { return Any(Null{}) }
|
|
|
|
}
|
|
|
|
|
2021-11-13 10:17:35 +01:00
|
|
|
if value is map[string]ast.Value {
|
2021-11-20 18:45:17 +01:00
|
|
|
ast_value = value[k] or { return Any(Null{}) }
|
|
|
|
if index > -1 {
|
|
|
|
a := ast_value as []ast.Value
|
|
|
|
ast_value = a[index] or { return Any(Null{}) }
|
2021-11-13 10:17:35 +01:00
|
|
|
}
|
2021-11-20 18:45:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if key.len <= 1 {
|
2021-11-25 11:33:54 +01:00
|
|
|
return ast_to_any(ast_value)
|
2021-11-20 18:45:17 +01:00
|
|
|
}
|
2021-11-24 19:39:22 +01:00
|
|
|
match ast_value {
|
|
|
|
map[string]ast.Value, []ast.Value {
|
|
|
|
return d.value_(ast_value, key[1..])
|
|
|
|
}
|
|
|
|
else {
|
2021-11-25 11:33:54 +01:00
|
|
|
return ast_to_any(value)
|
2021-11-24 19:39:22 +01:00
|
|
|
}
|
2021-11-13 10:17:35 +01:00
|
|
|
}
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
|
2021-11-18 06:44:24 +01:00
|
|
|
// ast_to_any converts `from` ast.Value to toml.Any value.
|
2021-11-25 11:33:54 +01:00
|
|
|
pub fn ast_to_any(value ast.Value) Any {
|
2021-09-24 20:13:52 +02:00
|
|
|
match value {
|
2021-11-18 06:44:24 +01:00
|
|
|
ast.Date {
|
|
|
|
return Any(Date{value.text})
|
|
|
|
}
|
|
|
|
ast.Time {
|
|
|
|
return Any(Time{value.text})
|
|
|
|
}
|
|
|
|
ast.DateTime {
|
|
|
|
return Any(DateTime{value.text})
|
|
|
|
}
|
2021-09-24 20:13:52 +02:00
|
|
|
ast.Quoted {
|
2021-11-18 06:44:24 +01:00
|
|
|
return Any(value.text)
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
ast.Number {
|
2021-11-25 11:33:54 +01:00
|
|
|
val_text := value.text
|
|
|
|
if val_text == 'inf' || val_text == '+inf' || val_text == '-inf' {
|
|
|
|
// NOTE values taken from strconv
|
|
|
|
if !val_text.starts_with('-') {
|
|
|
|
// strconv.double_plus_infinity
|
|
|
|
return Any(u64(0x7FF0000000000000))
|
|
|
|
} else {
|
|
|
|
// strconv.double_minus_infinity
|
|
|
|
return Any(u64(0xFFF0000000000000))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if val_text == 'nan' || val_text == '+nan' || val_text == '-nan' {
|
|
|
|
return Any('nan')
|
|
|
|
}
|
|
|
|
if !val_text.starts_with('0x')
|
|
|
|
&& (val_text.contains('.') || val_text.to_lower().contains('e')) {
|
2021-11-18 18:46:19 +01:00
|
|
|
return Any(value.f64())
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
2021-11-18 18:46:19 +01:00
|
|
|
return Any(value.i64())
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
ast.Bool {
|
|
|
|
str := (value as ast.Bool).text
|
|
|
|
if str == 'true' {
|
|
|
|
return Any(true)
|
|
|
|
}
|
|
|
|
return Any(false)
|
|
|
|
}
|
2021-09-25 19:31:02 +02:00
|
|
|
map[string]ast.Value {
|
|
|
|
m := (value as map[string]ast.Value)
|
2021-09-24 20:13:52 +02:00
|
|
|
mut am := map[string]Any{}
|
|
|
|
for k, v in m {
|
2021-11-25 11:33:54 +01:00
|
|
|
am[k] = ast_to_any(v)
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
return am
|
|
|
|
// return d.get_map_value(m, key_split[1..].join('.'))
|
|
|
|
}
|
2021-09-25 19:31:02 +02:00
|
|
|
[]ast.Value {
|
|
|
|
a := (value as []ast.Value)
|
2021-09-24 20:13:52 +02:00
|
|
|
mut aa := []Any{}
|
|
|
|
for val in a {
|
2021-11-25 11:33:54 +01:00
|
|
|
aa << ast_to_any(val)
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
return aa
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Any(Null{})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Any(Null{})
|
|
|
|
// TODO decide this
|
|
|
|
// panic(@MOD + '.' + @STRUCT + '.' + @FN + ' can\'t convert "$value"')
|
|
|
|
// return Any('')
|
|
|
|
}
|