Publishing nanopb-0.3.5
[apps/agl-service-can-low-level.git] / generator / nanopb_generator.py
1 #!/usr/bin/env python
2
3 from __future__ import unicode_literals
4
5 '''Generate header file for nanopb from a ProtoBuf FileDescriptorSet.'''
6 nanopb_version = "nanopb-0.3.5"
7
8 import sys
9 import re
10 from functools import reduce
11
12 try:
13     # Add some dummy imports to keep packaging tools happy.
14     import google, distutils.util # bbfreeze seems to need these
15     import pkg_resources # pyinstaller / protobuf 2.5 seem to need these
16 except:
17     # Don't care, we will error out later if it is actually important.
18     pass
19
20 try:
21     import google.protobuf.text_format as text_format
22     import google.protobuf.descriptor_pb2 as descriptor
23 except:
24     sys.stderr.write('''
25          *************************************************************
26          *** Could not import the Google protobuf Python libraries ***
27          *** Try installing package 'python-protobuf' or similar.  ***
28          *************************************************************
29     ''' + '\n')
30     raise
31
32 try:
33     import proto.nanopb_pb2 as nanopb_pb2
34     import proto.plugin_pb2 as plugin_pb2
35 except:
36     sys.stderr.write('''
37          ********************************************************************
38          *** Failed to import the protocol definitions for generator.     ***
39          *** You have to run 'make' in the nanopb/generator/proto folder. ***
40          ********************************************************************
41     ''' + '\n')
42     raise
43
44 # ---------------------------------------------------------------------------
45 #                     Generation of single fields
46 # ---------------------------------------------------------------------------
47
48 import time
49 import os.path
50
51 # Values are tuple (c type, pb type, encoded size, int_size_allowed)
52 FieldD = descriptor.FieldDescriptorProto
53 datatypes = {
54     FieldD.TYPE_BOOL:       ('bool',     'BOOL',        1,  False),
55     FieldD.TYPE_DOUBLE:     ('double',   'DOUBLE',      8,  False),
56     FieldD.TYPE_FIXED32:    ('uint32_t', 'FIXED32',     4,  False),
57     FieldD.TYPE_FIXED64:    ('uint64_t', 'FIXED64',     8,  False),
58     FieldD.TYPE_FLOAT:      ('float',    'FLOAT',       4,  False),
59     FieldD.TYPE_INT32:      ('int32_t',  'INT32',      10,  True),
60     FieldD.TYPE_INT64:      ('int64_t',  'INT64',      10,  True),
61     FieldD.TYPE_SFIXED32:   ('int32_t',  'SFIXED32',    4,  False),
62     FieldD.TYPE_SFIXED64:   ('int64_t',  'SFIXED64',    8,  False),
63     FieldD.TYPE_SINT32:     ('int32_t',  'SINT32',      5,  True),
64     FieldD.TYPE_SINT64:     ('int64_t',  'SINT64',     10,  True),
65     FieldD.TYPE_UINT32:     ('uint32_t', 'UINT32',      5,  True),
66     FieldD.TYPE_UINT64:     ('uint64_t', 'UINT64',     10,  True)
67 }
68
69 # Integer size overrides (from .proto settings)
70 intsizes = {
71     nanopb_pb2.IS_8:     'int8_t',
72     nanopb_pb2.IS_16:    'int16_t',
73     nanopb_pb2.IS_32:    'int32_t',
74     nanopb_pb2.IS_64:    'int64_t',
75 }
76
77 # String types (for python 2 / python 3 compatibility)
78 try:
79     strtypes = (unicode, str)
80 except NameError:
81     strtypes = (str, )
82
83 class Names:
84     '''Keeps a set of nested names and formats them to C identifier.'''
85     def __init__(self, parts = ()):
86         if isinstance(parts, Names):
87             parts = parts.parts
88         self.parts = tuple(parts)
89
90     def __str__(self):
91         return '_'.join(self.parts)
92
93     def __add__(self, other):
94         if isinstance(other, strtypes):
95             return Names(self.parts + (other,))
96         elif isinstance(other, tuple):
97             return Names(self.parts + other)
98         else:
99             raise ValueError("Name parts should be of type str")
100
101     def __eq__(self, other):
102         return isinstance(other, Names) and self.parts == other.parts
103
104 def names_from_type_name(type_name):
105     '''Parse Names() from FieldDescriptorProto type_name'''
106     if type_name[0] != '.':
107         raise NotImplementedError("Lookup of non-absolute type names is not supported")
108     return Names(type_name[1:].split('.'))
109
110 def varint_max_size(max_value):
111     '''Returns the maximum number of bytes a varint can take when encoded.'''
112     if max_value < 0:
113         max_value = 2**64 - max_value
114     for i in range(1, 11):
115         if (max_value >> (i * 7)) == 0:
116             return i
117     raise ValueError("Value too large for varint: " + str(max_value))
118
119 assert varint_max_size(-1) == 10
120 assert varint_max_size(0) == 1
121 assert varint_max_size(127) == 1
122 assert varint_max_size(128) == 2
123
124 class EncodedSize:
125     '''Class used to represent the encoded size of a field or a message.
126     Consists of a combination of symbolic sizes and integer sizes.'''
127     def __init__(self, value = 0, symbols = []):
128         if isinstance(value, EncodedSize):
129             self.value = value.value
130             self.symbols = value.symbols
131         elif isinstance(value, strtypes + (Names,)):
132             self.symbols = [str(value)]
133             self.value = 0
134         else:
135             self.value = value
136             self.symbols = symbols
137
138     def __add__(self, other):
139         if isinstance(other, int):
140             return EncodedSize(self.value + other, self.symbols)
141         elif isinstance(other, strtypes + (Names,)):
142             return EncodedSize(self.value, self.symbols + [str(other)])
143         elif isinstance(other, EncodedSize):
144             return EncodedSize(self.value + other.value, self.symbols + other.symbols)
145         else:
146             raise ValueError("Cannot add size: " + repr(other))
147
148     def __mul__(self, other):
149         if isinstance(other, int):
150             return EncodedSize(self.value * other, [str(other) + '*' + s for s in self.symbols])
151         else:
152             raise ValueError("Cannot multiply size: " + repr(other))
153
154     def __str__(self):
155         if not self.symbols:
156             return str(self.value)
157         else:
158             return '(' + str(self.value) + ' + ' + ' + '.join(self.symbols) + ')'
159
160     def upperlimit(self):
161         if not self.symbols:
162             return self.value
163         else:
164             return 2**32 - 1
165
166 class Enum:
167     def __init__(self, names, desc, enum_options):
168         '''desc is EnumDescriptorProto'''
169
170         self.options = enum_options
171         self.names = names + desc.name
172
173         if enum_options.long_names:
174             self.values = [(self.names + x.name, x.number) for x in desc.value]
175         else:
176             self.values = [(names + x.name, x.number) for x in desc.value]
177
178         self.value_longnames = [self.names + x.name for x in desc.value]
179         self.packed = enum_options.packed_enum
180
181     def has_negative(self):
182         for n, v in self.values:
183             if v < 0:
184                 return True
185         return False
186
187     def encoded_size(self):
188         return max([varint_max_size(v) for n,v in self.values])
189
190     def __str__(self):
191         result = 'typedef enum _%s {\n' % self.names
192         result += ',\n'.join(["    %s = %d" % x for x in self.values])
193         result += '\n}'
194
195         if self.packed:
196             result += ' pb_packed'
197
198         result += ' %s;' % self.names
199
200         if not self.options.long_names:
201             # Define the long names always so that enum value references
202             # from other files work properly.
203             for i, x in enumerate(self.values):
204                 result += '\n#define %s %s' % (self.value_longnames[i], x[0])
205
206         return result
207
208 class FieldMaxSize:
209     def __init__(self, worst = 0, checks = [], field_name = 'undefined'):
210         if isinstance(worst, list):
211             self.worst = max(i for i in worst if i is not None)
212         else:
213             self.worst = worst
214
215         self.worst_field = field_name
216         self.checks = checks
217
218     def extend(self, extend, field_name = None):
219         self.worst = max(self.worst, extend.worst)
220
221         if self.worst == extend.worst:
222             self.worst_field = extend.worst_field
223
224         self.checks.extend(extend.checks)
225
226 class Field:
227     def __init__(self, struct_name, desc, field_options):
228         '''desc is FieldDescriptorProto'''
229         self.tag = desc.number
230         self.struct_name = struct_name
231         self.union_name = None
232         self.name = desc.name
233         self.default = None
234         self.max_size = None
235         self.max_count = None
236         self.array_decl = ""
237         self.enc_size = None
238         self.ctype = None
239
240         # Parse field options
241         if field_options.HasField("max_size"):
242             self.max_size = field_options.max_size
243
244         if field_options.HasField("max_count"):
245             self.max_count = field_options.max_count
246
247         if desc.HasField('default_value'):
248             self.default = desc.default_value
249
250         # Check field rules, i.e. required/optional/repeated.
251         can_be_static = True
252         if desc.label == FieldD.LABEL_REQUIRED:
253             self.rules = 'REQUIRED'
254         elif desc.label == FieldD.LABEL_OPTIONAL:
255             self.rules = 'OPTIONAL'
256         elif desc.label == FieldD.LABEL_REPEATED:
257             self.rules = 'REPEATED'
258             if self.max_count is None:
259                 can_be_static = False
260             else:
261                 self.array_decl = '[%d]' % self.max_count
262         else:
263             raise NotImplementedError(desc.label)
264
265         # Check if the field can be implemented with static allocation
266         # i.e. whether the data size is known.
267         if desc.type == FieldD.TYPE_STRING and self.max_size is None:
268             can_be_static = False
269
270         if desc.type == FieldD.TYPE_BYTES and self.max_size is None:
271             can_be_static = False
272
273         # Decide how the field data will be allocated
274         if field_options.type == nanopb_pb2.FT_DEFAULT:
275             if can_be_static:
276                 field_options.type = nanopb_pb2.FT_STATIC
277             else:
278                 field_options.type = nanopb_pb2.FT_CALLBACK
279
280         if field_options.type == nanopb_pb2.FT_STATIC and not can_be_static:
281             raise Exception("Field %s is defined as static, but max_size or "
282                             "max_count is not given." % self.name)
283
284         if field_options.type == nanopb_pb2.FT_STATIC:
285             self.allocation = 'STATIC'
286         elif field_options.type == nanopb_pb2.FT_POINTER:
287             self.allocation = 'POINTER'
288         elif field_options.type == nanopb_pb2.FT_CALLBACK:
289             self.allocation = 'CALLBACK'
290         else:
291             raise NotImplementedError(field_options.type)
292
293         # Decide the C data type to use in the struct.
294         if desc.type in datatypes:
295             self.ctype, self.pbtype, self.enc_size, isa = datatypes[desc.type]
296
297             # Override the field size if user wants to use smaller integers
298             if isa and field_options.int_size != nanopb_pb2.IS_DEFAULT:
299                 self.ctype = intsizes[field_options.int_size]
300                 if desc.type == FieldD.TYPE_UINT32 or desc.type == FieldD.TYPE_UINT64:
301                     self.ctype = 'u' + self.ctype;
302         elif desc.type == FieldD.TYPE_ENUM:
303             self.pbtype = 'ENUM'
304             self.ctype = names_from_type_name(desc.type_name)
305             if self.default is not None:
306                 self.default = self.ctype + self.default
307             self.enc_size = None # Needs to be filled in when enum values are known
308         elif desc.type == FieldD.TYPE_STRING:
309             self.pbtype = 'STRING'
310             self.ctype = 'char'
311             if self.allocation == 'STATIC':
312                 self.ctype = 'char'
313                 self.array_decl += '[%d]' % self.max_size
314                 self.enc_size = varint_max_size(self.max_size) + self.max_size
315         elif desc.type == FieldD.TYPE_BYTES:
316             self.pbtype = 'BYTES'
317             if self.allocation == 'STATIC':
318                 self.ctype = self.struct_name + self.name + 't'
319                 self.enc_size = varint_max_size(self.max_size) + self.max_size
320             elif self.allocation == 'POINTER':
321                 self.ctype = 'pb_bytes_array_t'
322         elif desc.type == FieldD.TYPE_MESSAGE:
323             self.pbtype = 'MESSAGE'
324             self.ctype = self.submsgname = names_from_type_name(desc.type_name)
325             self.enc_size = None # Needs to be filled in after the message type is available
326         else:
327             raise NotImplementedError(desc.type)
328
329     def __lt__(self, other):
330         return self.tag < other.tag
331
332     def __str__(self):
333         result = ''
334         if self.allocation == 'POINTER':
335             if self.rules == 'REPEATED':
336                 result += '    pb_size_t ' + self.name + '_count;\n'
337
338             if self.pbtype == 'MESSAGE':
339                 # Use struct definition, so recursive submessages are possible
340                 result += '    struct _%s *%s;' % (self.ctype, self.name)
341             elif self.rules == 'REPEATED' and self.pbtype in ['STRING', 'BYTES']:
342                 # String/bytes arrays need to be defined as pointers to pointers
343                 result += '    %s **%s;' % (self.ctype, self.name)
344             else:
345                 result += '    %s *%s;' % (self.ctype, self.name)
346         elif self.allocation == 'CALLBACK':
347             result += '    pb_callback_t %s;' % self.name
348         else:
349             if self.rules == 'OPTIONAL' and self.allocation == 'STATIC':
350                 result += '    bool has_' + self.name + ';\n'
351             elif self.rules == 'REPEATED' and self.allocation == 'STATIC':
352                 result += '    pb_size_t ' + self.name + '_count;\n'
353             result += '    %s %s%s;' % (self.ctype, self.name, self.array_decl)
354         return result
355
356     def types(self):
357         '''Return definitions for any special types this field might need.'''
358         if self.pbtype == 'BYTES' and self.allocation == 'STATIC':
359             result = 'typedef PB_BYTES_ARRAY_T(%d) %s;\n' % (self.max_size, self.ctype)
360         else:
361             result = ''
362         return result
363
364     def get_dependencies(self):
365         '''Get list of type names used by this field.'''
366         if self.allocation == 'STATIC':
367             return [str(self.ctype)]
368         else:
369             return []
370
371     def get_initializer(self, null_init, inner_init_only = False):
372         '''Return literal expression for this field's default value.
373         null_init: If True, initialize to a 0 value instead of default from .proto
374         inner_init_only: If True, exclude initialization for any count/has fields
375         '''
376
377         inner_init = None
378         if self.pbtype == 'MESSAGE':
379             if null_init:
380                 inner_init = '%s_init_zero' % self.ctype
381             else:
382                 inner_init = '%s_init_default' % self.ctype
383         elif self.default is None or null_init:
384             if self.pbtype == 'STRING':
385                 inner_init = '""'
386             elif self.pbtype == 'BYTES':
387                 inner_init = '{0, {0}}'
388             elif self.pbtype in ('ENUM', 'UENUM'):
389                 inner_init = '(%s)0' % self.ctype
390             else:
391                 inner_init = '0'
392         else:
393             if self.pbtype == 'STRING':
394                 inner_init = self.default.replace('"', '\\"')
395                 inner_init = '"' + inner_init + '"'
396             elif self.pbtype == 'BYTES':
397                 data = ['0x%02x' % ord(c) for c in self.default]
398                 if len(data) == 0:
399                     inner_init = '{0, {0}}'
400                 else:
401                     inner_init = '{%d, {%s}}' % (len(data), ','.join(data))
402             elif self.pbtype in ['FIXED32', 'UINT32']:
403                 inner_init = str(self.default) + 'u'
404             elif self.pbtype in ['FIXED64', 'UINT64']:
405                 inner_init = str(self.default) + 'ull'
406             elif self.pbtype in ['SFIXED64', 'INT64']:
407                 inner_init = str(self.default) + 'll'
408             else:
409                 inner_init = str(self.default)
410
411         if inner_init_only:
412             return inner_init
413
414         outer_init = None
415         if self.allocation == 'STATIC':
416             if self.rules == 'REPEATED':
417                 outer_init = '0, {'
418                 outer_init += ', '.join([inner_init] * self.max_count)
419                 outer_init += '}'
420             elif self.rules == 'OPTIONAL':
421                 outer_init = 'false, ' + inner_init
422             else:
423                 outer_init = inner_init
424         elif self.allocation == 'POINTER':
425             if self.rules == 'REPEATED':
426                 outer_init = '0, NULL'
427             else:
428                 outer_init = 'NULL'
429         elif self.allocation == 'CALLBACK':
430             if self.pbtype == 'EXTENSION':
431                 outer_init = 'NULL'
432             else:
433                 outer_init = '{{NULL}, NULL}'
434
435         return outer_init
436
437     def default_decl(self, declaration_only = False):
438         '''Return definition for this field's default value.'''
439         if self.default is None:
440             return None
441
442         ctype = self.ctype
443         default = self.get_initializer(False, True)
444         array_decl = ''
445
446         if self.pbtype == 'STRING':
447             if self.allocation != 'STATIC':
448                 return None # Not implemented
449             array_decl = '[%d]' % self.max_size
450         elif self.pbtype == 'BYTES':
451             if self.allocation != 'STATIC':
452                 return None # Not implemented
453
454         if declaration_only:
455             return 'extern const %s %s_default%s;' % (ctype, self.struct_name + self.name, array_decl)
456         else:
457             return 'const %s %s_default%s = %s;' % (ctype, self.struct_name + self.name, array_decl, default)
458
459     def tags(self):
460         '''Return the #define for the tag number of this field.'''
461         identifier = '%s_%s_tag' % (self.struct_name, self.name)
462         return '#define %-40s %d\n' % (identifier, self.tag)
463
464     def pb_field_t(self, prev_field_name):
465         '''Return the pb_field_t initializer to use in the constant array.
466         prev_field_name is the name of the previous field or None.
467         '''
468
469         if self.rules == 'ONEOF':
470             if self.anonymous:
471                 result = '    PB_ANONYMOUS_ONEOF_FIELD(%s, ' % self.union_name
472             else:
473                 result = '    PB_ONEOF_FIELD(%s, ' % self.union_name
474         else:
475             result = '    PB_FIELD('
476
477         result += '%3d, ' % self.tag
478         result += '%-8s, ' % self.pbtype
479         result += '%s, ' % self.rules
480         result += '%-8s, ' % self.allocation
481         result += '%s, ' % ("FIRST" if not prev_field_name else "OTHER")
482         result += '%s, ' % self.struct_name
483         result += '%s, ' % self.name
484         result += '%s, ' % (prev_field_name or self.name)
485
486         if self.pbtype == 'MESSAGE':
487             result += '&%s_fields)' % self.submsgname
488         elif self.default is None:
489             result += '0)'
490         elif self.pbtype in ['BYTES', 'STRING'] and self.allocation != 'STATIC':
491             result += '0)' # Arbitrary size default values not implemented
492         elif self.rules == 'OPTEXT':
493             result += '0)' # Default value for extensions is not implemented
494         else:
495             result += '&%s_default)' % (self.struct_name + self.name)
496
497         return result
498
499     def get_last_field_name(self):
500         return self.name
501
502     def largest_field_value(self):
503         '''Determine if this field needs 16bit or 32bit pb_field_t structure to compile properly.
504         Returns numeric value or a C-expression for assert.'''
505         check = []
506         if self.pbtype == 'MESSAGE':
507             if self.rules == 'REPEATED' and self.allocation == 'STATIC':
508                 check.append('pb_membersize(%s, %s[0])' % (self.struct_name, self.name))
509             elif self.rules == 'ONEOF':
510                 if self.anonymous:
511                     check.append('pb_membersize(%s, %s)' % (self.struct_name, self.name))
512                 else:
513                     check.append('pb_membersize(%s, %s.%s)' % (self.struct_name, self.union_name, self.name))
514             else:
515                 check.append('pb_membersize(%s, %s)' % (self.struct_name, self.name))
516
517         return FieldMaxSize([self.tag, self.max_size, self.max_count],
518                             check,
519                             ('%s.%s' % (self.struct_name, self.name)))
520
521     def encoded_size(self, dependencies):
522         '''Return the maximum size that this field can take when encoded,
523         including the field tag. If the size cannot be determined, returns
524         None.'''
525
526         if self.allocation != 'STATIC':
527             return None
528
529         if self.pbtype == 'MESSAGE':
530             encsize = None
531             if str(self.submsgname) in dependencies:
532                 submsg = dependencies[str(self.submsgname)]
533                 encsize = submsg.encoded_size(dependencies)
534                 if encsize is not None:
535                     # Include submessage length prefix
536                     encsize += varint_max_size(encsize.upperlimit())
537
538             if encsize is None:
539                 # Submessage or its size cannot be found.
540                 # This can occur if submessage is defined in different
541                 # file, and it or its .options could not be found.
542                 # Instead of direct numeric value, reference the size that
543                 # has been #defined in the other file.
544                 encsize = EncodedSize(self.submsgname + 'size')
545
546                 # We will have to make a conservative assumption on the length
547                 # prefix size, though.
548                 encsize += 5
549
550         elif self.pbtype in ['ENUM', 'UENUM']:
551             if str(self.ctype) in dependencies:
552                 enumtype = dependencies[str(self.ctype)]
553                 encsize = enumtype.encoded_size()
554             else:
555                 # Conservative assumption
556                 encsize = 10
557
558         elif self.enc_size is None:
559             raise RuntimeError("Could not determine encoded size for %s.%s"
560                                % (self.struct_name, self.name))
561         else:
562             encsize = EncodedSize(self.enc_size)
563
564         encsize += varint_max_size(self.tag << 3) # Tag + wire type
565
566         if self.rules == 'REPEATED':
567             # Decoders must be always able to handle unpacked arrays.
568             # Therefore we have to reserve space for it, even though
569             # we emit packed arrays ourselves.
570             encsize *= self.max_count
571
572         return encsize
573
574
575 class ExtensionRange(Field):
576     def __init__(self, struct_name, range_start, field_options):
577         '''Implements a special pb_extension_t* field in an extensible message
578         structure. The range_start signifies the index at which the extensions
579         start. Not necessarily all tags above this are extensions, it is merely
580         a speed optimization.
581         '''
582         self.tag = range_start
583         self.struct_name = struct_name
584         self.name = 'extensions'
585         self.pbtype = 'EXTENSION'
586         self.rules = 'OPTIONAL'
587         self.allocation = 'CALLBACK'
588         self.ctype = 'pb_extension_t'
589         self.array_decl = ''
590         self.default = None
591         self.max_size = 0
592         self.max_count = 0
593
594     def __str__(self):
595         return '    pb_extension_t *extensions;'
596
597     def types(self):
598         return ''
599
600     def tags(self):
601         return ''
602
603     def encoded_size(self, dependencies):
604         # We exclude extensions from the count, because they cannot be known
605         # until runtime. Other option would be to return None here, but this
606         # way the value remains useful if extensions are not used.
607         return EncodedSize(0)
608
609 class ExtensionField(Field):
610     def __init__(self, struct_name, desc, field_options):
611         self.fullname = struct_name + desc.name
612         self.extendee_name = names_from_type_name(desc.extendee)
613         Field.__init__(self, self.fullname + 'struct', desc, field_options)
614
615         if self.rules != 'OPTIONAL':
616             self.skip = True
617         else:
618             self.skip = False
619             self.rules = 'OPTEXT'
620
621     def tags(self):
622         '''Return the #define for the tag number of this field.'''
623         identifier = '%s_tag' % self.fullname
624         return '#define %-40s %d\n' % (identifier, self.tag)
625
626     def extension_decl(self):
627         '''Declaration of the extension type in the .pb.h file'''
628         if self.skip:
629             msg = '/* Extension field %s was skipped because only "optional"\n' % self.fullname
630             msg +='   type of extension fields is currently supported. */\n'
631             return msg
632
633         return ('extern const pb_extension_type_t %s; /* field type: %s */\n' %
634             (self.fullname, str(self).strip()))
635
636     def extension_def(self):
637         '''Definition of the extension type in the .pb.c file'''
638
639         if self.skip:
640             return ''
641
642         result  = 'typedef struct {\n'
643         result += str(self)
644         result += '\n} %s;\n\n' % self.struct_name
645         result += ('static const pb_field_t %s_field = \n  %s;\n\n' %
646                     (self.fullname, self.pb_field_t(None)))
647         result += 'const pb_extension_type_t %s = {\n' % self.fullname
648         result += '    NULL,\n'
649         result += '    NULL,\n'
650         result += '    &%s_field\n' % self.fullname
651         result += '};\n'
652         return result
653
654
655 # ---------------------------------------------------------------------------
656 #                   Generation of oneofs (unions)
657 # ---------------------------------------------------------------------------
658
659 class OneOf(Field):
660     def __init__(self, struct_name, oneof_desc):
661         self.struct_name = struct_name
662         self.name = oneof_desc.name
663         self.ctype = 'union'
664         self.pbtype = 'oneof'
665         self.fields = []
666         self.allocation = 'ONEOF'
667         self.default = None
668         self.rules = 'ONEOF'
669         self.anonymous = False
670
671     def add_field(self, field):
672         if field.allocation == 'CALLBACK':
673             raise Exception("Callback fields inside of oneof are not supported"
674                             + " (field %s)" % field.name)
675
676         field.union_name = self.name
677         field.rules = 'ONEOF'
678         field.anonymous = self.anonymous
679         self.fields.append(field)
680         self.fields.sort(key = lambda f: f.tag)
681
682         # Sort by the lowest tag number inside union
683         self.tag = min([f.tag for f in self.fields])
684
685     def __str__(self):
686         result = ''
687         if self.fields:
688             result += '    pb_size_t which_' + self.name + ";\n"
689             result += '    union {\n'
690             for f in self.fields:
691                 result += '    ' + str(f).replace('\n', '\n    ') + '\n'
692             if self.anonymous:
693                 result += '    };'
694             else:
695                 result += '    } ' + self.name + ';'
696         return result
697
698     def types(self):
699         return ''.join([f.types() for f in self.fields])
700
701     def get_dependencies(self):
702         deps = []
703         for f in self.fields:
704             deps += f.get_dependencies()
705         return deps
706
707     def get_initializer(self, null_init):
708         return '0, {' + self.fields[0].get_initializer(null_init) + '}'
709
710     def default_decl(self, declaration_only = False):
711         return None
712
713     def tags(self):
714         return ''.join([f.tags() for f in self.fields])
715
716     def pb_field_t(self, prev_field_name):
717         result = ',\n'.join([f.pb_field_t(prev_field_name) for f in self.fields])
718         return result
719
720     def get_last_field_name(self):
721         if self.anonymous:
722             return self.fields[-1].name
723         else:
724             return self.name + '.' + self.fields[-1].name
725
726     def largest_field_value(self):
727         largest = FieldMaxSize()
728         for f in self.fields:
729             largest.extend(f.largest_field_value())
730         return largest
731
732     def encoded_size(self, dependencies):
733         '''Returns the size of the largest oneof field.'''
734         largest = EncodedSize(0)
735         for f in self.fields:
736             size = EncodedSize(f.encoded_size(dependencies))
737             if size.value is None:
738                 return None
739             elif size.symbols:
740                 return None # Cannot resolve maximum of symbols
741             elif size.value > largest.value:
742                 largest = size
743
744         return largest
745
746 # ---------------------------------------------------------------------------
747 #                   Generation of messages (structures)
748 # ---------------------------------------------------------------------------
749
750
751 class Message:
752     def __init__(self, names, desc, message_options):
753         self.name = names
754         self.fields = []
755         self.oneofs = {}
756         no_unions = []
757
758         if message_options.msgid:
759             self.msgid = message_options.msgid
760
761         if hasattr(desc, 'oneof_decl'):
762             for i, f in enumerate(desc.oneof_decl):
763                 oneof_options = get_nanopb_suboptions(desc, message_options, self.name + f.name)
764                 if oneof_options.no_unions:
765                     no_unions.append(i) # No union, but add fields normally
766                 elif oneof_options.type == nanopb_pb2.FT_IGNORE:
767                     pass # No union and skip fields also
768                 else:
769                     oneof = OneOf(self.name, f)
770                     if oneof_options.anonymous_oneof:
771                         oneof.anonymous = True
772                     self.oneofs[i] = oneof
773                     self.fields.append(oneof)
774
775         for f in desc.field:
776             field_options = get_nanopb_suboptions(f, message_options, self.name + f.name)
777             if field_options.type == nanopb_pb2.FT_IGNORE:
778                 continue
779
780             field = Field(self.name, f, field_options)
781             if (hasattr(f, 'oneof_index') and
782                 f.HasField('oneof_index') and
783                 f.oneof_index not in no_unions):
784                 if f.oneof_index in self.oneofs:
785                     self.oneofs[f.oneof_index].add_field(field)
786             else:
787                 self.fields.append(field)
788
789         if len(desc.extension_range) > 0:
790             field_options = get_nanopb_suboptions(desc, message_options, self.name + 'extensions')
791             range_start = min([r.start for r in desc.extension_range])
792             if field_options.type != nanopb_pb2.FT_IGNORE:
793                 self.fields.append(ExtensionRange(self.name, range_start, field_options))
794
795         self.packed = message_options.packed_struct
796         self.ordered_fields = self.fields[:]
797         self.ordered_fields.sort()
798
799     def get_dependencies(self):
800         '''Get list of type names that this structure refers to.'''
801         deps = []
802         for f in self.fields:
803             deps += f.get_dependencies()
804         return deps
805
806     def __str__(self):
807         result = 'typedef struct _%s {\n' % self.name
808
809         if not self.ordered_fields:
810             # Empty structs are not allowed in C standard.
811             # Therefore add a dummy field if an empty message occurs.
812             result += '    char dummy_field;'
813
814         result += '\n'.join([str(f) for f in self.ordered_fields])
815         result += '\n/* @@protoc_insertion_point(struct:%s) */' % self.name
816         result += '\n}'
817
818         if self.packed:
819             result += ' pb_packed'
820
821         result += ' %s;' % self.name
822
823         if self.packed:
824             result = 'PB_PACKED_STRUCT_START\n' + result
825             result += '\nPB_PACKED_STRUCT_END'
826
827         return result
828
829     def types(self):
830         return ''.join([f.types() for f in self.fields])
831
832     def get_initializer(self, null_init):
833         if not self.ordered_fields:
834             return '{0}'
835
836         parts = []
837         for field in self.ordered_fields:
838             parts.append(field.get_initializer(null_init))
839         return '{' + ', '.join(parts) + '}'
840
841     def default_decl(self, declaration_only = False):
842         result = ""
843         for field in self.fields:
844             default = field.default_decl(declaration_only)
845             if default is not None:
846                 result += default + '\n'
847         return result
848
849     def count_required_fields(self):
850         '''Returns number of required fields inside this message'''
851         count = 0
852         for f in self.fields:
853             if not isinstance(f, OneOf):
854                 if f.rules == 'REQUIRED':
855                     count += 1
856         return count
857
858     def count_all_fields(self):
859         count = 0
860         for f in self.fields:
861             if isinstance(f, OneOf):
862                 count += len(f.fields)
863             else:
864                 count += 1
865         return count
866
867     def fields_declaration(self):
868         result = 'extern const pb_field_t %s_fields[%d];' % (self.name, self.count_all_fields() + 1)
869         return result
870
871     def fields_definition(self):
872         result = 'const pb_field_t %s_fields[%d] = {\n' % (self.name, self.count_all_fields() + 1)
873
874         prev = None
875         for field in self.ordered_fields:
876             result += field.pb_field_t(prev)
877             result += ',\n'
878             prev = field.get_last_field_name()
879
880         result += '    PB_LAST_FIELD\n};'
881         return result
882
883     def encoded_size(self, dependencies):
884         '''Return the maximum size that this message can take when encoded.
885         If the size cannot be determined, returns None.
886         '''
887         size = EncodedSize(0)
888         for field in self.fields:
889             fsize = field.encoded_size(dependencies)
890             if fsize is None:
891                 return None
892             size += fsize
893
894         return size
895
896
897 # ---------------------------------------------------------------------------
898 #                    Processing of entire .proto files
899 # ---------------------------------------------------------------------------
900
901 def iterate_messages(desc, names = Names()):
902     '''Recursively find all messages. For each, yield name, DescriptorProto.'''
903     if hasattr(desc, 'message_type'):
904         submsgs = desc.message_type
905     else:
906         submsgs = desc.nested_type
907
908     for submsg in submsgs:
909         sub_names = names + submsg.name
910         yield sub_names, submsg
911
912         for x in iterate_messages(submsg, sub_names):
913             yield x
914
915 def iterate_extensions(desc, names = Names()):
916     '''Recursively find all extensions.
917     For each, yield name, FieldDescriptorProto.
918     '''
919     for extension in desc.extension:
920         yield names, extension
921
922     for subname, subdesc in iterate_messages(desc, names):
923         for extension in subdesc.extension:
924             yield subname, extension
925
926 def toposort2(data):
927     '''Topological sort.
928     From http://code.activestate.com/recipes/577413-topological-sort/
929     This function is under the MIT license.
930     '''
931     for k, v in list(data.items()):
932         v.discard(k) # Ignore self dependencies
933     extra_items_in_deps = reduce(set.union, list(data.values()), set()) - set(data.keys())
934     data.update(dict([(item, set()) for item in extra_items_in_deps]))
935     while True:
936         ordered = set(item for item,dep in list(data.items()) if not dep)
937         if not ordered:
938             break
939         for item in sorted(ordered):
940             yield item
941         data = dict([(item, (dep - ordered)) for item,dep in list(data.items())
942                 if item not in ordered])
943     assert not data, "A cyclic dependency exists amongst %r" % data
944
945 def sort_dependencies(messages):
946     '''Sort a list of Messages based on dependencies.'''
947     dependencies = {}
948     message_by_name = {}
949     for message in messages:
950         dependencies[str(message.name)] = set(message.get_dependencies())
951         message_by_name[str(message.name)] = message
952
953     for msgname in toposort2(dependencies):
954         if msgname in message_by_name:
955             yield message_by_name[msgname]
956
957 def make_identifier(headername):
958     '''Make #ifndef identifier that contains uppercase A-Z and digits 0-9'''
959     result = ""
960     for c in headername.upper():
961         if c.isalnum():
962             result += c
963         else:
964             result += '_'
965     return result
966
967 class ProtoFile:
968     def __init__(self, fdesc, file_options):
969         '''Takes a FileDescriptorProto and parses it.'''
970         self.fdesc = fdesc
971         self.file_options = file_options
972         self.dependencies = {}
973         self.parse()
974
975         # Some of types used in this file probably come from the file itself.
976         # Thus it has implicit dependency on itself.
977         self.add_dependency(self)
978
979     def parse(self):
980         self.enums = []
981         self.messages = []
982         self.extensions = []
983
984         if self.fdesc.package:
985             base_name = Names(self.fdesc.package.split('.'))
986         else:
987             base_name = Names()
988
989         for enum in self.fdesc.enum_type:
990             enum_options = get_nanopb_suboptions(enum, self.file_options, base_name + enum.name)
991             self.enums.append(Enum(base_name, enum, enum_options))
992
993         for names, message in iterate_messages(self.fdesc, base_name):
994             message_options = get_nanopb_suboptions(message, self.file_options, names)
995
996             if message_options.skip_message:
997                 continue
998
999             self.messages.append(Message(names, message, message_options))
1000             for enum in message.enum_type:
1001                 enum_options = get_nanopb_suboptions(enum, message_options, names + enum.name)
1002                 self.enums.append(Enum(names, enum, enum_options))
1003
1004         for names, extension in iterate_extensions(self.fdesc, base_name):
1005             field_options = get_nanopb_suboptions(extension, self.file_options, names + extension.name)
1006             if field_options.type != nanopb_pb2.FT_IGNORE:
1007                 self.extensions.append(ExtensionField(names, extension, field_options))
1008
1009     def add_dependency(self, other):
1010         for enum in other.enums:
1011             self.dependencies[str(enum.names)] = enum
1012
1013         for msg in other.messages:
1014             self.dependencies[str(msg.name)] = msg
1015
1016         # Fix field default values where enum short names are used.
1017         for enum in other.enums:
1018             if not enum.options.long_names:
1019                 for message in self.messages:
1020                     for field in message.fields:
1021                         if field.default in enum.value_longnames:
1022                             idx = enum.value_longnames.index(field.default)
1023                             field.default = enum.values[idx][0]
1024
1025         # Fix field data types where enums have negative values.
1026         for enum in other.enums:
1027             if not enum.has_negative():
1028                 for message in self.messages:
1029                     for field in message.fields:
1030                         if field.pbtype == 'ENUM' and field.ctype == enum.names:
1031                             field.pbtype = 'UENUM'
1032
1033     def generate_header(self, includes, headername, options):
1034         '''Generate content for a header file.
1035         Generates strings, which should be concatenated and stored to file.
1036         '''
1037
1038         yield '/* Automatically generated nanopb header */\n'
1039         if options.notimestamp:
1040             yield '/* Generated by %s */\n\n' % (nanopb_version)
1041         else:
1042             yield '/* Generated by %s at %s. */\n\n' % (nanopb_version, time.asctime())
1043
1044         symbol = make_identifier(headername)
1045         yield '#ifndef PB_%s_INCLUDED\n' % symbol
1046         yield '#define PB_%s_INCLUDED\n' % symbol
1047         try:
1048             yield options.libformat % ('pb.h')
1049         except TypeError:
1050             # no %s specified - use whatever was passed in as options.libformat
1051             yield options.libformat
1052         yield '\n'
1053
1054         for incfile in includes:
1055             noext = os.path.splitext(incfile)[0]
1056             yield options.genformat % (noext + options.extension + '.h')
1057             yield '\n'
1058             
1059         yield '/* @@protoc_insertion_point(includes) */\n'
1060
1061         yield '#if PB_PROTO_HEADER_VERSION != 30\n'
1062         yield '#error Regenerate this file with the current version of nanopb generator.\n'
1063         yield '#endif\n'
1064         yield '\n'
1065
1066         yield '#ifdef __cplusplus\n'
1067         yield 'extern "C" {\n'
1068         yield '#endif\n\n'
1069
1070         if self.enums:
1071             yield '/* Enum definitions */\n'
1072             for enum in self.enums:
1073                 yield str(enum) + '\n\n'
1074
1075         if self.messages:
1076             yield '/* Struct definitions */\n'
1077             for msg in sort_dependencies(self.messages):
1078                 yield msg.types()
1079                 yield str(msg) + '\n\n'
1080
1081         if self.extensions:
1082             yield '/* Extensions */\n'
1083             for extension in self.extensions:
1084                 yield extension.extension_decl()
1085             yield '\n'
1086
1087         if self.messages:
1088             yield '/* Default values for struct fields */\n'
1089             for msg in self.messages:
1090                 yield msg.default_decl(True)
1091             yield '\n'
1092
1093             yield '/* Initializer values for message structs */\n'
1094             for msg in self.messages:
1095                 identifier = '%s_init_default' % msg.name
1096                 yield '#define %-40s %s\n' % (identifier, msg.get_initializer(False))
1097             for msg in self.messages:
1098                 identifier = '%s_init_zero' % msg.name
1099                 yield '#define %-40s %s\n' % (identifier, msg.get_initializer(True))
1100             yield '\n'
1101
1102             yield '/* Field tags (for use in manual encoding/decoding) */\n'
1103             for msg in sort_dependencies(self.messages):
1104                 for field in msg.fields:
1105                     yield field.tags()
1106             for extension in self.extensions:
1107                 yield extension.tags()
1108             yield '\n'
1109
1110             yield '/* Struct field encoding specification for nanopb */\n'
1111             for msg in self.messages:
1112                 yield msg.fields_declaration() + '\n'
1113             yield '\n'
1114
1115             yield '/* Maximum encoded size of messages (where known) */\n'
1116             for msg in self.messages:
1117                 msize = msg.encoded_size(self.dependencies)
1118                 if msize is not None:
1119                     identifier = '%s_size' % msg.name
1120                     yield '#define %-40s %s\n' % (identifier, msize)
1121             yield '\n'
1122
1123             yield '/* Message IDs (where set with "msgid" option) */\n'
1124
1125             yield '#ifdef PB_MSGID\n'
1126             for msg in self.messages:
1127                 if hasattr(msg,'msgid'):
1128                     yield '#define PB_MSG_%d %s\n' % (msg.msgid, msg.name)
1129             yield '\n'
1130
1131             symbol = make_identifier(headername.split('.')[0])
1132             yield '#define %s_MESSAGES \\\n' % symbol
1133
1134             for msg in self.messages:
1135                 m = "-1"
1136                 msize = msg.encoded_size(self.dependencies)
1137                 if msize is not None:
1138                     m = msize
1139                 if hasattr(msg,'msgid'):
1140                     yield '\tPB_MSG(%d,%s,%s) \\\n' % (msg.msgid, m, msg.name)
1141             yield '\n'
1142
1143             for msg in self.messages:
1144                 if hasattr(msg,'msgid'):
1145                     yield '#define %s_msgid %d\n' % (msg.name, msg.msgid)
1146             yield '\n'
1147
1148             yield '#endif\n\n'
1149
1150         yield '#ifdef __cplusplus\n'
1151         yield '} /* extern "C" */\n'
1152         yield '#endif\n'
1153
1154         # End of header
1155         yield '/* @@protoc_insertion_point(eof) */\n'
1156         yield '\n#endif\n'
1157
1158     def generate_source(self, headername, options):
1159         '''Generate content for a source file.'''
1160
1161         yield '/* Automatically generated nanopb constant definitions */\n'
1162         if options.notimestamp:
1163             yield '/* Generated by %s */\n\n' % (nanopb_version)
1164         else:
1165             yield '/* Generated by %s at %s. */\n\n' % (nanopb_version, time.asctime())
1166         yield options.genformat % (headername)
1167         yield '\n'
1168         yield '/* @@protoc_insertion_point(includes) */\n'
1169
1170         yield '#if PB_PROTO_HEADER_VERSION != 30\n'
1171         yield '#error Regenerate this file with the current version of nanopb generator.\n'
1172         yield '#endif\n'
1173         yield '\n'
1174
1175         for msg in self.messages:
1176             yield msg.default_decl(False)
1177
1178         yield '\n\n'
1179
1180         for msg in self.messages:
1181             yield msg.fields_definition() + '\n\n'
1182
1183         for ext in self.extensions:
1184             yield ext.extension_def() + '\n'
1185
1186         # Add checks for numeric limits
1187         if self.messages:
1188             largest_msg = max(self.messages, key = lambda m: m.count_required_fields())
1189             largest_count = largest_msg.count_required_fields()
1190             if largest_count > 64:
1191                 yield '\n/* Check that missing required fields will be properly detected */\n'
1192                 yield '#if PB_MAX_REQUIRED_FIELDS < %d\n' % largest_count
1193                 yield '#error Properly detecting missing required fields in %s requires \\\n' % largest_msg.name
1194                 yield '       setting PB_MAX_REQUIRED_FIELDS to %d or more.\n' % largest_count
1195                 yield '#endif\n'
1196
1197         max_field = FieldMaxSize()
1198         checks_msgnames = []
1199         for msg in self.messages:
1200             checks_msgnames.append(msg.name)
1201             for field in msg.fields:
1202                 max_field.extend(field.largest_field_value())
1203
1204         worst = max_field.worst
1205         worst_field = max_field.worst_field
1206         checks = max_field.checks
1207
1208         if worst > 255 or checks:
1209             yield '\n/* Check that field information fits in pb_field_t */\n'
1210
1211             if worst > 65535 or checks:
1212                 yield '#if !defined(PB_FIELD_32BIT)\n'
1213                 if worst > 65535:
1214                     yield '#error Field descriptor for %s is too large. Define PB_FIELD_32BIT to fix this.\n' % worst_field
1215                 else:
1216                     assertion = ' && '.join(str(c) + ' < 65536' for c in checks)
1217                     msgs = '_'.join(str(n) for n in checks_msgnames)
1218                     yield '/* If you get an error here, it means that you need to define PB_FIELD_32BIT\n'
1219                     yield ' * compile-time option. You can do that in pb.h or on compiler command line.\n'
1220                     yield ' * \n'
1221                     yield ' * The reason you need to do this is that some of your messages contain tag\n'
1222                     yield ' * numbers or field sizes that are larger than what can fit in 8 or 16 bit\n'
1223                     yield ' * field descriptors.\n'
1224                     yield ' */\n'
1225                     yield 'PB_STATIC_ASSERT((%s), YOU_MUST_DEFINE_PB_FIELD_32BIT_FOR_MESSAGES_%s)\n'%(assertion,msgs)
1226                 yield '#endif\n\n'
1227
1228             if worst < 65536:
1229                 yield '#if !defined(PB_FIELD_16BIT) && !defined(PB_FIELD_32BIT)\n'
1230                 if worst > 255:
1231                     yield '#error Field descriptor for %s is too large. Define PB_FIELD_16BIT to fix this.\n' % worst_field
1232                 else:
1233                     assertion = ' && '.join(str(c) + ' < 256' for c in checks)
1234                     msgs = '_'.join(str(n) for n in checks_msgnames)
1235                     yield '/* If you get an error here, it means that you need to define PB_FIELD_16BIT\n'
1236                     yield ' * compile-time option. You can do that in pb.h or on compiler command line.\n'
1237                     yield ' * \n'
1238                     yield ' * The reason you need to do this is that some of your messages contain tag\n'
1239                     yield ' * numbers or field sizes that are larger than what can fit in the default\n'
1240                     yield ' * 8 bit descriptors.\n'
1241                     yield ' */\n'
1242                     yield 'PB_STATIC_ASSERT((%s), YOU_MUST_DEFINE_PB_FIELD_16BIT_FOR_MESSAGES_%s)\n'%(assertion,msgs)
1243                 yield '#endif\n\n'
1244
1245         # Add check for sizeof(double)
1246         has_double = False
1247         for msg in self.messages:
1248             for field in msg.fields:
1249                 if field.ctype == 'double':
1250                     has_double = True
1251
1252         if has_double:
1253             yield '\n'
1254             yield '/* On some platforms (such as AVR), double is really float.\n'
1255             yield ' * These are not directly supported by nanopb, but see example_avr_double.\n'
1256             yield ' * To get rid of this error, remove any double fields from your .proto.\n'
1257             yield ' */\n'
1258             yield 'PB_STATIC_ASSERT(sizeof(double) == 8, DOUBLE_MUST_BE_8_BYTES)\n'
1259
1260         yield '\n'
1261         yield '/* @@protoc_insertion_point(eof) */\n'
1262
1263 # ---------------------------------------------------------------------------
1264 #                    Options parsing for the .proto files
1265 # ---------------------------------------------------------------------------
1266
1267 from fnmatch import fnmatch
1268
1269 def read_options_file(infile):
1270     '''Parse a separate options file to list:
1271         [(namemask, options), ...]
1272     '''
1273     results = []
1274     data = infile.read()
1275     data = re.sub('/\*.*?\*/', '', data, flags = re.MULTILINE)
1276     data = re.sub('//.*?$', '', data, flags = re.MULTILINE)
1277     data = re.sub('#.*?$', '', data, flags = re.MULTILINE)
1278     for i, line in enumerate(data.split('\n')):
1279         line = line.strip()
1280         if not line:
1281             continue
1282
1283         parts = line.split(None, 1)
1284
1285         if len(parts) < 2:
1286             sys.stderr.write("%s:%d: " % (infile.name, i + 1) +
1287                              "Option lines should have space between field name and options. " +
1288                              "Skipping line: '%s'\n" % line)
1289             continue
1290
1291         opts = nanopb_pb2.NanoPBOptions()
1292
1293         try:
1294             text_format.Merge(parts[1], opts)
1295         except Exception as e:
1296             sys.stderr.write("%s:%d: " % (infile.name, i + 1) +
1297                              "Unparseable option line: '%s'. " % line +
1298                              "Error: %s\n" % str(e))
1299             continue
1300         results.append((parts[0], opts))
1301
1302     return results
1303
1304 class Globals:
1305     '''Ugly global variables, should find a good way to pass these.'''
1306     verbose_options = False
1307     separate_options = []
1308     matched_namemasks = set()
1309
1310 def get_nanopb_suboptions(subdesc, options, name):
1311     '''Get copy of options, and merge information from subdesc.'''
1312     new_options = nanopb_pb2.NanoPBOptions()
1313     new_options.CopyFrom(options)
1314
1315     # Handle options defined in a separate file
1316     dotname = '.'.join(name.parts)
1317     for namemask, options in Globals.separate_options:
1318         if fnmatch(dotname, namemask):
1319             Globals.matched_namemasks.add(namemask)
1320             new_options.MergeFrom(options)
1321
1322     # Handle options defined in .proto
1323     if isinstance(subdesc.options, descriptor.FieldOptions):
1324         ext_type = nanopb_pb2.nanopb
1325     elif isinstance(subdesc.options, descriptor.FileOptions):
1326         ext_type = nanopb_pb2.nanopb_fileopt
1327     elif isinstance(subdesc.options, descriptor.MessageOptions):
1328         ext_type = nanopb_pb2.nanopb_msgopt
1329     elif isinstance(subdesc.options, descriptor.EnumOptions):
1330         ext_type = nanopb_pb2.nanopb_enumopt
1331     else:
1332         raise Exception("Unknown options type")
1333
1334     if subdesc.options.HasExtension(ext_type):
1335         ext = subdesc.options.Extensions[ext_type]
1336         new_options.MergeFrom(ext)
1337
1338     if Globals.verbose_options:
1339         sys.stderr.write("Options for " + dotname + ": ")
1340         sys.stderr.write(text_format.MessageToString(new_options) + "\n")
1341
1342     return new_options
1343
1344
1345 # ---------------------------------------------------------------------------
1346 #                         Command line interface
1347 # ---------------------------------------------------------------------------
1348
1349 import sys
1350 import os.path
1351 from optparse import OptionParser
1352
1353 optparser = OptionParser(
1354     usage = "Usage: nanopb_generator.py [options] file.pb ...",
1355     epilog = "Compile file.pb from file.proto by: 'protoc -ofile.pb file.proto'. " +
1356              "Output will be written to file.pb.h and file.pb.c.")
1357 optparser.add_option("-x", dest="exclude", metavar="FILE", action="append", default=[],
1358     help="Exclude file from generated #include list.")
1359 optparser.add_option("-e", "--extension", dest="extension", metavar="EXTENSION", default=".pb",
1360     help="Set extension to use instead of '.pb' for generated files. [default: %default]")
1361 optparser.add_option("-f", "--options-file", dest="options_file", metavar="FILE", default="%s.options",
1362     help="Set name of a separate generator options file.")
1363 optparser.add_option("-I", "--options-path", dest="options_path", metavar="DIR",
1364     action="append", default = [],
1365     help="Search for .options files additionally in this path")
1366 optparser.add_option("-Q", "--generated-include-format", dest="genformat",
1367     metavar="FORMAT", default='#include "%s"\n',
1368     help="Set format string to use for including other .pb.h files. [default: %default]")
1369 optparser.add_option("-L", "--library-include-format", dest="libformat",
1370     metavar="FORMAT", default='#include <%s>\n',
1371     help="Set format string to use for including the nanopb pb.h header. [default: %default]")
1372 optparser.add_option("-T", "--no-timestamp", dest="notimestamp", action="store_true", default=False,
1373     help="Don't add timestamp to .pb.h and .pb.c preambles")
1374 optparser.add_option("-q", "--quiet", dest="quiet", action="store_true", default=False,
1375     help="Don't print anything except errors.")
1376 optparser.add_option("-v", "--verbose", dest="verbose", action="store_true", default=False,
1377     help="Print more information.")
1378 optparser.add_option("-s", dest="settings", metavar="OPTION:VALUE", action="append", default=[],
1379     help="Set generator option (max_size, max_count etc.).")
1380
1381 def parse_file(filename, fdesc, options):
1382     '''Parse a single file. Returns a ProtoFile instance.'''
1383     toplevel_options = nanopb_pb2.NanoPBOptions()
1384     for s in options.settings:
1385         text_format.Merge(s, toplevel_options)
1386
1387     if not fdesc:
1388         data = open(filename, 'rb').read()
1389         fdesc = descriptor.FileDescriptorSet.FromString(data).file[0]
1390
1391     # Check if there is a separate .options file
1392     had_abspath = False
1393     try:
1394         optfilename = options.options_file % os.path.splitext(filename)[0]
1395     except TypeError:
1396         # No %s specified, use the filename as-is
1397         optfilename = options.options_file
1398         had_abspath = True
1399
1400     paths = ['.'] + options.options_path
1401     for p in paths:
1402         if os.path.isfile(os.path.join(p, optfilename)):
1403             optfilename = os.path.join(p, optfilename)
1404             if options.verbose:
1405                 sys.stderr.write('Reading options from ' + optfilename + '\n')
1406             Globals.separate_options = read_options_file(open(optfilename, "rU"))
1407             break
1408     else:
1409         # If we are given a full filename and it does not exist, give an error.
1410         # However, don't give error when we automatically look for .options file
1411         # with the same name as .proto.
1412         if options.verbose or had_abspath:
1413             sys.stderr.write('Options file not found: ' + optfilename + '\n')
1414         Globals.separate_options = []
1415
1416     Globals.matched_namemasks = set()
1417
1418     # Parse the file
1419     file_options = get_nanopb_suboptions(fdesc, toplevel_options, Names([filename]))
1420     f = ProtoFile(fdesc, file_options)
1421     f.optfilename = optfilename
1422
1423     return f
1424
1425 def process_file(filename, fdesc, options, other_files = {}):
1426     '''Process a single file.
1427     filename: The full path to the .proto or .pb source file, as string.
1428     fdesc: The loaded FileDescriptorSet, or None to read from the input file.
1429     options: Command line options as they come from OptionsParser.
1430
1431     Returns a dict:
1432         {'headername': Name of header file,
1433          'headerdata': Data for the .h header file,
1434          'sourcename': Name of the source code file,
1435          'sourcedata': Data for the .c source code file
1436         }
1437     '''
1438     f = parse_file(filename, fdesc, options)
1439
1440     # Provide dependencies if available
1441     for dep in f.fdesc.dependency:
1442         if dep in other_files:
1443             f.add_dependency(other_files[dep])
1444
1445     # Decide the file names
1446     noext = os.path.splitext(filename)[0]
1447     headername = noext + options.extension + '.h'
1448     sourcename = noext + options.extension + '.c'
1449     headerbasename = os.path.basename(headername)
1450
1451     # List of .proto files that should not be included in the C header file
1452     # even if they are mentioned in the source .proto.
1453     excludes = ['nanopb.proto', 'google/protobuf/descriptor.proto'] + options.exclude
1454     includes = [d for d in f.fdesc.dependency if d not in excludes]
1455
1456     headerdata = ''.join(f.generate_header(includes, headerbasename, options))
1457     sourcedata = ''.join(f.generate_source(headerbasename, options))
1458
1459     # Check if there were any lines in .options that did not match a member
1460     unmatched = [n for n,o in Globals.separate_options if n not in Globals.matched_namemasks]
1461     if unmatched and not options.quiet:
1462         sys.stderr.write("Following patterns in " + f.optfilename + " did not match any fields: "
1463                          + ', '.join(unmatched) + "\n")
1464         if not Globals.verbose_options:
1465             sys.stderr.write("Use  protoc --nanopb-out=-v:.   to see a list of the field names.\n")
1466
1467     return {'headername': headername, 'headerdata': headerdata,
1468             'sourcename': sourcename, 'sourcedata': sourcedata}
1469
1470 def main_cli():
1471     '''Main function when invoked directly from the command line.'''
1472
1473     options, filenames = optparser.parse_args()
1474
1475     if not filenames:
1476         optparser.print_help()
1477         sys.exit(1)
1478
1479     if options.quiet:
1480         options.verbose = False
1481
1482     Globals.verbose_options = options.verbose
1483
1484     for filename in filenames:
1485         results = process_file(filename, None, options)
1486
1487         if not options.quiet:
1488             sys.stderr.write("Writing to " + results['headername'] + " and "
1489                              + results['sourcename'] + "\n")
1490
1491         open(results['headername'], 'w').write(results['headerdata'])
1492         open(results['sourcename'], 'w').write(results['sourcedata'])
1493
1494 def main_plugin():
1495     '''Main function when invoked as a protoc plugin.'''
1496
1497     import io, sys
1498     if sys.platform == "win32":
1499         import os, msvcrt
1500         # Set stdin and stdout to binary mode
1501         msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY)
1502         msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
1503
1504     data = io.open(sys.stdin.fileno(), "rb").read()
1505
1506     request = plugin_pb2.CodeGeneratorRequest.FromString(data)
1507
1508     try:
1509         # Versions of Python prior to 2.7.3 do not support unicode
1510         # input to shlex.split(). Try to convert to str if possible.
1511         params = str(request.parameter)
1512     except UnicodeEncodeError:
1513         params = request.parameter
1514
1515     import shlex
1516     args = shlex.split(params)
1517     options, dummy = optparser.parse_args(args)
1518
1519     Globals.verbose_options = options.verbose
1520
1521     response = plugin_pb2.CodeGeneratorResponse()
1522
1523     # Google's protoc does not currently indicate the full path of proto files.
1524     # Instead always add the main file path to the search dirs, that works for
1525     # the common case.
1526     import os.path
1527     options.options_path.append(os.path.dirname(request.file_to_generate[0]))
1528
1529     # Process any include files first, in order to have them
1530     # available as dependencies
1531     other_files = {}
1532     for fdesc in request.proto_file:
1533         other_files[fdesc.name] = parse_file(fdesc.name, fdesc, options)
1534
1535     for filename in request.file_to_generate:
1536         for fdesc in request.proto_file:
1537             if fdesc.name == filename:
1538                 results = process_file(filename, fdesc, options, other_files)
1539
1540                 f = response.file.add()
1541                 f.name = results['headername']
1542                 f.content = results['headerdata']
1543
1544                 f = response.file.add()
1545                 f.name = results['sourcename']
1546                 f.content = results['sourcedata']
1547
1548     io.open(sys.stdout.fileno(), "wb").write(response.SerializeToString())
1549
1550 if __name__ == '__main__':
1551     # Check if we are running as a plugin under protoc
1552     if 'protoc-gen-' in sys.argv[0] or '--protoc-plugin' in sys.argv:
1553         main_plugin()
1554     else:
1555         main_cli()
1556