yq/yaml.go
2015-10-06 16:39:19 +11:00

159 lines
3.5 KiB
Go

package main
import (
"fmt"
"github.com/spf13/cobra"
"gopkg.in/yaml.v2"
"io/ioutil"
"os"
"strconv"
"strings"
)
var trimOutput = true
var writeInplace = false
func main() {
var cmdRead = &cobra.Command{
Use: "read [yaml_file] [path]",
Aliases: []string{"r"},
Short: "yaml r sample.yaml a.b.c",
Example: `
yaml read things.yaml a.b.c
yaml r - a.b.c (reads from stdin)
yaml r things.yaml a.*.c
yaml r things.yaml a.array[0].blah
yaml r things.yaml a.array[*].blah
`,
Long: "Outputs the value of the given path in the yaml file to STDOUT",
Run: readProperty,
}
var cmdWrite = &cobra.Command{
Use: "write [yaml_file] [path] [value]",
Aliases: []string{"w"},
Short: "yaml w [--inplace/-i] sample.yaml a.b.c newValueForC",
Example: `
yaml write things.yaml a.b.c cat
yaml write --inplace things.yaml a.b.c cat
yaml w -i things.yaml a.b.c cat
`,
Long: `Updates the yaml file w.r.t the given path and value.
Outputs to STDOUT unless the inplace flag is used, in which case the file is updated instead.`,
Run: writeProperty,
}
cmdWrite.PersistentFlags().BoolVarP(&writeInplace, "inplace", "i", false, "update the yaml file inplace")
var rootCmd = &cobra.Command{Use: "yaml"}
rootCmd.PersistentFlags().BoolVarP(&trimOutput, "trim", "t", true, "trim yaml output")
rootCmd.AddCommand(cmdRead, cmdWrite)
rootCmd.Execute()
}
func readProperty(cmd *cobra.Command, args []string) {
var parsedData map[interface{}]interface{}
readYaml(args, &parsedData)
if len(args) == 1 {
printYaml(parsedData)
os.Exit(0)
}
var paths = parsePath(args[1])
printYaml(readMap(parsedData, paths[0], paths[1:len(paths)]))
}
func writeProperty(cmd *cobra.Command, args []string) {
if len(args) < 3 {
die("Must provide <filename> <path_to_update> <value>")
}
var parsedData map[interface{}]interface{}
readYaml(args, &parsedData)
var paths = parsePath(args[1])
write(parsedData, paths[0], paths[1:len(paths)], getValue(args[2]))
if writeInplace {
ioutil.WriteFile(args[0], []byte(yamlToString(parsedData)), 0644)
} else {
printYaml(parsedData)
}
}
func getValue(argument string) interface{} {
var value, err interface{}
var inQuotes = argument[0] == '"'
if !inQuotes {
value, err = strconv.ParseFloat(argument, 64)
if err == nil {
return value
}
value, err = strconv.ParseBool(argument)
if err == nil {
return value
}
return argument
}
return argument[1 : len(argument)-1]
}
func printYaml(context interface{}) {
fmt.Println(yamlToString(context))
}
func yamlToString(context interface{}) string {
out, err := yaml.Marshal(context)
if err != nil {
die("error printing yaml: %v", err)
}
outStr := string(out)
// trim the trailing new line as it's easier for a script to add
// it in if required than to remove it
if trimOutput {
return strings.Trim(outStr, "\n ")
}
return outStr
}
func readYaml(args []string, parsedData *map[interface{}]interface{}) {
if len(args) == 0 {
die("Must provide filename")
}
var rawData []byte
if args[0] == "-" {
rawData = readStdin()
} else {
rawData = readFile(args[0])
}
err := yaml.Unmarshal([]byte(rawData), &parsedData)
if err != nil {
die("error: %v", err)
}
}
func readStdin() []byte {
bytes, err := ioutil.ReadAll(os.Stdin)
if err != nil {
die("error reading stdin", err)
}
return bytes
}
func readFile(filename string) []byte {
var rawData, readError = ioutil.ReadFile(filename)
if readError != nil {
die("error: %v", readError)
}
return rawData
}
func die(message ...interface{}) {
fmt.Println(message)
os.Exit(1)
}