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 97 98 99 100 101 102 103 104 105 106 107 108
|
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"github.com/urfave/cli"
diff "github.com/yudai/gojsondiff"
"github.com/yudai/gojsondiff/formatter"
)
func main() {
app := cli.NewApp()
app.Name = "jd"
app.Usage = "JSON Diff"
app.Version = "0.0.2"
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "format, f",
Value: "ascii",
Usage: "Diff Output Format (ascii, delta)",
EnvVar: "DIFF_FORMAT",
},
cli.BoolFlag{
Name: "coloring, c",
Usage: "Enable coloring in the ASCII mode (not available in the delta mode)",
EnvVar: "COLORING",
},
cli.BoolFlag{
Name: "quiet, q",
Usage: "Suppress output, if no differences are found",
EnvVar: "QUIET",
},
}
app.Action = func(c *cli.Context) error {
if len(c.Args()) < 2 {
fmt.Println("Not enough arguments.\n")
fmt.Printf("Usage: %s json_file another_json_file\n", app.Name)
os.Exit(1)
}
aFilePath := c.Args()[0]
bFilePath := c.Args()[1]
// Prepare your JSON string as `[]byte`, not `string`
aString, err := ioutil.ReadFile(aFilePath)
if err != nil {
fmt.Printf("Failed to open file '%s': %s\n", aFilePath, err.Error())
os.Exit(2)
}
// Another JSON string
bString, err := ioutil.ReadFile(bFilePath)
if err != nil {
fmt.Printf("Failed to open file '%s': %s\n", bFilePath, err.Error())
os.Exit(2)
}
// Then, compare them
differ := diff.New()
d, err := differ.Compare(aString, bString)
if err != nil {
fmt.Printf("Failed to unmarshal file: %s\n", err.Error())
os.Exit(3)
}
// Output the result
if d.Modified() || !c.Bool("quiet") {
format := c.String("format")
var diffString string
if format == "ascii" {
var aJson map[string]interface{}
json.Unmarshal(aString, &aJson)
config := formatter.AsciiFormatterConfig{
ShowArrayIndex: true,
Coloring: c.Bool("coloring"),
}
formatter := formatter.NewAsciiFormatter(aJson, config)
diffString, err = formatter.Format(d)
if err != nil {
// No error can occur
}
} else if format == "delta" {
formatter := formatter.NewDeltaFormatter()
diffString, err = formatter.Format(d)
if err != nil {
// No error can occur
}
} else {
fmt.Printf("Unknown Foramt %s\n", format)
os.Exit(4)
}
fmt.Print(diffString)
return cli.NewExitError("", 1)
}
return nil
}
app.Run(os.Args)
}
|