This repository has been archived by the owner on Dec 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 286
/
Copy pathparser.py
887 lines (669 loc) · 23.7 KB
/
parser.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
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
# -*- coding: utf-8 -*-
"""
IDL Ref:
https://thrift.apache.org/docs/idl
"""
from __future__ import absolute_import
import collections
import os
import sys
import types
from ply import lex, yacc
from .lexer import * # noqa
from .exc import ThriftParserError, ThriftGrammerError
from thriftpy._compat import urlopen, urlparse
from ..thrift import gen_init, TType, TPayload, TException
def p_error(p):
if p is None:
raise ThriftGrammerError('Grammer error at EOF')
raise ThriftGrammerError('Grammer error %r at line %d' %
(p.value, p.lineno))
def p_start(p):
'''start : header definition'''
def p_header(p):
'''header : header_unit_ header
|'''
def p_header_unit_(p):
'''header_unit_ : header_unit ';'
| header_unit'''
def p_header_unit(p):
'''header_unit : include
| cpp_include
| namespace'''
def p_include(p):
'''include : INCLUDE LITERAL'''
thrift = thrift_stack[-1]
if thrift.__thrift_file__ is None:
raise ThriftParserError('Unexpected include statement while loading '
'from file like object.')
replace_include_dirs = [os.path.dirname(thrift.__thrift_file__)] \
+ include_dirs_
for include_dir in replace_include_dirs:
path = os.path.join(include_dir, p[2])
if os.path.exists(path):
child = parse(path)
setattr(thrift, child.__name__, child)
_add_thrift_meta('includes', child)
return
raise ThriftParserError(('Couldn\'t include thrift %s in any '
'directories provided') % p[2])
def p_cpp_include(p):
'''cpp_include : CPP_INCLUDE LITERAL'''
def p_namespace(p):
'''namespace : NAMESPACE namespace_scope IDENTIFIER'''
# namespace is useless in thriftpy
# if p[2] == 'py' or p[2] == '*':
# setattr(thrift_stack[-1], '__name__', p[3])
def p_namespace_scope(p):
'''namespace_scope : '*'
| IDENTIFIER'''
p[0] = p[1]
def p_sep(p):
'''sep : ','
| ';'
'''
def p_definition(p):
'''definition : definition definition_unit_
|'''
def p_definition_unit_(p):
'''definition_unit_ : definition_unit ';'
| definition_unit'''
def p_definition_unit(p):
'''definition_unit : const
| ttype
'''
def p_const(p):
'''const : CONST field_type IDENTIFIER '=' const_value
| CONST field_type IDENTIFIER '=' const_value sep'''
try:
val = _cast(p[2])(p[5])
except AssertionError:
raise ThriftParserError('Type error for constant %s at line %d' %
(p[3], p.lineno(3)))
setattr(thrift_stack[-1], p[3], val)
_add_thrift_meta('consts', val)
def p_const_value(p):
'''const_value : INTCONSTANT
| DUBCONSTANT
| LITERAL
| BOOLCONSTANT
| const_list
| const_map
| const_ref'''
p[0] = p[1]
def p_const_list(p):
'''const_list : '[' const_list_seq ']' '''
p[0] = p[2]
def p_const_list_seq(p):
'''const_list_seq : const_value sep const_list_seq
| const_value const_list_seq
|'''
_parse_seq(p)
def p_const_map(p):
'''const_map : '{' const_map_seq '}' '''
p[0] = dict(p[2])
def p_const_map_seq(p):
'''const_map_seq : const_map_item sep const_map_seq
| const_map_item const_map_seq
|'''
_parse_seq(p)
def p_const_map_item(p):
'''const_map_item : const_value ':' const_value '''
p[0] = [p[1], p[3]]
def p_const_ref(p):
'''const_ref : IDENTIFIER'''
child = thrift_stack[-1]
for name in p[1].split('.'):
father = child
child = getattr(child, name, None)
if child is None:
raise ThriftParserError('Cann\'t find name %r at line %d'
% (p[1], p.lineno(1)))
if _get_ttype(child) is None or _get_ttype(father) == TType.I32:
# child is a constant or enum value
p[0] = child
else:
raise ThriftParserError('No enum value or constant found '
'named %r' % p[1])
def p_ttype(p):
'''ttype : typedef
| enum
| struct
| union
| exception
| service'''
def p_typedef(p):
'''typedef : TYPEDEF field_type IDENTIFIER type_annotations'''
setattr(thrift_stack[-1], p[3], p[2])
def p_enum(p): # noqa
'''enum : ENUM IDENTIFIER '{' enum_seq '}' type_annotations'''
val = _make_enum(p[2], p[4])
setattr(thrift_stack[-1], p[2], val)
_add_thrift_meta('enums', val)
def p_enum_seq(p):
'''enum_seq : enum_item sep enum_seq
| enum_item enum_seq
|'''
_parse_seq(p)
def p_enum_item(p):
'''enum_item : IDENTIFIER '=' INTCONSTANT type_annotations
| IDENTIFIER type_annotations
|'''
if len(p) == 5:
p[0] = [p[1], p[3]]
elif len(p) == 3:
p[0] = [p[1], None]
def p_struct(p):
'''struct : seen_struct '{' field_seq '}' type_annotations'''
val = _fill_in_struct(p[1], p[3])
_add_thrift_meta('structs', val)
def p_seen_struct(p):
'''seen_struct : STRUCT IDENTIFIER '''
val = _make_empty_struct(p[2])
setattr(thrift_stack[-1], p[2], val)
p[0] = val
def p_union(p):
'''union : seen_union '{' field_seq '}' '''
val = _fill_in_struct(p[1], p[3])
_add_thrift_meta('unions', val)
def p_seen_union(p):
'''seen_union : UNION IDENTIFIER '''
val = _make_empty_struct(p[2])
setattr(thrift_stack[-1], p[2], val)
p[0] = val
def p_exception(p):
'''exception : EXCEPTION IDENTIFIER '{' field_seq '}' type_annotations '''
val = _make_struct(p[2], p[4], base_cls=TException)
setattr(thrift_stack[-1], p[2], val)
_add_thrift_meta('exceptions', val)
def p_simple_service(p):
'''simple_service : SERVICE IDENTIFIER '{' function_seq '}'
| SERVICE IDENTIFIER EXTENDS IDENTIFIER '{' function_seq '}'
'''
thrift = thrift_stack[-1]
if len(p) == 8:
extends = thrift
for name in p[4].split('.'):
extends = getattr(extends, name, None)
if extends is None:
raise ThriftParserError('Can\'t find service %r for '
'service %r to extend' %
(p[4], p[2]))
if not hasattr(extends, 'thrift_services'):
raise ThriftParserError('Can\'t extends %r, not a service'
% p[4])
else:
extends = None
val = _make_service(p[2], p[len(p) - 2], extends)
setattr(thrift, p[2], val)
_add_thrift_meta('services', val)
def p_service(p):
'''service : simple_service type_annotations'''
p[0] = p[1]
def p_simple_function(p):
'''simple_function : ONEWAY function_type IDENTIFIER '(' field_seq ')'
| ONEWAY function_type IDENTIFIER '(' field_seq ')' throws
| function_type IDENTIFIER '(' field_seq ')' throws
| function_type IDENTIFIER '(' field_seq ')' '''
if p[1] == 'oneway':
oneway = True
base = 1
else:
oneway = False
base = 0
if p[len(p) - 1] == ')':
throws = []
else:
throws = p[len(p) - 1]
p[0] = [oneway, p[base + 1], p[base + 2], p[base + 4], throws]
def p_function(p):
'''function : simple_function type_annotations'''
p[0] = p[1]
def p_function_seq(p):
'''function_seq : function sep function_seq
| function function_seq
|'''
_parse_seq(p)
def p_throws(p):
'''throws : THROWS '(' field_seq ')' '''
p[0] = p[3]
def p_function_type(p):
'''function_type : field_type
| VOID'''
if p[1] == 'void':
p[0] = TType.VOID
else:
p[0] = p[1]
def p_field_seq(p):
'''field_seq : field sep field_seq
| field field_seq
|'''
_parse_seq(p)
def p_simple_field(p):
'''simple_field : field_id field_req field_type IDENTIFIER
| field_id field_req field_type IDENTIFIER '=' const_value
'''
if len(p) == 7:
try:
val = _cast(p[3])(p[6])
except AssertionError:
raise ThriftParserError(
'Type error for field %s '
'at line %d' % (p[4], p.lineno(4)))
else:
val = None
p[0] = [p[1], p[2], p[3], p[4], val]
def p_field(p):
'''field : simple_field type_annotations'''
p[0] = p[1]
def p_field_id(p):
'''field_id : INTCONSTANT ':' '''
p[0] = p[1]
def p_field_req(p):
'''field_req : REQUIRED
| OPTIONAL
|'''
if len(p) == 2:
p[0] = p[1] == 'required'
elif len(p) == 1:
p[0] = False # default: required=False
def p_field_type(p):
'''field_type : ref_type
| definition_type'''
p[0] = p[1]
def p_ref_type(p):
'''ref_type : IDENTIFIER'''
ref_type = thrift_stack[-1]
for name in p[1].split('.'):
ref_type = getattr(ref_type, name, None)
if ref_type is None:
raise ThriftParserError('No type found: %r, at line %d' %
(p[1], p.lineno(1)))
if hasattr(ref_type, '_ttype'):
p[0] = getattr(ref_type, '_ttype'), ref_type
else:
p[0] = ref_type
def p_simple_base_type(p): # noqa
'''simple_base_type : BOOL
| BYTE
| I16
| I32
| I64
| DOUBLE
| STRING
| BINARY'''
if p[1] == 'bool':
p[0] = TType.BOOL
if p[1] == 'byte':
p[0] = TType.BYTE
if p[1] == 'i16':
p[0] = TType.I16
if p[1] == 'i32':
p[0] = TType.I32
if p[1] == 'i64':
p[0] = TType.I64
if p[1] == 'double':
p[0] = TType.DOUBLE
if p[1] == 'string':
p[0] = TType.STRING
if p[1] == 'binary':
p[0] = TType.BINARY
def p_base_type(p):
'''base_type : simple_base_type type_annotations'''
p[0] = p[1]
def p_simple_container_type(p):
'''simple_container_type : map_type
| list_type
| set_type'''
p[0] = p[1]
def p_container_type(p):
'''container_type : simple_container_type type_annotations'''
p[0] = p[1]
def p_map_type(p):
'''map_type : MAP '<' field_type ',' field_type '>' '''
p[0] = TType.MAP, (p[3], p[5])
def p_list_type(p):
'''list_type : LIST '<' field_type '>' '''
p[0] = TType.LIST, p[3]
def p_set_type(p):
'''set_type : SET '<' field_type '>' '''
p[0] = TType.SET, p[3]
def p_definition_type(p):
'''definition_type : base_type
| container_type'''
p[0] = p[1]
def p_type_annotations(p):
'''type_annotations : '(' type_annotation_seq ')'
|'''
if len(p) == 4:
p[0] = p[2]
else:
p[0] = None
def p_type_annotation_seq(p):
'''type_annotation_seq : type_annotation sep type_annotation_seq
| type_annotation type_annotation_seq
|'''
_parse_seq(p)
def p_type_annotation(p):
'''type_annotation : IDENTIFIER '=' LITERAL
| IDENTIFIER '''
if len(p) == 4:
p[0] = p[1], p[3]
else:
p[0] = p[1], None # Without Value
thrift_stack = []
include_dirs_ = ['.']
thrift_cache = {}
def parse(path, module_name=None, include_dirs=None, include_dir=None,
lexer=None, parser=None, enable_cache=True):
"""Parse a single thrift file to module object, e.g.::
>>> from thriftpy.parser.parser import parse
>>> note_thrift = parse("path/to/note.thrift")
<module 'note_thrift' (built-in)>
:param path: file path to parse, should be a string ending with '.thrift'.
:param module_name: the name for parsed module, the default is the basename
without extension of `path`.
:param include_dirs: directories to find thrift files while processing
the `include` directive, by default: ['.'].
:param include_dir: directory to find child thrift files. Note this keyword
parameter will be deprecated in the future, it exists
for compatiable reason. If it's provided (not `None`),
it will be appended to `include_dirs`.
:param lexer: ply lexer to use, if not provided, `parse` will new one.
:param parser: ply parser to use, if not provided, `parse` will new one.
:param enable_cache: if this is set to be `True`, parsed module will be
cached, this is enabled by default. If `module_name`
is provided, use it as cache key, else use the `path`.
"""
if os.name == 'nt' and sys.version_info[0] < 3:
os.path.samefile = lambda f1, f2: os.stat(f1) == os.stat(f2)
# dead include checking on current stack
for thrift in thrift_stack:
if thrift.__thrift_file__ is not None and \
os.path.samefile(path, thrift.__thrift_file__):
raise ThriftParserError('Dead including on %s' % path)
global thrift_cache
cache_key = module_name or os.path.normpath(path)
if enable_cache and cache_key in thrift_cache:
return thrift_cache[cache_key]
if lexer is None:
lexer = lex.lex()
if parser is None:
parser = yacc.yacc(debug=False, write_tables=0)
global include_dirs_
if include_dirs is not None:
include_dirs_ = include_dirs
if include_dir is not None:
include_dirs_.append(include_dir)
if not path.endswith('.thrift'):
raise ThriftParserError('Path should end with .thrift')
url_scheme = urlparse(path).scheme
if url_scheme == 'file':
with open(urlparse(path).netloc + urlparse(path).path) as fh:
data = fh.read()
elif url_scheme == '':
with open(path) as fh:
data = fh.read()
elif url_scheme in ('http', 'https'):
data = urlopen(path).read()
else:
raise ThriftParserError('ThriftPy does not support generating module '
'with path in protocol \'{}\''.format(
url_scheme))
if module_name is not None and not module_name.endswith('_thrift'):
raise ThriftParserError('ThriftPy can only generate module with '
'\'_thrift\' suffix')
if module_name is None:
basename = os.path.basename(path)
module_name = os.path.splitext(basename)[0]
thrift = types.ModuleType(module_name)
setattr(thrift, '__thrift_file__', path)
thrift_stack.append(thrift)
lexer.lineno = 1
parser.parse(data)
thrift_stack.pop()
if enable_cache:
thrift_cache[cache_key] = thrift
return thrift
def parse_fp(source, module_name, lexer=None, parser=None, enable_cache=True):
"""Parse a file-like object to thrift module object, e.g.::
>>> from thriftpy.parser.parser import parse_fp
>>> with open("path/to/note.thrift") as fp:
parse_fp(fp, "note_thrift")
<module 'note_thrift' (built-in)>
:param source: file-like object, expected to have a method named `read`.
:param module_name: the name for parsed module, shoule be endswith
'_thrift'.
:param lexer: ply lexer to use, if not provided, `parse` will new one.
:param parser: ply parser to use, if not provided, `parse` will new one.
:param enable_cache: if this is set to be `True`, parsed module will be
cached by `module_name`, this is enabled by default.
"""
if not module_name.endswith('_thrift'):
raise ThriftParserError('ThriftPy can only generate module with '
'\'_thrift\' suffix')
if enable_cache and module_name in thrift_cache:
return thrift_cache[module_name]
if not hasattr(source, 'read'):
raise ThriftParserError('Expected `source` to be a file-like object '
'with a method named \'read\'')
if lexer is None:
lexer = lex.lex()
if parser is None:
parser = yacc.yacc(debug=False, write_tables=0)
data = source.read()
thrift = types.ModuleType(module_name)
setattr(thrift, '__thrift_file__', None)
thrift_stack.append(thrift)
lexer.lineno = 1
parser.parse(data)
thrift_stack.pop()
if enable_cache:
thrift_cache[module_name] = thrift
return thrift
def _add_thrift_meta(key, val):
thrift = thrift_stack[-1]
if not hasattr(thrift, '__thrift_meta__'):
meta = collections.defaultdict(list)
setattr(thrift, '__thrift_meta__', meta)
else:
meta = getattr(thrift, '__thrift_meta__')
meta[key].append(val)
def _parse_seq(p):
if len(p) == 4:
p[0] = [p[1]] + p[3]
elif len(p) == 3:
p[0] = [p[1]] + p[2]
elif len(p) == 1:
p[0] = []
def _cast(t): # noqa
if t == TType.BOOL:
return _cast_bool
if t == TType.BYTE:
return _cast_byte
if t == TType.I16:
return _cast_i16
if t == TType.I32:
return _cast_i32
if t == TType.I64:
return _cast_i64
if t == TType.DOUBLE:
return _cast_double
if t == TType.STRING:
return _cast_string
if t == TType.BINARY:
return _cast_binary
if t[0] == TType.LIST:
return _cast_list(t)
if t[0] == TType.SET:
return _cast_set(t)
if t[0] == TType.MAP:
return _cast_map(t)
if t[0] == TType.I32:
return _cast_enum(t)
if t[0] == TType.STRUCT:
return _cast_struct(t)
def _cast_bool(v):
assert isinstance(v, (bool, int))
return bool(v)
def _cast_byte(v):
assert isinstance(v, int)
return v
def _cast_i16(v):
assert isinstance(v, int)
return v
def _cast_i32(v):
assert isinstance(v, int)
return v
def _cast_i64(v):
assert isinstance(v, int)
return v
def _cast_double(v):
assert isinstance(v, (float, int))
return float(v)
def _cast_string(v):
assert isinstance(v, str)
return v
def _cast_binary(v):
assert isinstance(v, str)
return v
def _cast_list(t):
assert t[0] == TType.LIST
def __cast_list(v):
assert isinstance(v, list)
map(_cast(t[1]), v)
return v
return __cast_list
def _cast_set(t):
assert t[0] == TType.SET
def __cast_set(v):
assert isinstance(v, (list, set))
map(_cast(t[1]), v)
if not isinstance(v, set):
return set(v)
return v
return __cast_set
def _cast_map(t):
assert t[0] == TType.MAP
def __cast_map(v):
assert isinstance(v, dict)
for key in v:
v[_cast(t[1][0])(key)] = \
_cast(t[1][1])(v[key])
return v
return __cast_map
def _cast_enum(t):
assert t[0] == TType.I32
def __cast_enum(v):
assert isinstance(v, int)
if v in t[1]._VALUES_TO_NAMES:
return v
raise ThriftParserError('Couldn\'t find a named value in enum '
'%s for value %d' % (t[1].__name__, v))
return __cast_enum
def _cast_struct(t): # struct/exception/union
assert t[0] == TType.STRUCT
def __cast_struct(v):
if isinstance(v, t[1]):
return v # already cast
assert isinstance(v, dict)
tspec = getattr(t[1], '_tspec')
for key in tspec: # requirement check
if tspec[key][0] and key not in v:
raise ThriftParserError('Field %r was required to create '
'constant for type %r' %
(key, t[1].__name__))
for key in v: # cast values
if key not in tspec:
raise ThriftParserError('No field named %r was '
'found in struct of type %r' %
(key, t[1].__name__))
v[key] = _cast(tspec[key][1])(v[key])
return t[1](**v)
return __cast_struct
def _make_enum(name, kvs):
attrs = {'__module__': thrift_stack[-1].__name__, '_ttype': TType.I32}
cls = type(name, (object, ), attrs)
_values_to_names = {}
_names_to_values = {}
if kvs:
val = kvs[0][1]
if val is None:
val = -1
for item in kvs:
if item[1] is None:
item[1] = val + 1
val = item[1]
for key, val in kvs:
setattr(cls, key, val)
_values_to_names[val] = key
_names_to_values[key] = val
setattr(cls, '_VALUES_TO_NAMES', _values_to_names)
setattr(cls, '_NAMES_TO_VALUES', _names_to_values)
return cls
def _make_empty_struct(name, ttype=TType.STRUCT, base_cls=TPayload):
attrs = {'__module__': thrift_stack[-1].__name__, '_ttype': ttype}
return type(name, (base_cls, ), attrs)
def _fill_in_struct(cls, fields, _gen_init=True):
thrift_spec = {}
default_spec = []
_tspec = {}
for field in fields:
if field[0] in thrift_spec or field[3] in _tspec:
raise ThriftGrammerError(('\'%d:%s\' field identifier/name has '
'already been used') % (field[0],
field[3]))
ttype = field[2]
thrift_spec[field[0]] = _ttype_spec(ttype, field[3], field[1])
default_spec.append((field[3], field[4]))
_tspec[field[3]] = field[1], ttype
setattr(cls, 'thrift_spec', thrift_spec)
setattr(cls, 'default_spec', default_spec)
setattr(cls, '_tspec', _tspec)
if _gen_init:
gen_init(cls, thrift_spec, default_spec)
return cls
def _make_struct(name, fields, ttype=TType.STRUCT, base_cls=TPayload,
_gen_init=True):
cls = _make_empty_struct(name, ttype=ttype, base_cls=base_cls)
return _fill_in_struct(cls, fields, _gen_init=_gen_init)
def _make_service(name, funcs, extends):
if extends is None:
extends = object
attrs = {'__module__': thrift_stack[-1].__name__}
cls = type(name, (extends, ), attrs)
thrift_services = []
for func in funcs:
func_name = func[2]
# args payload cls
args_name = '%s_args' % func_name
args_fields = func[3]
args_cls = _make_struct(args_name, args_fields)
setattr(cls, args_name, args_cls)
# result payload cls
result_name = '%s_result' % func_name
result_type = func[1]
result_throws = func[4]
result_oneway = func[0]
result_cls = _make_struct(result_name, result_throws,
_gen_init=False)
setattr(result_cls, 'oneway', result_oneway)
if result_type != TType.VOID:
result_cls.thrift_spec[0] = _ttype_spec(result_type, 'success')
result_cls.default_spec.insert(0, ('success', None))
gen_init(result_cls, result_cls.thrift_spec, result_cls.default_spec)
setattr(cls, result_name, result_cls)
thrift_services.append(func_name)
if extends is not None and hasattr(extends, 'thrift_services'):
thrift_services.extend(extends.thrift_services)
setattr(cls, 'thrift_services', thrift_services)
return cls
def _ttype_spec(ttype, name, required=False):
if isinstance(ttype, int):
return ttype, name, required
else:
return ttype[0], name, ttype[1], required
def _get_ttype(inst, default_ttype=None):
if hasattr(inst, '__dict__') and '_ttype' in inst.__dict__:
return inst.__dict__['_ttype']
return default_ttype