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
|
#include <Interpreters/TablesStatus.h>
#include <IO/ReadBuffer.h>
#include <IO/WriteBuffer.h>
#include <IO/ReadHelpers.h>
#include <IO/WriteHelpers.h>
#include <Core/ProtocolDefines.h>
namespace DB
{
namespace ErrorCodes
{
extern const int TOO_LARGE_ARRAY_SIZE;
extern const int LOGICAL_ERROR;
}
void TableStatus::write(WriteBuffer & out) const
{
writeBinary(is_replicated, out);
if (is_replicated)
{
writeVarUInt(absolute_delay, out);
}
}
void TableStatus::read(ReadBuffer & in)
{
absolute_delay = 0;
readBinary(is_replicated, in);
if (is_replicated)
{
readVarUInt(absolute_delay, in);
}
}
void TablesStatusRequest::write(WriteBuffer & out, UInt64 server_protocol_revision) const
{
if (server_protocol_revision < DBMS_MIN_REVISION_WITH_TABLES_STATUS)
throw Exception(ErrorCodes::LOGICAL_ERROR, "Logical error: method TablesStatusRequest::write is called for unsupported server revision");
writeVarUInt(tables.size(), out);
for (const auto & table_name : tables)
{
writeBinary(table_name.database, out);
writeBinary(table_name.table, out);
}
}
void TablesStatusRequest::read(ReadBuffer & in, UInt64 client_protocol_revision)
{
if (client_protocol_revision < DBMS_MIN_REVISION_WITH_TABLES_STATUS)
throw Exception(ErrorCodes::LOGICAL_ERROR, "method TablesStatusRequest::read is called for unsupported client revision");
size_t size = 0;
readVarUInt(size, in);
if (size > DEFAULT_MAX_STRING_SIZE)
throw Exception(ErrorCodes::TOO_LARGE_ARRAY_SIZE, "Too large collection size.");
for (size_t i = 0; i < size; ++i)
{
QualifiedTableName table_name;
readBinary(table_name.database, in);
readBinary(table_name.table, in);
tables.emplace(std::move(table_name));
}
}
void TablesStatusResponse::write(WriteBuffer & out, UInt64 client_protocol_revision) const
{
if (client_protocol_revision < DBMS_MIN_REVISION_WITH_TABLES_STATUS)
throw Exception(ErrorCodes::LOGICAL_ERROR, "method TablesStatusResponse::write is called for unsupported client revision");
writeVarUInt(table_states_by_id.size(), out);
for (const auto & kv: table_states_by_id)
{
const QualifiedTableName & table_name = kv.first;
writeBinary(table_name.database, out);
writeBinary(table_name.table, out);
const TableStatus & status = kv.second;
status.write(out);
}
}
void TablesStatusResponse::read(ReadBuffer & in, UInt64 server_protocol_revision)
{
if (server_protocol_revision < DBMS_MIN_REVISION_WITH_TABLES_STATUS)
throw Exception(ErrorCodes::LOGICAL_ERROR, "method TablesStatusResponse::read is called for unsupported server revision");
size_t size = 0;
readVarUInt(size, in);
if (size > DEFAULT_MAX_STRING_SIZE)
throw Exception(ErrorCodes::TOO_LARGE_ARRAY_SIZE, "Too large collection size.");
for (size_t i = 0; i < size; ++i)
{
QualifiedTableName table_name;
readBinary(table_name.database, in);
readBinary(table_name.table, in);
TableStatus status;
status.read(in);
table_states_by_id.emplace(std::move(table_name), std::move(status));
}
}
}
|