mirror of
https://github.com/wader/fq.git
synced 2024-11-23 18:56:52 +03:00
e9d9f8aef9
Rename s/interface{}/any/g Preparation for using generics in decode API and native jq funcations etc Remove some unused linter ignores as linter has been fixed
91 lines
1.5 KiB
Go
91 lines
1.5 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
"strconv"
|
|
"strings"
|
|
"text/template"
|
|
)
|
|
|
|
func toInt(v any) int {
|
|
switch v := v.(type) {
|
|
case float64:
|
|
return int(v)
|
|
case int:
|
|
return v
|
|
default:
|
|
return 0
|
|
}
|
|
}
|
|
|
|
func toString(v any) string {
|
|
switch v := v.(type) {
|
|
case string:
|
|
return v
|
|
case int:
|
|
return strconv.Itoa(v)
|
|
default:
|
|
return ""
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
funcMap := template.FuncMap{
|
|
"xrange": func(args ...any) (any, error) {
|
|
if len(args) < 2 {
|
|
return nil, errors.New("need min and max argument")
|
|
}
|
|
|
|
min := toInt(args[0])
|
|
max := toInt(args[1])
|
|
var v []int
|
|
for i := min; i <= max; i++ {
|
|
v = append(v, i)
|
|
}
|
|
|
|
return v, nil
|
|
},
|
|
"replace": func(args ...any) (any, error) {
|
|
if len(args) < 3 {
|
|
return nil, errors.New("need tmpl, old and new argument")
|
|
}
|
|
|
|
s := toString(args[0])
|
|
o := toString(args[1])
|
|
n := toString(args[2])
|
|
|
|
return strings.Replace(s, o, n, -1), nil
|
|
},
|
|
}
|
|
|
|
data := map[string]any{}
|
|
if len(os.Args) > 1 {
|
|
r, err := os.Open(os.Args[1])
|
|
if err != nil {
|
|
log.Fatalf("%s: %s", os.Args[1], err)
|
|
}
|
|
defer r.Close()
|
|
_ = json.NewDecoder(r).Decode(&data)
|
|
}
|
|
|
|
templateBytes, err := ioutil.ReadAll(os.Stdin)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
templateStr := string(templateBytes)
|
|
|
|
tmpl, err := template.New("").Funcs(funcMap).Parse(templateStr)
|
|
if err != nil {
|
|
log.Fatalf("template.New: %s", err)
|
|
}
|
|
|
|
err = tmpl.Execute(os.Stdout, &data)
|
|
if err != nil {
|
|
log.Fatalf("tmpl.Execute: %s", err)
|
|
}
|
|
}
|