-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathquery_result.py
345 lines (275 loc) · 10.9 KB
/
query_result.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
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
from .node import Node
from .edge import Edge
from .path import Path
from .exceptions import VersionMismatchException
from prettytable import PrettyTable
from redis import ResponseError
from collections import OrderedDict
LABELS_ADDED = 'Labels added'
NODES_CREATED = 'Nodes created'
NODES_DELETED = 'Nodes deleted'
RELATIONSHIPS_DELETED = 'Relationships deleted'
PROPERTIES_SET = 'Properties set'
RELATIONSHIPS_CREATED = 'Relationships created'
INDICES_CREATED = "Indices created"
INDICES_DELETED = "Indices deleted"
CACHED_EXECUTION = "Cached execution"
INTERNAL_EXECUTION_TIME = 'internal execution time'
STATS = [LABELS_ADDED, NODES_CREATED, PROPERTIES_SET, RELATIONSHIPS_CREATED,
NODES_DELETED, RELATIONSHIPS_DELETED, INDICES_CREATED, INDICES_DELETED,
CACHED_EXECUTION, INTERNAL_EXECUTION_TIME]
class ResultSetColumnTypes:
COLUMN_UNKNOWN = 0
COLUMN_SCALAR = 1
COLUMN_NODE = 2 # Unused as of RedisGraph v2.1.0, retained for backwards compatibility.
COLUMN_RELATION = 3 # Unused as of RedisGraph v2.1.0, retained for backwards compatibility.
class ResultSetScalarTypes:
VALUE_UNKNOWN = 0
VALUE_NULL = 1
VALUE_STRING = 2
VALUE_INTEGER = 3
VALUE_BOOLEAN = 4
VALUE_DOUBLE = 5
VALUE_ARRAY = 6
VALUE_EDGE = 7
VALUE_NODE = 8
VALUE_PATH = 9
VALUE_MAP = 10
VALUE_POINT = 11
class QueryResult:
def __init__(self, graph, response):
self.graph = graph
self.header = []
self.result_set = []
# incase of an error an exception will be raised
self._check_for_errors(response)
if len(response) == 1:
self.parse_statistics(response[0])
else:
# start by parsing statistics, matches the one we have
self.parse_statistics(response[2]) # Third element, after header and records.
self.parse_results(response)
if len(response) == 4:
self.parse_metadata(response[3])
def _check_for_errors(self, response):
if isinstance(response[0], ResponseError):
error = response[0]
if str(error) == "version mismatch":
version = response[1]
error = VersionMismatchException(version)
raise error
# If we encountered a run-time error, the last response element will be an exception.
if isinstance(response[-1], ResponseError):
raise response[-1]
def parse_results(self, raw_result_set):
self.header = self.parse_header(raw_result_set)
# Empty header.
if len(self.header) == 0:
return
self.result_set = self.parse_records(raw_result_set)
def parse_statistics(self, raw_statistics):
self.statistics = {}
# decode statistics
for idx, stat in enumerate(raw_statistics):
if isinstance(stat, bytes):
raw_statistics[idx] = stat.decode()
for s in STATS:
v = self._get_value(s, raw_statistics)
if v is not None:
self.statistics[s] = v
def parse_metadata(self, raw_metadata):
# Decode metadata:
# {
# "version", VERSION,
# "labels", [[VALUE_STRING, "label_1"] ... ],
# "relationship types ", [[VALUE_STRING, "reltype_1"] ... ],
# "property keys", [[VALUE_STRING, "prop_1"] ... ]
# }
metadata = self.parse_map(raw_metadata)
version = metadata["version"]
labels = metadata["labels"]
reltypes = metadata["relationship types"]
properties = metadata["property keys"]
# Update the graph's internal metadata.
self.graph.refresh_metadata(version, labels, reltypes, properties)
def parse_header(self, raw_result_set):
# An array of column name/column type pairs.
header = raw_result_set[0]
return header
def parse_records(self, raw_result_set):
records = []
result_set = raw_result_set[1]
for row in result_set:
record = []
for idx, cell in enumerate(row):
if self.header[idx][0] == ResultSetColumnTypes.COLUMN_SCALAR:
record.append(self.parse_scalar(cell))
elif self.header[idx][0] == ResultSetColumnTypes.COLUMN_NODE:
record.append(self.parse_node(cell))
elif self.header[idx][0] == ResultSetColumnTypes.COLUMN_RELATION:
record.append(self.parse_edge(cell))
else:
print("Unknown column type.\n")
records.append(record)
return records
def parse_entity_properties(self, props):
# [[name, value type, value] X N]
properties = {}
for prop in props:
prop_name = self.graph.get_property(prop[0])
prop_value = self.parse_scalar(prop[1:])
properties[prop_name] = prop_value
return properties
def parse_string(self, cell):
if isinstance(cell, bytes):
return cell.decode()
elif not isinstance(cell, str):
return str(cell)
else:
return cell
def parse_node(self, cell):
# Node ID (integer),
# [label string offset (integer)],
# [[name, value type, value] X N]
node_id = int(cell[0])
label = None
if len(cell[1]) != 0:
label = self.graph.get_label(cell[1][0])
properties = self.parse_entity_properties(cell[2])
return Node(node_id=node_id, label=label, properties=properties)
def parse_edge(self, cell):
# Edge ID (integer),
# reltype string offset (integer),
# src node ID offset (integer),
# dest node ID offset (integer),
# [[name, value, value type] X N]
edge_id = int(cell[0])
relation = self.graph.get_relation(cell[1])
src_node_id = int(cell[2])
dest_node_id = int(cell[3])
properties = self.parse_entity_properties(cell[4])
return Edge(src_node_id, relation, dest_node_id, edge_id=edge_id, properties=properties)
def parse_path(self, cell):
nodes = self.parse_scalar(cell[0])
edges = self.parse_scalar(cell[1])
return Path(nodes, edges)
def parse_map(self, cell):
m = OrderedDict()
n_entries = len(cell)
# A map is an array of key value pairs.
# 1. key (string)
# 2. array: (value type, value)
for i in range(0, n_entries, 2):
key = self.parse_string(cell[i])
m[key] = self.parse_scalar(cell[i+1])
return m
def parse_point(self, cell):
p = {}
# A point is received an array of the form: [latitude, longitude]
# It is returned as a map of the form: {"latitude": latitude, "longitude": longitude}
p["latitude"] = float(cell[0])
p["longitude"] = float(cell[1])
return p
def parse_scalar(self, cell):
scalar_type = int(cell[0])
value = cell[1]
scalar = None
if scalar_type == ResultSetScalarTypes.VALUE_NULL:
scalar = None
elif scalar_type == ResultSetScalarTypes.VALUE_STRING:
scalar = self.parse_string(value)
elif scalar_type == ResultSetScalarTypes.VALUE_INTEGER:
scalar = int(value)
elif scalar_type == ResultSetScalarTypes.VALUE_BOOLEAN:
value = value.decode() if isinstance(value, bytes) else value
if value == "true":
scalar = True
elif value == "false":
scalar = False
else:
print("Unknown boolean type\n")
elif scalar_type == ResultSetScalarTypes.VALUE_DOUBLE:
scalar = float(value)
elif scalar_type == ResultSetScalarTypes.VALUE_ARRAY:
# array variable is introduced only for readability
scalar = array = value
for i in range(len(array)):
scalar[i] = self.parse_scalar(array[i])
elif scalar_type == ResultSetScalarTypes.VALUE_NODE:
scalar = self.parse_node(value)
elif scalar_type == ResultSetScalarTypes.VALUE_EDGE:
scalar = self.parse_edge(value)
elif scalar_type == ResultSetScalarTypes.VALUE_PATH:
scalar = self.parse_path(value)
elif scalar_type == ResultSetScalarTypes.VALUE_MAP:
scalar = self.parse_map(value)
elif scalar_type == ResultSetScalarTypes.VALUE_POINT:
scalar = self.parse_point(value)
elif scalar_type == ResultSetScalarTypes.VALUE_UNKNOWN:
print("Unknown scalar type\n")
return scalar
"""Prints the data from the query response:
1. First row result_set contains the columns names. Thus the first row in PrettyTable
will contain the columns.
2. The row after that will contain the data returned, or 'No Data returned' if there is none.
3. Prints the statistics of the query.
"""
def pretty_print(self):
if not self.is_empty():
header = [col[1] for col in self.header]
tbl = PrettyTable(header)
for row in self.result_set:
record = []
for idx, cell in enumerate(row):
if type(cell) is Node:
record.append(cell.toString())
elif type(cell) is Edge:
record.append(cell.toString())
else:
record.append(cell)
tbl.add_row(record)
if len(self.result_set) == 0:
tbl.add_row(['No data returned.'])
print(str(tbl) + '\n')
for stat in self.statistics:
print("%s %s" % (stat, self.statistics[stat]))
def is_empty(self):
return len(self.result_set) == 0
@staticmethod
def _get_value(prop, statistics):
for stat in statistics:
if prop in stat:
return float(stat.split(': ')[1].split(' ')[0])
return None
def _get_stat(self, stat):
return self.statistics[stat] if stat in self.statistics else 0
@property
def labels_added(self):
return self._get_stat(LABELS_ADDED)
@property
def nodes_created(self):
return self._get_stat(NODES_CREATED)
@property
def nodes_deleted(self):
return self._get_stat(NODES_DELETED)
@property
def properties_set(self):
return self._get_stat(PROPERTIES_SET)
@property
def relationships_created(self):
return self._get_stat(RELATIONSHIPS_CREATED)
@property
def relationships_deleted(self):
return self._get_stat(RELATIONSHIPS_DELETED)
@property
def indices_created(self):
return self._get_stat(INDICES_CREATED)
@property
def indices_deleted(self):
return self._get_stat(INDICES_DELETED)
@property
def cached_execution(self):
return self._get_stat(CACHED_EXECUTION) == 1
@property
def run_time_ms(self):
return self._get_stat(INTERNAL_EXECUTION_TIME)