-
Notifications
You must be signed in to change notification settings - Fork 153
/
dict.go
377 lines (335 loc) · 8.7 KB
/
dict.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
package values
import (
"regexp"
"github.com/benbjohnson/immutable"
"github.com/influxdata/flux/codes"
"github.com/influxdata/flux/internal/errors"
"github.com/influxdata/flux/semantic"
)
// Dictionary defines the interface for a dictionary.
//
// A Dictionary is immutable. Changes to a Dictionary
// will return a new Dictionary.
type Dictionary interface {
Value
// Get will retrieve a Value out of the Dictionary.
// If the key is not present, the def Value will
// be returned instead.
Get(key, def Value) Value
// Insert will insert a Value into the Dictionary
// using the key and value. It will return a new
// Dictionary with the key/value inserted. If the
// key was already in the Dictionary, it will
// be replaced.
//
// Attempting to insert a null value for the key
// will return an error.
Insert(key, value Value) (Dictionary, error)
// Remove will remove the key/value pair that
// matches with the key. It will return a new
// Dictionary with the key/value removed.
Remove(key Value) Dictionary
// Range will iterate over each element in
// the Dictionary.
Range(func(key, value Value))
// Len returns the number of elements inside of
// Dictionary.
Len() int
}
// NewEmptyDict will construct an empty dictionary
func NewEmptyDict(ty semantic.MonoType) Dictionary {
return emptyDict{t: ty}
}
type emptyDict struct {
t semantic.MonoType
}
func (d emptyDict) Get(key, def Value) Value {
return def
}
func (d emptyDict) Insert(key, val Value) (Dictionary, error) {
builder := NewDictBuilder(semantic.NewDictType(key.Type(), val.Type()))
if err := builder.Insert(key, val); err != nil {
return nil, err
}
return builder.Dict(), nil
}
func (d emptyDict) Remove(key Value) Dictionary {
return d
}
func (d emptyDict) Range(f func(key, value Value)) {
}
func (d emptyDict) Len() int {
return 0
}
func (d emptyDict) Type() semantic.MonoType { return d.t }
func (d emptyDict) IsNull() bool { return false }
func (d emptyDict) Str() string {
panic(UnexpectedKind(semantic.Dictionary, semantic.String))
}
func (d emptyDict) Bytes() []byte {
panic(UnexpectedKind(semantic.Dictionary, semantic.Bytes))
}
func (d emptyDict) Int() int64 {
panic(UnexpectedKind(semantic.Dictionary, semantic.Int))
}
func (d emptyDict) UInt() uint64 {
panic(UnexpectedKind(semantic.Dictionary, semantic.UInt))
}
func (d emptyDict) Float() float64 {
panic(UnexpectedKind(semantic.Dictionary, semantic.Float))
}
func (d emptyDict) Bool() bool {
panic(UnexpectedKind(semantic.Dictionary, semantic.Bool))
}
func (d emptyDict) Time() Time {
panic(UnexpectedKind(semantic.Dictionary, semantic.Time))
}
func (d emptyDict) Duration() Duration {
panic(UnexpectedKind(semantic.Dictionary, semantic.Duration))
}
func (d emptyDict) Regexp() *regexp.Regexp {
panic(UnexpectedKind(semantic.Dictionary, semantic.Regexp))
}
func (d emptyDict) Array() Array {
panic(UnexpectedKind(semantic.Dictionary, semantic.Array))
}
func (d emptyDict) Object() Object {
panic(UnexpectedKind(semantic.Dictionary, semantic.Object))
}
func (d emptyDict) Function() Function {
panic(UnexpectedKind(semantic.Dictionary, semantic.Function))
}
func (d emptyDict) Dict() Dictionary {
return d
}
func (d emptyDict) Equal(v Value) bool {
return d.t.Equal(v.Type()) && v.Dict().Len() == 0
}
type dict struct {
t semantic.MonoType
data *immutable.SortedMap
}
func (d dict) Get(key, def Value) Value {
if !key.IsNull() {
v, ok := d.data.Get(key)
if ok {
return v.(Value)
}
}
return def
}
func (d dict) Insert(key, value Value) (Dictionary, error) {
if key.IsNull() {
return nil, errors.New(codes.Invalid, "null value cannot be used as a dictionary key")
}
data := d.data.Set(key, value)
return dict{t: d.t, data: data}, nil
}
func (d dict) Remove(key Value) Dictionary {
if key.IsNull() {
return d
}
data := d.data.Delete(key)
return dict{t: d.t, data: data}
}
func (d dict) Range(f func(key, value Value)) {
itr := d.data.Iterator()
for {
key, value := itr.Next()
if key == nil {
return
}
f(key.(Value), value.(Value))
}
}
func (d dict) Len() int {
return d.data.Len()
}
func (d dict) Type() semantic.MonoType { return d.t }
func (d dict) IsNull() bool { return false }
func (d dict) Str() string {
panic(UnexpectedKind(semantic.Dictionary, semantic.String))
}
func (d dict) Bytes() []byte {
panic(UnexpectedKind(semantic.Dictionary, semantic.Bytes))
}
func (d dict) Int() int64 {
panic(UnexpectedKind(semantic.Dictionary, semantic.Int))
}
func (d dict) UInt() uint64 {
panic(UnexpectedKind(semantic.Dictionary, semantic.UInt))
}
func (d dict) Float() float64 {
panic(UnexpectedKind(semantic.Dictionary, semantic.Float))
}
func (d dict) Bool() bool {
panic(UnexpectedKind(semantic.Dictionary, semantic.Bool))
}
func (d dict) Time() Time {
panic(UnexpectedKind(semantic.Dictionary, semantic.Time))
}
func (d dict) Duration() Duration {
panic(UnexpectedKind(semantic.Dictionary, semantic.Duration))
}
func (d dict) Regexp() *regexp.Regexp {
panic(UnexpectedKind(semantic.Dictionary, semantic.Regexp))
}
func (d dict) Array() Array {
panic(UnexpectedKind(semantic.Dictionary, semantic.Array))
}
func (d dict) Object() Object {
panic(UnexpectedKind(semantic.Dictionary, semantic.Object))
}
func (d dict) Function() Function {
panic(UnexpectedKind(semantic.Dictionary, semantic.Function))
}
func (d dict) Dict() Dictionary {
return d
}
func (d dict) Equal(v Value) bool {
if !d.t.Equal(v.Type()) {
return false
}
other := v.Dict()
if d.data.Len() != other.Len() {
return false
}
equal := true
other.Range(func(key, value Value) {
if !equal {
return
}
v, ok := d.data.Get(key)
if !ok {
equal = false
return
}
equal = value.Equal(v.(Value))
})
return equal
}
type (
intComparer struct{}
uintComparer struct{}
floatComparer struct{}
stringComparer struct{}
timeComparer struct{}
)
func (c intComparer) Compare(a, b interface{}) int {
if i, j := a.(Value).Int(), b.(Value).Int(); i < j {
return -1
} else if i > j {
return 1
}
return 0
}
func (c uintComparer) Compare(a, b interface{}) int {
if i, j := a.(Value).UInt(), b.(Value).UInt(); i < j {
return -1
} else if i > j {
return 1
}
return 0
}
func (c floatComparer) Compare(a, b interface{}) int {
if i, j := a.(Value).Float(), b.(Value).Float(); i < j {
return -1
} else if i > j {
return 1
}
return 0
}
func (c stringComparer) Compare(a, b interface{}) int {
if i, j := a.(Value).Str(), b.(Value).Str(); i < j {
return -1
} else if i > j {
return 1
}
return 0
}
func (c timeComparer) Compare(a, b interface{}) int {
if i, j := a.(Value).Time(), b.(Value).Time(); i < j {
return -1
} else if i > j {
return 1
}
return 0
}
func dictComparer(dictType semantic.MonoType) immutable.Comparer {
if dictType.Nature() != semantic.Dictionary {
panic(UnexpectedKind(dictType.Nature(), semantic.Dictionary))
}
keyType, err := dictType.KeyType()
if err != nil {
panic(err)
}
switch n := keyType.Nature(); n {
case semantic.Int:
return intComparer{}
case semantic.UInt:
return uintComparer{}
case semantic.Float:
return floatComparer{}
case semantic.String:
return stringComparer{}
case semantic.Time:
return timeComparer{}
default:
panic(errors.Newf(codes.Internal, "invalid key nature: %s", n))
}
}
// NewDict will construct a new Dictionary with the given key type.
func NewDict(dictType semantic.MonoType) Dictionary {
return dict{
t: dictType,
data: immutable.NewSortedMap(
dictComparer(dictType),
),
}
}
// DictionaryBuilder can be used to construct a Dictionary
// with in-place memory instead of successive Insert calls
// that create new Dictionary values.
type DictionaryBuilder struct {
t semantic.MonoType
b *immutable.SortedMapBuilder
}
// NewDictBuilder will create a new DictionaryBuilder for the given
// key type.
func NewDictBuilder(dictType semantic.MonoType) DictionaryBuilder {
builder := immutable.NewSortedMapBuilder(
immutable.NewSortedMap(
dictComparer(dictType),
),
)
return DictionaryBuilder{t: dictType, b: builder}
}
// Dict will construct a new Dictionary using the inserted values.
func (d *DictionaryBuilder) Dict() Dictionary {
return dict{
t: d.t,
data: d.b.Map(),
}
}
// Get will retrieve a Value if it is present.
func (d *DictionaryBuilder) Get(key Value) (Value, bool) {
v, ok := d.b.Get(key)
if !ok {
return nil, false
}
return v.(Value), true
}
// Insert will insert a new key/value pair into the Dictionary.
func (d *DictionaryBuilder) Insert(key, value Value) error {
if key.IsNull() {
return errors.New(codes.Invalid, "null value cannot be used as a dictionary key")
}
d.b.Set(key, value)
return nil
}
// Remove will remove a key/value pair from the Dictionary.
func (d *DictionaryBuilder) Remove(key Value) {
if !key.IsNull() {
d.b.Delete(key)
}
}