-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepl.go
66 lines (50 loc) · 952 Bytes
/
repl.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
package repl
import (
"fmt"
"log"
"github.com/mk2/yon/repl/client"
"github.com/mk2/yon/repl/kit"
"github.com/mk2/yon/repl/server"
"github.com/urfave/cli"
)
type repl struct {
c kit.ReplClient
s kit.ReplServer
}
func NewCommand() cli.Command {
return cli.Command{
Name: "repl",
Aliases: []string{"r"},
Usage: "start yon repl",
Action: func(c *cli.Context) {
log.Println("starting repl...")
repl := New()
log.Println("repl started!!")
for {
fmt.Printf("(user) ")
if s, err := repl.GetClient().Read(); err != nil {
continue
} else {
fmt.Printf("=> %s\n", repl.GetClient().Eval(s))
}
}
},
}
}
func New() kit.Repl {
s := server.New()
c := client.New(s)
return &repl{
s: s,
c: c,
}
}
func (r *repl) GetClient() kit.ReplClient {
return r.c
}
func (r *repl) GetPrimaryServer() kit.ReplServer {
return r.s
}
func (r *repl) GetServers() []kit.ReplServer {
return nil
}