forked from luthermonson/go-proxmox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.go
200 lines (170 loc) · 4.29 KB
/
tasks.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
package proxmox
import (
"context"
"fmt"
"strings"
"time"
)
const (
TaskRunning = "running"
)
var DefaultWaitInterval = 1 * time.Second
func NewTask(upid UPID, client *Client) *Task {
if upid == "" {
return nil
}
task := &Task{
UPID: upid,
client: client,
}
sp := strings.Split(string(task.UPID), ":")
if len(sp) == 0 || len(sp) < 7 {
return task
}
task.Node = sp[1]
task.Type = sp[5]
task.ID = sp[6]
task.User = sp[7]
return task
}
func (t *Task) Ping(ctx context.Context) error {
tmp := NewTask(t.UPID, t.client)
err := t.client.Get(ctx, fmt.Sprintf("/nodes/%s/tasks/%s/status", t.Node, t.UPID), t)
if nil != err || nil == t {
t = tmp
}
if nil == t.client {
t.client = tmp.client
}
if "stopped" == t.Status {
t.IsCompleted = true
} else {
t.IsRunning = true
}
if t.IsCompleted {
if "OK" == t.ExitStatus {
t.IsSuccessful = true
} else {
t.IsFailed = true
}
}
return err
}
func (t *Task) Stop(ctx context.Context) error {
return t.client.Delete(ctx, fmt.Sprintf("/nodes/%s/tasks/%s", t.Node, t.UPID), nil)
}
func (t *Task) Log(ctx context.Context, start, limit int) (l Log, err error) {
return l, t.client.Get(ctx, fmt.Sprintf("/nodes/%s/tasks/%s/log?start=%d&limit=%d", t.Node, t.UPID, start, limit), &l)
}
func (t *Task) Watch(ctx context.Context, start int) (chan string, error) {
t.client.log.Debugf("starting watcher on %s", t.UPID)
watch := make(chan string)
log, err := t.Log(ctx, start, 50)
if err != nil {
return watch, err
}
for i := 0; i < 3; i++ {
// retry 3 times if the log has no entries
t.client.log.Debugf("no logs for %s found, retrying %d of 3 times", t.UPID, i)
if len(log) > 0 {
break
}
time.Sleep(1 * time.Second)
log, err = t.Log(ctx, start, 50)
if err != nil {
return watch, err
}
}
if len(log) == 0 {
return watch, fmt.Errorf("no logs available for %s", t.UPID)
}
go func() {
t.client.log.Debugf("logs found for task %s", t.UPID)
for _, ln := range log {
watch <- ln
}
t.client.log.Debugf("watching task %s", t.UPID)
err := tasktail(ctx, len(log), watch, t)
if err != nil {
t.client.log.Errorf("error watching logs: %s", err)
}
}()
t.client.log.Debugf("returning watcher for %s", t.UPID)
return watch, nil
}
func tasktail(ctx context.Context, start int, watch chan string, task *Task) error {
for {
task.client.log.Debugf("tailing log for task %s", task.UPID)
if err := task.Ping(ctx); err != nil {
return err
}
if task.Status != TaskRunning {
task.client.log.Debugf("task %s is no longer running, closing down watcher", task.UPID)
close(watch)
return nil
}
logs, err := task.Log(ctx, start, 50)
if err != nil {
return err
}
for _, ln := range logs {
watch <- ln
}
start = start + len(logs)
time.Sleep(2 * time.Second)
}
}
func (t *Task) WaitFor(ctx context.Context, seconds int) error {
return t.Wait(ctx, DefaultWaitInterval, time.Duration(seconds)*time.Second)
}
func (t *Task) Wait(ctx context.Context, interval, max time.Duration) error {
// ping it quick to fill in all the details we need in case they're not there
err := t.Ping(ctx)
if err != nil {
return err
}
t.client.log.Debugf("waiting for %s, checking every %fs for %fs", t.UPID, interval.Seconds(), max.Seconds())
timeout := time.After(max)
for {
select {
case <-timeout:
t.client.log.Debugf("timed out waiting for task %s for %fs", t.UPID, max.Seconds())
return ErrTimeout
default:
if err = t.Ping(ctx); err != nil {
return err
}
if t.Status != TaskRunning {
t.client.log.Debugf("task %s has completed with status %s", t.UPID, t.Status)
return nil
}
t.client.log.Debugf("waiting on task %s sleeping for %fs", t.UPID, interval.Seconds())
}
time.Sleep(interval)
}
}
func (t *Task) WaitForCompleteStatus(ctx context.Context, timesNum int, steps ...int) (status bool, completed bool, err error) {
step := 1
if len(steps) > 0 && steps[0] > 1 {
step = steps[0]
}
timeout := time.After(time.Duration(step*timesNum) * time.Second)
for {
select {
case <-timeout:
return
default:
err = t.Ping(ctx)
if nil != err {
t.client.log.Debugf("task %s ping error %+v", t.UPID, err)
break
}
completed = t.IsCompleted
if completed {
status = t.IsSuccessful
return
}
}
time.Sleep(time.Duration(step) * time.Second)
}
}