This file is indexed.

/usr/share/gocode/src/github.com/jmespath/go-jmespath/cmd/jpgo/main.go is in golang-github-jmespath-go-jmespath-dev 0.2.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*Basic command line interface for debug and testing purposes.

Examples:

Only print the AST for the expression:

    jp.go -ast "foo.bar.baz"

Evaluate the JMESPath expression against JSON data from a file:

    jp.go -input /tmp/data.json "foo.bar.baz"

This program can also be used as an executable to the jp-compliance
runner (github.com/jmespath/jmespath.test).

*/
package main

import (
	"flag"
	"fmt"
	"io/ioutil"
	"os"
)

import (
	"encoding/json"

	"github.com/jmespath/go-jmespath"
)

func errMsg(msg string, a ...interface{}) int {
	fmt.Fprintf(os.Stderr, msg, a...)
	fmt.Fprintln(os.Stderr)
	return 1
}

func run() int {

	astOnly := flag.Bool("ast", false, "Print the AST for the input expression and exit.")
	inputFile := flag.String("input", "", "Filename containing JSON data to search. If not provided, data is read from stdin.")

	flag.Parse()
	args := flag.Args()
	if len(args) != 1 {
		fmt.Fprintf(os.Stderr, "Usage:\n\n")
		flag.PrintDefaults()
		return errMsg("\nError: expected a single argument (the JMESPath expression).")
	}

	expression := args[0]
	parser := jmespath.NewParser()
	parsed, err := parser.Parse(expression)
	if err != nil {
		if syntaxError, ok := err.(jmespath.SyntaxError); ok {
			return errMsg("%s\n%s\n", syntaxError, syntaxError.HighlightLocation())
		}
		return errMsg("%s", err)
	}
	if *astOnly {
		fmt.Println("")
		fmt.Printf("%s\n", parsed)
		return 0
	}

	var inputData []byte
	if *inputFile != "" {
		inputData, err = ioutil.ReadFile(*inputFile)
		if err != nil {
			return errMsg("Error loading file %s: %s", *inputFile, err)
		}
	} else {
		// If an input data file is not provided then we read the
		// data from stdin.
		inputData, err = ioutil.ReadAll(os.Stdin)
		if err != nil {
			return errMsg("Error reading from stdin: %s", err)
		}
	}
	var data interface{}
	json.Unmarshal(inputData, &data)
	result, err := jmespath.Search(expression, data)
	if err != nil {
		return errMsg("Error executing expression: %s", err)
	}
	toJSON, err := json.MarshalIndent(result, "", "  ")
	if err != nil {
		return errMsg("Error serializing result to JSON: %s", err)
	}
	fmt.Println(string(toJSON))
	return 0
}

func main() {
	os.Exit(run())
}