-
Notifications
You must be signed in to change notification settings - Fork 58
/
client.go
520 lines (479 loc) · 17.5 KB
/
client.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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
/*
* 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"
"fmt"
"sync"
"time"
"github.com/hazelcast/hazelcast-go-client/cluster"
"github.com/hazelcast/hazelcast-go-client/hzerrors"
"github.com/hazelcast/hazelcast-go-client/internal"
"github.com/hazelcast/hazelcast-go-client/internal/client"
icluster "github.com/hazelcast/hazelcast-go-client/internal/cluster"
icp "github.com/hazelcast/hazelcast-go-client/internal/cp"
"github.com/hazelcast/hazelcast-go-client/internal/event"
"github.com/hazelcast/hazelcast-go-client/internal/lifecycle"
inearcache "github.com/hazelcast/hazelcast-go-client/internal/nearcache"
"github.com/hazelcast/hazelcast-go-client/internal/proto/codec"
iproxy "github.com/hazelcast/hazelcast-go-client/internal/proxy"
"github.com/hazelcast/hazelcast-go-client/internal/serialization"
isql "github.com/hazelcast/hazelcast-go-client/internal/sql"
"github.com/hazelcast/hazelcast-go-client/internal/stats"
"github.com/hazelcast/hazelcast-go-client/sql"
"github.com/hazelcast/hazelcast-go-client/types"
)
const (
// ClientVersion is the semantic versioning compatible client version.
ClientVersion = internal.CurrentClientVersion
)
type AtomicLong = icp.AtomicLong
type AtomicRef = icp.AtomicRef
type CPMap = icp.Map
type CPSubsystem = icp.Subsystem
func NewLockContext(ctx context.Context) context.Context {
return iproxy.NewLockContext(ctx)
}
// StartNewClient creates and starts a new client with the default configuration.
// The default configuration is tuned connect to an Hazelcast cluster running on the same computer with the client.
func StartNewClient(ctx context.Context) (*Client, error) {
return StartNewClientWithConfig(ctx, NewConfig())
}
// StartNewClientWithConfig creates and starts a new client with the given configuration.
func StartNewClientWithConfig(ctx context.Context, config Config) (*Client, error) {
c, err := newClient(config)
if err != nil {
return nil, err
}
if err = c.ic.Start(ctx); err != nil {
return nil, err
}
return c, nil
}
// Client enables you to do all Hazelcast operations without being a member of the cluster.
// It connects to one or more of the cluster members and delegates all cluster wide operations to them.
type Client struct {
membershipListenerMapMu *sync.Mutex
proxyManager *proxyManager
membershipListenerMap map[types.UUID]int64
lifecycleListenerMap map[types.UUID]int64
lifecycleListenerMapMu *sync.Mutex
ic *client.Client
sqlService isql.Service
cpSubsystem CPSubsystem
nearCacheMgrsMu *sync.RWMutex
nearCacheMgrs map[string]*inearcache.Manager
cfg *Config
doneCh chan struct{}
}
func newClient(config Config) (*Client, error) {
config = config.Clone()
if err := config.Validate(); err != nil {
return nil, err
}
var c *Client
icc := &client.Config{
Name: config.ClientName,
Cluster: &config.Cluster,
Failover: &config.Failover,
Serialization: &config.Serialization,
Logger: &config.Logger,
Labels: config.Labels,
StatsEnabled: config.Stats.Enabled,
StatsPeriod: time.Duration(config.Stats.Period),
}
// TODO: size of the channel
schemaCh := make(chan serialization.SchemaMsg)
ic, err := client.New(icc, schemaCh)
if err != nil {
return nil, err
}
c = &Client{
ic: ic,
lifecycleListenerMap: map[types.UUID]int64{},
lifecycleListenerMapMu: &sync.Mutex{},
membershipListenerMap: map[types.UUID]int64{},
membershipListenerMapMu: &sync.Mutex{},
nearCacheMgrsMu: &sync.RWMutex{},
nearCacheMgrs: map[string]*inearcache.Manager{},
cfg: &config,
doneCh: make(chan struct{}),
}
if c.ic.StatsService != nil {
c.ic.StatsService.SetNCStatsGetter(func(service string) stats.NearCacheStatsGetter {
ncmgr, ok := c.nearCacheMgrs[service]
if !ok {
return nil
}
return ncmgr
})
}
c.addConfigEvents(&config)
c.createComponents(&config)
c.ic.AddBeforeShutdownHandler(c.destroyProxies)
c.ic.AddAfterShutdownHandler(c.stopNearCacheManagers)
c.ic.AddAfterShutdownHandler(func(ctx context.Context) {
close(c.doneCh)
})
go c.schemaInvoker(schemaCh)
return c, nil
}
func (c *Client) schemaInvoker(ch chan serialization.SchemaMsg) {
c.ic.Logger.Debug(func() string {
return "Started the schema invoker"
})
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
for {
select {
case msg := <-ch:
req := codec.EncodeClientFetchSchemaRequest(msg.ID)
resp, err := c.ic.Invoker.InvokeOnRandomTarget(ctx, req, nil)
if err != nil {
c.ic.Logger.Errorf("invoking ClientFetchSchema with schema ID: %d: %s", msg.ID, err)
msg.ResponseCh <- nil
continue
}
schema := codec.DecodeClientFetchSchemaResponse(resp)
msg.ResponseCh <- schema
case <-ctx.Done():
c.ic.Logger.Debug(func() string {
return "Stopped the schema invoker"
})
return
case <-c.doneCh:
cancel()
}
}
}
// Name returns client's name
// Use config.Name to set the client name.
// If not set manually, an automatically generated name is used.
func (c *Client) Name() string {
return c.ic.Name()
}
// GetList returns a list instance.
func (c *Client) GetList(ctx context.Context, name string) (*List, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
return c.proxyManager.getList(ctx, name)
}
// GetRingbuffer returns a Ringbuffer instance
func (c *Client) GetRingbuffer(ctx context.Context, name string) (*Ringbuffer, error) {
return c.proxyManager.getRingbuffer(ctx, name)
}
// GetMap returns a distributed map instance.
func (c *Client) GetMap(ctx context.Context, name string) (*Map, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
return c.proxyManager.getMap(ctx, name, func(p *proxy) (interface{}, error) {
m := newMap(p)
ncc, ok, err := c.cfg.GetNearCache(name)
if err != nil {
return nil, err
}
if !ok {
// there is no near cache config for this map
return m, nil
}
ncmgr := c.getNearCacheManager(ServiceNameMap)
nc := ncmgr.GetOrCreateNearCache(name, ncc)
ss := c.ic.SerializationService
rt := ncmgr.RepairingTask()
m.ncm, err = newNearCacheMap(ctx, nc, ss, rt, c.ic.Logger, name, m.proxy.listenerBinder, m.smart)
if err != nil {
return nil, err
}
m.hasNearCache = true
return m, nil
})
}
// GetReplicatedMap returns a replicated map instance.
func (c *Client) GetReplicatedMap(ctx context.Context, name string) (*ReplicatedMap, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
return c.proxyManager.getReplicatedMap(ctx, name)
}
// GetMultiMap returns a MultiMap instance.
func (c *Client) GetMultiMap(ctx context.Context, name string) (*MultiMap, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
return c.proxyManager.getMultiMap(ctx, name)
}
// GetQueue returns a queue instance.
func (c *Client) GetQueue(ctx context.Context, name string) (*Queue, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
return c.proxyManager.getQueue(ctx, name)
}
// GetTopic returns a topic instance.
func (c *Client) GetTopic(ctx context.Context, name string) (*Topic, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
return c.proxyManager.getTopic(ctx, name)
}
// GetSet returns a set instance.
func (c *Client) GetSet(ctx context.Context, name string) (*Set, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
return c.proxyManager.getSet(ctx, name)
}
// GetPNCounter returns a PNCounter instance.
func (c *Client) GetPNCounter(ctx context.Context, name string) (*PNCounter, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
return c.proxyManager.getPNCounter(ctx, name)
}
// GetFlakeIDGenerator returns a FlakeIDGenerator instance.
func (c *Client) GetFlakeIDGenerator(ctx context.Context, name string) (*FlakeIDGenerator, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
return c.proxyManager.getFlakeIDGenerator(ctx, name)
}
// GetDistributedObjectsInfo returns the information of all objects created cluster-wide.
func (c *Client) GetDistributedObjectsInfo(ctx context.Context) ([]types.DistributedObjectInfo, error) {
if c.ic.State() != client.Ready {
return nil, hzerrors.ErrClientNotActive
}
request := codec.EncodeClientGetDistributedObjectsRequest()
resp, err := c.proxyManager.invokeOnRandomTarget(ctx, request, nil)
if err != nil {
return nil, err
}
return codec.DecodeClientGetDistributedObjectsResponse(resp), nil
}
// Shutdown disconnects the client from the cluster and frees resources allocated by the client.
func (c *Client) Shutdown(ctx context.Context) error {
return c.ic.Shutdown(ctx)
}
// Running returns true if the client is running.
func (c *Client) Running() bool {
return c.ic.State() == client.Ready
}
// AddLifecycleListener adds a lifecycle state change handler after the client starts.
// Use the returned subscription ID to remove the listener.
// The handler must not block.
func (c *Client) AddLifecycleListener(handler LifecycleStateChangeHandler) (types.UUID, error) {
if c.ic.State() >= client.Stopping {
return types.UUID{}, hzerrors.ErrClientNotActive
}
uuid := types.NewUUID()
subscriptionID := event.NextSubscriptionID()
c.addLifecycleListener(subscriptionID, handler)
c.lifecycleListenerMapMu.Lock()
c.lifecycleListenerMap[uuid] = subscriptionID
c.lifecycleListenerMapMu.Unlock()
return uuid, nil
}
// RemoveLifecycleListener removes the lifecycle state change handler with the given subscription ID
func (c *Client) RemoveLifecycleListener(subscriptionID types.UUID) error {
if c.ic.State() >= client.Stopping {
return hzerrors.ErrClientNotActive
}
c.lifecycleListenerMapMu.Lock()
if intID, ok := c.lifecycleListenerMap[subscriptionID]; ok {
c.ic.EventDispatcher.Unsubscribe(eventLifecycleEventStateChanged, intID)
delete(c.lifecycleListenerMap, subscriptionID)
}
c.lifecycleListenerMapMu.Unlock()
return nil
}
// AddMembershipListener adds a member state change handler and returns a unique subscription ID.
// Use the returned subscription ID to remove the listener.
func (c *Client) AddMembershipListener(handler cluster.MembershipStateChangeHandler) (types.UUID, error) {
if c.ic.State() >= client.Stopping {
return types.UUID{}, hzerrors.ErrClientNotActive
}
uuid := types.NewUUID()
subscriptionID := event.NextSubscriptionID()
c.addMembershipListener(subscriptionID, handler)
c.membershipListenerMapMu.Lock()
c.membershipListenerMap[uuid] = subscriptionID
c.membershipListenerMapMu.Unlock()
return uuid, nil
}
// RemoveMembershipListener removes the member state change handler with the given subscription ID.
func (c *Client) RemoveMembershipListener(subscriptionID types.UUID) error {
if c.ic.State() >= client.Stopping {
return hzerrors.ErrClientNotActive
}
c.membershipListenerMapMu.Lock()
if intID, ok := c.membershipListenerMap[subscriptionID]; ok {
c.ic.EventDispatcher.Unsubscribe(icluster.EventMembers, intID)
delete(c.membershipListenerMap, subscriptionID)
}
c.membershipListenerMapMu.Unlock()
return nil
}
// AddDistributedObjectListener adds a distributed object listener and returns a unique subscription ID.
// Use the returned subscription ID to remove the listener.
func (c *Client) AddDistributedObjectListener(ctx context.Context, handler DistributedObjectNotifiedHandler) (types.UUID, error) {
if c.ic.State() >= client.Stopping {
return types.UUID{}, hzerrors.ErrClientNotActive
}
return c.proxyManager.addDistributedObjectEventListener(ctx, handler)
}
// RemoveDistributedObjectListener removes the distributed object listener handler with the given subscription ID.
func (c *Client) RemoveDistributedObjectListener(ctx context.Context, subscriptionID types.UUID) error {
if c.ic.State() >= client.Stopping {
return hzerrors.ErrClientNotActive
}
return c.proxyManager.removeDistributedObjectEventListener(ctx, subscriptionID)
}
// SQL returns a service to execute distributes SQL queries.
func (c *Client) SQL() sql.Service {
return c.sqlService
}
// CPSubsystem returns a service to offer a set of in-memory linearizable data structures.
func (c *Client) CPSubsystem() CPSubsystem {
return c.cpSubsystem
}
func (c *Client) addLifecycleListener(subscriptionID int64, handler LifecycleStateChangeHandler) {
c.ic.EventDispatcher.Subscribe(eventLifecycleEventStateChanged, subscriptionID, func(event event.Event) {
// This is a workaround to avoid cyclic dependency between internal/cluster and hazelcast package.
// A better solution would have been separating lifecycle events to its own package where both internal/cluster and hazelcast packages can access(but this is an API breaking change).
// The workaround is that we have two lifecycle events one is internal(inside internal/cluster) other is public.
// This is because internal/cluster can not use hazelcast package.
// We map internal ones to external ones on the handler before giving them to the user here.
e := event.(*lifecycle.StateChangedEvent)
var mapped LifecycleState
switch e.State {
case lifecycle.StateStarting:
mapped = LifecycleStateStarting
case lifecycle.StateStarted:
mapped = LifecycleStateStarted
case lifecycle.StateShuttingDown:
mapped = LifecycleStateShuttingDown
case lifecycle.StateShutDown:
mapped = LifecycleStateShutDown
case lifecycle.StateConnected:
mapped = LifecycleStateConnected
case lifecycle.StateDisconnected:
mapped = LifecycleStateDisconnected
case lifecycle.StateChangedCluster:
mapped = LifecycleStateChangedCluster
default:
c.ic.Logger.Warnf("no corresponding hazelcast.LifecycleStateChanged event found : %v", e.State)
return
}
handler(*newLifecycleStateChanged(mapped))
})
}
func (c *Client) addMembershipListener(subscriptionID int64, handler cluster.MembershipStateChangeHandler) {
c.ic.EventDispatcher.Subscribe(icluster.EventMembers, subscriptionID, func(event event.Event) {
e := event.(*icluster.MembersStateChangedEvent)
if e.State == icluster.MembersStateAdded {
for _, member := range e.Members {
handler(cluster.MembershipStateChanged{
State: cluster.MembershipStateAdded,
Member: member,
})
}
return
}
for _, member := range e.Members {
handler(cluster.MembershipStateChanged{
State: cluster.MembershipStateRemoved,
Member: member,
})
}
})
}
func (c *Client) addConfigEvents(config *Config) {
for uuid, handler := range config.lifecycleListeners {
subscriptionID := event.NextSubscriptionID()
c.addLifecycleListener(subscriptionID, handler)
c.lifecycleListenerMap[uuid] = subscriptionID
}
for uuid, handler := range config.membershipListeners {
subscriptionID := event.NextSubscriptionID()
c.addMembershipListener(subscriptionID, handler)
c.membershipListenerMap[uuid] = subscriptionID
}
}
func (c *Client) createComponents(config *Config) {
listenerBinder := icluster.NewConnectionListenerBinder(
c.ic.ConnectionManager,
c.ic.InvocationService,
c.ic.InvocationFactory,
c.ic.EventDispatcher,
c.ic.Logger,
!config.Cluster.Unisocket)
proxyManagerServiceBundle := creationBundle{
InvocationService: c.ic.InvocationService,
SerializationService: c.ic.SerializationService,
PartitionService: c.ic.PartitionService,
ClusterService: c.ic.ClusterService,
Config: config,
InvocationFactory: c.ic.InvocationFactory,
ListenerBinder: listenerBinder,
Logger: c.ic.Logger,
Invoker: c.ic.Invoker,
}
destroyNearCacheFun := func(service, object string) {
c.nearCacheMgrsMu.RLock()
defer c.nearCacheMgrsMu.RUnlock()
ncmgr, ok := c.nearCacheMgrs[service]
if !ok {
return
}
ncmgr.DestroyNearCache(object)
}
proxyManagerServiceBundle.NCMDestroyFn = destroyNearCacheFun
c.proxyManager = newProxyManager(proxyManagerServiceBundle)
c.cpSubsystem = icp.NewSubsystem(c.ic.SerializationService, c.ic.InvocationFactory, c.ic.InvocationService, &c.ic.Logger)
c.sqlService = isql.NewService(c.ic.ConnectionManager, c.ic.SerializationService, c.ic.Invoker, &c.ic.Logger)
}
func (c *Client) getNearCacheManager(service string) *inearcache.Manager {
c.nearCacheMgrsMu.RLock()
mgr, ok := c.nearCacheMgrs[service]
c.nearCacheMgrsMu.RUnlock()
if ok {
return mgr
}
c.nearCacheMgrsMu.Lock()
mgr, ok = c.nearCacheMgrs[service]
if !ok {
ris := c.cfg.NearCacheInvalidation.ReconciliationIntervalSeconds()
mis := c.cfg.NearCacheInvalidation.MaxToleratedMissCount()
mgr = inearcache.NewManager(c.ic, ris, mis)
c.nearCacheMgrs[service] = mgr
}
c.nearCacheMgrsMu.Unlock()
return mgr
}
func (c *Client) stopNearCacheManagers(ctx context.Context) {
c.nearCacheMgrsMu.RLock()
for s, m := range c.nearCacheMgrs {
c.ic.Logger.Debug(func() string {
return fmt.Sprintf("stopping near cache manager for %s", s)
})
m.Stop()
}
c.nearCacheMgrsMu.RUnlock()
}
func (c *Client) destroyProxies(ctx context.Context) {
c.proxyManager.destroyProxies(ctx)
}