-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathutil.go
114 lines (107 loc) · 3.1 KB
/
util.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
package p2pubapi
import (
"fmt"
"time"
"github.com/iij/p2pubapi/protocol"
)
const (
pollInterval = time.Duration(10 * time.Second)
)
// WaitVM wait vm status (contract status, resource status)
// Contract Status(cstatus): InPreparation/InService
// Resource Status(rstatus): Stopped/Configuring/Starting/Running/Stopping/Locked
func WaitVM(api *API, gis, ivm string, cstatus, rstatus Status, maxwait time.Duration) error {
start := time.Now()
for {
arg := protocol.VMGet{
GisServiceCode: gis,
IvmServiceCode: ivm,
}
var res = protocol.VMGetResponse{}
if err := Call(*api, arg, &res); err != nil {
return err
}
if (cstatus == None || cstatus.String() == res.ContractStatus) &&
(rstatus == None || rstatus.String() == res.ResourceStatus) {
break
}
if time.Since(start) > maxwait {
return fmt.Errorf("timeout")
}
time.Sleep(pollInterval)
}
return nil
}
// WaitSystemStorage wait system storage status (contract status, resource status)
// Contract Status(cstatus): InPreparation/InService
// Resource Status(rstatus): Attached/NotAttached/Initializing/Configuring/Archiving
func WaitSystemStorage(api *API, gis, storage string, cstatus, rstatus Status, maxwait time.Duration) error {
start := time.Now()
for {
arg := protocol.SystemStorageGet{
GisServiceCode: gis,
StorageServiceCode: storage,
}
var res = protocol.SystemStorageGetResponse{}
if err := Call(*api, arg, &res); err != nil {
return err
}
if (cstatus == None || cstatus.String() == res.ContractStatus) &&
(rstatus == None || rstatus.String() == res.ResourceStatus) {
break
}
if time.Since(start) > maxwait {
return fmt.Errorf("timeout")
}
time.Sleep(pollInterval)
}
return nil
}
// WaitDataStorage wait storage status (contract status, resource status)
// Contract Status(cstatus): InPreparation/InService
// Resource Status(rstatus): Attached/NotAttached/Initializing/Configuring/Archiving
func WaitDataStorage(api *API, gis, storage string, cstatus, rstatus Status, maxwait time.Duration) error {
start := time.Now()
for {
arg := protocol.StorageGet{
GisServiceCode: gis,
StorageServiceCode: storage,
}
var res = protocol.StorageGetResponse{}
if err := Call(*api, arg, &res); err != nil {
return err
}
if (cstatus == None || cstatus.String() == res.ContractStatus) &&
(rstatus == None || rstatus.String() == res.ResourceStatus) {
break
}
if time.Since(start) > maxwait {
return fmt.Errorf("timeout")
}
time.Sleep(pollInterval)
}
return nil
}
// WaitArchiveStorage wait iar status (contract status)
// Contract Status(cstatus): InPreparation/InService
func WaitArchiveStorage(api *API, gis, iar string, cstatus Status, maxwait time.Duration) error {
start := time.Now()
for {
arg := protocol.StorageArchiveGet{
GisServiceCode: gis,
IarServiceCode: iar,
}
var res = protocol.StorageArchiveGetResponse{}
if err := Call(*api, arg, &res); err != nil {
return err
}
if cstatus == None || cstatus.String() == res.ContractStatus {
break
}
if time.Since(start) > maxwait {
return fmt.Errorf("timeout")
}
time.Sleep(pollInterval)
}
return nil
}