-
Notifications
You must be signed in to change notification settings - Fork 5
/
prompts.go
229 lines (181 loc) · 4.97 KB
/
prompts.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
// Package strumt provides a way to defines scenarios for prompting
// informations on command line
package strumt
import (
"bufio"
"fmt"
"io"
"os"
"strings"
)
// Step represents a scenario step which is
// the result of a prompt execution. We store
// the prompt string displayed on the screen, inputs that the user has given,
// and the prompt error if one occurred
type Step struct {
prompt string
inputs []string
err error
}
// PromptString returns the prompt string displayed by the prompt on the screen
func (s Step) PromptString() string {
return s.prompt
}
// Inputs retrieves all inputs submitted by the user
func (s Step) Inputs() []string {
return s.inputs
}
// Error returns the error triggered by a prompt
func (s Step) Error() error {
return s.err
}
// NewPrompts creates a new prompt from stdin and stdout
func NewPrompts() Prompts {
return Prompts{reader: bufio.NewReader(os.Stdin), writer: os.Stdout, prompts: map[string]Prompter{}}
}
// NewPromptsFromReaderAndWriter creates a new prompt from a given reader and writer, useful for testing purpose
func NewPromptsFromReaderAndWriter(reader io.Reader, writer io.Writer) Prompts {
return Prompts{reader: bufio.NewReader(reader), writer: writer, prompts: map[string]Prompter{}}
}
// Prompts is the main structure that handle all defined prompts
// and the logic to run and switch from one prompt to another.
// It keeps a record as well, of all user actions under a scenario
// entry
type Prompts struct {
currentPrompt Prompter
prompts map[string]Prompter
reader *bufio.Reader
writer io.Writer
scenario []Step
}
func (p *Prompts) parse() ([]string, Prompter, error) {
var nextPrompt Prompter
var inputs []string
var err error
switch prompt := p.currentPrompt.(type) {
case LinePrompter:
var input string
input, err = parseLine(p.reader, prompt)
if prompt.NextOnSuccess(input) != "" {
nextPrompt = p.prompts[prompt.NextOnSuccess(input)]
}
inputs = append(inputs, input)
case MultilinePrompter:
inputs, err = parseMultipleLine(p.reader, prompt)
if prompt.NextOnSuccess(inputs) != "" {
nextPrompt = p.prompts[prompt.NextOnSuccess(inputs)]
}
}
if err != nil {
nextPrompt = p.prompts[p.currentPrompt.NextOnError(err)]
}
return inputs, nextPrompt, err
}
func (p *Prompts) appendScenario(promptString string, inputs []string, err error) {
p.scenario = append(
p.scenario,
Step{
promptString,
inputs,
err,
},
)
}
// AddLinePrompter adds a new LinePrompter using the internal id as a reference
func (p *Prompts) AddLinePrompter(prompt LinePrompter) {
p.prompts[prompt.ID()] = prompt
}
// AddMultilinePrompter adds a new MultilinePrompter using the internal id as a reference
func (p *Prompts) AddMultilinePrompter(prompt MultilinePrompter) {
p.prompts[prompt.ID()] = prompt
}
// SetFirst defines from which prompt the prompt sequence has to start
func (p *Prompts) SetFirst(id string) {
p.currentPrompt = p.prompts[id]
}
// Scenario retrieves all steps done during a prompt sequence
func (p *Prompts) Scenario() []Step {
return p.scenario
}
// Run executes a prompt sequence
func (p *Prompts) Run() {
p.scenario = []Step{}
for {
prompt := p.currentPrompt
renderPrompt(p.writer, prompt)
inputs, nextPrompt, err := p.parse()
if err != nil {
renderError(p.writer, prompt, err)
}
p.appendScenario(prompt.PromptString(), inputs, err)
if nextPrompt == nil {
return
}
renderSeparator(p.writer, prompt)
p.currentPrompt = nextPrompt
}
}
func isMultilineEnd(reader io.ByteScanner) (bool, error) {
bn, err := reader.ReadByte()
if err == io.EOF {
return true, nil
}
if bn == '\n' {
return true, nil
}
if err := reader.UnreadByte(); err != nil {
return false, err
}
return false, nil
}
func parseMultipleLine(reader *bufio.Reader, prompt MultilinePrompter) ([]string, error) {
inputs := []string{}
for {
input, err := reader.ReadString('\n')
input = strings.TrimRight(input, "\n")
if err != nil {
return []string{}, err
}
inputs = append(inputs, input)
end, err := isMultilineEnd(reader)
if err != nil {
return []string{}, err
}
if end {
break
}
}
return inputs, prompt.Parse(inputs)
}
func parseLine(reader *bufio.Reader, prompt LinePrompter) (string, error) {
input, err := reader.ReadString('\n')
input = strings.TrimRight(input, "\n")
if err != nil {
return "", err
}
return input, prompt.Parse(input)
}
func renderPrompt(writer io.Writer, prompt Prompter) {
switch pr := prompt.(type) {
case PromptRenderer:
pr.PrintPrompt(writer, prompt.PromptString())
default:
fmt.Fprintf(writer, "%s\n", prompt.PromptString())
}
}
func renderError(writer io.Writer, prompt Prompter, err error) {
switch pr := prompt.(type) {
case ErrorRenderer:
pr.PrintError(writer, err)
default:
fmt.Fprintf(writer, "%s\n", err.Error())
}
}
func renderSeparator(writer io.Writer, prompt Prompter) {
switch pr := prompt.(type) {
case SeparatorRenderer:
pr.PrintSeparator(writer)
default:
fmt.Fprintf(writer, "\n")
}
}