-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathimp_fmt.go
37 lines (32 loc) · 892 Bytes
/
imp_fmt.go
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
////////////////////////////////////////////////////////////////////////////
// Program: jsonfiddle
// Purpose: JSON Fiddling
// Authors: Tong Sun (c) 2017-2023, All rights reserved
////////////////////////////////////////////////////////////////////////////
package main
import (
"bytes"
"encoding/json"
"fmt"
"github.com/go-easygen/go-flags/clis"
)
// *** Sub-command: fmt ***
// Exec implements the business logic of command `fmt`
func (x *FmtCommand) Exec(args []string) error {
fileI := clis.GetInputStream(x.Filei)
defer fileI.Close()
data := readJson(fileI)
var out bytes.Buffer
var err error
if opts.Compact {
err = json.Compact(&out, data)
} else {
err = json.Indent(&out, data, opts.Prefix, opts.Indent)
}
clis.AbortOn("Formatting input", err)
fileO := clis.GetOutputStream(x.Fileo)
defer fileO.Close()
out.WriteTo(fileO)
fmt.Fprintln(fileO)
return nil
}