-
Notifications
You must be signed in to change notification settings - Fork 3
/
client.h
219 lines (181 loc) · 5.63 KB
/
client.h
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
/*
* Tencent is pleased to support the open source community by making Blueking Container Service available.
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* 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.
*/
#ifndef _BSCP_CPP_SDK_CLIENT_H_
#define _BSCP_CPP_SDK_CLIENT_H_
// C++ standard.
#include <functional>
#include <iostream>
#include <map>
#include <memory>
#include <string>
#include <vector>
// grpc.
#include <grpcpp/grpcpp.h>
#include <grpcpp/security/credentials.h>
// bscp-cpp-sdk.
#include "internal/core/options.h"
#include "internal/core/upstream.h"
#include "internal/module/lb/load_balance.h"
#include "internal/module/log/log.h"
#include "internal/pkg/sf-share/type.h"
#include "internal/pkg/type.h"
#include "internal/tools/finger_print.h"
#include "internal/tools/lock.h"
#include "third-party/lrucache11/LRUCache11.hpp"
// protocol.
#include "pkg/protocol/core/config-item/config_item.pb.h"
#include "pkg/protocol/core/hook/hook.pb.h"
namespace bscp {
/**
* @brief Client. bscp client method.
*/
class Client final : public std::enable_shared_from_this<Client>
{
public:
Client(const core::ClientOptions& options)
: m_options(options), m_watchFlag(false), m_keepAliveFlag(false), m_readerValidFlag(true),
m_reconnectSignal(false), m_initialFlag(false), m_lastHeartbeatTimeMS(0)
{
}
~Client();
public:
/**
* @brief PullKvs get kv release from remote.
*
* @param app service name.
* @param match match range.
* @param opts app options.
* @param release the output result.
*
* @return return 0 if success, non zero if failed.
*/
int PullKvs(const std::string& app, std::vector<std::string>& match, const core::AppOptions& opts,
Release& release);
/**
* @brief Get pull key value from remote.
*
* @param app service name.
* @param key key name.
* @param opts app options.
* @param value the output value;
*
* @return return 0 if success, non zero if failed.
*/
int Get(const std::string& app, const std::string& key, const core::AppOptions& opts, std::string& value);
/**
* @brief AddWatcher add a watcher to client.
*
* @param app service name.
* @param callback callback function.
* @param opts app options.
*
* @return return 0 if success, non zero if failed.
*/
int AddWatcher(const std::string& app, Callback callback, core::AppOptions& opts);
/**
* @brief StartWatch start watch.
*
* @return return 0 if success, non zero if failed.
*/
int StartWatch();
/**
* @brief StopWatch stop watch.
*
* @return return 0 if success, non zero if failed.
*/
int StopWatch();
/**
* @brief Initialize initialize client.
*
* @return return 0 if success, non zero if failed.
*/
int Initialize();
private:
/**
* @brief WatchFunc watch func.
*
* @return void.
*/
void WatchFunc();
/**
* @brief Heartbeat heart beat.
*
* @return return 0 if success, non zero if failed.
*/
int Heartbeat();
/**
* @brief KeepAlive keep channel alive.
*
* @return void.
*/
void KeepAliveFunc();
/**
* @brief IsApiVersionMatch check api version.
*
* @param apiVersion input api version.
*
* @return return true if matched, false if unmatched.
*/
bool IsApiVersionMatch(const pbbase::Versioning& apiVersion);
/**
* @brief OnReleaseChange handle all instances release change event.
*
* @param event release change event.
*
* @return return 0 if success, non zero if failed.
*/
int OnReleaseChange(const sfs::ReleaseChangeEvent& event);
/**
* @brief Reconnect reconnect to server.
*
* @return return 0 if success, non zero if failed.
*/
int Reconnect();
private:
// subscribers.
std::vector<std::shared_ptr<Subscriber>> m_subscribers;
// start watch flag, watch thread ending signal.
std::atomic<bool> m_watchFlag;
// watch thread.
std::thread m_watchThread;
// keep alive flag.
std::atomic<bool> m_keepAliveFlag;
// keep alive thread.
std::thread m_keepAliveThread;
// watch data payload.
std::string m_payload;
// watch return grpc reader stream.
std::unique_ptr<grpc::ClientReader<pbfs::FeedWatchMessage>> m_reader;
// watch client context.
std::shared_ptr<grpc::ClientContext> m_readerContext;
// reader valid flag.
std::atomic<bool> m_readerValidFlag;
// reconnect signal, send from work thread.
std::atomic<bool> m_reconnectSignal;
// last heart beat time.
uint64_t m_lastHeartbeatTimeMS;
private:
// upstream client.
std::shared_ptr<core::Upstream> m_upstream;
// client options.
core::ClientOptions m_options;
// grpc channel.
std::shared_ptr<grpc::Channel> m_channel;
// lru cache.
std::shared_ptr<lru11::Cache<std::string, std::string>> m_cache;
// load balancer.
std::shared_ptr<lb::LoadBalancer> m_loadBalancer;
// initialize flag.
std::atomic<bool> m_initialFlag;
};
} // namespace bscp
#endif // _BSCP_CPP_SDK_CLIENT_H_