-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
150 lines (140 loc) · 3.97 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// Gorepl is a simple interpreted language with a syntax similar to Go.
package main
import (
"flag"
"fmt"
"io"
"os"
"path/filepath"
"fortio.org/cli"
"fortio.org/log"
"fortio.org/struct2env"
"fortio.org/terminal"
"grol.io/grol/eval"
"grol.io/grol/extensions" // register extensions
"grol.io/grol/object"
"grol.io/grol/repl"
)
func main() {
os.Exit(Main())
}
type Config struct {
HistoryFile string
}
var config = Config{}
func EnvHelp(w io.Writer) {
res, _ := struct2env.StructToEnvVars(config)
str := struct2env.ToShellWithPrefix("GROL_", res, true)
fmt.Fprintln(w, "# Grol environment variables:")
fmt.Fprint(w, str)
}
var hookBefore, hookAfter func() int
func Main() int {
commandFlag := flag.String("c", "", "command/inline script to run instead of interactive mode")
showParse := flag.Bool("parse", false, "show parse tree")
format := flag.Bool("format", false, "don't execute, just parse and re format the input")
compact := flag.Bool("compact", false, "When printing code, use no indentation and most compact form")
showEval := flag.Bool("eval", true, "show eval results")
sharedState := flag.Bool("shared-state", false, "All files share same interpreter state (default is new state for each)")
const historyDefault = "~/.grol_history" // virtual/token filename, will be replaced by actual home dir if not changed.
cli.EnvHelpFuncs = append(cli.EnvHelpFuncs, EnvHelp)
defaultHistoryFile := historyDefault
errs := struct2env.SetFromEnv("GROL_", &config)
if len(errs) > 0 {
log.Errf("Error setting config from env: %v", errs)
}
if config.HistoryFile != "" {
defaultHistoryFile = config.HistoryFile
}
historyFile := flag.String("history", defaultHistoryFile, "history `file` to use")
maxHistory := flag.Int("max-history", terminal.DefaultHistoryCapacity, "max history `size`, use 0 to disable.")
cli.ArgsHelp = "*.gr files to interpret or `-` for stdin without prompt or no arguments for stdin repl..."
cli.MaxArgs = -1
cli.Main()
histFile := *historyFile
if histFile == historyDefault {
homeDir, err := os.UserHomeDir()
histFile = filepath.Join(homeDir, ".grol_history")
if err != nil {
log.Warnf("Couldn't get user home dir: %v", err)
histFile = ""
}
}
log.Infof("grol %s - welcome!", cli.LongVersion)
options := repl.Options{
ShowParse: *showParse,
ShowEval: *showEval,
FormatOnly: *format,
Compact: *compact,
HistoryFile: histFile,
MaxHistory: *maxHistory,
}
if hookBefore != nil {
ret := hookBefore()
if ret != 0 {
return ret
}
}
err := extensions.Init()
if err != nil {
return log.FErrf("Error initializing extensions: %v", err)
}
if *commandFlag != "" {
res, errs, _ := repl.EvalString(*commandFlag)
if len(errs) > 0 {
log.Errf("Errors: %v", errs)
}
fmt.Print(res)
return len(errs)
}
if len(flag.Args()) == 0 {
return repl.Interactive(options)
}
options.All = true
s := eval.NewState()
macroState := object.NewMacroEnvironment()
for _, file := range flag.Args() {
ret := processOneFile(file, s, macroState, options)
if ret != 0 {
return ret
}
if !*sharedState {
s = eval.NewState()
macroState = object.NewMacroEnvironment()
}
}
log.Infof("All done")
if hookAfter != nil {
return hookAfter()
}
return 0
}
func processOneStream(s *eval.State, macroState *object.Environment, in io.Reader, options repl.Options) int {
errs := repl.EvalAll(s, macroState, in, os.Stdout, options)
if len(errs) > 0 {
log.Errf("Errors: %v", errs)
}
return len(errs)
}
func processOneFile(file string, s *eval.State, macroState *object.Environment, options repl.Options) int {
if file == "-" {
if options.FormatOnly {
log.Infof("Formatting stdin")
} else {
log.Infof("Running on stdin")
}
return processOneStream(s, macroState, os.Stdin, options)
}
f, err := os.Open(file)
if err != nil {
log.Fatalf("%v", err)
}
verb := "Running"
if options.FormatOnly {
verb = "Formatting"
}
log.Infof("%s %s", verb, file)
code := processOneStream(s, macroState, f, options)
f.Close()
return code
}