ductone / protoc-gen-apigw

Apache License 2.0
10 stars 2 forks source link

Anthony/rpc nested field support #21

Closed notanthony closed 1 year ago

notanthony commented 1 year ago

Added two recursive functions

generateNestedProtoMessageOutput generates the nested protopack.Message. To avoid large nesting instead of doing

protopack.Message{ 
  protopack.Tag{...
  protopack.Message{ ...
     protopack.Tag{...
     protopack.Message{ 

I used an array as an intermediary

generateNestedFieldConverterStr generated the converters for each level. This is necessary in order to obtain the innermost field.

Looks like it works!

image