-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.go
111 lines (92 loc) · 2.78 KB
/
cli.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
// Angua Command Line Interface (CLI)
// Scot W. Stevenson <[email protected]>
// First version: 24. May 2019
// This version: 26. May 2019
// The Command Line Interface (CLI) of Angua is started in another terminal
// window. To connect on Linux, use the nc program with the line
//
// nc localhost 8000
//
// from another terminal. Quit with 'exit' in the shell.
// TODO Real error handling
package cli
import (
// "bufio"
"fmt"
"io"
"log"
"net"
// Use ishell as interface https://godoc.org/gopkg.in/abiosoft/ishell.v2
"github.com/abiosoft/readline"
"gopkg.in/abiosoft/ishell.v2"
)
const (
banner string = `Welcome to Angua
An Emulatr for the 65816 in Native Mode
Version ALPHA 0.1 26. May 2019
Copyright (c) 2018-2019 Scot W. Stevenson
Angua comes with absolutely NO WARRANTY
Type 'help' for more information
`
host string = "localhost:8000"
prompt string = "> "
)
// Start listens for a connection to the emulator and sets up the Command Line
// Interface (CLI) for Angua
func Start(cmd chan int, resp chan string, done chan struct{}) {
// ----------------------------------------------------------
// Create a listener for login from other terminal
// See https://golang.org/pkg/net/#Listen
listener, err := net.Listen("tcp", host)
if err != nil {
log.Fatal(err)
}
conn, err := listener.Accept()
if err != nil {
log.Fatal(err)
}
defer conn.Close()
fmt.Println("Access accepted from ", conn.RemoteAddr().String())
// ----------------------------------------------------------
// Define Command Line Interface
// ishell uses readline to set the configuration. We use it to redirect
// the input and output of the shell to our external terminal. See
// https://godoc.org/github.com/abiosoft/readline#Config for details
termCfg := &readline.Config{
Prompt: prompt,
Stdin: io.ReadCloser(conn),
Stdout: io.Writer(conn),
StdinWriter: io.Writer(conn),
Stderr: io.Writer(conn),
}
// Start interactive shell. Note that by default, this provides the
// directives "exit", "help", and "clear".
shell := ishell.NewWithConfig(termCfg)
// We create a history file. This currently only works for Linux
// TODO point this out in the documentation
shell.SetHomeHistoryPath(".angua_shell_history")
// Individual shell comands. Normal short help is lower case with no
// punctuation
shell.AddCmd(&ishell.Cmd{
Name: "beep",
Help: "make a beeping noise",
Func: func(c *ishell.Context) {
c.Println("\a")
},
})
// TODO Testing
shell.AddCmd(&ishell.Cmd{
Name: "command",
Help: "send a command int",
Func: func(*ishell.Context) {
cmd <- 1
},
})
shell.Println(banner)
shell.Run()
// We reach this part when we use the 'exit' command
shell.Close()
// Signal emulator that we're all done
fmt.Println("Closing shell.")
done <- struct{}{}
}