-
Notifications
You must be signed in to change notification settings - Fork 862
Expand file tree
/
Copy pathgraphbinaryV1.py
More file actions
1185 lines (905 loc) · 37.6 KB
/
Copy pathgraphbinaryV1.py
File metadata and controls
1185 lines (905 loc) · 37.6 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
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
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
"""
import datetime
import calendar
import uuid
import math
import io
import struct
from collections import OrderedDict
import logging
from struct import pack, unpack
from aenum import Enum
from datetime import timedelta
from gremlin_python import statics
from gremlin_python.statics import FloatType, BigDecimal, FunctionType, ShortType, IntType, LongType, BigIntType, \
TypeType, DictType, ListType, SetType, SingleByte, ByteBufferType, GremlinType, \
SingleChar
from gremlin_python.process.traversal import Barrier, Binding, Bytecode, Cardinality, Column, Direction, DT, Merge, \
Operator, Order, Pick, Pop, P, Scope, TextP, Traversal, Traverser, \
TraversalStrategy, T
from gremlin_python.process.graph_traversal import GraphTraversal
from gremlin_python.structure.graph import Graph, Edge, Property, Vertex, VertexProperty, Path
from gremlin_python.structure.io.util import HashableDict, SymbolUtil
log = logging.getLogger(__name__)
# When we fall back to a superclass's serializer, we iterate over this map.
# We want that iteration order to be consistent, so we use an OrderedDict,
# not a dict.
_serializers = OrderedDict()
_deserializers = {}
class DataType(Enum):
null = 0xfe
int = 0x01
long = 0x02
string = 0x03
date = 0x04
timestamp = 0x05
clazz = 0x06
double = 0x07
float = 0x08
list = 0x09
map = 0x0a
set = 0x0b
uuid = 0x0c
edge = 0x0d
path = 0x0e
property = 0x0f
graph = 0x10 # not supported - no graph object in python yet
vertex = 0x11
vertexproperty = 0x12
barrier = 0x13
binding = 0x14
bytecode = 0x15
cardinality = 0x16
column = 0x17
direction = 0x18
operator = 0x19
order = 0x1a
pick = 0x1b
pop = 0x1c
lambda_ = 0x1d
p = 0x1e
scope = 0x1f
t = 0x20
traverser = 0x21
bigdecimal = 0x22
biginteger = 0x23
byte = 0x24
bytebuffer = 0x25
short = 0x26
boolean = 0x27
textp = 0x28
traversalstrategy = 0x29
bulkset = 0x2a
tree = 0x2b # not supported - no tree object in Python yet
metrics = 0x2c
traversalmetrics = 0x2d
merge = 0x2e
dt = 0x2f
char = 0x80
duration = 0x81
inetaddress = 0x82 # todo
instant = 0x83 # todo
localdate = 0x84 # todo
localdatetime = 0x85 # todo
localtime = 0x86 # todo
monthday = 0x87 # todo
offsetdatetime = 0x88 # todo
offsettime = 0x89 # todo
period = 0x8a # todo
year = 0x8b # todo
yearmonth = 0x8c # todo
zonedatetime = 0x8d # todo
zoneoffset = 0x8e # todo
custom = 0x00 # todo
NULL_BYTES = [DataType.null.value, 0x01]
# null type code as a plain int, so the per-read null check skips the aenum lookup
_NULL = DataType.null.value
def _make_packer(format_string):
packer = struct.Struct(format_string)
pack = packer.pack
unpack = lambda s: packer.unpack(s)[0]
return pack, unpack
int64_pack, int64_unpack = _make_packer('>q')
int32_pack, int32_unpack = _make_packer('>i')
int16_pack, int16_unpack = _make_packer('>h')
int8_pack, int8_unpack = _make_packer('>b')
uint64_pack, uint64_unpack = _make_packer('>Q')
uint8_pack, uint8_unpack = _make_packer('>B')
float_pack, float_unpack = _make_packer('>f')
double_pack, double_unpack = _make_packer('>d')
class GraphBinaryTypeType(type):
def __new__(mcs, name, bases, dct):
cls = super(GraphBinaryTypeType, mcs).__new__(mcs, name, bases, dct)
if not name.startswith('_'):
if cls.python_type:
_serializers[cls.python_type] = cls
if cls.graphbinary_type:
_deserializers[cls.graphbinary_type] = cls
return cls
class GraphBinaryWriter(object):
def __init__(self, serializer_map=None):
self.serializers = _serializers.copy()
if serializer_map:
self.serializers.update(serializer_map)
def write_object(self, object_data):
return self.to_dict(object_data)
def to_dict(self, obj, to_extend=None):
if to_extend is None:
to_extend = bytearray()
if obj is None:
to_extend.extend(NULL_BYTES)
return
try:
t = type(obj)
return self.serializers[t].dictify(obj, self, to_extend)
except KeyError:
for key, serializer in self.serializers.items():
if isinstance(obj, key):
return serializer.dictify(obj, self, to_extend)
if isinstance(obj, dict):
return dict((self.to_dict(k, to_extend), self.to_dict(v, to_extend)) for k, v in obj.items())
elif isinstance(obj, set):
return set([self.to_dict(o, to_extend) for o in obj])
elif isinstance(obj, list):
return [self.to_dict(o, to_extend) for o in obj]
else:
return obj
class GraphBinaryReader(object):
def __init__(self, deserializer_map=None):
self.deserializers = _deserializers.copy()
if deserializer_map:
self.deserializers.update(deserializer_map)
# Mirror of self.deserializers keyed by int type code instead of DataType.
# Avoids the per-read DataType(bt) call, whose aenum construction negatively affects performance on large results.
self._deserializer_by_type_code = {dt.value: des.objectify for dt, des in self.deserializers.items()}
def read_object(self, b):
if isinstance(b, bytearray):
return self.to_object(io.BytesIO(b))
elif isinstance(b, io.BufferedIOBase):
return self.to_object(b)
def to_object(self, buff, data_type=None, nullable=True):
if data_type is None:
bt = uint8_unpack(buff.read(1))
if bt == _NULL:
if nullable:
buff.read(1)
return None
try:
objectify = self._deserializer_by_type_code[bt]
except KeyError:
raise ValueError("%r is not a valid DataType" % bt) from None
return objectify(buff, self, nullable)
else:
return self.deserializers[data_type].objectify(buff, self, nullable)
class _GraphBinaryTypeIO(object, metaclass=GraphBinaryTypeType):
python_type = None
graphbinary_type = None
@classmethod
def prefix_bytes(cls, graphbin_type, as_value=False, nullable=True, to_extend=None):
if to_extend is None:
to_extend = bytearray()
if not as_value:
to_extend += uint8_pack(graphbin_type.value)
if nullable:
to_extend += int8_pack(0)
return to_extend
@classmethod
def read_int(cls, buff):
return int32_unpack(buff.read(4))
@classmethod
def is_null(cls, buff, reader, else_opt, nullable=True):
return None if nullable and buff.read(1)[0] == 0x01 else else_opt(buff, reader)
def dictify(self, obj, writer, to_extend, as_value=False, nullable=True):
raise NotImplementedError()
def objectify(self, d, reader, nullable=True):
raise NotImplementedError()
class LongIO(_GraphBinaryTypeIO):
python_type = LongType
graphbinary_type = DataType.long
byte_format_pack = int64_pack
byte_format_unpack = int64_unpack
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
if obj < -9223372036854775808 or obj > 9223372036854775807:
raise Exception("Value too big, please use bigint Gremlin type")
else:
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(cls.byte_format_pack(obj))
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, lambda b, r: int64_unpack(buff.read(8)), nullable)
class IntIO(LongIO):
python_type = IntType
graphbinary_type = DataType.int
byte_format_pack = int32_pack
byte_format_unpack = int32_unpack
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, lambda b, r: cls.read_int(b), nullable)
class ShortIO(LongIO):
python_type = ShortType
graphbinary_type = DataType.short
byte_format_pack = int16_pack
byte_format_unpack = int16_unpack
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, lambda b, r: int16_unpack(buff.read(2)), nullable)
class BigIntIO(_GraphBinaryTypeIO):
python_type = BigIntType
graphbinary_type = DataType.biginteger
@classmethod
def write_bigint(cls, obj, to_extend):
length = (obj.bit_length() + 7) // 8
if obj > 0:
b = obj.to_bytes(length, byteorder='big')
to_extend.extend(int32_pack(length + 1))
to_extend.extend(int8_pack(0))
to_extend.extend(b)
else:
# handle negative
b = obj.to_bytes(length, byteorder='big', signed=True)
to_extend.extend(int32_pack(length))
to_extend.extend(b)
return to_extend
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
return cls.write_bigint(obj, to_extend)
@classmethod
def read_bigint(cls, buff):
size = cls.read_int(buff)
return int.from_bytes(buff.read(size), byteorder='big', signed=True)
@classmethod
def objectify(cls, buff, reader, nullable=False):
return cls.is_null(buff, reader, lambda b, r: cls.read_bigint(b), nullable)
class DateIO(_GraphBinaryTypeIO):
python_type = datetime.datetime
graphbinary_type = DataType.date
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
try:
timestamp_seconds = calendar.timegm(obj.utctimetuple())
pts = timestamp_seconds * 1e3 + getattr(obj, 'microsecond', 0) / 1e3
except AttributeError:
pts = calendar.timegm(obj.timetuple()) * 1e3
ts = int(round(pts))
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(int64_pack(ts))
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader,
lambda b, r: datetime.datetime.utcfromtimestamp(int64_unpack(b.read(8)) / 1000.0),
nullable)
# Based on current implementation, this class must always be declared before FloatIO.
# Seems pretty fragile for future maintainers. Maybe look into this.
class TimestampIO(_GraphBinaryTypeIO):
python_type = statics.timestamp
graphbinary_type = DataType.timestamp
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
# Java timestamp expects milliseconds integer - Have to use int because of legacy Python
ts = int(round(obj * 1000))
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(int64_pack(ts))
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
# Python timestamp expects seconds
return cls.is_null(buff, reader, lambda b, r: statics.timestamp(int64_unpack(b.read(8)) / 1000.0),
nullable)
def _long_bits_to_double(bits):
return unpack('d', pack('Q', bits))[0]
NAN = _long_bits_to_double(0x7ff8000000000000)
POSITIVE_INFINITY = _long_bits_to_double(0x7ff0000000000000)
NEGATIVE_INFINITY = _long_bits_to_double(0xFff0000000000000)
class FloatIO(LongIO):
python_type = FloatType
graphbinary_type = DataType.float
graphbinary_base_type = DataType.float
byte_format_pack = float_pack
byte_format_unpack = float_unpack
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
if math.isnan(obj):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(cls.byte_format_pack(NAN))
elif math.isinf(obj) and obj > 0:
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(cls.byte_format_pack(POSITIVE_INFINITY))
elif math.isinf(obj) and obj < 0:
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(cls.byte_format_pack(NEGATIVE_INFINITY))
else:
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(cls.byte_format_pack(obj))
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, lambda b, r: float_unpack(b.read(4)), nullable)
class DoubleIO(FloatIO):
"""
Floats basically just fall through to double serialization.
"""
graphbinary_type = DataType.double
graphbinary_base_type = DataType.double
byte_format_pack = double_pack
byte_format_unpack = double_unpack
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, lambda b, r: double_unpack(b.read(8)), nullable)
class BigDecimalIO(_GraphBinaryTypeIO):
python_type = BigDecimal
graphbinary_type = DataType.bigdecimal
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(int32_pack(obj.scale))
return BigIntIO.write_bigint(obj.unscaled_value, to_extend)
@classmethod
def _read(cls, buff):
scale = int32_unpack(buff.read(4))
unscaled_value = BigIntIO.read_bigint(buff)
return BigDecimal(scale, unscaled_value)
@classmethod
def objectify(cls, buff, reader, nullable=False):
return cls.is_null(buff, reader, lambda b, r: cls._read(b), nullable)
class CharIO(_GraphBinaryTypeIO):
python_type = SingleChar
graphbinary_type = DataType.char
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(obj.encode("utf-8"))
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_char, nullable)
@classmethod
def _read_char(cls, b, r):
max_bytes = 4
x = b.read(1)
while max_bytes > 0:
max_bytes = max_bytes - 1
try:
return x.decode("utf-8")
except UnicodeDecodeError:
x += b.read(1)
class StringIO(_GraphBinaryTypeIO):
python_type = str
graphbinary_type = DataType.string
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
str_bytes = obj.encode("utf-8")
to_extend += int32_pack(len(str_bytes))
to_extend += str_bytes
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, lambda b, r: b.read(cls.read_int(b)).decode("utf-8"), nullable)
class ListIO(_GraphBinaryTypeIO):
python_type = list
graphbinary_type = DataType.list
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(int32_pack(len(obj)))
for item in obj:
writer.to_dict(item, to_extend)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_list, nullable)
@classmethod
def _read_list(cls, b, r):
size = cls.read_int(b)
the_list = []
while size > 0:
the_list.append(r.read_object(b))
size = size - 1
return the_list
class SetDeserializer(ListIO):
python_type = SetType
graphbinary_type = DataType.set
@classmethod
def objectify(cls, buff, reader, nullable=True):
the_list = ListIO.objectify(buff, reader, nullable)
try:
return set(the_list)
except TypeError:
log.warning("Coercing Set to list as it contains unhashable elements (e.g. dict, list). "
"See TINKERPOP-3232 for more details.")
return the_list
class MapIO(_GraphBinaryTypeIO):
python_type = DictType
graphbinary_type = DataType.map
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(int32_pack(len(obj)))
for k, v in obj.items():
writer.to_dict(k, to_extend)
writer.to_dict(v, to_extend)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_map, nullable)
@classmethod
def _read_map(cls, b, r):
size = cls.read_int(b)
the_dict = {}
while size > 0:
k = HashableDict.of(r.read_object(b))
v = r.read_object(b)
the_dict[k] = v
size = size - 1
return the_dict
class UuidIO(_GraphBinaryTypeIO):
python_type = uuid.UUID
graphbinary_type = DataType.uuid
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(obj.bytes)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, lambda b, r: uuid.UUID(bytes=b.read(16)), nullable)
class EdgeIO(_GraphBinaryTypeIO):
python_type = Edge
graphbinary_type = DataType.edge
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
writer.to_dict(obj.id, to_extend)
StringIO.dictify(obj.label, writer, to_extend, True, False)
writer.to_dict(obj.inV.id, to_extend)
StringIO.dictify(obj.inV.label, writer, to_extend, True, False)
writer.to_dict(obj.outV.id, to_extend)
StringIO.dictify(obj.outV.label, writer, to_extend, True, False)
to_extend.extend(NULL_BYTES)
to_extend.extend(NULL_BYTES)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_edge, nullable)
@classmethod
def _read_edge(cls, b, r):
edgeid = r.read_object(b)
edgelbl = r.to_object(b, DataType.string, False)
inv = Vertex(r.read_object(b), r.to_object(b, DataType.string, False))
outv = Vertex(r.read_object(b), r.to_object(b, DataType.string, False))
b.read(2)
props = r.read_object(b)
# null properties are returned as empty lists
properties = [] if props is None else props
edge = Edge(edgeid, outv, edgelbl, inv, properties)
return edge
class PathIO(_GraphBinaryTypeIO):
python_type = Path
graphbinary_type = DataType.path
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
writer.to_dict(obj.labels, to_extend)
writer.to_dict(obj.objects, to_extend)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, lambda b, r: Path(r.read_object(b), r.read_object(b)), nullable)
class PropertyIO(_GraphBinaryTypeIO):
python_type = Property
graphbinary_type = DataType.property
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
StringIO.dictify(obj.key, writer, to_extend, True, False)
writer.to_dict(obj.value, to_extend)
to_extend.extend(NULL_BYTES)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_property, nullable)
@classmethod
def _read_property(cls, b, r):
p = Property(r.to_object(b, DataType.string, False), r.read_object(b), None)
b.read(2)
return p
class TinkerGraphIO(_GraphBinaryTypeIO):
python_type = Graph
graphbinary_type = DataType.graph
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
raise AttributeError("TinkerGraph serialization is not currently supported by gremlin-python")
@classmethod
def objectify(cls, b, reader, as_value=False):
raise AttributeError("TinkerGraph deserialization is not currently supported by gremlin-python")
class VertexIO(_GraphBinaryTypeIO):
python_type = Vertex
graphbinary_type = DataType.vertex
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
writer.to_dict(obj.id, to_extend)
StringIO.dictify(obj.label, writer, to_extend, True, False)
to_extend.extend(NULL_BYTES)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_vertex, nullable)
@classmethod
def _read_vertex(cls, b, r):
vertex_id = r.read_object(b)
vertex_label = r.to_object(b, DataType.string, False)
props = r.read_object(b)
# null properties are returned as empty lists
properties = [] if props is None else props
vertex = Vertex(vertex_id, vertex_label, properties)
return vertex
class VertexPropertyIO(_GraphBinaryTypeIO):
python_type = VertexProperty
graphbinary_type = DataType.vertexproperty
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
writer.to_dict(obj.id, to_extend)
StringIO.dictify(obj.label, writer, to_extend, True, False)
writer.to_dict(obj.value, to_extend)
to_extend.extend(NULL_BYTES)
to_extend.extend(NULL_BYTES)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_vertexproperty, nullable)
@classmethod
def _read_vertexproperty(cls, b, r):
vp = VertexProperty(r.read_object(b), r.to_object(b, DataType.string, False), r.read_object(b), None)
b.read(2)
properties = r.read_object(b)
# null properties are returned as empty lists
vp.properties = [] if properties is None else properties
return vp
class _EnumIO(_GraphBinaryTypeIO):
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
StringIO.dictify(SymbolUtil.to_camel_case(str(obj.name)), writer, to_extend)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_enumval, nullable)
@classmethod
def _read_enumval(cls, b, r):
enum_name = r.to_object(b)
return cls.python_type[SymbolUtil.to_snake_case(enum_name)]
class BarrierIO(_EnumIO):
graphbinary_type = DataType.barrier
python_type = Barrier
class CardinalityIO(_EnumIO):
graphbinary_type = DataType.cardinality
python_type = Cardinality
class ColumnIO(_EnumIO):
graphbinary_type = DataType.column
python_type = Column
class DirectionIO(_EnumIO):
graphbinary_type = DataType.direction
python_type = Direction
@classmethod
def _read_enumval(cls, b, r):
# Direction needs to retain all CAPS. note that to_/from_ are really just aliases of IN/OUT
# so they don't need to be accounted for in serialization
enum_name = r.to_object(b)
return cls.python_type[enum_name]
class OperatorIO(_EnumIO):
graphbinary_type = DataType.operator
python_type = Operator
class OrderIO(_EnumIO):
graphbinary_type = DataType.order
python_type = Order
class PickIO(_EnumIO):
graphbinary_type = DataType.pick
python_type = Pick
class PopIO(_EnumIO):
graphbinary_type = DataType.pop
python_type = Pop
class BindingIO(_GraphBinaryTypeIO):
python_type = Binding
graphbinary_type = DataType.binding
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
StringIO.dictify(obj.key, writer, to_extend, True, False)
writer.to_dict(obj.value, to_extend)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, lambda b, r: Binding(r.to_object(b, DataType.string, False),
reader.read_object(b)), nullable)
class BytecodeIO(_GraphBinaryTypeIO):
python_type = Bytecode
graphbinary_type = DataType.bytecode
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
bc = obj.bytecode if isinstance(obj, Traversal) else obj
to_extend.extend(int32_pack(len(bc.step_instructions)))
for inst in bc.step_instructions:
inst_name, inst_args = inst[0], inst[1:] if len(inst) > 1 else []
StringIO.dictify(inst_name, writer, to_extend, True, False)
to_extend.extend(int32_pack(len(inst_args)))
for arg in inst_args:
writer.to_dict(arg, to_extend)
to_extend.extend(int32_pack(len(bc.source_instructions)))
for inst in bc.source_instructions:
inst_name, inst_args = inst[0], inst[1:] if len(inst) > 1 else []
StringIO.dictify(inst_name, writer, to_extend, True, False)
to_extend.extend(int32_pack(len(inst_args)))
for arg in inst_args:
if isinstance(arg, TypeType):
writer.to_dict(GremlinType(arg().fqcn), to_extend)
else:
writer.to_dict(arg, to_extend)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_bytecode, nullable)
@classmethod
def _read_bytecode(cls, b, r):
bytecode = Bytecode()
step_count = cls.read_int(b)
ix = 0
while ix < step_count:
inst = [r.to_object(b, DataType.string, False)]
inst_ct = cls.read_int(b)
iy = 0
while iy < inst_ct:
inst.append(r.read_object(b))
iy += 1
bytecode.step_instructions.append(inst)
ix += 1
source_count = cls.read_int(b)
ix = 0
while ix < source_count:
inst = [r.to_object(b, DataType.string, False)]
inst_ct = cls.read_int(b)
iy = 0
while iy < inst_ct:
inst.append(r.read_object(b))
iy += 1
bytecode.source_instructions.append(inst)
ix += 1
return bytecode
class TraversalIO(BytecodeIO):
python_type = GraphTraversal
class LambdaSerializer(_GraphBinaryTypeIO):
python_type = FunctionType
graphbinary_type = DataType.lambda_
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
lambda_result = obj()
script = lambda_result if isinstance(lambda_result, str) else lambda_result[0]
language = statics.default_lambda_language if isinstance(lambda_result, str) else lambda_result[1]
StringIO.dictify(language, writer, to_extend, True, False)
script_cleaned = script
script_args = -1
if language == "gremlin-groovy" and "->" in script:
# if the user has explicitly added parameters to the groovy closure then we can easily detect one or two
# arg lambdas - if we can't detect 1 or 2 then we just go with "unknown"
args = script[0:script.find("->")]
script_args = 2 if "," in args else 1
StringIO.dictify(script_cleaned, writer, to_extend, True, False)
to_extend.extend(int32_pack(script_args))
return to_extend
class PSerializer(_GraphBinaryTypeIO):
graphbinary_type = DataType.p
python_type = P
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
StringIO.dictify(obj.operator, writer, to_extend, True, False)
args = []
if obj.other is None:
if isinstance(obj.value, ListType):
args = obj.value
else:
args.append(obj.value)
else:
args.append(obj.value)
args.append(obj.other)
to_extend.extend(int32_pack(len(args)))
for a in args:
writer.to_dict(a, to_extend)
return to_extend
class DTIO(_EnumIO):
graphbinary_type = DataType.dt
python_type = DT
class MergeIO(_EnumIO):
graphbinary_type = DataType.merge
python_type = Merge
class ScopeIO(_EnumIO):
graphbinary_type = DataType.scope
python_type = Scope
class TIO(_EnumIO):
graphbinary_type = DataType.t
python_type = T
class TraverserIO(_GraphBinaryTypeIO):
graphbinary_type = DataType.traverser
python_type = Traverser
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(int64_pack(obj.bulk))
writer.to_dict(obj.object, to_extend)
return to_extend
@classmethod
def objectify(cls, buff, reader, nullable=True):
return cls.is_null(buff, reader, cls._read_traverser, nullable)
@classmethod
def _read_traverser(cls, b, r):
bulk = int64_unpack(b.read(8))
obj = r.read_object(b)
return Traverser(obj, bulk=bulk)
class ByteIO(_GraphBinaryTypeIO):
python_type = SingleByte
graphbinary_type = DataType.byte
@classmethod
def dictify(cls, obj, writer, to_extend, as_value=False, nullable=True):
cls.prefix_bytes(cls.graphbinary_type, as_value, nullable, to_extend)
to_extend.extend(int8_pack(obj))
return to_extend
@classmethod