-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
56 lines (46 loc) · 1.05 KB
/
main.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"fmt"
"io/ioutil"
"os"
"github.com/BurntSushi/toml"
"github.com/alecthomas/kingpin/v2"
termutil "github.com/andrew-d/go-termutil"
)
var (
inFile = kingpin.Arg("file", "TOML file.").String()
quiet = kingpin.Flag("quiet", "Don't output on success.").Short('q').Bool()
)
func main() {
// support -h for --help
kingpin.CommandLine.HelpFlag.Short('h')
kingpin.Parse()
data, err := readPipeOrFile(*inFile)
if err != nil {
fmt.Println("error:", err)
os.Exit(1)
}
filename := "-"
if *inFile != "" {
filename = *inFile
}
var f interface{}
_, err = toml.Decode(string(data), &f)
if err != nil {
fmt.Println("ERROR:", filename, err)
os.Exit(1)
}
if !*quiet {
fmt.Println("OK:", filename)
}
}
// readPipeOrFile reads from stdin if pipe exists, else from provided file
func readPipeOrFile(fileName string) ([]byte, error) {
if !termutil.Isatty(os.Stdin.Fd()) {
return ioutil.ReadAll(os.Stdin)
}
if fileName == "" {
return nil, fmt.Errorf("no piped data and no file provided")
}
return ioutil.ReadFile(fileName)
}