-
-
Notifications
You must be signed in to change notification settings - Fork 219
/
Copy pathprotocol.py
130 lines (94 loc) · 2.9 KB
/
protocol.py
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
class ClientPacketTypes(object):
"""
Packet types that client transmits
"""
# Name, version, revision, default DB
HELLO = 0
# Query id, query settings, stage up to which the query must be executed,
# whether the compression must be used, query text
# (without data for INSERTs).
QUERY = 1
# A block of data (compressed or not).
DATA = 2
# Cancel the query execution.
CANCEL = 3
# Check that connection to the server is alive.
PING = 4
# Check status of tables on the server.
TABLES_STATUS_REQUEST = 5
_types_str = [
'Hello', 'Query', 'Data', 'Cancel', 'Ping', 'TablesStatusRequest'
]
@classmethod
def to_str(cls, packet):
try:
return cls._types_str[packet]
except IndexError:
return 'Unknown packet'
class ServerPacketTypes(object):
"""
Packet types that server transmits.
"""
# Name, version, revision.
HELLO = 0
# A block of data (compressed or not).
DATA = 1
# The exception during query execution.
EXCEPTION = 2
# Query execution progress: rows read, bytes read.
PROGRESS = 3
# Ping response
PONG = 4
# All packets were transmitted
END_OF_STREAM = 5
# Packet with profiling info.
PROFILE_INFO = 6
# A block with totals (compressed or not).
TOTALS = 7
# A block with minimums and maximums (compressed or not).
EXTREMES = 8
# A response to TablesStatus request.
TABLES_STATUS_RESPONSE = 9
# System logs of the query execution
LOG = 10
# Columns' description for default values calculation
TABLE_COLUMNS = 11
# List of unique parts ids.
PART_UUIDS = 12
# String (UUID) describes a request for which next task is needed
READ_TASK_REQUEST = 13
# Packet with profile events from server.
PROFILE_EVENTS = 14
MERGE_TREE_ALL_RANGES_ANNOUNCEMENT = 15
# Request from a MergeTree replica to a coordinator
MERGE_TREE_READ_TASK_REQUEST = 16
# Receive server's (session-wide) default timezone
TIMEZONE_UPDATE = 17
_types_str = [
'Hello', 'Data', 'Exception', 'Progress', 'Pong', 'EndOfStream',
'ProfileInfo', 'Totals', 'Extremes', 'TablesStatusResponse', 'Log',
'TableColumns', 'PartUUIDs', 'ReadTaskRequest', 'ProfileEvents',
'MergeTreeAllRangesAnnouncement', 'MergeTreeReadTaskRequest',
'TimezoneUpdate'
]
@classmethod
def to_str(cls, packet):
try:
return cls._types_str[packet]
except IndexError:
return 'Unknown packet'
@classmethod
def strings_in_message(cls, packet):
if packet == cls.TABLE_COLUMNS:
return 2
return 0
class Compression(object):
DISABLED = 0
ENABLED = 1
class CompressionMethod(object):
LZ4 = 1
LZ4HC = 2
ZSTD = 3
class CompressionMethodByte(object):
LZ4 = 0x82
ZSTD = 0x90