Murex Shell Docs
About 2 min
Murex Shell Docs
lang.ArrayTemplateWithType()
(template API)
API Reference: Unmarshals a data type into a Go struct and returns the results as an array with data type included
Description
This is a template API you can use for your custom data types to wrap around an existing Go marshaller and return a Murex array which is consistent with other structures such as nested JSON or YAML documents.
It should only be called from ReadArrayWithType()
functions.
Because lang.ArrayTemplateWithType()
relies on a marshaller, it means any types that rely on this API are not going to be stream-able.
Examples
Example calling lang.ArrayTemplate()
function:
package json
import (
"github.com/lmorg/murex/lang"
"github.com/lmorg/murex/lang/stdio"
"github.com/lmorg/murex/utils/json"
)
func readArray(read stdio.Io, callback func([]byte)) error {
// Create a marshaller function to pass to ArrayTemplate
marshaller := func(v interface{}) ([]byte, error) {
return json.Marshal(v, read.IsTTY())
}
return lang.ArrayTemplate(marshaller, json.Unmarshal, read, callback)
}
Detail
API Source:
package lang
import (
"github.com/lmorg/murex/lang/stdio"
"github.com/lmorg/murex/lang/types"
)
// ArrayWithTypeTemplate is a template function for reading arrays from marshalled data
func ArrayWithTypeTemplate(dataType string, marshal func(interface{}) ([]byte, error), unmarshal func([]byte, interface{}) error, read stdio.Io, callback func([]byte, string)) error {
b, err := read.ReadAll()
if err != nil {
return err
}
var v interface{}
err = unmarshal(b, &v)
if err != nil {
return err
}
switch v := v.(type) {
case string:
return readArrayWithTypeByString(v, callback)
case []string:
return readArrayWithTypeBySliceString(v, callback)
case []interface{}:
return readArrayWithTypeBySliceInterface(dataType, marshal, v, callback)
/*case map[string]string:
return readArrayWithTypeByMapStrStr(v, callback)
case map[string]interface{}:
return readArrayWithTypeByMapStrIface(marshal, v, callback)
case map[interface{}]string:
return readArrayWithTypeByMapIfaceStr(v, callback)
case map[interface{}]interface{}:
return readArrayWithTypeByMapIfaceIface(marshal, v, callback)
*/
default:
jBytes, err := marshal(v)
if err != nil {
return err
}
callback(jBytes, dataType)
return nil
}
}
func readArrayWithTypeByString(v string, callback func([]byte, string)) error {
callback([]byte(v), types.String)
return nil
}
func readArrayWithTypeBySliceString(v []string, callback func([]byte, string)) error {
for i := range v {
callback([]byte(v[i]), types.String)
}
return nil
}
func readArrayWithTypeBySliceInterface(dataType string, marshal func(interface{}) ([]byte, error), v []interface{}, callback func([]byte, string)) error {
if len(v) == 0 {
return nil
}
switch v[0].(type) {
case string:
for i := range v {
callback([]byte(v[i].(string)), types.String)
}
case []byte:
for i := range v {
callback(v[i].([]byte), types.String)
}
default:
for i := range v {
jBytes, err := marshal(v[i])
if err != nil {
return err
}
callback(jBytes, dataType)
}
}
return nil
}
/*func readArrayWithTypeByMapIfaceIface(marshal func(interface{}) ([]byte, error), v map[interface{}]interface{}, callback func([]byte, string)) error {
for key, val := range v {
bKey := []byte(fmt.Sprint(key) + ": ")
b, err := marshal(val)
if err != nil {
return err
}
callback(append(bKey, b...))
}
return nil
}
func readArrayWithTypeByMapStrStr(v map[string]string, callback func([]byte, string)) error {
for key, val := range v {
callback([]byte(key + ": " + val))
}
return nil
}
func readArrayWithTypeByMapStrIface(marshal func(interface{}) ([]byte, error), v map[string]interface{}, callback func([]byte, string)) error {
for key, val := range v {
bKey := []byte(key + ": ")
b, err := marshal(val)
if err != nil {
return err
}
callback(append(bKey, b...))
}
return nil
}
func readArrayWithTypeByMapIfaceStr(v map[interface{}]string, callback func([]byte, string)) error {
for key, val := range v {
callback([]byte(fmt.Sprint(key) + ": " + val))
}
return nil
}
*/
Parameters
func(interface{}) ([]byte, error)
: data type's marshallerfunc([]byte, interface{}) error
: data type's unmarshallerstdio.Io
: stream to read from (eg STDIN)func([]byte, string)
: callback function to write each array element
See Also
- apis/
ReadArray()
(type): Read from a data type one array element at a time - apis/
ReadIndex()
(type): Data type handler for the index,[
, builtin - apis/
ReadMap()
(type): Treat data type as a key/value structure and read its contents - apis/
ReadNotIndex()
(type): Data type handler for the bang-prefixed index,![
, builtin - apis/
WriteArray()
(type): Write a data type, one array element at a time - apis/
lang.IndexTemplateObject()
(template API): Returns element(s) from a data structure - apis/
lang.IndexTemplateTable()
(template API): Returns element(s) from a table