2020-01-13 09:11:56 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
errors "github.com/pkg/errors"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func createReadCmd() *cobra.Command {
|
|
|
|
var cmdRead = &cobra.Command{
|
|
|
|
Use: "read [yaml_file] [path_expression]",
|
|
|
|
Aliases: []string{"r"},
|
2020-01-29 22:58:21 +00:00
|
|
|
Short: "yq r [--printMode/-p pv] sample.yaml 'b.e(name==fr*).value'",
|
2020-01-13 09:11:56 +00:00
|
|
|
Example: `
|
|
|
|
yq read things.yaml 'a.b.c'
|
|
|
|
yq r - 'a.b.c' # reads from stdin
|
|
|
|
yq r things.yaml 'a.*.c'
|
|
|
|
yq r things.yaml 'a.**.c' # deep splat
|
|
|
|
yq r things.yaml 'a.(child.subchild==co*).c'
|
|
|
|
yq r -d1 things.yaml 'a.array[0].blah'
|
|
|
|
yq r things.yaml 'a.array[*].blah'
|
|
|
|
yq r -- things.yaml '--key-starting-with-dashes.blah'
|
|
|
|
`,
|
|
|
|
Long: "Outputs the value of the given path in the yaml file to STDOUT",
|
|
|
|
RunE: readProperty,
|
|
|
|
}
|
|
|
|
cmdRead.PersistentFlags().StringVarP(&docIndex, "doc", "d", "0", "process document index number (0 based, * for all documents)")
|
|
|
|
cmdRead.PersistentFlags().StringVarP(&printMode, "printMode", "p", "v", "print mode (v (values, default), p (paths), pv (path and value pairs)")
|
2020-02-02 23:13:48 +00:00
|
|
|
cmdRead.PersistentFlags().StringVarP(&defaultValue, "defaultValue", "D", "", "default value printed when there are no results")
|
2020-02-28 00:30:16 +00:00
|
|
|
cmdRead.PersistentFlags().BoolVarP(&printLength, "length", "l", false, "print length of results")
|
2020-02-28 01:18:27 +00:00
|
|
|
cmdRead.PersistentFlags().BoolVarP(&collectIntoArray, "collect", "c", false, "collect results into array")
|
2020-04-13 01:03:18 +00:00
|
|
|
cmdRead.PersistentFlags().BoolVarP(&unwrapScalar, "unwrapScalar", "", true, "unwrap scalar, print the value with no quotes, colors or comments")
|
2020-04-14 04:48:45 +00:00
|
|
|
cmdRead.PersistentFlags().BoolVarP(&stripComments, "stripComments", "", false, "print yaml without any comments")
|
2020-02-05 03:10:59 +00:00
|
|
|
cmdRead.PersistentFlags().BoolVarP(&explodeAnchors, "explodeAnchors", "X", false, "explode anchors")
|
2020-06-10 06:54:08 +00:00
|
|
|
cmdRead.PersistentFlags().BoolVarP(&exitStatus, "exitStatus", "e", false, "set exit status if no matches are found")
|
2020-01-13 09:11:56 +00:00
|
|
|
return cmdRead
|
|
|
|
}
|
|
|
|
|
|
|
|
func readProperty(cmd *cobra.Command, args []string) error {
|
|
|
|
var path = ""
|
|
|
|
|
|
|
|
if len(args) < 1 {
|
|
|
|
return errors.New("Must provide filename")
|
|
|
|
} else if len(args) > 1 {
|
|
|
|
path = args[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
var updateAll, docIndexInt, errorParsingDocIndex = parseDocumentIndex()
|
|
|
|
if errorParsingDocIndex != nil {
|
|
|
|
return errorParsingDocIndex
|
|
|
|
}
|
|
|
|
|
|
|
|
matchingNodes, errorReadingStream := readYamlFile(args[0], path, updateAll, docIndexInt)
|
|
|
|
|
2020-06-12 02:21:46 +00:00
|
|
|
if exitStatus && len(matchingNodes) == 0 {
|
2020-06-10 06:54:08 +00:00
|
|
|
cmd.SilenceUsage = true
|
|
|
|
return errors.New("No matches found")
|
|
|
|
}
|
|
|
|
|
2020-01-13 09:11:56 +00:00
|
|
|
if errorReadingStream != nil {
|
2020-06-11 00:14:33 +00:00
|
|
|
cmd.SilenceUsage = true
|
2020-01-13 09:11:56 +00:00
|
|
|
return errorReadingStream
|
|
|
|
}
|
2020-02-27 13:29:13 +00:00
|
|
|
out := cmd.OutOrStdout()
|
2020-01-13 09:11:56 +00:00
|
|
|
|
2020-02-27 13:29:13 +00:00
|
|
|
return printResults(matchingNodes, out)
|
2020-01-13 09:11:56 +00:00
|
|
|
}
|