forked from pierrre/imageserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
params.go
200 lines (178 loc) · 4.17 KB
/
params.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package imageserver
import (
"bytes"
"fmt"
"sort"
"sync"
)
// Params are params used in imageserver.
//
// This is a wrapper around map[string]any and provides utility methods.
// It should only contains basic Go types values (string, int float64, ...) or nested Params.
//
// Getter methods return a *ParamError if the key does not exist or the type does not match.
type Params map[string]any
// Set sets the value for the key.
func (params Params) Set(key string, value any) {
params[key] = value
}
// Get returns the value for the key.
func (params Params) Get(key string) (any, error) {
v, ok := params[key]
if !ok {
return nil, &ParamError{Param: key, Message: "not set"}
}
return v, nil
}
// GetString returns the string value for the key.
func (params Params) GetString(key string) (string, error) {
v, err := params.Get(key)
if err != nil {
return "", err
}
vt, ok := v.(string)
if !ok {
return vt, newErrorType(key, v, "string")
}
return vt, nil
}
// GetInt returns the int value for the key.
func (params Params) GetInt(key string) (int, error) {
v, err := params.Get(key)
if err != nil {
return 0, err
}
vt, ok := v.(int)
if !ok {
return 0, newErrorType(key, v, "int")
}
return vt, nil
}
// GetInt64 returns the int64 value for the key.
func (params Params) GetInt64(key string) (int64, error) {
v, err := params.Get(key)
if err != nil {
return 0, err
}
vt, ok := v.(int64)
if !ok {
return 0, newErrorType(key, v, "int64")
}
return vt, nil
}
// GetFloat returns the float64 value for the key.
func (params Params) GetFloat(key string) (float64, error) {
v, err := params.Get(key)
if err != nil {
return 0, err
}
vt, ok := v.(float64)
if !ok {
return 0, newErrorType(key, v, "float")
}
return vt, nil
}
// GetBool returns the bool value for the key.
func (params Params) GetBool(key string) (bool, error) {
v, err := params.Get(key)
if err != nil {
return false, err
}
vt, ok := v.(bool)
if !ok {
return false, newErrorType(key, v, "bool")
}
return vt, nil
}
// GetParams returns the Params value for the key.
func (params Params) GetParams(key string) (Params, error) {
v, err := params.Get(key)
if err != nil {
return nil, err
}
vt, ok := v.(Params)
if !ok {
return nil, newErrorType(key, v, "Params")
}
return vt, nil
}
func newErrorType(key string, value any, expectedType string) error {
return &ParamError{Param: key, Message: fmt.Sprintf("contains a value of type %T instead of %s", value, expectedType)}
}
// Has returns true if the key exists and false otherwise.
func (params Params) Has(key string) bool {
_, ok := params[key]
return ok
}
// Len returns the length.
func (params Params) Len() int {
return len(params)
}
// Empty returns true if params is empty and false otherwise.
func (params Params) Empty() bool {
return params.Len() == 0
}
// Keys returns the keys.
func (params Params) Keys() []string {
length := params.Len()
keys := make([]string, length)
i := 0
for key := range params {
keys[i] = key
i++
}
return keys
}
var bufferPool = &sync.Pool{
New: func() any {
return new(bytes.Buffer)
},
}
// String returns the string representation.
//
// Keys are sorted alphabetically.
func (params Params) String() string {
buf := bufferPool.Get().(*bytes.Buffer)
buf.Reset()
defer bufferPool.Put(buf)
params.toBuffer(buf)
return buf.String()
}
func (params Params) toBuffer(buf *bytes.Buffer) {
keys := params.Keys()
sort.Strings(keys)
_, _ = buf.WriteString("map[")
for i, key := range keys {
if i != 0 {
_, _ = buf.WriteString(" ")
}
_, _ = buf.WriteString(key)
_, _ = buf.WriteString(":")
switch value := params[key].(type) {
case Params:
value.toBuffer(buf)
default:
_, _ = fmt.Fprint(buf, value)
}
}
_, _ = buf.WriteString("]")
}
// Copy returns a deep copy of the Params.
func (params Params) Copy() Params {
p := Params{}
for k, v := range params {
if q, ok := v.(Params); ok {
v = q.Copy()
}
p[k] = v
}
return p
}
// ParamError is an error for a param.
type ParamError struct {
Param string // Nested param path uses "." as separator
Message string
}
func (err *ParamError) Error() string {
return fmt.Sprintf("invalid param \"%s\": %s", err.Param, err.Message)
}