forked from abiosoft/ishell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context.go
61 lines (49 loc) · 1.4 KB
/
context.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
package ishell
// Context is an ishell context. It embeds ishell.Actions.
type Context struct {
contextValues
progressBar ProgressBar
err error
// Args is command arguments.
Args []string
// RawArgs is unprocessed command arguments.
RawArgs []string
// Cmd is the currently executing command. This is empty for NotFound and Interrupt.
Cmd Cmd
Actions
}
// Err informs ishell that an error occurred in the current
// function.
func (c *Context) Err(err error) {
c.err = err
}
// ProgressBar returns the progress bar for the current shell context.
func (c *Context) ProgressBar() ProgressBar {
return c.progressBar
}
// contextValues is the map for values in the context.
type contextValues map[string]interface{}
// Get returns the value associated with this context for key, or nil
// if no value is associated with key. Successive calls to Get with
// the same key returns the same result.
func (c contextValues) Get(key string) interface{} {
return c[key]
}
// Set sets the key in this context to value.
func (c *contextValues) Set(key string, value interface{}) {
if *c == nil {
*c = make(map[string]interface{})
}
(*c)[key] = value
}
// Del deletes key and its value in this context.
func (c contextValues) Del(key string) {
delete(c, key)
}
// Keys returns all keys in the context.
func (c contextValues) Keys() (keys []string) {
for key := range c {
keys = append(keys, key)
}
return
}