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
|
|
|
|
|
2021-11-18 06:44:24 +01:00
|
|
|
// Pretty much all the same builtin types as the `json2.Any` type plus `DateTime`,`Date`,`Time`
|
|
|
|
pub type Any = Date
|
|
|
|
| DateTime
|
|
|
|
| Null
|
|
|
|
| Time
|
2021-09-24 20:13:52 +02:00
|
|
|
| []Any
|
|
|
|
| bool
|
|
|
|
| f32
|
|
|
|
| f64
|
|
|
|
| i64
|
|
|
|
| int
|
|
|
|
| map[string]Any
|
|
|
|
| string
|
|
|
|
| u64
|
|
|
|
|
|
|
|
// string returns `Any` as a string.
|
|
|
|
pub fn (a Any) string() string {
|
|
|
|
match a {
|
2021-10-28 18:57:30 +02:00
|
|
|
// NOTE if `.clone()` is not used here:
|
|
|
|
// string { return a as string }
|
|
|
|
// ... certain call-patterns to this function will cause a memory corruption.
|
|
|
|
// See `tests/toml_memory_corruption_test.v` for a matching regression test.
|
|
|
|
string { return (a as string).clone() }
|
2021-11-18 06:44:24 +01:00
|
|
|
DateTime { return a.str() }
|
|
|
|
Date { return a.str() }
|
|
|
|
Time { return a.str() }
|
2021-09-24 20:13:52 +02:00
|
|
|
else { return a.str() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// int returns `Any` as an 32-bit integer.
|
|
|
|
pub fn (a Any) int() int {
|
|
|
|
match a {
|
|
|
|
int { return a }
|
|
|
|
i64, f32, f64, bool { return int(a) }
|
|
|
|
// time.Time { return int(0) } // TODO
|
|
|
|
else { return 0 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// i64 returns `Any` as a 64-bit integer.
|
|
|
|
pub fn (a Any) i64() i64 {
|
|
|
|
match a {
|
|
|
|
i64 { return a }
|
|
|
|
int, f32, f64, bool { return i64(a) }
|
|
|
|
// time.Time { return i64(0) } // TODO
|
|
|
|
else { return 0 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// u64 returns `Any` as a 64-bit unsigned integer.
|
|
|
|
pub fn (a Any) u64() u64 {
|
|
|
|
match a {
|
|
|
|
u64 { return a }
|
|
|
|
int, i64, f32, f64, bool { return u64(a) }
|
|
|
|
// time.Time { return u64(0) } // TODO
|
|
|
|
else { return 0 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// f32 returns `Any` as a 32-bit float.
|
|
|
|
pub fn (a Any) f32() f32 {
|
|
|
|
match a {
|
|
|
|
f32 { return a }
|
|
|
|
int, i64, f64 { return f32(a) }
|
|
|
|
// time.Time { return f32(0) } // TODO
|
|
|
|
else { return 0.0 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// f64 returns `Any` as a 64-bit float.
|
|
|
|
pub fn (a Any) f64() f64 {
|
|
|
|
match a {
|
|
|
|
f64 { return a }
|
|
|
|
int, i64, f32 { return f64(a) }
|
|
|
|
// time.Time { return f64(0) } // TODO
|
|
|
|
else { return 0.0 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// array returns `Any` as an array.
|
|
|
|
pub fn (a Any) array() []Any {
|
|
|
|
if a is []Any {
|
|
|
|
return a
|
|
|
|
} else if a is map[string]Any {
|
|
|
|
mut arr := []Any{}
|
|
|
|
for _, v in a {
|
|
|
|
arr << v
|
|
|
|
}
|
|
|
|
return arr
|
|
|
|
}
|
|
|
|
return [a]
|
|
|
|
}
|
|
|
|
|
|
|
|
// as_map returns `Any` as a map (TOML table).
|
|
|
|
pub fn (a Any) as_map() map[string]Any {
|
|
|
|
if a is map[string]Any {
|
|
|
|
return a
|
|
|
|
} else if a is []Any {
|
|
|
|
mut mp := map[string]Any{}
|
|
|
|
for i, fi in a {
|
|
|
|
mp['$i'] = fi
|
|
|
|
}
|
|
|
|
return mp
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
'0': a
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// bool returns `Any` as a boolean.
|
|
|
|
pub fn (a Any) bool() bool {
|
|
|
|
match a {
|
|
|
|
bool { return a }
|
|
|
|
string { return a.bool() }
|
|
|
|
else { return false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-18 06:44:24 +01:00
|
|
|
// date returns `Any` as a `toml.Date` struct.
|
|
|
|
pub fn (a Any) date() Date {
|
2021-09-24 20:13:52 +02:00
|
|
|
match a {
|
|
|
|
// string { } // TODO
|
2021-11-18 06:44:24 +01:00
|
|
|
Date { return a }
|
|
|
|
else { return Date{''} }
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-18 06:44:24 +01:00
|
|
|
// time returns `Any` as a `toml.Time` struct.
|
|
|
|
pub fn (a Any) time() Time {
|
2021-09-24 20:13:52 +02:00
|
|
|
match a {
|
|
|
|
// string { } // TODO
|
2021-11-18 06:44:24 +01:00
|
|
|
Time { return a }
|
|
|
|
else { return Time{''} }
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-18 06:44:24 +01:00
|
|
|
// datetime returns `Any` as a `toml.DateTime` struct.
|
|
|
|
pub fn (a Any) datetime() DateTime {
|
2021-09-24 20:13:52 +02:00
|
|
|
match a {
|
|
|
|
// string { } // TODO
|
2021-11-18 06:44:24 +01:00
|
|
|
DateTime { return a }
|
|
|
|
else { return DateTime{''} }
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-19 09:26:45 +01:00
|
|
|
// default_to returns `value` if `a Any` is `Null`.
|
|
|
|
// This can be used to set default values when retrieving
|
|
|
|
// values. E.g.: `toml_doc.value('wrong.key').default_to(123).int()`
|
|
|
|
pub fn (a Any) default_to(value Any) Any {
|
|
|
|
match a {
|
|
|
|
Null { return value }
|
|
|
|
else { return a }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-13 10:17:35 +01:00
|
|
|
// value queries a value from the map.
|
|
|
|
// `key` should be in "dotted" form (`a.b.c`).
|
|
|
|
// `key` supports quoted keys like `a."b.c"`.
|
2021-11-19 09:26:45 +01:00
|
|
|
pub fn (m map[string]Any) value(key string) Any {
|
|
|
|
key_split := parse_dotted_key(key) or { return Any(Null{}) }
|
2021-11-13 10:17:35 +01:00
|
|
|
return m.value_(key_split)
|
|
|
|
}
|
|
|
|
|
2021-11-19 09:26:45 +01:00
|
|
|
fn (m map[string]Any) value_(key []string) Any {
|
|
|
|
value := m[key[0]] or { return Any(Null{}) }
|
2021-11-13 10:17:35 +01:00
|
|
|
// `match` isn't currently very suitable for these types of sum type constructs...
|
|
|
|
if value is map[string]Any {
|
|
|
|
if key.len <= 1 {
|
|
|
|
return value
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
2021-11-13 10:17:35 +01:00
|
|
|
nm := (value as map[string]Any)
|
|
|
|
return nm.value_(key[1..])
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
2021-11-13 10:17:35 +01:00
|
|
|
return value
|
2021-09-24 20:13:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (a []Any) as_strings() []string {
|
|
|
|
mut sa := []string{}
|
|
|
|
for any in a {
|
|
|
|
sa << any.string()
|
|
|
|
}
|
|
|
|
return sa
|
|
|
|
}
|