-
Notifications
You must be signed in to change notification settings - Fork 58
/
proxy_list.go
376 lines (347 loc) · 13.2 KB
/
proxy_list.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
/*
* Copyright (c) 2008-2023, Hazelcast, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License")
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package hazelcast
import (
"context"
pubcluster "github.com/hazelcast/hazelcast-go-client/cluster"
"github.com/hazelcast/hazelcast-go-client/internal/check"
"github.com/hazelcast/hazelcast-go-client/internal/proto"
"github.com/hazelcast/hazelcast-go-client/internal/proto/codec"
iserialization "github.com/hazelcast/hazelcast-go-client/internal/serialization"
"github.com/hazelcast/hazelcast-go-client/types"
)
/*
List is a concurrent, distributed, ordered collection.
The user of this data structure has precise control over where in the list each element is inserted.
The user can access elements by their integer index (position in the list), and search for elements in the list.
List is not a partitioned Hazelcast data structure.
So all the contents of the List are stored in a single machine (and in the backup).
So, a single List will not scale by adding more members in the cluster.
For details, see https://docs.hazelcast.com/hazelcast/latest/data-structures/map
*/
type List struct {
*proxy
partitionID int32
}
func newList(p *proxy) (*List, error) {
if partitionID, err := p.stringToPartitionID(p.name); err != nil {
return nil, err
} else {
return &List{proxy: p, partitionID: partitionID}, nil
}
}
// Add appends the specified element to the end of this list.
// Returns true if the list has changed as a result of this operation, false otherwise.
func (l *List) Add(ctx context.Context, element interface{}) (bool, error) {
elementData, err := l.validateAndSerialize(element)
if err != nil {
return false, err
}
request := codec.EncodeListAddRequest(l.name, elementData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return false, err
}
return codec.DecodeListAddResponse(response), nil
}
// AddAt inserts the specified element at the specified index.
// Shifts the subsequent elements to the right.
func (l *List) AddAt(ctx context.Context, index int, element interface{}) error {
indexAsInt32, err := check.NonNegativeInt32(index)
if err != nil {
return err
}
elementData, err := l.validateAndSerialize(element)
if err != nil {
return err
}
request := codec.EncodeListAddWithIndexRequest(l.name, indexAsInt32, elementData)
_, err = l.invokeOnPartition(ctx, request, l.partitionID)
return err
}
// AddAll appends all elements in the specified slice to the end of this list.
// Returns true if the list has changed as a result of this operation, false otherwise.
func (l *List) AddAll(ctx context.Context, elements ...interface{}) (bool, error) {
if len(elements) == 0 {
return false, nil
}
elementsData, err := l.validateAndSerializeValues(elements)
if err != nil {
return false, err
}
request := codec.EncodeListAddAllRequest(l.name, elementsData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return false, err
}
return codec.DecodeListAddAllResponse(response), nil
}
// AddAllAt inserts all elements in the specified slice at specified index, keeping the order of the slice.
// Shifts the subsequent elements to the right.
// Returns true if the list has changed as a result of this operation, false otherwise.
func (l *List) AddAllAt(ctx context.Context, index int, elements ...interface{}) (bool, error) {
if len(elements) == 0 {
return false, nil
}
indexAsInt32, err := check.NonNegativeInt32(index)
if err != nil {
return false, err
}
elementsData, err := l.validateAndSerializeValues(elements)
if err != nil {
return false, err
}
request := codec.EncodeListAddAllWithIndexRequest(l.name, indexAsInt32, elementsData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return false, err
}
return codec.DecodeListAddAllWithIndexResponse(response), nil
}
// AddListener adds an item listener for this list.
// The listener will be invoked whenever an item is added to or removed from this list.
// Received events include the updated item if includeValue is true.
// Returns subscription ID of the listener.
func (l *List) AddListener(ctx context.Context, includeValue bool, handler ListItemNotifiedHandler) (types.UUID, error) {
return l.addListener(ctx, includeValue, handler)
}
// Clear removes all elements from the list.
func (l *List) Clear(ctx context.Context) error {
request := codec.EncodeListClearRequest(l.name)
_, err := l.invokeOnPartition(ctx, request, l.partitionID)
return err
}
// Contains checks if the list contains the given element.
// Returns true if the list contains the element, false otherwise.
func (l *List) Contains(ctx context.Context, element interface{}) (bool, error) {
elementData, err := l.validateAndSerialize(element)
if err != nil {
return false, err
}
request := codec.EncodeListContainsRequest(l.name, elementData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return false, err
}
return codec.DecodeListContainsResponse(response), nil
}
// ContainsAll checks if the list contains all of the given elements.
// Returns true if the list contains all of the elements, otherwise false.
func (l *List) ContainsAll(ctx context.Context, elements ...interface{}) (bool, error) {
if len(elements) == 0 {
return false, nil
}
elementsData, err := l.validateAndSerializeValues(elements)
if err != nil {
return false, err
}
request := codec.EncodeListContainsAllRequest(l.name, elementsData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return false, err
}
return codec.DecodeListContainsAllResponse(response), nil
}
// Get retrieves the element at given index.
func (l *List) Get(ctx context.Context, index int) (interface{}, error) {
indexAsInt32, err := check.NonNegativeInt32(index)
if err != nil {
return nil, err
}
request := codec.EncodeListGetRequest(l.name, indexAsInt32)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return nil, err
}
return l.convertToObject(codec.DecodeListGetResponse(response))
}
// IndexOf returns the index of the first occurrence of the given element in this list.
func (l *List) IndexOf(ctx context.Context, element interface{}) (int, error) {
elementData, err := l.validateAndSerialize(element)
if err != nil {
return 0, err
}
request := codec.EncodeListIndexOfRequest(l.name, elementData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return 0, err
}
return int(codec.DecodeListIndexOfResponse(response)), nil
}
// IsEmpty return true if the list is empty, false otherwise.
func (l *List) IsEmpty(ctx context.Context) (bool, error) {
request := codec.EncodeListIsEmptyRequest(l.name)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return false, err
}
return codec.DecodeListIsEmptyResponse(response), nil
}
// LastIndexOf returns the index of the last occurrence of the given element in this list.
func (l *List) LastIndexOf(ctx context.Context, element interface{}) (int, error) {
elementData, err := l.validateAndSerialize(element)
if err != nil {
return 0, err
}
request := codec.EncodeListLastIndexOfRequest(l.name, elementData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return 0, err
}
return int(codec.DecodeListLastIndexOfResponse(response)), nil
}
// Remove removes the given element from this list.
// Returns true if the list has changed as the result of this operation, false otherwise.
func (l *List) Remove(ctx context.Context, element interface{}) (bool, error) {
elementData, err := l.validateAndSerialize(element)
if err != nil {
return false, err
}
request := codec.EncodeListRemoveRequest(l.name, elementData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return false, err
}
return codec.DecodeListRemoveResponse(response), nil
}
// RemoveAt removes the element at the given index.
// Returns the removed element.
func (l *List) RemoveAt(ctx context.Context, index int) (interface{}, error) {
indexAsInt32, err := check.NonNegativeInt32(index)
if err != nil {
return nil, err
}
request := codec.EncodeListRemoveWithIndexRequest(l.name, indexAsInt32)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return nil, err
}
return l.convertToObject(codec.DecodeListRemoveWithIndexResponse(response))
}
// RemoveAll removes the given elements from the list.
// Returns true if the list has changed as the result of this operation, false otherwise.
func (l *List) RemoveAll(ctx context.Context, elements ...interface{}) (bool, error) {
if len(elements) == 0 {
return false, nil
}
elementsData, err := l.validateAndSerializeValues(elements)
if err != nil {
return false, err
}
request := codec.EncodeListCompareAndRemoveAllRequest(l.name, elementsData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return false, err
}
return codec.DecodeListCompareAndRemoveAllResponse(response), nil
}
// RemoveListener removes the item listener with the given subscription ID.
func (l *List) RemoveListener(ctx context.Context, subscriptionID types.UUID) error {
return l.listenerBinder.Remove(ctx, subscriptionID)
}
// RetainAll removes all elements from this list except the ones contained in the given slice.
// Returns true if the list has changed as a result of this operation, false otherwise.
func (l *List) RetainAll(ctx context.Context, elements ...interface{}) (bool, error) {
if len(elements) == 0 {
return false, nil
}
elementsData, err := l.validateAndSerializeValues(elements)
if err != nil {
return false, err
}
request := codec.EncodeListCompareAndRetainAllRequest(l.name, elementsData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return false, err
}
return codec.DecodeListCompareAndRetainAllResponse(response), nil
}
// Set replaces the element at the specified index in this list with the specified element.
// Returns the previous element from the list.
func (l *List) Set(ctx context.Context, index int, element interface{}) (interface{}, error) {
indexAsInt32, err := check.NonNegativeInt32(index)
if err != nil {
return nil, err
}
elementData, err := l.validateAndSerialize(element)
if err != nil {
return nil, err
}
request := codec.EncodeListSetRequest(l.name, indexAsInt32, elementData)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return nil, err
}
return l.convertToObject(codec.DecodeListSetResponse(response))
}
// Size returns the number of elements in this list.
func (l *List) Size(ctx context.Context) (int, error) {
request := codec.EncodeListSizeRequest(l.name)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return 0, err
}
return int(codec.DecodeListSizeResponse(response)), nil
}
// SubList returns a view of this list that contains elements between index numbers
// from start (inclusive) to end (exclusive).
func (l *List) SubList(ctx context.Context, start int, end int) ([]interface{}, error) {
startAsInt32, err := check.NonNegativeInt32(start)
if err != nil {
return nil, err
}
endAsInt32, err := check.NonNegativeInt32(end)
if err != nil {
return nil, err
}
request := codec.EncodeListSubRequest(l.name, startAsInt32, endAsInt32)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return nil, err
}
return l.convertToObjects(codec.DecodeListSubResponse(response))
}
// GetAll returns a slice that contains all elements of this list in proper sequence.
func (l *List) GetAll(ctx context.Context) ([]interface{}, error) {
request := codec.EncodeListGetAllRequest(l.name)
response, err := l.invokeOnPartition(ctx, request, l.partitionID)
if err != nil {
return nil, err
}
return l.convertToObjects(codec.DecodeListGetAllResponse(response))
}
func (l *List) addListener(ctx context.Context, includeValue bool, handler ListItemNotifiedHandler) (types.UUID, error) {
subscriptionID := types.NewUUID()
addRequest := codec.EncodeListAddListenerRequest(l.name, includeValue, l.smart)
removeRequest := codec.EncodeListRemoveListenerRequest(l.name, subscriptionID)
listenerHandler := func(msg *proto.ClientMessage) {
codec.HandleListAddListener(msg, func(itemData iserialization.Data, uuid types.UUID, eventType int32) {
item, err := l.convertToObject(itemData)
if err != nil {
l.logger.Warnf("cannot convert data to Go value: %v", err)
return
}
// prevent panic if member not found
var member pubcluster.MemberInfo
if m := l.clusterService.GetMemberByUUID(uuid); m != nil {
member = *m
}
handler(newListItemNotified(l.name, item, member, eventType))
})
}
err := l.listenerBinder.Add(ctx, subscriptionID, addRequest, removeRequest, listenerHandler)
return subscriptionID, err
}