Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions vlib/toml/tests/value_query_test.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import toml
import strconv

const toml_text = '
modules = [ "ui", "toml" ]
Expand All @@ -23,7 +24,10 @@ id = 1
id = 2

[values]
nan = nan
inf = inf
test = 2
minus-inf = -inf

[[themes]]
name = "Ice"
Expand All @@ -45,6 +49,7 @@ fn test_value_query_in_array() {
assert value == 'toml'
value = toml_doc.value('errors[11]').default_to('<none>').string()
assert value == '<none>'

value = toml_doc.value('themes[2].colors[0]').string()
assert value == 'blue'
}
Expand Down Expand Up @@ -75,3 +80,15 @@ fn test_any_value_query() {
any = any.value('test')
assert any.int() == 2
}

fn test_inf_and_nan_query() {
toml_doc := toml.parse(toml_text) or { panic(err) }

value := toml_doc.value('values.nan').string()
assert value == 'nan'

mut value_u64 := toml_doc.value('values.inf').u64()
assert value_u64 == strconv.double_plus_infinity
value_u64 = toml_doc.value('values.minus-inf').u64()
assert value_u64 == strconv.double_minus_infinity
}
2 changes: 1 addition & 1 deletion vlib/toml/to/to.v
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type DocOrAny = toml.Any | toml.Doc
pub fn json(doa DocOrAny) string {
match doa {
toml.Doc {
return any_to_json(doa.ast_to_any(doa.ast.table))
return any_to_json(toml.ast_to_any(doa.ast.table))
}
toml.Any {
return any_to_json(doa)
Expand Down
33 changes: 22 additions & 11 deletions vlib/toml/toml.v
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ fn parse_array_key(key string) (string, int) {

// to_any converts the `Doc` to toml.Any type.
pub fn (d Doc) to_any() Any {
return d.ast_to_any(d.ast.table)
return ast_to_any(d.ast.table)
}

// value queries a value from the TOML document.
Expand Down Expand Up @@ -200,20 +200,20 @@ fn (d Doc) value_(value ast.Value, key []string) Any {
}

if key.len <= 1 {
return d.ast_to_any(ast_value)
return ast_to_any(ast_value)
}
match ast_value {
map[string]ast.Value, []ast.Value {
return d.value_(ast_value, key[1..])
}
else {
return d.ast_to_any(value)
return ast_to_any(value)
}
}
}

// ast_to_any converts `from` ast.Value to toml.Any value.
pub fn (d Doc) ast_to_any(value ast.Value) Any {
pub fn ast_to_any(value ast.Value) Any {
match value {
ast.Date {
return Any(Date{value.text})
Expand All @@ -228,11 +228,22 @@ pub fn (d Doc) ast_to_any(value ast.Value) Any {
return Any(value.text)
}
ast.Number {
// if value.text.contains('inf') || value.text.contains('nan') {
// return Any() // TODO
//}
if !value.text.starts_with('0x')
&& (value.text.contains('.') || value.text.to_lower().contains('e')) {
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')) {
return Any(value.f64())
}
return Any(value.i64())
Expand All @@ -248,7 +259,7 @@ pub fn (d Doc) ast_to_any(value ast.Value) Any {
m := (value as map[string]ast.Value)
mut am := map[string]Any{}
for k, v in m {
am[k] = d.ast_to_any(v)
am[k] = ast_to_any(v)
}
return am
// return d.get_map_value(m, key_split[1..].join('.'))
Expand All @@ -257,7 +268,7 @@ pub fn (d Doc) ast_to_any(value ast.Value) Any {
a := (value as []ast.Value)
mut aa := []Any{}
for val in a {
aa << d.ast_to_any(val)
aa << ast_to_any(val)
}
return aa
}
Expand Down