forked from ClickHouse/clickhouse-cpp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclient.cpp
764 lines (613 loc) · 19.6 KB
/
client.cpp
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
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
#include "client.h"
#include "protocol.h"
#include "base/coded.h"
#include "base/compressed.h"
#include "base/socket.h"
#include "base/wire_format.h"
#include "columns/factory.h"
#include <cityhash/city.h>
#include <lz4/lz4.h>
#include <assert.h>
#include <atomic>
#include <system_error>
#include <thread>
#include <vector>
#include <sstream>
#define DBMS_NAME "ClickHouse"
#define DBMS_VERSION_MAJOR 1
#define DBMS_VERSION_MINOR 1
#define REVISION 54126
#define DBMS_MIN_REVISION_WITH_TEMPORARY_TABLES 50264
#define DBMS_MIN_REVISION_WITH_TOTAL_ROWS_IN_PROGRESS 51554
#define DBMS_MIN_REVISION_WITH_BLOCK_INFO 51903
#define DBMS_MIN_REVISION_WITH_CLIENT_INFO 54032
#define DBMS_MIN_REVISION_WITH_SERVER_TIMEZONE 54058
#define DBMS_MIN_REVISION_WITH_QUOTA_KEY_IN_CLIENT_INFO 54060
namespace clickhouse {
struct ClientInfo {
uint8_t iface_type = 1; // TCP
uint8_t query_kind;
std::string initial_user;
std::string initial_query_id;
std::string quota_key;
std::string os_user;
std::string client_hostname;
std::string client_name;
std::string initial_address = "[::ffff:127.0.0.1]:0";
uint64_t client_version_major = 0;
uint64_t client_version_minor = 0;
uint32_t client_revision = 0;
};
struct ServerInfo {
std::string name;
std::string timezone;
uint64_t version_major;
uint64_t version_minor;
uint64_t revision;
};
std::ostream& operator<<(std::ostream& os, const ClientOptions& opt) {
os << "Client(" << opt.user << '@' << opt.host << ":" << opt.port
<< " ping_before_query:" << opt.ping_before_query
<< " send_retries:" << opt.send_retries
<< " retry_timeout:" << opt.retry_timeout.count()
<< " compression_method:"
<< (opt.compression_method == CompressionMethod::LZ4 ? "LZ4" : "None")
<< ")";
return os;
}
class Client::Impl {
public:
Impl(const ClientOptions& opts);
~Impl();
void ExecuteQuery(Query query);
void SendCancel();
void Insert(const std::string& table_name, const Block& block);
void Ping();
void ResetConnection();
private:
bool Handshake();
bool ReceivePacket(uint64_t* server_packet = nullptr);
void SendQuery(const std::string& query);
void SendData(const Block& block);
bool SendHello();
bool ReadBlock(Block* block, CodedInputStream* input);
bool ReceiveHello();
/// Reads data packet form input stream.
bool ReceiveData();
/// Reads exception packet form input stream.
bool ReceiveException(bool rethrow = false);
void WriteBlock(const Block& block, CodedOutputStream* output);
private:
void Disconnect() {
socket_.Close();
}
/// In case of network errors tries to reconnect to server and
/// call fuc several times.
void RetryGuard(std::function<void()> fuc);
private:
class EnsureNull {
public:
inline EnsureNull(QueryEvents* ev, QueryEvents** ptr)
: ptr_(ptr)
{
if (ptr_) {
*ptr_ = ev;
}
}
inline ~EnsureNull() {
if (ptr_) {
*ptr_ = nullptr;
}
}
private:
QueryEvents** ptr_;
};
const ClientOptions options_;
QueryEvents* events_;
int compression_ = CompressionState::Disable;
SocketHolder socket_;
SocketInput socket_input_;
BufferedInput buffered_input_;
CodedInputStream input_;
SocketOutput socket_output_;
BufferedOutput buffered_output_;
CodedOutputStream output_;
ServerInfo server_info_;
};
Client::Impl::Impl(const ClientOptions& opts)
: options_(opts)
, events_(nullptr)
, socket_(-1)
, socket_input_(socket_)
, buffered_input_(&socket_input_)
, input_(&buffered_input_)
, socket_output_(socket_)
, buffered_output_(&socket_output_)
, output_(&buffered_output_)
{
for (int i = 0; ; ) {
try {
ResetConnection();
break;
} catch (const std::system_error&) {
if (++i > options_.send_retries) {
throw;
}
std::this_thread::sleep_for(options_.retry_timeout);
}
}
if (options_.compression_method != CompressionMethod::None) {
compression_ = CompressionState::Enable;
}
}
Client::Impl::~Impl() {
Disconnect();
}
void Client::Impl::ExecuteQuery(Query query) {
EnsureNull en(static_cast<QueryEvents*>(&query), &events_);
if (options_.ping_before_query) {
RetryGuard([this]() { Ping(); });
}
SendQuery(query.GetText());
while (ReceivePacket()) {
;
}
}
void Client::Impl::Insert(const std::string& table_name, const Block& block) {
if (options_.ping_before_query) {
RetryGuard([this]() { Ping(); });
}
std::vector<std::string> fields;
fields.reserve(block.GetColumnCount());
// Enumerate all fields
for (unsigned int i = 0; i < block.GetColumnCount(); i++) {
fields.push_back(block.GetColumnName(i));
}
std::stringstream fields_section;
for (auto elem = fields.begin(); elem != fields.end(); ++elem) {
if (std::distance(elem, fields.end()) == 1) {
fields_section << *elem;
} else {
fields_section << *elem << ",";
}
}
SendQuery("INSERT INTO " + table_name + " ( " + fields_section.str() + " ) VALUES");
uint64_t server_packet;
// Receive data packet.
while (true) {
bool ret = ReceivePacket(&server_packet);
if (!ret) {
throw std::runtime_error("fail to receive data packet");
}
if (server_packet == ServerCodes::Data) {
break;
}
if (server_packet == ServerCodes::Progress) {
continue;
}
}
// Send data.
SendData(block);
// Send empty block as marker of
// end of data.
SendData(Block());
// Wait for EOS.
while (ReceivePacket()) {
;
}
}
void Client::Impl::Ping() {
WireFormat::WriteUInt64(&output_, ClientCodes::Ping);
output_.Flush();
uint64_t server_packet;
const bool ret = ReceivePacket(&server_packet);
if (!ret || server_packet != ServerCodes::Pong) {
throw std::runtime_error("fail to ping server");
}
}
void Client::Impl::ResetConnection() {
SocketHolder s(SocketConnect(NetworkAddress(options_.host, std::to_string(options_.port))));
if (s.Closed()) {
throw std::system_error(errno, std::system_category());
}
socket_ = std::move(s);
socket_input_ = SocketInput(socket_);
socket_output_ = SocketOutput(socket_);
buffered_input_.Reset();
buffered_output_.Reset();
if (!Handshake()) {
throw std::runtime_error("fail to connect to " + options_.host);
}
}
bool Client::Impl::Handshake() {
if (!SendHello()) {
return false;
}
if (!ReceiveHello()) {
return false;
}
return true;
}
bool Client::Impl::ReceivePacket(uint64_t* server_packet) {
uint64_t packet_type = 0;
if (!input_.ReadVarint64(&packet_type)) {
return false;
}
if (server_packet) {
*server_packet = packet_type;
}
switch (packet_type) {
case ServerCodes::Data: {
if (!ReceiveData()) {
throw std::runtime_error("can't read data packet from input stream");
}
return true;
}
case ServerCodes::Exception: {
ReceiveException();
return false;
}
case ServerCodes::ProfileInfo: {
Profile profile;
if (!WireFormat::ReadUInt64(&input_, &profile.rows)) {
return false;
}
if (!WireFormat::ReadUInt64(&input_, &profile.blocks)) {
return false;
}
if (!WireFormat::ReadUInt64(&input_, &profile.bytes)) {
return false;
}
if (!WireFormat::ReadFixed(&input_, &profile.applied_limit)) {
return false;
}
if (!WireFormat::ReadUInt64(&input_, &profile.rows_before_limit)) {
return false;
}
if (!WireFormat::ReadFixed(&input_, &profile.calculated_rows_before_limit)) {
return false;
}
if (events_) {
events_->OnProfile(profile);
}
return true;
}
case ServerCodes::Progress: {
Progress info;
if (!WireFormat::ReadUInt64(&input_, &info.rows)) {
return false;
}
if (!WireFormat::ReadUInt64(&input_, &info.bytes)) {
return false;
}
if (REVISION >= DBMS_MIN_REVISION_WITH_TOTAL_ROWS_IN_PROGRESS) {
if (!WireFormat::ReadUInt64(&input_, &info.total_rows)) {
return false;
}
}
if (events_) {
events_->OnProgress(info);
}
return true;
}
case ServerCodes::Pong: {
return true;
}
case ServerCodes::EndOfStream: {
if (events_) {
events_->OnFinish();
}
return false;
}
default:
throw std::runtime_error("unimplemented " + std::to_string((int)packet_type));
break;
}
return false;
}
bool Client::Impl::ReadBlock(Block* block, CodedInputStream* input) {
// Additional information about block.
if (REVISION >= DBMS_MIN_REVISION_WITH_BLOCK_INFO) {
uint64_t num;
BlockInfo info;
// BlockInfo
if (!WireFormat::ReadUInt64(input, &num)) {
return false;
}
if (!WireFormat::ReadFixed(input, &info.is_overflows)) {
return false;
}
if (!WireFormat::ReadUInt64(input, &num)) {
return false;
}
if (!WireFormat::ReadFixed(input, &info.bucket_num)) {
return false;
}
if (!WireFormat::ReadUInt64(input, &num)) {
return false;
}
// TODO use data
}
uint64_t num_columns = 0;
uint64_t num_rows = 0;
if (!WireFormat::ReadUInt64(input, &num_columns)) {
return false;
}
if (!WireFormat::ReadUInt64(input, &num_rows)) {
return false;
}
for (size_t i = 0; i < num_columns; ++i) {
std::string name;
std::string type;
if (!WireFormat::ReadString(input, &name)) {
return false;
}
if (!WireFormat::ReadString(input, &type)) {
return false;
}
if (ColumnRef col = CreateColumnByType(type)) {
if (num_rows && !col->Load(input, num_rows)) {
throw std::runtime_error("can't load");
}
block->AppendColumn(name, col);
} else {
throw std::runtime_error(std::string("unsupported column type: ") + type);
}
}
return true;
}
bool Client::Impl::ReceiveData() {
Block block;
if (REVISION >= DBMS_MIN_REVISION_WITH_TEMPORARY_TABLES) {
std::string table_name;
if (!WireFormat::ReadString(&input_, &table_name)) {
return false;
}
}
if (compression_ == CompressionState::Enable) {
CompressedInput compressed(&input_);
CodedInputStream coded(&compressed);
if (!ReadBlock(&block, &coded)) {
return false;
}
} else {
if (!ReadBlock(&block, &input_)) {
return false;
}
}
if (events_) {
events_->OnData(block);
if (!events_->OnDataCancelable(block)) {
SendCancel();
}
}
return true;
}
bool Client::Impl::ReceiveException(bool rethrow) {
std::unique_ptr<Exception> e(new Exception);
Exception* current = e.get();
do {
bool has_nested = false;
if (!WireFormat::ReadFixed(&input_, ¤t->code)) {
return false;
}
if (!WireFormat::ReadString(&input_, ¤t->name)) {
return false;
}
if (!WireFormat::ReadString(&input_, ¤t->display_text)) {
return false;
}
if (!WireFormat::ReadString(&input_, ¤t->stack_trace)) {
return false;
}
if (!WireFormat::ReadFixed(&input_, &has_nested)) {
return false;
}
if (has_nested) {
current->nested.reset(new Exception);
current = current->nested.get();
} else {
break;
}
} while (true);
if (events_) {
events_->OnServerException(*e);
}
if (rethrow || options_.rethrow_exceptions) {
throw ServerException(std::move(e));
}
return true;
}
void Client::Impl::SendCancel() {
WireFormat::WriteUInt64(&output_, ClientCodes::Cancel);
output_.Flush();
}
void Client::Impl::SendQuery(const std::string& query) {
WireFormat::WriteUInt64(&output_, ClientCodes::Query);
WireFormat::WriteString(&output_, std::string());
/// Client info.
if (server_info_.revision >= DBMS_MIN_REVISION_WITH_CLIENT_INFO) {
ClientInfo info;
info.query_kind = 1;
info.client_name = "ClickHouse client";
info.client_version_major = DBMS_VERSION_MAJOR;
info.client_version_minor = DBMS_VERSION_MINOR;
info.client_revision = REVISION;
WireFormat::WriteFixed(&output_, info.query_kind);
WireFormat::WriteString(&output_, info.initial_user);
WireFormat::WriteString(&output_, info.initial_query_id);
WireFormat::WriteString(&output_, info.initial_address);
WireFormat::WriteFixed(&output_, info.iface_type);
WireFormat::WriteString(&output_, info.os_user);
WireFormat::WriteString(&output_, info.client_hostname);
WireFormat::WriteString(&output_, info.client_name);
WireFormat::WriteUInt64(&output_, info.client_version_major);
WireFormat::WriteUInt64(&output_, info.client_version_minor);
WireFormat::WriteUInt64(&output_, info.client_revision);
if (server_info_.revision >= DBMS_MIN_REVISION_WITH_QUOTA_KEY_IN_CLIENT_INFO)
WireFormat::WriteString(&output_, info.quota_key);
}
/// Per query settings.
//if (settings)
// settings->serialize(*out);
//else
WireFormat::WriteString(&output_, std::string());
WireFormat::WriteUInt64(&output_, Stages::Complete);
WireFormat::WriteUInt64(&output_, compression_);
WireFormat::WriteString(&output_, query);
// Send empty block as marker of
// end of data
SendData(Block());
output_.Flush();
}
void Client::Impl::WriteBlock(const Block& block, CodedOutputStream* output) {
// Additional information about block.
if (server_info_.revision >= DBMS_MIN_REVISION_WITH_BLOCK_INFO) {
WireFormat::WriteUInt64(output, 1);
WireFormat::WriteFixed (output, block.Info().is_overflows);
WireFormat::WriteUInt64(output, 2);
WireFormat::WriteFixed (output, block.Info().bucket_num);
WireFormat::WriteUInt64(output, 0);
}
WireFormat::WriteUInt64(output, block.GetColumnCount());
WireFormat::WriteUInt64(output, block.GetRowCount());
for (Block::Iterator bi(block); bi.IsValid(); bi.Next()) {
WireFormat::WriteString(output, bi.Name());
WireFormat::WriteString(output, bi.Type()->GetName());
bi.Column()->Save(output);
}
}
void Client::Impl::SendData(const Block& block) {
WireFormat::WriteUInt64(&output_, ClientCodes::Data);
if (server_info_.revision >= DBMS_MIN_REVISION_WITH_TEMPORARY_TABLES) {
WireFormat::WriteString(&output_, std::string());
}
if (compression_ == CompressionState::Enable) {
switch (options_.compression_method) {
case CompressionMethod::None: {
assert(false);
break;
}
case CompressionMethod::LZ4: {
Buffer tmp;
// Serialize block's data
{
BufferOutput out(&tmp);
CodedOutputStream coded(&out);
WriteBlock(block, &coded);
}
// Reserver space for data
Buffer buf;
buf.resize(9 + LZ4_compressBound(tmp.size()));
// Compress data
int size = LZ4_compress((const char*)tmp.data(), (char*)buf.data() + 9, tmp.size());
buf.resize(9 + size);
// Fill header
uint8_t* p = buf.data();
// Compression method
WriteUnaligned(p, (uint8_t)0x82); p += 1;
// Compressed data size with header
WriteUnaligned(p, (uint32_t)buf.size()); p += 4;
// Original data size
WriteUnaligned(p, (uint32_t)tmp.size());
WireFormat::WriteFixed(&output_, CityHash128(
(const char*)buf.data(), buf.size()));
WireFormat::WriteBytes(&output_, buf.data(), buf.size());
break;
}
}
} else {
WriteBlock(block, &output_);
}
output_.Flush();
}
bool Client::Impl::SendHello() {
WireFormat::WriteUInt64(&output_, ClientCodes::Hello);
WireFormat::WriteString(&output_, std::string(DBMS_NAME) + " client");
WireFormat::WriteUInt64(&output_, DBMS_VERSION_MAJOR);
WireFormat::WriteUInt64(&output_, DBMS_VERSION_MINOR);
WireFormat::WriteUInt64(&output_, REVISION);
WireFormat::WriteString(&output_, options_.default_database);
WireFormat::WriteString(&output_, options_.user);
WireFormat::WriteString(&output_, options_.password);
output_.Flush();
return true;
}
bool Client::Impl::ReceiveHello() {
uint64_t packet_type = 0;
if (!input_.ReadVarint64(&packet_type)) {
return false;
}
if (packet_type == ServerCodes::Hello) {
if (!WireFormat::ReadString(&input_, &server_info_.name)) {
return false;
}
if (!WireFormat::ReadUInt64(&input_, &server_info_.version_major)) {
return false;
}
if (!WireFormat::ReadUInt64(&input_, &server_info_.version_minor)) {
return false;
}
if (!WireFormat::ReadUInt64(&input_, &server_info_.revision)) {
return false;
}
if (server_info_.revision >= DBMS_MIN_REVISION_WITH_SERVER_TIMEZONE) {
if (!WireFormat::ReadString(&input_, &server_info_.timezone)) {
return false;
}
}
return true;
} else if (packet_type == ServerCodes::Exception) {
ReceiveException(true);
return false;
}
return false;
}
void Client::Impl::RetryGuard(std::function<void()> func) {
for (int i = 0; i <= options_.send_retries; ++i) {
try {
func();
return;
} catch (const std::system_error&) {
bool ok = true;
try {
std::this_thread::sleep_for(options_.retry_timeout);
ResetConnection();
} catch (...) {
ok = false;
}
if (!ok) {
throw;
}
}
}
}
Client::Client(const ClientOptions& opts)
: options_(opts)
, impl_(new Impl(opts))
{
}
Client::~Client()
{ }
void Client::Execute(const Query& query) {
impl_->ExecuteQuery(query);
}
void Client::Select(const std::string& query, SelectCallback cb) {
Execute(Query(query).OnData(cb));
}
void Client::SelectCancelable(const std::string& query, SelectCancelableCallback cb) {
Execute(Query(query).OnDataCancelable(cb));
}
void Client::Select(const Query& query) {
Execute(query);
}
void Client::Insert(const std::string& table_name, const Block& block) {
impl_->Insert(table_name, block);
}
void Client::Ping() {
impl_->Ping();
}
void Client::ResetConnection() {
impl_->ResetConnection();
}
}