-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompt.go
131 lines (115 loc) · 3.47 KB
/
prompt.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
// MIT License
//
// Copyright (C) 2023 Develatio Technologies S.L.
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package nsterm
import (
"io"
"strings"
)
var CursorToColZero = "\033[0G"
var EraseEntireLine string = "\033[2K"
// Prompt struct. A helper to write
// shell prompts asking for a input
// abstracting the origin of the app
// and the input source. This means
// that the source and/or the app
// can be local or remote. This should
// be used with VPTY2 that handles all
// the complex stuff.
// This pieze allows to have a PS
// prompt, line edit and history.
type Prompt struct {
vpty *VPTY2
stdin io.ReadCloser
stdout io.WriteCloser
history []string
historyidx int
PS1 []byte
ldisc Ldisc
}
func NewPrompt(vpty *VPTY2, stdin io.ReadCloser, stdout io.WriteCloser) *Prompt {
return &Prompt{
vpty: vpty,
stdin: stdin,
stdout: stdout,
ldisc: NewDefaultLdisc(),
PS1: []byte("> "),
}
}
func (p *Prompt) SetPS1(ps1 string) {
p.PS1 = []byte(ps1)
}
func (p *Prompt) ReadLine() (*string, error) {
p.vpty.SetLDisc(p.ldisc)
ESC := p.ldisc.GetESC()
for {
p.stdout.Write([]byte(CursorToColZero + EraseEntireLine))
p.stdout.Write(p.PS1)
p.stdout.Write([]byte(string(p.ldisc.ReadRuneBuff())))
L2:
for {
esc := <-ESC
switch string(esc) {
case CursorUp: // ESC arrow up
p.historyidx--
if p.historyidx < 0 {
p.historyidx = 0
}
tcmd := p.history[p.historyidx]
p.ldisc.SetBuff(tcmd)
break L2
case CursorDown: // ESC arrow down
p.historyidx++
if p.historyidx > len(p.history)-1 {
p.historyidx = len(p.history) - 1
p.ldisc.SetBuff("")
break L2 // force re-prompt PS1
}
tcmd := p.history[p.historyidx]
p.ldisc.SetBuff(tcmd)
break L2
case CarriageReturn:
p.stdout.Write([]byte("\n"))
pb := make([]byte, len(p.ldisc.ReadRuneBuff()))
p.ldisc.SetBuff("")
n, err := p.stdin.Read(pb)
if err != nil {
return nil, err
}
// just \n or \r, skip
if n <= 1 {
break L2
}
s := string(pb)
s = strings.TrimSuffix(s, "\n")
s = strings.TrimSuffix(s, "\r")
p.history = append(p.history, s)
p.historyidx = len(p.history)
return &s, nil
// run command
// ecode, err := run(vpty, s, stdin, stdout)
// if err != nil {
// stdout.Write([]byte(err.Error()))
// stdout.Write([]byte(fmt.Sprintf("Exitcode %v", ecode)))
// }
// end of run command
// break L2 // force re-prompt PS1
}
}
}
}