-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathr_client.py
1718 lines (1464 loc) · 58.4 KB
/
r_client.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
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
#!/usr/bin/env python
from xml.etree.cElementTree import *
from os.path import basename
from functools import reduce
import getopt
import os
import sys
import errno
import time
import re
# Jump to the bottom of this file for the main routine
# Some hacks to make the API more readable, and to keep backwards compability
_cname_re = re.compile('([A-Z0-9][a-z]+|[A-Z0-9]+(?![a-z])|[a-z]+)')
_cname_special_cases = {'DECnet':'decnet'}
_extension_special_cases = ['XPrint', 'XCMisc', 'BigRequests']
_cplusplus_annoyances = { 'new' : 'new_', 'str' : 'str_' }
_c_keywords = {'type' : 'type_', "str" : "str_"}
_hlines = []
_hlevel = 0
_rlines = []
_rlevel = 0
_ns = None
_imports = []
outdir = './'
# global variable to keep track of serializers and
# switch data types due to weird dependencies
finished_serializers = []
finished_sizeof = []
finished_switch = []
# keeps enum objects so that we can refer to them when generating manpages.
enums = {}
links = {"composite":"composite",
"damage":"damage",
"dpms":"dpms",
"dri2":"dri2",
"glx":"glx",
"randr":"randr",
"record":"record",
"render":"render",
"res":"res",
"screensaver":"screensaver",
"shape":"shape",
"shm":"shm",
"sync":"sync",
"xevie":"xevie",
"xf86dri":"xf86dri",
"xfixes":"xfixes",
"xinerama":"xinerama",
"xinput":"xinput",
"xkb":"xkb",
"xprint":"xprint",
"xselinux":"xselinux",
"xtest":"xtest",
"xv":"xv",
"xvmc":"xvmc"}
manpaths = False
def _h(fmt, *args):
'''
Writes the given line to the header file.
'''
_hlines[_hlevel].append(fmt % args)
def _r(fmt, *args):
'''
Writes the given line to the source file.
'''
_rlines[_rlevel].append(fmt % args)
pass
def _hr(fmt, *args):
'''
Writes the given line to both the header and source files.
'''
_h(fmt, *args)
_r(fmt, *args)
# XXX See if this level thing is really necessary.
def _h_setlevel(idx):
'''
Changes the array that header lines are written to.
Supports writing different sections of the header file.
'''
global _hlevel
while len(_hlines) <= idx:
_hlines.append([])
_hlevel = idx
def _r_setlevel(idx):
'''
Changes the array that source lines are written to.
Supports writing to different sections of the source file.
'''
global _rlevel
while len(_rlines) <= idx:
_rlines.append([])
_rlevel = idx
def _n_item(str):
'''
Does C-name conversion on a single string fragment.
Uses a regexp with some hard-coded special cases.
'''
if str in _cname_special_cases:
return _cname_special_cases[str]
else:
split = _cname_re.finditer(str)
name_parts = [match.group(0) for match in split]
return '_'.join(name_parts)
def _r_item(str):
split = _cname_re.finditer(str)
name_parts = [match.group(0) for match in split]
name_parts = [i[0].upper() + i[1:].lower() for i in name_parts]
return ''.join(name_parts)
def _cpp(str):
'''
Checks for certain C++ reserved words and fixes them.
'''
if str in _cplusplus_annoyances:
return _cplusplus_annoyances[str]
elif str in _c_keywords:
return _c_keywords[str]
else:
return str
def _ext(str):
'''
Does C-name conversion on an extension name.
Has some additional special cases on top of _n_item.
'''
if str in _extension_special_cases:
return _n_item(str).lower()
else:
return str.lower()
def _n(list):
'''
Does C-name conversion on a tuple of strings.
Different behavior depending on length of tuple, extension/not extension, etc.
Basically C-name converts the individual pieces, then joins with underscores.
'''
if len(list) == 1:
parts = list
elif len(list) == 2:
parts = [list[0], _n_item(list[1])]
elif _ns.is_ext:
parts = [list[0], _ext(list[1])] + [_n_item(i) for i in list[2:]]
else:
parts = [list[0]] + [_n_item(i) for i in list[1:]]
return '_'.join(parts).lower()
def _rn(list):
'''
Does C-name conversion on a tuple of strings.
Different behavior depending on length of tuple, extension/not extension, etc.
Basically C-name converts the individual pieces, then joins with underscores.
'''
if len(list) == 1:
parts = list
elif len(list) == 2:
parts = [_r_item(list[1])]
elif _ns.is_ext:
parts = [_r_item(i) for i in list[2:]]
else:
parts = [_r_item(i) for i in list[1:]]
return ''.join(parts)
def _t(list):
'''
Does C-name conversion on a tuple of strings representing a type.
Same as _n but adds a "_t" on the end.
'''
module = ''
if len(list) == 1:
parts = list
elif _ns.is_ext:
list = list[1:]
ext = _ext(list[0])
if ext in _imports:
module = 'll::'+(_ext(list[0]) + '::')
parts = [_n_item(i) for i in list[1:]]
elif ext == _ext(_ns.ext_name):
parts = [_n_item(i) for i in list[1:]]
else:
module = 'll::xproto::'
parts = [_n_item(i) for i in list]
elif len(list) == 2:
parts = [_n_item(list[1])]
else:
parts = [_n_item(i) for i in list[1:]]
t = '_'.join(parts).lower()
t = _cpp(t)
return module.lower() + t
def _rty(list):
module = ''
if len(list) == 1:
parts = list
elif _ns.is_ext:
list = list[1:]
ext = list[0]
if _ext(ext) in _imports:
module = (list[0] + '::')
parts = [i for i in list[1:]]
elif ext == _ns.ext_name:
parts = [i for i in list[1:]]
else:
module = 'xproto::'
parts = [i for i in list]
parts = [_r_item(i) for i in parts]
elif len(list) == 2:
parts = [list[1]]
parts = [_r_item(i) for i in parts]
else:
parts = [i for i in list[1:]]
parts = [_r_item(i) for i in parts]
t = ''.join(parts)
t = _cpp(t)
return module.lower() + t
def c_open(self):
'''
Exported function that handles module open.
Opens the files and writes out the auto-generated comment, header file includes, etc.
'''
global _ns
_ns = self.namespace
_ns.c_ext_global_name = _n(_ns.prefix + ('id',))
print("Generating %s" % _ns.ext_name)
# Build the type-name collision avoidance table used by c_enum
build_collision_table()
_h_setlevel(0)
_r_setlevel(0)
_hr('/*')
_hr(' * This file generated automatically from %s by r_client.py.', _ns.file)
_hr(' * Edit at your peril.')
_hr(' */')
_hr('')
_hr('//Make the compiler quiet')
_hr('#[allow(unused_imports)];')
_r('#[allow(unused_unsafe)];')
_h('#[allow(non_camel_case_types)];')
_hr('use core;')
_hr('use core::libc::*;')
_hr('use ll::base::*;')
_r('use base;')
_r('use base::*;')
_hr('use ll;')
_r('use ll::%s::*;', _ns.header)
_r('use core::option::Option;')
_r('use core::iterator::Iterator;')
_r('')
global _imports
if _ns.is_ext:
for (n, h) in self.imports:
_h('use ll::%s;', h)
_r('use %s;', h)
_imports.append(h)
_h('')
_h('pub static %s_MAJOR_VERSION : c_uint = %s;', _ns.ext_name.upper(), _ns.major_version)
_h('pub static %s_MINOR_VERSION : c_uint = %s;', _ns.ext_name.upper(), _ns.minor_version)
def c_close(self):
'''
Exported function that handles module close.
Writes out all the stored content lines, then closes the files.
'''
_h_setlevel(2)
_hr('')
global links
# Write header file
hfile = open('src/ll/%s.rs' % (_ns.header,), 'w')
level = 0
for list in _hlines:
if level == 1:
if _ns.header in links:
hfile.write("#[link_args=\"-lxcb-%s\"]\n" % links[_ns.header])
hfile.write("pub extern \"C\" {\n")
if level == 2:
hfile.write("}\n")
for line in list:
hfile.write(line)
hfile.write('\n')
level = level + 1
hfile.close()
rfile = open('src/%s.rs' % (_ns.header,), 'w')
level = 0
for list in _rlines:
for line in list:
rfile.write(line)
rfile.write('\n')
level = level + 1
rfile.close()
def build_collision_table():
global namecount
namecount = {}
for v in module.types.values():
name = _t(v[0])
namecount[name] = (namecount.get(name) or 0) + 1
def c_enum(self, name):
'''
Exported function that handles enum declarations.
'''
enums[name] = self
tname = _t(name)
if namecount[tname] > 1:
tname = _t(name + ('enum',))
_r_setlevel(0)
_r('')
_r('pub type %s = c_uint;//{', tname)
count = len(self.values)
val = 0
for (enam, eval) in self.values:
count = count - 1
val = int(eval) if eval != '' else val + 1
doc = ''
if hasattr(self, "doc") and self.doc and enam in self.doc.fields:
doc = '\n/** %s */\n ' % self.doc.fields[enam]
_r(' %spub static %s : %s = %s;', doc, _n(name + (enam,)).upper(), tname, val)
_r('//}')
def _c_type_setup(self, name, postfix):
'''
Sets up all the C-related state by adding additional data fields to
all Field and Type objects. Here is where we figure out most of our
variable and function names.
Recurses into child fields and list member types.
'''
# Do all the various names in advance
self.c_type = _t(name + postfix)
self.r_type = _rty(name + postfix)
self.c_wiretype = 'u8' if self.c_type == 'void' else self.c_type
self.c_iterator_type = _t(name + ('iterator',))
self.r_iterator_type = _rty(name + ('iterator',))
self.c_next_name = _n(name + ('next',))
self.c_end_name = _n(name + ('end',))
self.c_request_name = _n(name)
self.c_checked_name = _n(name + ('checked',))
self.c_unchecked_name = _n(name + ('unchecked',))
self.r_request_name = _rn(name)
self.r_checked_name = _rn(name + ('checked',))
self.r_unchecked_name = _rn(name + ('unchecked',))
self.c_reply_name = _n(name + ('reply',))
self.c_reply_type = _t(name + ('reply',))
self.r_reply_type = _rty(name + ('reply',))
self.c_cookie_type = _t(name + ('cookie',))
self.r_cookie_type = _rty(name + ('cookie',))
self.need_aux = False
self.need_serialize = False
self.need_sizeof = False
self.c_aux_name = _n(name + ('aux',))
self.c_aux_checked_name = _n(name + ('aux', 'checked'))
self.c_aux_unchecked_name = _n(name + ('aux', 'unchecked'))
self.r_aux_name = _rn(name + ('aux',))
self.r_aux_checked_name = _rn(name + ('aux', 'checked'))
self.r_aux_unchecked_name = _rn(name + ('aux', 'unchecked'))
self.c_serialize_name = _n(name + ('serialize',))
self.c_unserialize_name = _n(name + ('unserialize',))
self.c_unpack_name = _n(name + ('unpack',))
self.c_sizeof_name = _n(name + ('sizeof',))
# special case: structs where variable size fields are followed by fixed size fields
self.var_followed_by_fixed_fields = False
if self.is_switch:
self.need_serialize = True
self.c_container = 'struct'
for bitcase in self.bitcases:
bitcase.c_field_name = _cpp(bitcase.field_name)
bitcase_name = bitcase.field_type if bitcase.type.has_name else name
_c_type_setup(bitcase.type, bitcase_name, ())
elif self.is_container:
self.c_container = 'struct /* union */' if self.is_union else 'struct'
prev_varsized_field = None
prev_varsized_offset = 0
first_field_after_varsized = None
for field in self.fields:
_c_type_setup(field.type, field.field_type, ())
if field.type.is_list:
_c_type_setup(field.type.member, field.field_type, ())
if (field.type.nmemb is None):
self.need_sizeof = True
field.c_field_type = _t(field.field_type)
field.r_field_type = _rty(field.field_type)
field.c_field_const_type = field.c_field_type
field.r_field_const_type = field.r_field_type
field.c_field_name = _cpp(field.field_name)
field.c_subscript = field.type.nmemb if (field.type.nmemb and field.type.nmemb > 1) else 1
field.c_pointer = ' ' if field.type.nmemb == 1 else '*'
field.r_pointer = ' ' if field.type.nmemb == 1 else '&'
# correct the c_pointer field for variable size non-list types
if not field.type.fixed_size() and field.c_pointer == ' ':
field.c_pointer = '*'
field.r_pointer = '&'
if field.type.is_list and not field.type.member.fixed_size():
field.c_pointer = '*'
field.r_pointer = '*'
if field.type.is_switch:
field.c_pointer = '*'
field.r_pointer = '*'
field.c_field_const_type = field.c_field_type
field.r_field_const_type = field.r_field_type
self.need_aux = True
elif not field.type.fixed_size() and not field.type.is_bitcase:
self.need_sizeof = True
field.c_iterator_type = _t(field.field_type + ('iterator',)) # xcb_fieldtype_iterator_t
field.r_iterator_type = _rty(field.field_type + ('iterator',)) # xcb_fieldtype_iterator_t
field.c_iterator_name = _n(name + (field.field_name, 'iterator')) # xcb_container_field_iterator
field.c_accessor_name = _n(name + (field.field_name,)) # xcb_container_field
field.c_length_name = _n(name + (field.field_name, 'length')) # xcb_container_field_length
field.c_end_name = _n(name + (field.field_name, 'end')) # xcb_container_field_end
field.prev_varsized_field = prev_varsized_field
field.prev_varsized_offset = prev_varsized_offset
if prev_varsized_offset == 0:
first_field_after_varsized = field
field.first_field_after_varsized = first_field_after_varsized
if field.type.fixed_size():
prev_varsized_offset += field.type.size
# special case: intermixed fixed and variable size fields
if prev_varsized_field is not None and not field.type.is_pad and field.wire:
if not self.is_union:
self.need_serialize = True
self.var_followed_by_fixed_fields = True
else:
self.last_varsized_field = field
prev_varsized_field = field
prev_varsized_offset = 0
if self.var_followed_by_fixed_fields:
if field.type.fixed_size():
field.prev_varsized_field = None
if self.need_serialize:
# when _unserialize() is wanted, create _sizeof() as well for consistency reasons
self.need_sizeof = True
# as switch does never appear at toplevel,
# continue here with type construction
if self.is_switch:
if self.c_type not in finished_switch:
finished_switch.append(self.c_type)
# special: switch C structs get pointer fields for variable-sized members
_c_complex(self)
for bitcase in self.bitcases:
bitcase_name = bitcase.type.name if bitcase.type.has_name else name
_c_accessors(bitcase.type, bitcase_name, bitcase_name)
# no list with switch as element, so no call to
# _c_iterator(field.type, field_name) necessary
if not self.is_bitcase:
if self.need_serialize:
if self.c_serialize_name not in finished_serializers:
finished_serializers.append(self.c_serialize_name)
_c_serialize('serialize', self)
# _unpack() and _unserialize() are only needed for special cases:
# switch -> unpack
# special cases -> unserialize
if self.is_switch or self.var_followed_by_fixed_fields:
_c_serialize('unserialize', self)
if self.need_sizeof:
if self.c_sizeof_name not in finished_sizeof:
if not module.namespace.is_ext or self.name[:2] == module.namespace.prefix:
finished_sizeof.append(self.c_sizeof_name)
_c_serialize('sizeof', self)
# _c_type_setup()
def _c_helper_absolute_name(prefix, field=None):
"""
turn prefix, which is a list of tuples (name, separator, Type obj) into a string
representing a valid name in C (based on the context)
if field is not None, append the field name as well
"""
prefix_str = ''
for name, sep, obj in prefix:
prefix_str += name
if '' == sep:
sep = '->'
if ((obj.is_bitcase and obj.has_name) or # named bitcase
(obj.is_switch and len(obj.parents)>1)):
sep = '.'
prefix_str += sep
if field is not None:
prefix_str += _cpp(field.field_name)
return prefix_str
# _c_absolute_name
def _c_helper_field_mapping(complex_type, prefix, flat=False):
"""
generate absolute names, based on prefix, for all fields starting from complex_type
if flat == True, nested complex types are not taken into account
"""
all_fields = {}
if complex_type.is_switch:
for b in complex_type.bitcases:
if b.type.has_name:
switch_name, switch_sep, switch_type = prefix[-1]
bitcase_prefix = prefix + [(b.type.name[-1], '.', b.type)]
else:
bitcase_prefix = prefix
if (True==flat and not b.type.has_name) or False==flat:
all_fields.update(_c_helper_field_mapping(b.type, bitcase_prefix, flat))
else:
for f in complex_type.fields:
fname = _c_helper_absolute_name(prefix, f)
if f.field_name in all_fields:
raise Exception("field name %s has been registered before" % f.field_name)
all_fields[f.field_name] = (fname, f)
if f.type.is_container and flat==False:
if f.type.is_bitcase and not f.type.has_name:
new_prefix = prefix
elif f.type.is_switch and len(f.type.parents)>1:
# nested switch gets another separator
new_prefix = prefix+[(f.c_field_name, '.', f.type)]
else:
new_prefix = prefix+[(f.c_field_name, '->', f.type)]
all_fields.update(_c_helper_field_mapping(f.type, new_prefix, flat))
return all_fields
# _c_field_mapping()
def _c_helper_resolve_field_names (prefix):
"""
get field names for all objects in the prefix array
"""
all_fields = {}
tmp_prefix = []
# look for fields in the remaining containers
for idx, p in enumerate(prefix):
name, sep, obj = p
if ''==sep:
# sep can be preset in prefix, if not, make a sensible guess
sep = '.' if (obj.is_switch or obj.is_bitcase) else '->'
# exception: 'toplevel' object (switch as well!) always have sep '->'
sep = '->' if idx<1 else sep
if not obj.is_bitcase or (obj.is_bitcase and obj.has_name):
tmp_prefix.append((name, sep, obj))
all_fields.update(_c_helper_field_mapping(obj, tmp_prefix, flat=True))
return all_fields
# _c_helper_resolve_field_names
def get_expr_fields(self):
"""
get the Fields referenced by switch or list expression
"""
def get_expr_field_names(expr):
if expr.op is None:
if expr.lenfield_name is not None:
return [expr.lenfield_name]
else:
# constant value expr
return []
else:
if expr.op == '~':
return get_expr_field_names(expr.rhs)
elif expr.op == 'popcount':
return get_expr_field_names(expr.rhs)
elif expr.op == 'sumof':
# sumof expr references another list,
# we need that list's length field here
field = None
for f in expr.lenfield_parent.fields:
if f.field_name == expr.lenfield_name:
field = f
break
if field is None:
raise Exception("list field '%s' referenced by sumof not found" % expr.lenfield_name)
# referenced list + its length field
return [expr.lenfield_name] + get_expr_field_names(field.type.expr)
elif expr.op == 'enumref':
return []
else:
return get_expr_field_names(expr.lhs) + get_expr_field_names(expr.rhs)
# get_expr_field_names()
# resolve the field names with the parent structure(s)
unresolved_fields_names = get_expr_field_names(self.expr)
# construct prefix from self
prefix = [('', '', p) for p in self.parents]
if self.is_container:
prefix.append(('', '', self))
all_fields = _c_helper_resolve_field_names (prefix)
resolved_fields_names = list(filter(lambda x: x in all_fields.keys(), unresolved_fields_names))
if len(unresolved_fields_names) != len(resolved_fields_names):
raise Exception("could not resolve all fields for %s" % self.name)
resolved_fields = [all_fields[n][1] for n in resolved_fields_names]
return resolved_fields
# get_expr_fields()
def resolve_expr_fields(complex_obj):
"""
find expr fields appearing in complex_obj and descendents that cannot be resolved within complex_obj
these are normally fields that need to be given as function parameters
"""
all_fields = []
expr_fields = []
unresolved = []
for field in complex_obj.fields:
all_fields.append(field)
if field.type.is_switch or field.type.is_list:
expr_fields += get_expr_fields(field.type)
if field.type.is_container:
expr_fields += resolve_expr_fields(field.type)
# try to resolve expr fields
for e in expr_fields:
if e not in all_fields and e not in unresolved:
unresolved.append(e)
return unresolved
# resolve_expr_fields()
def get_serialize_params(context, self, buffer_var='_buffer', aux_var='_aux'):
"""
functions like _serialize(), _unserialize(), and _unpack() sometimes need additional parameters:
E.g. in order to unpack switch, extra parameters might be needed to evaluate the switch
expression. This function tries to resolve all fields within a structure, and returns the
unresolved fields as the list of external parameters.
"""
def add_param(params, param):
if param not in params:
params.append(param)
# collect all fields into param_fields
param_fields = []
wire_fields = []
for field in self.fields:
if field.visible:
# the field should appear as a parameter in the function call
param_fields.append(field)
if field.wire and not field.auto:
if field.type.fixed_size() and not self.is_switch:
# field in the xcb_out structure
wire_fields.append(field)
# fields like 'pad0' are skipped!
# in case of switch, parameters always contain any fields referenced in the switch expr
# we do not need any variable size fields here, as the switch data type contains both
# fixed and variable size fields
if self.is_switch:
param_fields = get_expr_fields(self)
# _serialize()/_unserialize()/_unpack() function parameters
# note: don't use set() for params, it is unsorted
params = []
# 1. the parameter for the void * buffer
if 'serialize' == context:
params.append(('c_void', '**', buffer_var))
elif context in ('unserialize', 'unpack', 'sizeof'):
params.append(('c_void', '*', buffer_var))
# 2. any expr fields that cannot be resolved within self and descendants
unresolved_fields = resolve_expr_fields(self)
for f in unresolved_fields:
add_param(params, (f.c_field_type, '', f.c_field_name))
# 3. param_fields contain the fields necessary to evaluate the switch expr or any other fields
# that do not appear in the data type struct
for p in param_fields:
if self.is_switch:
typespec = p.c_field_const_type
pointerspec = p.c_pointer
add_param(params, (typespec, pointerspec, p.c_field_name))
else:
if p.visible and not p.wire and not p.auto:
typespec = p.c_field_type
pointerspec = ''
add_param(params, (typespec, pointerspec, p.c_field_name))
# 4. aux argument
if 'serialize' == context:
add_param(params, ('%s' % self.c_type, '*', aux_var))
elif 'unserialize' == context:
add_param(params, ('%s' % self.c_type, '**', aux_var))
elif 'unpack' == context:
add_param(params, ('%s' % self.c_type, '*', aux_var))
# 5. switch contains all variable size fields as struct members
# for other data types though, these have to be supplied separately
# this is important for the special case of intermixed fixed and
# variable size fields
if not self.is_switch and 'serialize' == context:
for p in param_fields:
if not p.type.fixed_size():
add_param(params, (p.c_field_const_type, '*', p.c_field_name))
return (param_fields, wire_fields, params)
# get_serialize_params()
def _c_serialize(context, self):
"""
depending on the context variable, generate _serialize(), _unserialize(), _unpack(), or _sizeof()
for the ComplexType variable self
"""
_h_setlevel(1)
_r_setlevel(1)
_h('')
# _serialize() returns the buffer size
if self.is_switch and 'unserialize' == context:
context = 'unpack'
cases = { 'serialize' : self.c_serialize_name,
'unserialize' : self.c_unserialize_name,
'unpack' : self.c_unpack_name,
'sizeof' : self.c_sizeof_name }
func_name = cases[context]
param_fields, wire_fields, params = get_serialize_params(context, self)
variable_size_fields = 0
# maximum space required for type definition of function arguments
maxtypelen = 0
# determine N(variable_fields)
for field in param_fields:
# if self.is_switch, treat all fields as if they are variable sized
if not field.type.fixed_size() or self.is_switch:
variable_size_fields += 1
# determine maxtypelen
for p in params:
maxtypelen = max(maxtypelen, len(p[0]) + len(p[1]))
# write to .c/.h
indent = ' '*(len(func_name)+2)
param_str = []
for p in params:
typespec, pointerspec, field_name = p
spacing = ' '*(maxtypelen-len(field_name)-len(pointerspec))
param_str.append("%s%s :%s %s%s" % (indent, field_name, spacing, pointerspec, typespec))
# insert function name
param_str[0] = "unsafe fn %s (%s" % (func_name, param_str[0].strip())
param_str = list(map(lambda x: "%s," % x, param_str))
for s in param_str[:-1]:
_h(s)
_h("%s) -> c_int;" % param_str[-1].rstrip(','))
# _c_serialize()
def _c_iterator_get_end(field, accum):
'''
Figures out what C code is needed to find the end of a variable-length structure field.
For nested structures, recurses into its last variable-sized field.
For lists, calls the end function
'''
if field.type.is_container:
accum = field.c_accessor_name + '(' + accum + ')'
return _c_iterator_get_end(field.type.last_varsized_field, accum)
if field.type.is_list:
# XXX we can always use the first way
if field.type.member.is_simple:
return field.c_end_name + '(' + accum + ')'
else:
return field.type.member.c_end_name + '(' + field.c_iterator_name + '(' + accum + '))'
def _c_iterator(self, name):
'''
Declares the iterator structure and next/end functions for a given type.
'''
_h_setlevel(0)
_r_setlevel(0)
_h('/**')
_h(' * @brief %s', self.c_iterator_type)
_h(' **/')
_h('pub struct %s {', self.c_iterator_type)
_h(' data : *%s,', self.c_type)
_h(' rem : c_int,')
_h(' index: c_int')
_h('}\n')
_r('pub type %s = %s;\n', self.r_iterator_type, self.c_iterator_type)
_h_setlevel(1)
_r_setlevel(1)
_h('')
_h('/**')
_h(' * Get the next element of the iterator')
_h(' * @param i Pointer to a %s', self.c_iterator_type)
_h(' *')
_h(' * Get the next element in the iterator. The member rem is')
_h(' * decreased by one. The member data points to the next')
_h(' * element. The member index is increased by sizeof(%s)', self.c_type)
_h(' *')
_h(' *')
_h(' */');
_h('unsafe fn %s (i:*%s) -> c_void;', self.c_next_name, self.c_iterator_type)
_h('')
_h('/**')
_h(' * Return the iterator pointing to the last element')
_h(' * @param i An %s', self.c_iterator_type)
_h(' * @return The iterator pointing to the last element')
_h(' *')
_h(' * Set the current element in the iterator to the last element.')
_h(' * The member rem is set to 0. The member data points to the')
_h(' * last element.')
_h(' */')
_h('unsafe fn %s (i:%s) -> generic_iterator;', self.c_end_name, self.c_iterator_type)
_r('')
_r('impl<\'self, %s> Iterator<&\'self %s> for %s {', self.r_type, self.r_type, self.r_iterator_type)
_r(' fn next(&mut self) -> Option<&\'self %s> {', self.r_type)
_r(' if self.rem == 0 { return None; }')
_r(' unsafe {')
_r(' let iter : *%s = cast::transmute(self);', self.c_iterator_type)
_r(' let data = (*iter).data;')
_r(' %s(iter);', self.c_next_name)
_r(' Some(cast::transmute(data))')
_r(' }')
_r(' }')
_r('}\n')
def type_pad_type(type):
if type == 'void':
return 'u8'
return type
def _c_accessors_field(self, field):
'''
Declares the accessor functions for a non-list field that follows a variable-length field.
'''
c_type = self.c_type
# special case: switch
switch_obj = self if self.is_switch else None
if self.is_bitcase:
switch_obj = self.parents[-1]
if switch_obj is not None:
c_type = switch_obj.c_type
if c_type == 'void':
c_type = 'c_void'
ftype = field.c_field_type if field.c_field_type != 'void' else 'c_void'
_h_setlevel(1)
if field.type.is_simple:
_h('')
_h('/**')
_h(' * ')
_h(' * %s : %s', field.c_accessor_name, field.c_field_type,)
_h(' * ')
_h(' *')
_h(' **/')
_h('unsafe fn %s (R : *%s) -> %s;', field.c_accessor_name, c_type, ftype)
else:
_h('')
_h('')
_h('/**')
_h(' *')
_h(' * %s : *%s', field.c_accessor_name, field.c_field_type)
_h(' * ')
_h(' *')
_h(' */')
if field.type.is_switch and switch_obj is None:
return_type = '*c_void'
else:
return_type = '*%s' % ftype
_h('unsafe fn %s (R : *%s) -> %s;', field.c_accessor_name, c_type, return_type)
def _c_accessors_list(self, field):
'''
Declares the accessor functions for a list field.
Declares a direct-accessor function only if the list members are fixed size.
Declares length and get-iterator functions always.
'''
list = field.type
c_type = self.c_type
# special case: switch
# in case of switch, 2 params have to be supplied to certain accessor functions:
# 1. the anchestor object (request or reply)
# 2. the (anchestor) switch object
# the reason is that switch is either a child of a request/reply or nested in another switch,
# so whenever we need to access a length field, we might need to refer to some anchestor type
switch_obj = self if self.is_switch else None
if self.is_bitcase:
switch_obj = self.parents[-1]
if switch_obj is not None:
c_type = switch_obj.c_type
params = []
fields = {}
parents = self.parents if hasattr(self, 'parents') else [self]
# 'R': parents[0] is always the 'toplevel' container type
params.append(('R : *%s' % parents[0].c_type, parents[0]))
fields.update(_c_helper_field_mapping(parents[0], [('R', '->', parents[0])], flat=True))
# auxiliary object for 'R' parameters
R_obj = parents[0]
if switch_obj is not None:
# now look where the fields are defined that are needed to evaluate
# the switch expr, and store the parent objects in accessor_params and
# the fields in switch_fields
# 'S': name for the 'toplevel' switch
toplevel_switch = parents[1]
params.append(('S : *%s' % toplevel_switch.c_type, toplevel_switch))
fields.update(_c_helper_field_mapping(toplevel_switch, [('S', '->', toplevel_switch)], flat=True))
# initialize prefix for everything "below" S
prefix_str = '/* %s */ S' % toplevel_switch.name[-1]
prefix = [(prefix_str, '->', toplevel_switch)]
# look for fields in the remaining containers
for p in parents[2:] + [self]:
# the separator between parent and child is always '.' here,
# because of nested switch statements
if not p.is_bitcase or (p.is_bitcase and p.has_name):
prefix.append((p.name[-1], '.', p))
fields.update(_c_helper_field_mapping(p, prefix, flat=True))
# auxiliary object for 'S' parameter
S_obj = parents[1]
field.c_field_type = 'c_void' if field.c_field_type == 'void' else field.c_field_type
_h_setlevel(1)
_r_setlevel(1)
if list.member.fixed_size():
idx = 1 if switch_obj is not None else 0
_h('')
_h('unsafe fn %s (%s) -> *%s;', field.c_accessor_name, params[idx][0], field.c_field_type)
_h('')
_h('')
if switch_obj is not None:
_hr('unsafe fn %s (R : *%s,', field.c_length_name, R_obj.c_type)