1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-11-25 22:01:39 +02:00

stdlib.strings

Added string functions to standard library
This commit is contained in:
Tim Voronov
2018-09-21 20:36:33 -04:00
parent e05b1ea88c
commit e6d692010c
37 changed files with 2413 additions and 188 deletions

View File

@@ -0,0 +1,52 @@
package strings
import (
"context"
"encoding/json"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
)
/*
* Returns a FQL value described by the JSON-encoded input string.
* @params text (String) - The string to parse as JSON.
* @returns FQL value (Value)
*/
func JsonParse(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 1, 1)
if err != nil {
return values.EmptyString, err
}
var val interface{}
err = json.Unmarshal([]byte(args[0].String()), &val)
if err != nil {
return values.EmptyString, err
}
return values.Parse(val), nil
}
/*
* Returns a JSON string representation of the input value.
* @params value (Value) - The input value to serialize.
* @returns json (String)
*/
func JsonStringify(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 1, 1)
if err != nil {
return values.EmptyString, err
}
out, err := json.Marshal(args[0])
if err != nil {
return values.EmptyString, err
}
return values.NewString(string(out)), nil
}