This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
utils.go
166 lines (144 loc) · 3.72 KB
/
utils.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
package packngo
import (
"bytes"
"fmt"
"io"
"reflect"
"regexp"
)
var (
timestampType = reflect.TypeOf(Timestamp{})
// Facilities DEPRECATED Use Facilities.List
Facilities = []string{
"yyz1", "nrt1", "atl1", "mrs1", "hkg1", "ams1",
"ewr1", "sin1", "dfw1", "lax1", "syd1", "sjc1",
"ord1", "iad1", "fra1", "sea1", "dfw2"}
// FacilityFeatures DEPRECATED Use Facilities.List
FacilityFeatures = []string{
"baremetal", "layer_2", "backend_transfer", "storage", "global_ipv4"}
// UtilizationLevels DEPRECATED
UtilizationLevels = []string{"unavailable", "critical", "limited", "normal"}
// DevicePlans DEPRECATED Use Plans.List
DevicePlans = []string{"c2.medium.x86", "g2.large.x86",
"m2.xlarge.x86", "x2.xlarge.x86", "baremetal_2a", "baremetal_2a2",
"baremetal_1", "baremetal_3", "baremetal_2", "baremetal_s",
"baremetal_0", "baremetal_1e",
}
)
// Stringify creates a string representation of the provided message
// DEPRECATED This is used internally and should not be exported by packngo
func Stringify(message interface{}) string {
var buf bytes.Buffer
v := reflect.ValueOf(message)
// TODO(displague) errors here are not reported
_ = stringifyValue(&buf, v)
return buf.String()
}
// StreamToString converts a reader to a string
// DEPRECATED This is unused and should not be exported by packngo
func StreamToString(stream io.Reader) (string, error) {
buf := new(bytes.Buffer)
if _, err := buf.ReadFrom(stream); err != nil {
return "", err
}
return buf.String(), nil
}
// contains tells whether a contains x.
func contains(a []string, x string) bool {
for _, n := range a {
if x == n {
return true
}
}
return false
}
// stringifyValue was graciously cargoculted from the goprotubuf library
func stringifyValue(w io.Writer, val reflect.Value) error {
if val.Kind() == reflect.Ptr && val.IsNil() {
_, err := w.Write([]byte("<nil>"))
return err
}
v := reflect.Indirect(val)
switch v.Kind() {
case reflect.String:
if _, err := fmt.Fprintf(w, `"%s"`, v); err != nil {
return err
}
case reflect.Slice:
if _, err := w.Write([]byte{'['}); err != nil {
return err
}
for i := 0; i < v.Len(); i++ {
if i > 0 {
if _, err := w.Write([]byte{' '}); err != nil {
return err
}
}
if err := stringifyValue(w, v.Index(i)); err != nil {
return err
}
}
if _, err := w.Write([]byte{']'}); err != nil {
return err
}
return nil
case reflect.Struct:
if v.Type().Name() != "" {
if _, err := w.Write([]byte(v.Type().String())); err != nil {
return err
}
}
// special handling of Timestamp values
if v.Type() == timestampType {
_, err := fmt.Fprintf(w, "{%s}", v.Interface())
return err
}
if _, err := w.Write([]byte{'{'}); err != nil {
return err
}
var sep bool
for i := 0; i < v.NumField(); i++ {
fv := v.Field(i)
if fv.Kind() == reflect.Ptr && fv.IsNil() {
continue
}
if fv.Kind() == reflect.Slice && fv.IsNil() {
continue
}
if sep {
if _, err := w.Write([]byte(", ")); err != nil {
return err
}
} else {
sep = true
}
if _, err := w.Write([]byte(v.Type().Field(i).Name)); err != nil {
return err
}
if _, err := w.Write([]byte{':'}); err != nil {
return err
}
if err := stringifyValue(w, fv); err != nil {
return err
}
}
if _, err := w.Write([]byte{'}'}); err != nil {
return err
}
default:
if v.CanInterface() {
if _, err := fmt.Fprint(w, v.Interface()); err != nil {
return err
}
}
}
return nil
}
// validate UUID
func ValidateUUID(uuid string) error {
r := regexp.MustCompile("^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$")
if !r.MatchString(uuid) {
return fmt.Errorf("%s is not a valid UUID", uuid)
}
return nil
}