nanopb: update generator to emit optional enum->string mapping function
authorWilliam A. Kennington III <wak@google.com>
Wed, 26 Oct 2016 20:55:44 +0000 (13:55 -0700)
committerWilliam A. Kennington III <wak@google.com>
Mon, 21 Nov 2016 23:02:23 +0000 (15:02 -0800)
Google-Bug-Id: 28000875
Signed-off-by: William A. Kennington III <wak@google.com>
Change-Id: I1bffd39168abe04593588291b0ebbe5199a00138

generator/nanopb_generator.py
generator/proto/nanopb.proto

index 9ccb9b9..36cbbdf 100755 (executable)
@@ -207,6 +207,27 @@ class Enum:
             for i, x in enumerate(self.values):
                 result += '\n#define %s %s' % (self.value_longnames[i], x[0])
 
+        if self.options.enum_to_string:
+            result += '\nconst char *%s_Name(%s v);\n' % (self.names, self.names)
+
+        return result
+
+    def enum_definition(self):
+        if not self.options.enum_to_string:
+            return ""
+
+        result = 'const char *%s_Name(%s v) {\n' % (self.names, self.names)
+        result += '    switch (v) {\n'
+
+        for ((enumname, _), strname) in zip(self.values, self.value_longnames):
+            # Strip off the leading type name from the string value.
+            strval = str(strname)[len(str(self.names)) + 1:]
+            result += '    case %s: return "%s";\n' % (enumname, strval)
+
+        result += '    }\n'
+        result += '    return "unknown";\n'
+        result += '}\n'
+
         return result
 
 class FieldMaxSize:
@@ -1220,6 +1241,9 @@ class ProtoFile:
         for ext in self.extensions:
             yield ext.extension_def() + '\n'
 
+        for enum in self.enums:
+            yield enum.enum_definition() + '\n'
+
         # Add checks for numeric limits
         if self.messages:
             largest_msg = max(self.messages, key = lambda m: m.count_required_fields())
index b9961c8..f6fe4a2 100644 (file)
@@ -69,6 +69,9 @@ message NanoPBOptions {
 
   // Proto3 singular field does not generate a "has_" flag
   optional bool proto3 = 12 [default = false];
+
+  // Generate an enum->string mapping function (can take up lots of space).
+  optional bool enum_to_string = 13 [default = false];
 }
 
 // Extensions to protoc 'Descriptor' type in order to define options