forked from ovn-kubernetes/libovsdb
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathset.go
94 lines (88 loc) · 2.69 KB
/
set.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
package libovsdb
import (
"encoding/json"
"errors"
"reflect"
)
// OvsSet is an OVSDB style set
// RFC 7047 has a wierd (but understandable) notation for set as described as :
// Either an <atom>, representing a set with exactly one element, or
// a 2-element JSON array that represents a database set value. The
// first element of the array must be the string "set", and the
// second element must be an array of zero or more <atom>s giving the
// values in the set. All of the <atom>s must have the same type.
type OvsSet struct {
GoSet []interface{}
}
// NewOvsSet creates a new OVSDB style set from a Go interface (object)
func NewOvsSet(obj interface{}) (*OvsSet, error) {
v := reflect.ValueOf(obj)
var ovsSet []interface{}
switch v.Kind() {
case reflect.Slice, reflect.Array:
for i := 0; i < v.Len(); i++ {
ovsSet = append(ovsSet, v.Index(i).Interface())
}
case reflect.String,
reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64,
reflect.Float32, reflect.Float64, reflect.Bool:
ovsSet = append(ovsSet, v.Interface())
case reflect.ValueOf(UUID{}).Kind():
ovsSet = append(ovsSet, v.Interface())
default:
return nil, errors.New("OvsSet supports only Go Slice/string/numbers/uuid types")
}
return &OvsSet{ovsSet}, nil
}
// MarshalJSON wil marshal an OVSDB style Set in to a JSON byte array
func (o OvsSet) MarshalJSON() ([]byte, error) {
switch l := len(o.GoSet); {
case l == 1:
return json.Marshal(o.GoSet[0])
case l > 0:
var oSet []interface{}
oSet = append(oSet, "set")
oSet = append(oSet, o.GoSet)
return json.Marshal(oSet)
}
return []byte("[\"set\",[]]"), nil
}
// UnmarshalJSON will unmarshal a JSON byte array to an OVSDB style Set
func (o *OvsSet) UnmarshalJSON(b []byte) (err error) {
addToSet := func(o *OvsSet, v interface{}) error {
goVal, err := ovsSliceToGoNotation(v)
if err == nil {
o.GoSet = append(o.GoSet, goVal)
}
return err
}
var inter interface{}
if err = json.Unmarshal(b, &inter); err != nil {
return err
}
switch inter.(type) {
case []interface{}:
var oSet []interface{}
oSet = inter.([]interface{})
// it's a single uuid object
if len(oSet) == 2 && (oSet[0] == "uuid" || oSet[0] == "named-uuid") {
return addToSet(o, UUID{GoUUID: oSet[1].(string)})
}
if oSet[0] != "set" {
// it is a slice, but is not a set
return &json.UnmarshalTypeError{Value: reflect.ValueOf(inter).String(), Type: reflect.TypeOf(*o)}
}
innerSet := oSet[1].([]interface{})
for _, val := range innerSet {
err := addToSet(o, val)
if err != nil {
return err
}
}
return err
default:
// it is a single object
return addToSet(o, inter)
}
}