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
|
package types
import (
"fmt"
"strings"
)
type Properties map[string]string
func NewProperties() Properties {
return make(Properties)
}
func (p Properties) String() string {
parts := []string{}
for k, v := range p {
parts = append(parts, fmt.Sprintf(`%s: "%v"`, k, v))
}
return fmt.Sprintf("[%s]", strings.Join(parts, ", "))
}
func (p Properties) Set(key string, value interface{}) Properties {
if value == nil {
return p
}
switch v := value.(type) {
case *string:
if v == nil {
return p
}
p[key] = *v
case []byte:
p[key] = string(v)
case *bool:
if v == nil {
return p
}
p[key] = fmt.Sprint(*v)
case *int64:
if v == nil {
return p
}
p[key] = fmt.Sprint(*v)
case *int:
if v == nil {
return p
}
p[key] = fmt.Sprint(*v)
default:
// Fallback to Stringer interface. This produces gibberish on pointers,
// but is the only way to avoid reflection.
p[key] = fmt.Sprint(value)
}
return p
}
func (p Properties) SetTag(tagKey *string, tagValue interface{}) Properties {
return p.SetTagWithPrefix("", tagKey, tagValue)
}
func (p Properties) SetTagWithPrefix(prefix string, tagKey *string, tagValue interface{}) Properties {
if tagKey == nil {
return p
}
keyStr := strings.TrimSpace(*tagKey)
prefix = strings.TrimSpace(prefix)
if keyStr == "" {
return p
}
if prefix != "" {
keyStr = fmt.Sprintf("%s:%s", prefix, keyStr)
}
keyStr = fmt.Sprintf("tag:%s", keyStr)
return p.Set(keyStr, tagValue)
}
func (p Properties) Get(key string) string {
value, ok := p[key]
if !ok {
return ""
}
return value
}
func (p Properties) Equals(o Properties) bool {
if p == nil && o == nil {
return true
}
if p == nil || o == nil {
return false
}
if len(p) != len(o) {
return false
}
for k, pv := range p {
ov, ok := o[k]
if !ok {
return false
}
if pv != ov {
return false
}
}
return true
}
|