summaryrefslogtreecommitdiff
path: root/upbc
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2018-12-24 10:22:11 -0800
committerJoshua Haberman <jhaberman@gmail.com>2018-12-24 10:22:11 -0800
commit618981a60f2668c4c0ffc59833945514eb3dfdfa (patch)
tree025068dc25a1bbed0fd84d06c1d7928acb789e7c /upbc
parentbc916f1d0f8655c957b3de3b74370241605121ef (diff)
Added mutable_ accessor for submessages.
Diffstat (limited to 'upbc')
-rw-r--r--upbc/generator.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/upbc/generator.cc b/upbc/generator.cc
index 063e587..6eb0ed4 100644
--- a/upbc/generator.cc
+++ b/upbc/generator.cc
@@ -424,6 +424,20 @@ void GenerateMessageInHeader(const protobuf::Descriptor* message, Output& output
output("UPB_FIELD_AT(msg, $0, $1) = value; }\n", CType(field),
GetSizeInit(layout.GetFieldOffset(field)));
}
+ if (field->cpp_type() == protobuf::FieldDescriptor::CPPTYPE_MESSAGE) {
+ output(
+ "UPB_INLINE struct $0* $1_mutable_$2($1 *msg, upb_arena *arena) {\n"
+ " struct $0* sub = (struct $0*)$1_$2(msg);\n"
+ " if (sub == NULL) {\n"
+ " sub = (struct $0*)upb_msg_new(&$3, arena);\n"
+ " if (!sub) return NULL;\n"
+ " $1_set_$2(msg, sub);\n"
+ " }\n"
+ " return sub;\n"
+ "}\n",
+ MessageName(field->message_type()), msgname, field->name(),
+ MessageInit(field->message_type()));
+ }
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback