-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathrsync_client.h
More file actions
251 lines (224 loc) · 7.13 KB
/
Copy pathrsync_client.h
File metadata and controls
251 lines (224 loc) · 7.13 KB
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
// Copyright (c) 2023-present, Qihoo, Inc. All rights reserved.
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree. An additional grant
// of patent rights can be found in the PATENTS file in the same directory.
#ifndef RSYNC_CLIENT_H_
#define RSYNC_CLIENT_H_
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <list>
#include <atomic>
#include <memory>
#include <thread>
#include <condition_variable>
#include <glog/logging.h>
#include "net/include/bg_thread.h"
#include "net/include/net_cli.h"
#include "pstd/include/env.h"
#include "pstd/include/pstd_status.h"
#include "pstd/include/pstd_hash.h"
#include "pstd/include/pstd_string.h"
#include "pstd/include/pstd_status.h"
#include "include/pika_define.h"
#include "include/rsync_client_thread.h"
#include "include/throttle.h"
#include "rsync_service.pb.h"
extern std::unique_ptr<PikaConf> g_pika_conf;
const std::string kDumpMetaFileName = "DUMP_META_DATA";
const std::string kUuidPrefix = "snapshot-uuid:";
const size_t kInvalidOffset = 0xFFFFFFFF;
namespace rsync {
class RsyncWriter;
class Session;
class WaitObject;
class WaitObjectManager;
using pstd::Status;
using ResponseSPtr = std::shared_ptr<RsyncService::RsyncResponse>;
class RsyncClient : public net::Thread {
public:
enum State {
IDLE,
RUNNING,
STOP,
};
RsyncClient(const std::string& dir, const std::string& db_name);
void* ThreadMain() override;
void Copy(const std::set<std::string>& file_set, int index);
bool Init();
int GetParallelNum();
Status Start();
Status Stop();
bool IsRunning() {
return state_.load() == RUNNING;
}
bool IsExitedFromRunning() {
return state_.load() == STOP && all_worker_exited_.load();
}
bool IsStop() {
return state_.load() == STOP;
}
bool IsIdle() { return state_.load() == IDLE;}
void OnReceive(RsyncService::RsyncResponse* resp);
private:
bool ComparisonUpdate();
Status CopyRemoteFile(const std::string& filename, int index);
Status PullRemoteMeta(std::string* snapshot_uuid, std::set<std::string>* file_set);
Status LoadLocalMeta(std::string* snapshot_uuid, std::map<std::string, std::string>* file_map);
std::string GetLocalMetaFilePath();
Status FlushMetaTable();
Status CleanUpExpiredFiles(bool need_reset_path, const std::set<std::string>& files);
Status UpdateLocalMeta(const std::string& snapshot_uuid, const std::set<std::string>& expired_files,
std::map<std::string, std::string>* localFileMap);
void HandleRsyncMetaResponse(RsyncService::RsyncResponse* response);
private:
typedef std::unique_ptr<RsyncClientThread> NetThreadUPtr;
std::map<std::string, std::string> meta_table_;
std::set<std::string> file_set_;
std::string snapshot_uuid_;
std::string dir_;
std::string db_name_;
NetThreadUPtr client_thread_;
std::vector<std::thread> work_threads_;
std::atomic<int> finished_work_cnt_ = 0;
std::atomic<State> state_;
std::atomic<bool> error_stopped_{false};
std::atomic<bool> all_worker_exited_{true};
int max_retries_ = 10;
std::unique_ptr<WaitObjectManager> wo_mgr_;
std::condition_variable cond_;
std::mutex mu_;
std::string master_ip_;
int master_port_;
int parallel_num_;
};
class RsyncWriter {
public:
RsyncWriter(const std::string& filepath) {
filepath_ = filepath;
// NOTE: do NOT use O_APPEND here. rsync writes each chunk to an explicit
// offset via pwrite(). O_APPEND would force every write to the end of the
// file, ignoring the offset, which corrupts the file on retry / resumed
// transfer / stale-file scenarios (holes, duplicated or misplaced data).
fd_ = open(filepath.c_str(), O_RDWR | O_CREAT, 0644);
}
~RsyncWriter() {}
Status Write(uint64_t offset, size_t n, const char* data) {
const char* ptr = data;
size_t left = n;
Status s;
while (left != 0) {
ssize_t done = pwrite(fd_, ptr, left, offset);
if (done < 0) {
if (errno == EINTR) {
continue;
}
LOG(WARNING) << "pwrite failed, filename: " << filepath_ << "errno: " << strerror(errno) << "n: " << n;
return Status::IOError(filepath_, "pwrite failed");
}
left -= done;
ptr += done;
offset += done;
}
return Status::OK();
}
Status Close() {
close(fd_);
return Status::OK();
}
Status Fsync() {
fsync(fd_);
return Status::OK();
}
private:
std::string filepath_;
int fd_ = -1;
};
class WaitObject {
public:
WaitObject() : filename_(""), type_(RsyncService::kRsyncMeta), offset_(0), resp_(nullptr) {}
~WaitObject() {}
void Reset(const std::string& filename, RsyncService::Type t, size_t offset) {
std::lock_guard<std::mutex> guard(mu_);
resp_.reset();
filename_ = filename;
type_ = t;
offset_ = offset;
}
pstd::Status Wait(ResponseSPtr& resp) {
auto timeout = g_pika_conf->rsync_timeout_ms();
std::unique_lock<std::mutex> lock(mu_);
auto cv_s = cond_.wait_for(lock, std::chrono::milliseconds(timeout), [this] {
return resp_.get() != nullptr;
});
if (!cv_s) {
std::string timout_info("timeout during(in ms) is ");
timout_info.append(std::to_string(timeout));
return pstd::Status::Timeout("rsync timeout", timout_info);
}
resp = resp_;
return pstd::Status::OK();
}
void WakeUp(RsyncService::RsyncResponse* resp) {
std::unique_lock<std::mutex> lock(mu_);
resp_.reset(resp);
offset_ = kInvalidOffset;
cond_.notify_all();
}
std::string Filename() {return filename_;}
RsyncService::Type Type() {return type_;}
size_t Offset() {return offset_;}
private:
std::string filename_;
RsyncService::Type type_;
size_t offset_ = kInvalidOffset;
ResponseSPtr resp_ = nullptr;
std::condition_variable cond_;
std::mutex mu_;
};
class WaitObjectManager {
public:
WaitObjectManager() {
wo_vec_.resize(kMaxRsyncParallelNum);
for (int i = 0; i < kMaxRsyncParallelNum; i++) {
wo_vec_[i] = new WaitObject();
}
}
~WaitObjectManager() {
for (int i = 0; i < wo_vec_.size(); i++) {
delete wo_vec_[i];
wo_vec_[i] = nullptr;
}
}
WaitObject* UpdateWaitObject(int worker_index, const std::string& filename,
RsyncService::Type type, size_t offset) {
std::lock_guard<std::mutex> guard(mu_);
wo_vec_[worker_index]->Reset(filename, type, offset);
return wo_vec_[worker_index];
}
void WakeUp(RsyncService::RsyncResponse* resp) {
std::lock_guard<std::mutex> guard(mu_);
int index = resp->reader_index();
if (wo_vec_[index] == nullptr || resp->type() != wo_vec_[index]->Type()) {
delete resp;
return;
}
if (resp->code() != RsyncService::kOk) {
LOG(WARNING) << "rsync response error";
wo_vec_[index]->WakeUp(resp);
return;
}
if (resp->type() == RsyncService::kRsyncFile &&
((resp->file_resp().filename() != wo_vec_[index]->Filename()) ||
(resp->file_resp().offset() != wo_vec_[index]->Offset()))) {
delete resp;
return;
}
wo_vec_[index]->WakeUp(resp);
}
private:
std::vector<WaitObject*> wo_vec_;
std::mutex mu_;
};
} // end namespace rsync
#endif