blob: b5ce9b52b30703a09c8cb4dbd365519cda615bfb [file] [log] [blame]
Rolf Badorekef2bf512019-08-20 11:17:15 +03001/*
2 Copyright (c) 2018-2019 Nokia.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
Timo Tietavainena0745d22019-11-28 09:55:22 +020017/*
18 * This source code is part of the near-RT RIC (RAN Intelligent Controller)
19 * platform project (RICP).
20*/
21
Rolf Badorekef2bf512019-08-20 11:17:15 +030022#ifndef SHAREDDATALAYER_REDIS_HIREDISCLUSTERSYSTEM_HPP_
23#define SHAREDDATALAYER_REDIS_HIREDISCLUSTERSYSTEM_HPP_
24
25#include <hircluster.h>
26
27namespace shareddatalayer
28{
29 namespace redis
30 {
31 class HiredisClusterSystem
32 {
33 public:
34 HiredisClusterSystem() = default;
35
36 HiredisClusterSystem(const HiredisClusterSystem&) = delete;
37
38 HiredisClusterSystem& operator = (const HiredisClusterSystem&) = delete;
39
40 virtual ~HiredisClusterSystem() = default;
41
42 virtual redisClusterAsyncContext* redisClusterAsyncConnect(const char* addrs, int flags);
43
44 virtual int redisClusterAsyncSetConnectCallback(redisClusterAsyncContext* acc,
45 redisClusterInstanceConnectCallback* fn);
46
47 virtual int redisClusterAsyncSetDisconnectCallback(redisClusterAsyncContext* acc,
48 redisClusterInstanceDisconnectCallback* fn);
49
50 virtual int redisClusterAsyncCommandArgv(redisClusterAsyncContext* acc, redisClusterCallbackFn* fn,
51 void* privdata, int argc, const char** argv,
52 const size_t* argvlen);
53
54 virtual int redisClusterAsyncCommandArgvWithKey(redisClusterAsyncContext* acc, redisClusterCallbackFn* fn,
55 void* privdata, const char* key, int keylen, int argc,
56 const char** argv, const size_t* argvlen);
57
58 virtual void redisAsyncHandleRead(redisAsyncContext* ac);
59
60 virtual void redisAsyncHandleWrite(redisAsyncContext* ac);
61
62 virtual void redisClusterAsyncDisconnect(redisClusterAsyncContext* acc);
63
64 virtual void redisClusterAsyncFree(redisClusterAsyncContext* acc);
65
66 static HiredisClusterSystem& getInstance();
67 };
68 }
69}
70
71#endif