-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
83 lines (74 loc) · 1.87 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
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
package main
import (
"errors"
"flag"
"fmt"
"io"
"os"
"shcomp2/pkg/generators"
"shcomp2/pkg/lib"
)
type Options struct {
args []string
checkReload bool
}
func main() {
logCleanup := lib.SetupLogger()
defer logCleanup()
options := Options{}
flag.BoolVar(&options.checkReload, "reload-check", false, "")
flag.Parse()
options.args = flag.Args()
exitCode := entry(os.Stdin, os.Stdout, os.Stderr, options)
os.Exit(exitCode)
}
func entry(stdin io.Reader, stdout io.Writer, stderr io.Writer, options Options) (code int) {
if options.checkReload {
if generators.CheckReload(stdin, stdout, stderr) {
return 5
} else {
return 0
}
} else {
err := HandleCompileShell(options.args[0], stdin, stdout, stderr)
if err != nil {
_, _ = fmt.Fprintf(stderr, "error: %v\n", err)
return 1
} else {
return 0
}
}
}
func HandleCompileShell(infile string, stdin io.Reader, stdout io.Writer, stderr io.Writer) error {
if infile == "-" {
content, err := io.ReadAll(stdin)
if err != nil {
_, _ = fmt.Fprintf(stderr, "%s\n", err)
return errors.New("unable to read stdin")
} else if len(content) == 0 {
_, _ = fmt.Fprintf(stderr, "stdin is empty\n")
return errors.New("stdin is empty but infile is - ")
}
cli, err := lib.ParseOperations(string(content))
if err != nil {
return err
}
if cli.Config.AutogenLang == "py" {
cli = generators.GeneratePythonOperations(cli)
}
compiledShell, err := lib.CompileCli(cli)
if err != nil {
_, _ = fmt.Fprintf(stderr, "%s\n", err)
return errors.New("unable to compile shell")
}
err = lib.CommitCli(cli, compiledShell, stdout)
if err != nil {
_, _ = fmt.Fprintf(stderr, "%s\n", err)
return errors.New("unable to commit shell")
}
return nil
} else {
_, _ = fmt.Fprintf(stderr, "must provide - as first argument\n")
return errors.New("infile as other files not implemented yet")
}
}