forked from vmware-archive/govcloudair
-
Notifications
You must be signed in to change notification settings - Fork 14
/
task.go
77 lines (59 loc) · 1.57 KB
/
task.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
/*
* Copyright 2014 VMware, Inc. All rights reserved. Licensed under the Apache v2 License.
*/
package govcloudair
import (
"fmt"
"net/url"
"time"
types "github.com/ukcloud/govcloudair/types/v56"
)
type Task struct {
Task *types.Task
c *Client
}
func NewTask(c *Client) *Task {
return &Task{
Task: new(types.Task),
c: c,
}
}
func (t *Task) Refresh() error {
if t.Task == nil {
return fmt.Errorf("cannot refresh, Object is empty")
}
u, _ := url.ParseRequestURI(t.Task.HREF)
req := t.c.NewRequest(map[string]string{}, "GET", *u, nil)
resp, err := checkResp(t.c.Http.Do(req))
if err != nil {
return fmt.Errorf("error retrieving task: %s", err)
}
// Empty struct before a new unmarshal, otherwise we end up with duplicate
// elements in slices.
t.Task = &types.Task{}
if err = decodeBody(resp, t.Task); err != nil {
return fmt.Errorf("error decoding task response: %s", err)
}
// The request was successful
return nil
}
func (t *Task) WaitTaskCompletion() error {
if t.Task == nil {
return fmt.Errorf("cannot refresh, Object is empty")
}
for {
err := t.Refresh()
if err != nil {
return fmt.Errorf("error retreiving task: %s", err)
}
// If task is not in a waiting status we're done, check if there's an error and return it.
if t.Task.Status != "queued" && t.Task.Status != "preRunning" && t.Task.Status != "running" {
if t.Task.Status == "error" {
return fmt.Errorf("task did not complete succesfully: %s", t.Task.Description)
}
return nil
}
// Sleep for 3 seconds and try again.
time.Sleep(3 * time.Second)
}
}