-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathps.go
More file actions
257 lines (220 loc) · 5.56 KB
/
ps.go
File metadata and controls
257 lines (220 loc) · 5.56 KB
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
package cmd
import (
"context"
"encoding/base64"
"fmt"
"io"
"log"
"regexp"
"strconv"
"strings"
"time"
"github.com/containerd/console"
drycc "github.com/drycc/controller-sdk-go"
"github.com/drycc/controller-sdk-go/api"
"github.com/drycc/controller-sdk-go/ps"
"github.com/gorilla/websocket"
)
// PsList lists an app's processes.
func (d *DryccCmd) PsList(appID string, results int) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
if results == defaultLimit {
results = s.Limit
}
processes, _, err := ps.List(s.Client, appID, results)
if d.checkAPICompatibility(s.Client, err) != nil {
return err
}
printProcesses(appID, processes, d.WOut)
return nil
}
// PsList lists an app's processes.
func (d *DryccCmd) PsExec(appID, podID string, tty, stdin bool, command []string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
conn, err := ps.Exec(s.Client, appID, podID, tty, stdin, command)
if err != nil {
return err
}
defer conn.Close()
if stdin {
streamExec(conn, tty)
} else {
printExec(d, conn)
}
return nil
}
// PsScale scales an app's processes.
func (d *DryccCmd) PsScale(appID string, targets []string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
targetMap, err := parsePsTargets(targets)
if err != nil {
return err
}
d.Printf("Scaling processes... but first, %s!\n", drinkOfChoice())
startTime := time.Now()
quit := progress(d.WOut)
err = ps.Scale(s.Client, appID, targetMap)
quit <- true
<-quit
if d.checkAPICompatibility(s.Client, err) != nil {
return err
}
d.Printf("done in %ds\n", int(time.Since(startTime).Seconds()))
processes, _, err := ps.List(s.Client, appID, s.Limit)
if err != nil {
return err
}
printProcesses(appID, processes, d.WOut)
return nil
}
// PsRestart restarts an app's processes.
func (d *DryccCmd) PsRestart(appID, target string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
psType, psName := "", ""
if target != "" {
psType, psName = parseType(target, appID)
}
d.Printf("Restarting processes... but first, %s!\n", drinkOfChoice())
startTime := time.Now()
quit := progress(d.WOut)
processes, err := ps.Restart(s.Client, appID, psType, psName)
quit <- true
<-quit
if err == drycc.ErrPodNotFound {
return fmt.Errorf("Could not find process type %s in app %s", psType, appID)
} else if d.checkAPICompatibility(s.Client, err) != nil {
return err
}
if len(processes) == 0 {
d.Println("Could not find any processes to restart")
} else {
d.Printf("done in %ds\n", int(time.Since(startTime).Seconds()))
printProcesses(appID, processes, d.WOut)
}
return nil
}
func printProcesses(appID string, input []api.Pods, wOut io.Writer) {
processes := ps.ByType(input)
fmt.Fprintf(wOut, "=== %s Processes\n", appID)
for _, process := range processes {
fmt.Fprintf(wOut, "--- %s:\n", process.Type)
for _, pod := range process.PodsList {
fmt.Fprintf(wOut, "%s %s (%s)\n", pod.Name, pod.State, pod.Release)
}
}
}
func printExec(d *DryccCmd, conn *websocket.Conn) error {
messageType, message, err := conn.ReadMessage()
if err != nil {
if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway, websocket.CloseNormalClosure) {
log.Printf("error: %v", err)
}
return nil
}
if messageType == websocket.TextMessage {
d.Printf("%s", string(message))
} else {
d.Printf(base64.StdEncoding.EncodeToString(message))
}
return nil
}
func streamExec(conn *websocket.Conn, tty bool) error {
c := console.Current()
defer c.Reset()
if tty {
if err := c.SetRaw(); err != nil {
return err
}
}
recvQueue := make(chan []byte)
defer close(recvQueue)
ctx, cancel := context.WithCancel(context.Background())
go func() {
for {
messageType, message, err := conn.ReadMessage()
if err != nil || messageType == websocket.CloseMessage {
cancel()
break
} else {
recvQueue <- message
}
}
}()
sendQueue := make(chan []byte)
defer close(sendQueue)
go func() {
buf := make([]byte, 1024)
for {
size, err := c.Read(buf)
if err == io.EOF {
cancel()
break
} else if err != nil {
continue
} else {
sendQueue <- buf[:size]
}
}
}()
for {
select {
case <-ctx.Done():
return nil
case message := <-sendQueue:
if err := conn.WriteMessage(websocket.TextMessage, message); err != nil {
return err
}
case message := <-recvQueue:
c.Write(message)
}
}
}
func parseType(target string, appID string) (string, string) {
var psType, psName string
if strings.Contains(target, "-") {
replaced := strings.Replace(target, appID+"-", "", 1)
parts := strings.Split(replaced, "-")
// the API requires the type, for now
// regex matches against how Deployment pod name is constructed
regex := regexp.MustCompile("[a-z0-9]{8,10}-[a-z0-9]{5}$")
if regex.MatchString(replaced) || len(parts) == 2 {
psType = parts[0]
} else {
psType = parts[1]
}
// process name is the full pod
psName = target
} else {
psType = target
}
return psType, psName
}
func parsePsTargets(targets []string) (map[string]int, error) {
targetMap := make(map[string]int)
regex := regexp.MustCompile(`^([a-z0-9]+(?:-[a-z0-9]+)*)=([0-9]+)$`)
var err error
for _, target := range targets {
if regex.MatchString(target) {
captures := regex.FindStringSubmatch(target)
targetMap[captures[1]], err = strconv.Atoi(captures[2])
if err != nil {
return nil, err
}
} else {
return nil, fmt.Errorf("'%s' does not match the pattern 'type=num', ex: web=2", target)
}
}
return targetMap, nil
}