-
Notifications
You must be signed in to change notification settings - Fork 53
/
metadata.go
148 lines (134 loc) · 3.95 KB
/
metadata.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
package fargo
// MIT Licensed (see README.md) - Copyright (c) 2013 Hudl <@Hudl>
import (
"encoding/json"
"fmt"
x2j "github.com/clbanning/mxj/x2j-wrapper"
)
// ParseAllMetadata iterates through all instances in an application
func (a *Application) ParseAllMetadata() error {
for _, instance := range a.Instances {
err := instance.Metadata.parse()
if err != nil {
log.Errorf("Failed parsing metadata for Instance=%s of Application=%s: %s",
instance.HostName, a.Name, err.Error())
return err
}
}
return nil
}
// SetMetadataString for a given instance before register
func (ins *Instance) SetMetadataString(key, value string) {
if ins.Metadata.parsed == nil {
ins.Metadata.parsed = map[string]interface{}{}
}
ins.Metadata.parsed[key] = value
}
func (im *InstanceMetadata) parse() error {
if len(im.Raw) == 0 {
if im.parsed == nil {
im.parsed = make(map[string]interface{})
}
return nil
}
metadataLog.Debugf("InstanceMetadata.parse: %s", im.Raw)
if len(im.Raw) > 0 && im.Raw[0] == '{' {
// JSON
err := json.Unmarshal(im.Raw, &im.parsed)
if err != nil {
log.Errorf("Error unmarshalling: %s", err.Error())
return fmt.Errorf("error unmarshalling: %s", err.Error())
}
} else {
// XML: wrap in a BS xml tag so all metadata tags are pulled
fullDoc := append(append([]byte("<d>"), im.Raw...), []byte("</d>")...)
parsedDoc, err := x2j.ByteDocToMap(fullDoc, true)
if err != nil {
log.Errorf("Error unmarshalling: %s", err.Error())
return fmt.Errorf("error unmarshalling: %s", err.Error())
}
im.parsed = parsedDoc["d"].(map[string]interface{})
}
return nil
}
// GetMap returns a map of the metadata parameters for this instance
func (im *InstanceMetadata) GetMap() map[string]interface{} {
return im.parsed
}
func (im *InstanceMetadata) getItem(key string) (interface{}, bool, error) {
err := im.parse()
if err != nil {
return "", false, fmt.Errorf("parsing error: %s", err.Error())
}
val, present := im.parsed[key]
return val, present, nil
}
// GetString pulls a value cast as a string. Swallows panics from type
// assertion and returns empty string + an error if conversion fails
func (im *InstanceMetadata) GetString(key string) (s string, err error) {
defer func() {
if r := recover(); r != nil {
s = ""
err = fmt.Errorf("failed to cast interface to string")
}
}()
v, prs, err := im.getItem(key)
if !prs {
return "", err
}
return v.(string), err
}
// GetInt pulls a value cast as int. Swallows panics from type assertion and
// returns 0 + an error if conversion fails
func (im *InstanceMetadata) GetInt(key string) (i int, err error) {
defer func() {
if r := recover(); r != nil {
i = 0
err = fmt.Errorf("failed to cast interface to int")
}
}()
v, err := im.GetFloat64(key)
return int(v), err
}
// GetFloat32 pulls a value cast as float. Swallows panics from type assertion
// and returns 0.0 + an error if conversion fails
func (im *InstanceMetadata) GetFloat32(key string) (f float32, err error) {
defer func() {
if r := recover(); r != nil {
f = 0.0
err = fmt.Errorf("failed to cast interface to float32")
}
}()
v, err := im.GetFloat64(key)
return float32(v), err
}
// GetFloat64 pulls a value cast as float. Swallows panics from type assertion
// and returns 0.0 + an error if conversion fails
func (im *InstanceMetadata) GetFloat64(key string) (f float64, err error) {
defer func() {
if r := recover(); r != nil {
f = 0.0
err = fmt.Errorf("failed to cast interface to float64")
}
}()
v, prs, err := im.getItem(key)
if !prs {
return 0.0, err
}
return v.(float64), err
}
// GetBool pulls a value cast as bool. Swallows panics from type assertion and
// returns false + an error if conversion fails
func (im *InstanceMetadata) GetBool(key string) (b bool, err error) {
defer func() {
if r := recover(); r != nil {
b = false
err = fmt.Errorf("failed to cast interface to bool")
}
}()
v, prs, err := im.getItem(key)
if !prs {
return false, err
}
return v.(bool), err
}