forked from hazelcast/hazelcast-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy_multi_map.go
416 lines (373 loc) · 15.9 KB
/
proxy_multi_map.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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
/*
* 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"
"time"
"github.com/hazelcast/hazelcast-go-client/internal/proto"
"github.com/hazelcast/hazelcast-go-client/internal/proto/codec"
iproxy "github.com/hazelcast/hazelcast-go-client/internal/proxy"
"github.com/hazelcast/hazelcast-go-client/types"
)
/*
MultiMap is a distributed map.
Hazelcast Go client enables you to perform operations like reading and writing from/to a Hazelcast MultiMap with methods like Get and Put.
For details, see https://docs.hazelcast.com/hazelcast/latest/data-structures/multimap.html
# Using Locks
You can lock entries in a MultiMap.
When an entry is locked, only the owner of that lock can access that entry in the cluster until it is unlocked by the owner of force unlocked.
See https://docs.hazelcast.com/imdg/latest/data-structures/map.html#locking-maps for details, usage is identical.
Locks are reentrant.
The owner of a lock can acquire the lock again without waiting for the lock to be unlocked.
If the key is locked N times, it should be unlocked N times before another goroutine can acquire it.
Lock ownership in Hazelcast Go Client is explicit.
The first step to own a lock is creating a lock context, which is similar to a key.
The lock context is a regular context.Context which carry a special value that uniquely identifies the lock context in the cluster.
Once the lock context is created, it can be used to lock/unlock entries and used with any function that is lock aware, such as Put.
m, err := client.GetMultiMap(ctx, "my-map")
lockCtx := m.NewLockContext(ctx)
// block acquiring the lock
err = m.Lock(lockCtx, "some-key")
// pass lock context to use the locked entry
err = m.Put(lockCtx, "some-key", "some-value")
// release the lock once done with it
err = m.Unlock(lockCtx, "some-key")
As mentioned before, lock context is a regular context.Context which carry a special lock ID.
You can pass any context.Context to any MultiMap function, but in that case lock ownership between operations using the same hazelcast.Client instance is not possible.
*/
type MultiMap struct {
*proxy
}
func newMultiMap(p *proxy) *MultiMap {
return &MultiMap{proxy: p}
}
// NewLockContext augments the passed parent context with a unique lock ID.
// If passed context is nil, context.Background is used as the parent context.
// Deprecated: Use hazelcast.NewLockContext() instead.
func (m *MultiMap) NewLockContext(ctx context.Context) context.Context {
return NewLockContext(ctx)
}
// Clear deletes all entries one by one and fires related events.
func (m *MultiMap) Clear(ctx context.Context) error {
request := codec.EncodeMultiMapClearRequest(m.name)
_, err := m.invokeOnRandomTarget(ctx, request, nil)
return err
}
// ContainsKey returns true if the map contains an entry with the given key.
func (m *MultiMap) ContainsKey(ctx context.Context, key interface{}) (bool, error) {
lid := iproxy.ExtractLockID(ctx)
if keyData, err := m.validateAndSerialize(key); err != nil {
return false, err
} else {
request := codec.EncodeMultiMapContainsKeyRequest(m.name, keyData, lid)
if response, err := m.invokeOnKey(ctx, request, keyData); err != nil {
return false, err
} else {
return codec.DecodeMultiMapContainsKeyResponse(response), nil
}
}
}
// ContainsValue returns true if the map contains an entry with the given value.
func (m *MultiMap) ContainsValue(ctx context.Context, value interface{}) (bool, error) {
if valueData, err := m.validateAndSerialize(value); err != nil {
return false, err
} else {
request := codec.EncodeMultiMapContainsValueRequest(m.name, valueData)
if response, err := m.invokeOnRandomTarget(ctx, request, nil); err != nil {
return false, err
} else {
return codec.DecodeMultiMapContainsValueResponse(response), nil
}
}
}
// ContainsEntry returns true if the multi-map contains an entry with the given key and value.
func (m *MultiMap) ContainsEntry(ctx context.Context, key interface{}, value interface{}) (bool, error) {
lid := iproxy.ExtractLockID(ctx)
keyData, err := m.validateAndSerialize(key)
if err != nil {
return false, err
}
valueData, err := m.validateAndSerialize(value)
if err != nil {
return false, err
}
request := codec.EncodeMultiMapContainsEntryRequest(m.name, keyData, valueData, lid)
response, err := m.invokeOnKey(ctx, request, keyData)
if err != nil {
return false, err
}
return codec.DecodeMultiMapContainsEntryResponse(response), nil
}
// ValueCount returns the number of values that match the given key in the multi-map.
func (m *MultiMap) ValueCount(ctx context.Context, key interface{}) (int, error) {
lid := iproxy.ExtractLockID(ctx)
keyData, err := m.validateAndSerialize(key)
if err != nil {
return 0, err
}
request := codec.EncodeMultiMapValueCountRequest(m.name, keyData, lid)
response, err := m.invokeOnKey(ctx, request, keyData)
if err != nil {
return 0, err
}
return int(codec.DecodeMultiMapValueCountResponse(response)), nil
}
// Delete removes the mapping for a key from this multi-map if it is present.
// Unlike remove(object), this operation does not return the removed value, which avoids the serialization cost of
// the returned value. If the removed value will not be used, delete operation is preferred over remove
// operation for better performance.
func (m *MultiMap) Delete(ctx context.Context, key interface{}) error {
lid := iproxy.ExtractLockID(ctx)
if keyData, err := m.validateAndSerialize(key); err != nil {
return err
} else {
request := codec.EncodeMultiMapDeleteRequest(m.name, keyData, lid)
_, err := m.invokeOnKey(ctx, request, keyData)
return err
}
}
// ForceUnlock releases the lock for the specified key regardless of the lock owner.
// It always successfully unlocks the key, never blocks, and returns immediately.
func (m *MultiMap) ForceUnlock(ctx context.Context, key interface{}) error {
if keyData, err := m.validateAndSerialize(key); err != nil {
return err
} else {
refID := m.refIDGen.NextID()
request := codec.EncodeMultiMapForceUnlockRequest(m.name, keyData, refID)
_, err = m.invokeOnKey(ctx, request, keyData)
return err
}
}
// Get returns values for the specified key or an empty slice if this multi-map does not contain this key.
// Warning:
// This method returns a clone of original value, modifying the returned value does not change the
// actual value in the multi-map. One should put modified value back to make changes visible to all nodes.
func (m *MultiMap) Get(ctx context.Context, key interface{}) ([]interface{}, error) {
lid := iproxy.ExtractLockID(ctx)
if keyData, err := m.validateAndSerialize(key); err != nil {
return nil, err
} else {
request := codec.EncodeMultiMapGetRequest(m.name, keyData, lid)
if response, err := m.invokeOnKey(ctx, request, keyData); err != nil {
return nil, err
} else {
return m.convertToObjects(codec.DecodeMultiMapGetResponse(response))
}
}
}
// GetEntrySet returns a clone of the mappings contained in this multi-map.
func (m *MultiMap) GetEntrySet(ctx context.Context) ([]types.Entry, error) {
request := codec.EncodeMultiMapEntrySetRequest(m.name)
if response, err := m.invokeOnRandomTarget(ctx, request, nil); err != nil {
return nil, err
} else {
return m.convertPairsToEntries(codec.DecodeMultiMapEntrySetResponse(response))
}
}
// GetKeySet returns keys contained in this map.
func (m *MultiMap) GetKeySet(ctx context.Context) ([]interface{}, error) {
request := codec.EncodeMultiMapKeySetRequest(m.name)
if response, err := m.invokeOnRandomTarget(ctx, request, nil); err != nil {
return nil, err
} else {
keyDatas := codec.DecodeMultiMapKeySetResponse(response)
keys := make([]interface{}, len(keyDatas))
for i, keyData := range keyDatas {
if key, err := m.convertToObject(keyData); err != nil {
return nil, err
} else {
keys[i] = key
}
}
return keys, nil
}
}
// GetValues returns a list clone of the values contained in this map.
func (m *MultiMap) GetValues(ctx context.Context) ([]interface{}, error) {
request := codec.EncodeMultiMapValuesRequest(m.name)
if response, err := m.invokeOnRandomTarget(ctx, request, nil); err != nil {
return nil, err
} else {
return m.convertToObjects(codec.DecodeMultiMapValuesResponse(response))
}
}
// IsLocked checks the lock for the specified key.
func (m *MultiMap) IsLocked(ctx context.Context, key interface{}) (bool, error) {
if keyData, err := m.validateAndSerialize(key); err != nil {
return false, err
} else {
request := codec.EncodeMultiMapIsLockedRequest(m.name, keyData)
if response, err := m.invokeOnKey(ctx, request, keyData); err != nil {
return false, err
} else {
return codec.DecodeMultiMapIsLockedResponse(response), nil
}
}
}
/*
Lock acquires the lock for the specified key infinitely.
If the lock is not available, the current goroutine is blocked until the lock is acquired using the same lock context.
You get a lock whether the value is present in the multi-map or not.
Other goroutines or threads on other systems would block on their invoke of Lock until the non-existent key is unlocked.
If the lock holder introduces the key to the map, the Put operation is not blocked.
If a goroutine not holding a lock on the non-existent key tries to introduce the key while a lock exists on the non-existent key, the Put operation blocks until it is unlocked.
Scope of the lock is this MultiMap only.
Acquired lock is only for the key in this map.
Locks are re-entrant.
If the key is locked N times, it should be unlocked N times before another goroutine can acquire it.
*/
func (m *MultiMap) Lock(ctx context.Context, key interface{}) error {
return m.lock(ctx, key, ttlUnset)
}
// LockWithLease acquires the lock for the specified lease time.
// Otherwise, it behaves the same as Lock function.
func (m *MultiMap) LockWithLease(ctx context.Context, key interface{}, leaseTime time.Duration) error {
return m.lock(ctx, key, leaseTime.Milliseconds())
}
// Put appends the value for the given key to the corresponding value list and returns if operation is successful.
func (m *MultiMap) Put(ctx context.Context, key interface{}, value interface{}) (bool, error) {
return m.put(ctx, key, value)
}
// PutAll appends given values to the value list of given key.
// No atomicity guarantees are given. In the case of a failure, some key-value tuples may get written,
// while others are not.
func (m *MultiMap) PutAll(ctx context.Context, key interface{}, values ...interface{}) error {
keyData, err := m.validateAndSerialize(key)
if err != nil {
return err
}
valuesData, err := m.validateAndSerializeValues(values)
if err != nil {
return err
}
request := codec.EncodeMultiMapPutAllRequest(m.name, []proto.Pair{proto.NewPair(keyData, valuesData)})
if _, err := m.invokeOnKey(ctx, request, keyData); err != nil {
return err
}
return nil
}
// Remove deletes all the values corresponding to the given key and returns them as a slice.
func (m *MultiMap) Remove(ctx context.Context, key interface{}) ([]interface{}, error) {
lid := iproxy.ExtractLockID(ctx)
if keyData, err := m.validateAndSerialize(key); err != nil {
return nil, err
} else {
request := codec.EncodeMultiMapRemoveRequest(m.name, keyData, lid)
if response, err := m.invokeOnKey(ctx, request, keyData); err != nil {
return nil, err
} else {
return m.convertToObjects(codec.DecodeMultiMapRemoveResponse(response))
}
}
}
// RemoveEntry removes the specified value for the given key and returns true if call had an effect.
func (m *MultiMap) RemoveEntry(ctx context.Context, key interface{}, value interface{}) (bool, error) {
lid := iproxy.ExtractLockID(ctx)
keyData, err := m.validateAndSerialize(key)
if err != nil {
return false, err
}
valueData, err := m.validateAndSerialize(value)
if err != nil {
return false, err
}
request := codec.EncodeMultiMapRemoveEntryRequest(m.name, keyData, valueData, lid)
response, err := m.invokeOnKey(ctx, request, keyData)
if err != nil {
return false, err
}
return codec.DecodeMultiMapRemoveEntryResponse(response), nil
}
// Size returns the number of entries in this multi-map.
func (m *MultiMap) Size(ctx context.Context) (int, error) {
request := codec.EncodeMultiMapSizeRequest(m.name)
if response, err := m.invokeOnRandomTarget(ctx, request, nil); err != nil {
return 0, err
} else {
return int(codec.DecodeMultiMapSizeResponse(response)), nil
}
}
// TryLock tries to acquire the lock for the specified key.
// When the lock is not available, the current goroutine doesn't wait and returns false immediately.
func (m *MultiMap) TryLock(ctx context.Context, key interface{}) (bool, error) {
return m.tryLock(ctx, key, leaseUnset, 0)
}
// TryLockWithLease tries to acquire the lock for the specified key.
// Lock will be released after lease time passes.
func (m *MultiMap) TryLockWithLease(ctx context.Context, key interface{}, lease time.Duration) (bool, error) {
return m.tryLock(ctx, key, lease.Milliseconds(), 0)
}
// TryLockWithTimeout tries to acquire the lock for the specified key.
// The current goroutine is blocked until the lock is acquired using the same lock context, or he specified waiting time elapses.
func (m *MultiMap) TryLockWithTimeout(ctx context.Context, key interface{}, timeout time.Duration) (bool, error) {
return m.tryLock(ctx, key, leaseUnset, timeout.Milliseconds())
}
// TryLockWithLeaseAndTimeout tries to acquire the lock for the specified key.
// The current goroutine is blocked until the lock is acquired using the same lock context, or he specified waiting time elapses.
// Lock will be released after lease time passes.
func (m *MultiMap) TryLockWithLeaseAndTimeout(ctx context.Context, key interface{}, lease time.Duration, timeout time.Duration) (bool, error) {
return m.tryLock(ctx, key, lease.Milliseconds(), timeout.Milliseconds())
}
// Unlock releases the lock for the specified key.
func (m *MultiMap) Unlock(ctx context.Context, key interface{}) error {
lid := iproxy.ExtractLockID(ctx)
if keyData, err := m.validateAndSerialize(key); err != nil {
return err
} else {
refID := m.refIDGen.NextID()
request := codec.EncodeMultiMapUnlockRequest(m.name, keyData, lid, refID)
_, err = m.invokeOnKey(ctx, request, keyData)
return err
}
}
func (m *MultiMap) lock(ctx context.Context, key interface{}, ttl int64) error {
lid := iproxy.ExtractLockID(ctx)
if keyData, err := m.validateAndSerialize(key); err != nil {
return err
} else {
refID := m.refIDGen.NextID()
request := codec.EncodeMultiMapLockRequest(m.name, keyData, lid, ttl, refID)
_, err = m.invokeOnKey(ctx, request, keyData)
return err
}
}
func (m *MultiMap) put(ctx context.Context, key interface{}, value interface{}) (bool, error) {
lid := iproxy.ExtractLockID(ctx)
if keyData, valueData, err := m.validateAndSerialize2(key, value); err != nil {
return false, err
} else {
request := codec.EncodeMultiMapPutRequest(m.name, keyData, valueData, lid)
if response, err := m.invokeOnKey(ctx, request, keyData); err != nil {
return false, err
} else {
return codec.DecodeMultiMapPutResponse(response), nil
}
}
}
func (m *MultiMap) tryLock(ctx context.Context, key interface{}, lease int64, timeout int64) (bool, error) {
lid := iproxy.ExtractLockID(ctx)
if keyData, err := m.validateAndSerialize(key); err != nil {
return false, err
} else {
refID := m.refIDGen.NextID()
request := codec.EncodeMultiMapTryLockRequest(m.name, keyData, lid, lease, timeout, refID)
if response, err := m.invokeOnKey(ctx, request, keyData); err != nil {
return false, err
} else {
return codec.DecodeMultiMapTryLockResponse(response), nil
}
}
}