Merge pull request #2722 from ckennelly/unified
Merge #2653, #2622, #2579, #2652
This commit is contained in:
commit
a9ab38c171
@ -220,7 +220,8 @@ bool Any::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string type_url = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_type_url()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -235,7 +236,8 @@ bool Any::MergePartialFromCodedStream(
|
||||
|
||||
// bytes value = 2;
|
||||
case 2: {
|
||||
if (tag == 18u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(18u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
|
||||
input, this->mutable_value()));
|
||||
} else {
|
||||
|
@ -288,7 +288,8 @@ bool Api::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string name = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -303,7 +304,8 @@ bool Api::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.Method methods = 2;
|
||||
case 2: {
|
||||
if (tag == 18u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(18u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_methods()));
|
||||
@ -316,7 +318,8 @@ bool Api::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.Option options = 3;
|
||||
case 3: {
|
||||
if (tag == 26u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(26u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_options()));
|
||||
@ -329,7 +332,8 @@ bool Api::MergePartialFromCodedStream(
|
||||
|
||||
// string version = 4;
|
||||
case 4: {
|
||||
if (tag == 34u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(34u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_version()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -344,7 +348,8 @@ bool Api::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.SourceContext source_context = 5;
|
||||
case 5: {
|
||||
if (tag == 42u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(42u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
|
||||
input, mutable_source_context()));
|
||||
} else {
|
||||
@ -355,7 +360,8 @@ bool Api::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.Mixin mixins = 6;
|
||||
case 6: {
|
||||
if (tag == 50u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(50u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_mixins()));
|
||||
@ -368,7 +374,8 @@ bool Api::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.Syntax syntax = 7;
|
||||
case 7: {
|
||||
if (tag == 56u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(56u)) {
|
||||
int value;
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
|
||||
@ -1029,7 +1036,8 @@ bool Method::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string name = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -1044,7 +1052,8 @@ bool Method::MergePartialFromCodedStream(
|
||||
|
||||
// string request_type_url = 2;
|
||||
case 2: {
|
||||
if (tag == 18u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(18u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_request_type_url()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -1059,7 +1068,8 @@ bool Method::MergePartialFromCodedStream(
|
||||
|
||||
// bool request_streaming = 3;
|
||||
case 3: {
|
||||
if (tag == 24u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(24u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
|
||||
@ -1072,7 +1082,8 @@ bool Method::MergePartialFromCodedStream(
|
||||
|
||||
// string response_type_url = 4;
|
||||
case 4: {
|
||||
if (tag == 34u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(34u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_response_type_url()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -1087,7 +1098,8 @@ bool Method::MergePartialFromCodedStream(
|
||||
|
||||
// bool response_streaming = 5;
|
||||
case 5: {
|
||||
if (tag == 40u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(40u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
|
||||
@ -1100,7 +1112,8 @@ bool Method::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.Option options = 6;
|
||||
case 6: {
|
||||
if (tag == 50u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(50u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_options()));
|
||||
@ -1113,7 +1126,8 @@ bool Method::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.Syntax syntax = 7;
|
||||
case 7: {
|
||||
if (tag == 56u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(56u)) {
|
||||
int value;
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
|
||||
@ -1729,7 +1743,8 @@ bool Mixin::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string name = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -1744,7 +1759,8 @@ bool Mixin::MergePartialFromCodedStream(
|
||||
|
||||
// string root = 2;
|
||||
case 2: {
|
||||
if (tag == 18u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(18u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_root()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
|
@ -322,6 +322,17 @@ class LIBPROTOBUF_EXPORT Arena {
|
||||
arg);
|
||||
}
|
||||
}
|
||||
#if LANG_CXX11
|
||||
template <typename T, typename Arg> GOOGLE_ATTRIBUTE_ALWAYS_INLINE
|
||||
static T* Create(::google::protobuf::Arena* arena, Arg&& arg) {
|
||||
if (arena == NULL) {
|
||||
return new T(std::move(arg));
|
||||
} else {
|
||||
return arena->CreateInternal<T>(google::protobuf::internal::has_trivial_destructor<T>::value,
|
||||
std::move(arg));
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// Version of the above with two constructor arguments for the created object.
|
||||
template <typename T, typename Arg1, typename Arg2> GOOGLE_ATTRIBUTE_ALWAYS_INLINE
|
||||
@ -662,6 +673,18 @@ class LIBPROTOBUF_EXPORT Arena {
|
||||
return t;
|
||||
}
|
||||
|
||||
#if LANG_CXX11
|
||||
template <typename T, typename Arg> GOOGLE_ATTRIBUTE_ALWAYS_INLINE
|
||||
T* CreateInternal(bool skip_explicit_ownership, Arg&& arg) {
|
||||
T* t = new (AllocateAligned(RTTI_TYPE_ID(T), sizeof(T))) T(
|
||||
std::move(arg));
|
||||
if (!skip_explicit_ownership) {
|
||||
AddListNode(t, &internal::arena_destruct_object<T>);
|
||||
}
|
||||
return t;
|
||||
}
|
||||
#endif
|
||||
|
||||
template <typename T, typename Arg1, typename Arg2> GOOGLE_ATTRIBUTE_ALWAYS_INLINE
|
||||
T* CreateInternal(
|
||||
bool skip_explicit_ownership, const Arg1& arg1, const Arg2& arg2) {
|
||||
|
@ -436,7 +436,7 @@ GenerateSerializeWithCachedSizes(io::Printer* printer) const {
|
||||
"}\n");
|
||||
}
|
||||
printer->Print(variables_,
|
||||
"for (int i = 0; i < this->$name$_size(); i++) {\n");
|
||||
"for (int i = 0, n = this->$name$_size(); i < n; i++) {\n");
|
||||
if (descriptor_->is_packed()) {
|
||||
printer->Print(variables_,
|
||||
" ::google::protobuf::internal::WireFormatLite::WriteEnumNoTag(\n"
|
||||
@ -464,7 +464,7 @@ GenerateSerializeWithCachedSizesToArray(io::Printer* printer) const {
|
||||
"}\n");
|
||||
}
|
||||
printer->Print(variables_,
|
||||
"for (int i = 0; i < this->$name$_size(); i++) {\n");
|
||||
"for (int i = 0, n = this->$name$_size(); i < n; i++) {\n");
|
||||
if (descriptor_->is_packed()) {
|
||||
printer->Print(variables_,
|
||||
" target = ::google::protobuf::internal::WireFormatLite::WriteEnumNoTagToArray(\n"
|
||||
|
@ -3028,7 +3028,8 @@ GenerateMergeFromCodedStream(io::Printer* printer) {
|
||||
const FieldGenerator& field_generator = field_generators_.get(field);
|
||||
|
||||
// Emit code to parse the common, expected case.
|
||||
printer->Print("if (tag == $commontag$u) {\n",
|
||||
printer->Print("if (static_cast<::google::protobuf::uint8>(tag) ==\n"
|
||||
" static_cast<::google::protobuf::uint8>($commontag$u)) {\n",
|
||||
"commontag", SimpleItoa(WireFormat::MakeTag(field)));
|
||||
|
||||
if (loops) {
|
||||
@ -3047,7 +3048,8 @@ GenerateMergeFromCodedStream(io::Printer* printer) {
|
||||
if (field->is_packed()) {
|
||||
internal::WireFormatLite::WireType wiretype =
|
||||
WireFormat::WireTypeForFieldType(field->type());
|
||||
printer->Print("} else if (tag == $uncommontag$u) {\n",
|
||||
printer->Print("} else if (static_cast<::google::protobuf::uint8>(tag) ==\n"
|
||||
" static_cast<::google::protobuf::uint8>($uncommontag$u)) {\n",
|
||||
"uncommontag", SimpleItoa(
|
||||
internal::WireFormatLite::MakeTag(
|
||||
field->number(), wiretype)));
|
||||
@ -3057,7 +3059,8 @@ GenerateMergeFromCodedStream(io::Printer* printer) {
|
||||
} else if (field->is_packable() && !field->is_packed()) {
|
||||
internal::WireFormatLite::WireType wiretype =
|
||||
internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED;
|
||||
printer->Print("} else if (tag == $uncommontag$u) {\n",
|
||||
printer->Print("} else if (static_cast<::google::protobuf::uint8>(tag) ==\n"
|
||||
" static_cast<::google::protobuf::uint8>($uncommontag$u)) {\n",
|
||||
"uncommontag", SimpleItoa(
|
||||
internal::WireFormatLite::MakeTag(
|
||||
field->number(), wiretype)));
|
||||
|
@ -394,7 +394,7 @@ GenerateSerializeWithCachedSizes(io::Printer* printer) const {
|
||||
}
|
||||
if (!array_written) {
|
||||
printer->Print(variables_,
|
||||
"for (int i = 0; i < this->$name$_size(); i++) {\n");
|
||||
"for (int i = 0, n = this->$name$_size(); i < n; i++) {\n");
|
||||
if (descriptor_->is_packed()) {
|
||||
printer->Print(variables_,
|
||||
" ::google::protobuf::internal::WireFormatLite::Write$declared_type$NoTag(\n"
|
||||
@ -423,7 +423,7 @@ GenerateSerializeWithCachedSizesToArray(io::Printer* printer) const {
|
||||
"}\n");
|
||||
}
|
||||
printer->Print(variables_,
|
||||
"for (int i = 0; i < this->$name$_size(); i++) {\n");
|
||||
"for (int i = 0, n = this->$name$_size(); i < n; i++) {\n");
|
||||
if (descriptor_->is_packed()) {
|
||||
printer->Print(variables_,
|
||||
" target = ::google::protobuf::internal::WireFormatLite::\n"
|
||||
|
@ -830,12 +830,18 @@ GenerateAccessorDeclarations(io::Printer* printer) const {
|
||||
"$deprecated_attr$const ::std::string& $name$(int index) const;\n"
|
||||
"$deprecated_attr$::std::string* mutable_$name$(int index);\n"
|
||||
"$deprecated_attr$void set_$name$(int index, const ::std::string& value);\n"
|
||||
"#if LANG_CXX11\n"
|
||||
"$deprecated_attr$void set_$name$(int index, ::std::string&& value);\n"
|
||||
"#endif\n"
|
||||
"$deprecated_attr$void set_$name$(int index, const char* value);\n"
|
||||
""
|
||||
"$deprecated_attr$void set_$name$("
|
||||
"int index, const $pointer_type$* value, size_t size);\n"
|
||||
"$deprecated_attr$::std::string* add_$name$();\n"
|
||||
"$deprecated_attr$void add_$name$(const ::std::string& value);\n"
|
||||
"#if LANG_CXX11\n"
|
||||
"$deprecated_attr$void add_$name$(::std::string&& value);\n"
|
||||
"#endif\n"
|
||||
"$deprecated_attr$void add_$name$(const char* value);\n"
|
||||
"$deprecated_attr$void add_$name$(const $pointer_type$* value, size_t size)"
|
||||
";\n"
|
||||
@ -869,6 +875,12 @@ GenerateInlineAccessorDefinitions(io::Printer* printer,
|
||||
" // @@protoc_insertion_point(field_set:$full_name$)\n"
|
||||
" $name$_.Mutable(index)->assign(value);\n"
|
||||
"}\n"
|
||||
"#if LANG_CXX11\n"
|
||||
"$inline$void $classname$::set_$name$(int index, ::std::string&& value) {\n"
|
||||
" // @@protoc_insertion_point(field_set:$full_name$)\n"
|
||||
" $name$_.Mutable(index)->assign(std::move(value));\n"
|
||||
"}\n"
|
||||
"#endif\n"
|
||||
"$inline$void $classname$::set_$name$(int index, const char* value) {\n"
|
||||
" $name$_.Mutable(index)->assign(value);\n"
|
||||
" // @@protoc_insertion_point(field_set_char:$full_name$)\n"
|
||||
@ -888,6 +900,12 @@ GenerateInlineAccessorDefinitions(io::Printer* printer,
|
||||
" $name$_.Add()->assign(value);\n"
|
||||
" // @@protoc_insertion_point(field_add:$full_name$)\n"
|
||||
"}\n"
|
||||
"#if LANG_CXX11\n"
|
||||
"$inline$void $classname$::add_$name$(::std::string&& value) {\n"
|
||||
" $name$_.Add()->assign(std::move(value));\n"
|
||||
" // @@protoc_insertion_point(field_add:$full_name$)\n"
|
||||
"}\n"
|
||||
"#endif\n"
|
||||
"$inline$void $classname$::add_$name$(const char* value) {\n"
|
||||
" $name$_.Add()->assign(value);\n"
|
||||
" // @@protoc_insertion_point(field_add_char:$full_name$)\n"
|
||||
@ -951,7 +969,7 @@ GenerateMergeFromCodedStream(io::Printer* printer) const {
|
||||
void RepeatedStringFieldGenerator::
|
||||
GenerateSerializeWithCachedSizes(io::Printer* printer) const {
|
||||
printer->Print(variables_,
|
||||
"for (int i = 0; i < this->$name$_size(); i++) {\n");
|
||||
"for (int i = 0, n = this->$name$_size(); i < n; i++) {\n");
|
||||
printer->Indent();
|
||||
if (descriptor_->type() == FieldDescriptor::TYPE_STRING) {
|
||||
GenerateUtf8CheckCodeForString(
|
||||
@ -968,7 +986,7 @@ GenerateSerializeWithCachedSizes(io::Printer* printer) const {
|
||||
void RepeatedStringFieldGenerator::
|
||||
GenerateSerializeWithCachedSizesToArray(io::Printer* printer) const {
|
||||
printer->Print(variables_,
|
||||
"for (int i = 0; i < this->$name$_size(); i++) {\n");
|
||||
"for (int i = 0, n = this->$name$_size(); i < n; i++) {\n");
|
||||
printer->Indent();
|
||||
if (descriptor_->type() == FieldDescriptor::TYPE_STRING) {
|
||||
GenerateUtf8CheckCodeForString(
|
||||
@ -987,7 +1005,7 @@ GenerateByteSize(io::Printer* printer) const {
|
||||
printer->Print(variables_,
|
||||
"total_size += $tag_size$ *\n"
|
||||
" ::google::protobuf::internal::FromIntSize(this->$name$_size());\n"
|
||||
"for (int i = 0; i < this->$name$_size(); i++) {\n"
|
||||
"for (int i = 0, n = this->$name$_size(); i < n; i++) {\n"
|
||||
" total_size += ::google::protobuf::internal::WireFormatLite::$declared_type$Size(\n"
|
||||
" this->$name$(i));\n"
|
||||
"}\n");
|
||||
|
@ -463,6 +463,26 @@ TEST(GeneratedMessageTest, StringMove) {
|
||||
EXPECT_EQ(old_data, new_data);
|
||||
EXPECT_EQ(string(32, 'b'), message.oneof_string());
|
||||
}
|
||||
|
||||
// Verify that we trigger the move behavior on a repeated setter.
|
||||
{
|
||||
string tmp(32, 'a');
|
||||
|
||||
const char* old_data = tmp.data();
|
||||
message.add_repeated_string(std::move(tmp));
|
||||
const char* new_data = message.repeated_string(0).data();
|
||||
|
||||
EXPECT_EQ(old_data, new_data);
|
||||
EXPECT_EQ(string(32, 'a'), message.repeated_string(0));
|
||||
|
||||
string tmp2(32, 'b');
|
||||
old_data = tmp2.data();
|
||||
message.set_repeated_string(0, std::move(tmp2));
|
||||
new_data = message.repeated_string(0).data();
|
||||
|
||||
EXPECT_EQ(old_data, new_data);
|
||||
EXPECT_EQ(string(32, 'b'), message.repeated_string(0));
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -287,7 +287,8 @@ bool Version::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// optional int32 major = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
set_has_major();
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
|
||||
@ -300,7 +301,8 @@ bool Version::MergePartialFromCodedStream(
|
||||
|
||||
// optional int32 minor = 2;
|
||||
case 2: {
|
||||
if (tag == 16u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(16u)) {
|
||||
set_has_minor();
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
|
||||
@ -313,7 +315,8 @@ bool Version::MergePartialFromCodedStream(
|
||||
|
||||
// optional int32 patch = 3;
|
||||
case 3: {
|
||||
if (tag == 24u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(24u)) {
|
||||
set_has_patch();
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
|
||||
@ -326,7 +329,8 @@ bool Version::MergePartialFromCodedStream(
|
||||
|
||||
// optional string suffix = 4;
|
||||
case 4: {
|
||||
if (tag == 34u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(34u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_suffix()));
|
||||
::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
|
||||
@ -800,7 +804,8 @@ bool CodeGeneratorRequest::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// repeated string file_to_generate = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->add_file_to_generate()));
|
||||
::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
|
||||
@ -816,7 +821,8 @@ bool CodeGeneratorRequest::MergePartialFromCodedStream(
|
||||
|
||||
// optional string parameter = 2;
|
||||
case 2: {
|
||||
if (tag == 18u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(18u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_parameter()));
|
||||
::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
|
||||
@ -831,7 +837,8 @@ bool CodeGeneratorRequest::MergePartialFromCodedStream(
|
||||
|
||||
// optional .google.protobuf.compiler.Version compiler_version = 3;
|
||||
case 3: {
|
||||
if (tag == 26u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(26u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
|
||||
input, mutable_compiler_version()));
|
||||
} else {
|
||||
@ -842,7 +849,8 @@ bool CodeGeneratorRequest::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.FileDescriptorProto proto_file = 15;
|
||||
case 15: {
|
||||
if (tag == 122u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(122u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_proto_file()));
|
||||
@ -879,7 +887,7 @@ void CodeGeneratorRequest::SerializeWithCachedSizes(
|
||||
::google::protobuf::io::CodedOutputStream* output) const {
|
||||
// @@protoc_insertion_point(serialize_start:google.protobuf.compiler.CodeGeneratorRequest)
|
||||
// repeated string file_to_generate = 1;
|
||||
for (int i = 0; i < this->file_to_generate_size(); i++) {
|
||||
for (int i = 0, n = this->file_to_generate_size(); i < n; i++) {
|
||||
::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
|
||||
this->file_to_generate(i).data(), this->file_to_generate(i).length(),
|
||||
::google::protobuf::internal::WireFormat::SERIALIZE,
|
||||
@ -922,7 +930,7 @@ void CodeGeneratorRequest::SerializeWithCachedSizes(
|
||||
(void)deterministic; // Unused
|
||||
// @@protoc_insertion_point(serialize_to_array_start:google.protobuf.compiler.CodeGeneratorRequest)
|
||||
// repeated string file_to_generate = 1;
|
||||
for (int i = 0; i < this->file_to_generate_size(); i++) {
|
||||
for (int i = 0, n = this->file_to_generate_size(); i < n; i++) {
|
||||
::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
|
||||
this->file_to_generate(i).data(), this->file_to_generate(i).length(),
|
||||
::google::protobuf::internal::WireFormat::SERIALIZE,
|
||||
@ -976,7 +984,7 @@ size_t CodeGeneratorRequest::ByteSizeLong() const {
|
||||
// repeated string file_to_generate = 1;
|
||||
total_size += 1 *
|
||||
::google::protobuf::internal::FromIntSize(this->file_to_generate_size());
|
||||
for (int i = 0; i < this->file_to_generate_size(); i++) {
|
||||
for (int i = 0, n = this->file_to_generate_size(); i < n; i++) {
|
||||
total_size += ::google::protobuf::internal::WireFormatLite::StringSize(
|
||||
this->file_to_generate(i));
|
||||
}
|
||||
@ -1107,6 +1115,12 @@ void CodeGeneratorRequest::set_file_to_generate(int index, const ::std::string&
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
file_to_generate_.Mutable(index)->assign(value);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
void CodeGeneratorRequest::set_file_to_generate(int index, ::std::string&& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
file_to_generate_.Mutable(index)->assign(std::move(value));
|
||||
}
|
||||
#endif
|
||||
void CodeGeneratorRequest::set_file_to_generate(int index, const char* value) {
|
||||
file_to_generate_.Mutable(index)->assign(value);
|
||||
// @@protoc_insertion_point(field_set_char:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
@ -1124,6 +1138,12 @@ void CodeGeneratorRequest::add_file_to_generate(const ::std::string& value) {
|
||||
file_to_generate_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
}
|
||||
#if LANG_CXX11
|
||||
void CodeGeneratorRequest::add_file_to_generate(::std::string&& value) {
|
||||
file_to_generate_.Add()->assign(std::move(value));
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
}
|
||||
#endif
|
||||
void CodeGeneratorRequest::add_file_to_generate(const char* value) {
|
||||
file_to_generate_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add_char:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
@ -1392,7 +1412,8 @@ bool CodeGeneratorResponse_File::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// optional string name = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_name()));
|
||||
::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
|
||||
@ -1407,7 +1428,8 @@ bool CodeGeneratorResponse_File::MergePartialFromCodedStream(
|
||||
|
||||
// optional string insertion_point = 2;
|
||||
case 2: {
|
||||
if (tag == 18u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(18u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_insertion_point()));
|
||||
::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
|
||||
@ -1422,7 +1444,8 @@ bool CodeGeneratorResponse_File::MergePartialFromCodedStream(
|
||||
|
||||
// optional string content = 15;
|
||||
case 15: {
|
||||
if (tag == 122u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(122u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_content()));
|
||||
::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
|
||||
@ -1932,7 +1955,8 @@ bool CodeGeneratorResponse::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// optional string error = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_error()));
|
||||
::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField(
|
||||
@ -1947,7 +1971,8 @@ bool CodeGeneratorResponse::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.compiler.CodeGeneratorResponse.File file = 15;
|
||||
case 15: {
|
||||
if (tag == 122u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(122u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_file()));
|
||||
|
@ -356,10 +356,16 @@ class LIBPROTOC_EXPORT CodeGeneratorRequest : public ::google::protobuf::Message
|
||||
const ::std::string& file_to_generate(int index) const;
|
||||
::std::string* mutable_file_to_generate(int index);
|
||||
void set_file_to_generate(int index, const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void set_file_to_generate(int index, ::std::string&& value);
|
||||
#endif
|
||||
void set_file_to_generate(int index, const char* value);
|
||||
void set_file_to_generate(int index, const char* value, size_t size);
|
||||
::std::string* add_file_to_generate();
|
||||
void add_file_to_generate(const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void add_file_to_generate(::std::string&& value);
|
||||
#endif
|
||||
void add_file_to_generate(const char* value);
|
||||
void add_file_to_generate(const char* value, size_t size);
|
||||
const ::google::protobuf::RepeatedPtrField< ::std::string>& file_to_generate() const;
|
||||
@ -839,6 +845,12 @@ inline void CodeGeneratorRequest::set_file_to_generate(int index, const ::std::s
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
file_to_generate_.Mutable(index)->assign(value);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void CodeGeneratorRequest::set_file_to_generate(int index, ::std::string&& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
file_to_generate_.Mutable(index)->assign(std::move(value));
|
||||
}
|
||||
#endif
|
||||
inline void CodeGeneratorRequest::set_file_to_generate(int index, const char* value) {
|
||||
file_to_generate_.Mutable(index)->assign(value);
|
||||
// @@protoc_insertion_point(field_set_char:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
@ -856,6 +868,12 @@ inline void CodeGeneratorRequest::add_file_to_generate(const ::std::string& valu
|
||||
file_to_generate_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void CodeGeneratorRequest::add_file_to_generate(::std::string&& value) {
|
||||
file_to_generate_.Add()->assign(std::move(value));
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
}
|
||||
#endif
|
||||
inline void CodeGeneratorRequest::add_file_to_generate(const char* value) {
|
||||
file_to_generate_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add_char:google.protobuf.compiler.CodeGeneratorRequest.file_to_generate)
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -441,10 +441,16 @@ class LIBPROTOBUF_EXPORT FileDescriptorProto : public ::google::protobuf::Messag
|
||||
const ::std::string& dependency(int index) const;
|
||||
::std::string* mutable_dependency(int index);
|
||||
void set_dependency(int index, const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void set_dependency(int index, ::std::string&& value);
|
||||
#endif
|
||||
void set_dependency(int index, const char* value);
|
||||
void set_dependency(int index, const char* value, size_t size);
|
||||
::std::string* add_dependency();
|
||||
void add_dependency(const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void add_dependency(::std::string&& value);
|
||||
#endif
|
||||
void add_dependency(const char* value);
|
||||
void add_dependency(const char* value, size_t size);
|
||||
const ::google::protobuf::RepeatedPtrField< ::std::string>& dependency() const;
|
||||
@ -996,10 +1002,16 @@ class LIBPROTOBUF_EXPORT DescriptorProto : public ::google::protobuf::Message /*
|
||||
const ::std::string& reserved_name(int index) const;
|
||||
::std::string* mutable_reserved_name(int index);
|
||||
void set_reserved_name(int index, const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void set_reserved_name(int index, ::std::string&& value);
|
||||
#endif
|
||||
void set_reserved_name(int index, const char* value);
|
||||
void set_reserved_name(int index, const char* value, size_t size);
|
||||
::std::string* add_reserved_name();
|
||||
void add_reserved_name(const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void add_reserved_name(::std::string&& value);
|
||||
#endif
|
||||
void add_reserved_name(const char* value);
|
||||
void add_reserved_name(const char* value, size_t size);
|
||||
const ::google::protobuf::RepeatedPtrField< ::std::string>& reserved_name() const;
|
||||
@ -3717,10 +3729,16 @@ class LIBPROTOBUF_EXPORT SourceCodeInfo_Location : public ::google::protobuf::Me
|
||||
const ::std::string& leading_detached_comments(int index) const;
|
||||
::std::string* mutable_leading_detached_comments(int index);
|
||||
void set_leading_detached_comments(int index, const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void set_leading_detached_comments(int index, ::std::string&& value);
|
||||
#endif
|
||||
void set_leading_detached_comments(int index, const char* value);
|
||||
void set_leading_detached_comments(int index, const char* value, size_t size);
|
||||
::std::string* add_leading_detached_comments();
|
||||
void add_leading_detached_comments(const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void add_leading_detached_comments(::std::string&& value);
|
||||
#endif
|
||||
void add_leading_detached_comments(const char* value);
|
||||
void add_leading_detached_comments(const char* value, size_t size);
|
||||
const ::google::protobuf::RepeatedPtrField< ::std::string>& leading_detached_comments() const;
|
||||
@ -4297,6 +4315,12 @@ inline void FileDescriptorProto::set_dependency(int index, const ::std::string&
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.FileDescriptorProto.dependency)
|
||||
dependency_.Mutable(index)->assign(value);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void FileDescriptorProto::set_dependency(int index, ::std::string&& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.FileDescriptorProto.dependency)
|
||||
dependency_.Mutable(index)->assign(std::move(value));
|
||||
}
|
||||
#endif
|
||||
inline void FileDescriptorProto::set_dependency(int index, const char* value) {
|
||||
dependency_.Mutable(index)->assign(value);
|
||||
// @@protoc_insertion_point(field_set_char:google.protobuf.FileDescriptorProto.dependency)
|
||||
@ -4314,6 +4338,12 @@ inline void FileDescriptorProto::add_dependency(const ::std::string& value) {
|
||||
dependency_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.FileDescriptorProto.dependency)
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void FileDescriptorProto::add_dependency(::std::string&& value) {
|
||||
dependency_.Add()->assign(std::move(value));
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.FileDescriptorProto.dependency)
|
||||
}
|
||||
#endif
|
||||
inline void FileDescriptorProto::add_dependency(const char* value) {
|
||||
dependency_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add_char:google.protobuf.FileDescriptorProto.dependency)
|
||||
@ -5109,6 +5139,12 @@ inline void DescriptorProto::set_reserved_name(int index, const ::std::string& v
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.DescriptorProto.reserved_name)
|
||||
reserved_name_.Mutable(index)->assign(value);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void DescriptorProto::set_reserved_name(int index, ::std::string&& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.DescriptorProto.reserved_name)
|
||||
reserved_name_.Mutable(index)->assign(std::move(value));
|
||||
}
|
||||
#endif
|
||||
inline void DescriptorProto::set_reserved_name(int index, const char* value) {
|
||||
reserved_name_.Mutable(index)->assign(value);
|
||||
// @@protoc_insertion_point(field_set_char:google.protobuf.DescriptorProto.reserved_name)
|
||||
@ -5126,6 +5162,12 @@ inline void DescriptorProto::add_reserved_name(const ::std::string& value) {
|
||||
reserved_name_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.DescriptorProto.reserved_name)
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void DescriptorProto::add_reserved_name(::std::string&& value) {
|
||||
reserved_name_.Add()->assign(std::move(value));
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.DescriptorProto.reserved_name)
|
||||
}
|
||||
#endif
|
||||
inline void DescriptorProto::add_reserved_name(const char* value) {
|
||||
reserved_name_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add_char:google.protobuf.DescriptorProto.reserved_name)
|
||||
@ -8250,6 +8292,12 @@ inline void SourceCodeInfo_Location::set_leading_detached_comments(int index, co
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.SourceCodeInfo.Location.leading_detached_comments)
|
||||
leading_detached_comments_.Mutable(index)->assign(value);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void SourceCodeInfo_Location::set_leading_detached_comments(int index, ::std::string&& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.SourceCodeInfo.Location.leading_detached_comments)
|
||||
leading_detached_comments_.Mutable(index)->assign(std::move(value));
|
||||
}
|
||||
#endif
|
||||
inline void SourceCodeInfo_Location::set_leading_detached_comments(int index, const char* value) {
|
||||
leading_detached_comments_.Mutable(index)->assign(value);
|
||||
// @@protoc_insertion_point(field_set_char:google.protobuf.SourceCodeInfo.Location.leading_detached_comments)
|
||||
@ -8267,6 +8315,12 @@ inline void SourceCodeInfo_Location::add_leading_detached_comments(const ::std::
|
||||
leading_detached_comments_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.SourceCodeInfo.Location.leading_detached_comments)
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void SourceCodeInfo_Location::add_leading_detached_comments(::std::string&& value) {
|
||||
leading_detached_comments_.Add()->assign(std::move(value));
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.SourceCodeInfo.Location.leading_detached_comments)
|
||||
}
|
||||
#endif
|
||||
inline void SourceCodeInfo_Location::add_leading_detached_comments(const char* value) {
|
||||
leading_detached_comments_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add_char:google.protobuf.SourceCodeInfo.Location.leading_detached_comments)
|
||||
|
@ -216,7 +216,8 @@ bool Duration::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// int64 seconds = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>(
|
||||
@ -229,7 +230,8 @@ bool Duration::MergePartialFromCodedStream(
|
||||
|
||||
// int32 nanos = 2;
|
||||
case 2: {
|
||||
if (tag == 16u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(16u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
|
||||
|
@ -192,7 +192,8 @@ bool FieldMask::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// repeated string paths = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->add_paths()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -231,7 +232,7 @@ void FieldMask::SerializeWithCachedSizes(
|
||||
::google::protobuf::io::CodedOutputStream* output) const {
|
||||
// @@protoc_insertion_point(serialize_start:google.protobuf.FieldMask)
|
||||
// repeated string paths = 1;
|
||||
for (int i = 0; i < this->paths_size(); i++) {
|
||||
for (int i = 0, n = this->paths_size(); i < n; i++) {
|
||||
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
this->paths(i).data(), this->paths(i).length(),
|
||||
::google::protobuf::internal::WireFormatLite::SERIALIZE,
|
||||
@ -248,7 +249,7 @@ void FieldMask::SerializeWithCachedSizes(
|
||||
(void)deterministic; // Unused
|
||||
// @@protoc_insertion_point(serialize_to_array_start:google.protobuf.FieldMask)
|
||||
// repeated string paths = 1;
|
||||
for (int i = 0; i < this->paths_size(); i++) {
|
||||
for (int i = 0, n = this->paths_size(); i < n; i++) {
|
||||
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
this->paths(i).data(), this->paths(i).length(),
|
||||
::google::protobuf::internal::WireFormatLite::SERIALIZE,
|
||||
@ -268,7 +269,7 @@ size_t FieldMask::ByteSizeLong() const {
|
||||
// repeated string paths = 1;
|
||||
total_size += 1 *
|
||||
::google::protobuf::internal::FromIntSize(this->paths_size());
|
||||
for (int i = 0; i < this->paths_size(); i++) {
|
||||
for (int i = 0, n = this->paths_size(); i < n; i++) {
|
||||
total_size += ::google::protobuf::internal::WireFormatLite::StringSize(
|
||||
this->paths(i));
|
||||
}
|
||||
@ -356,6 +357,12 @@ void FieldMask::set_paths(int index, const ::std::string& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.FieldMask.paths)
|
||||
paths_.Mutable(index)->assign(value);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
void FieldMask::set_paths(int index, ::std::string&& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.FieldMask.paths)
|
||||
paths_.Mutable(index)->assign(std::move(value));
|
||||
}
|
||||
#endif
|
||||
void FieldMask::set_paths(int index, const char* value) {
|
||||
paths_.Mutable(index)->assign(value);
|
||||
// @@protoc_insertion_point(field_set_char:google.protobuf.FieldMask.paths)
|
||||
@ -373,6 +380,12 @@ void FieldMask::add_paths(const ::std::string& value) {
|
||||
paths_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.FieldMask.paths)
|
||||
}
|
||||
#if LANG_CXX11
|
||||
void FieldMask::add_paths(::std::string&& value) {
|
||||
paths_.Add()->assign(std::move(value));
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.FieldMask.paths)
|
||||
}
|
||||
#endif
|
||||
void FieldMask::add_paths(const char* value) {
|
||||
paths_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add_char:google.protobuf.FieldMask.paths)
|
||||
|
@ -127,10 +127,16 @@ class LIBPROTOBUF_EXPORT FieldMask : public ::google::protobuf::Message /* @@pro
|
||||
const ::std::string& paths(int index) const;
|
||||
::std::string* mutable_paths(int index);
|
||||
void set_paths(int index, const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void set_paths(int index, ::std::string&& value);
|
||||
#endif
|
||||
void set_paths(int index, const char* value);
|
||||
void set_paths(int index, const char* value, size_t size);
|
||||
::std::string* add_paths();
|
||||
void add_paths(const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void add_paths(::std::string&& value);
|
||||
#endif
|
||||
void add_paths(const char* value);
|
||||
void add_paths(const char* value, size_t size);
|
||||
const ::google::protobuf::RepeatedPtrField< ::std::string>& paths() const;
|
||||
@ -171,6 +177,12 @@ inline void FieldMask::set_paths(int index, const ::std::string& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.FieldMask.paths)
|
||||
paths_.Mutable(index)->assign(value);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void FieldMask::set_paths(int index, ::std::string&& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.FieldMask.paths)
|
||||
paths_.Mutable(index)->assign(std::move(value));
|
||||
}
|
||||
#endif
|
||||
inline void FieldMask::set_paths(int index, const char* value) {
|
||||
paths_.Mutable(index)->assign(value);
|
||||
// @@protoc_insertion_point(field_set_char:google.protobuf.FieldMask.paths)
|
||||
@ -188,6 +200,12 @@ inline void FieldMask::add_paths(const ::std::string& value) {
|
||||
paths_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.FieldMask.paths)
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void FieldMask::add_paths(::std::string&& value) {
|
||||
paths_.Add()->assign(std::move(value));
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.FieldMask.paths)
|
||||
}
|
||||
#endif
|
||||
inline void FieldMask::add_paths(const char* value) {
|
||||
paths_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add_char:google.protobuf.FieldMask.paths)
|
||||
|
@ -423,6 +423,11 @@ class LIBPROTOBUF_EXPORT RepeatedPtrFieldBase {
|
||||
void Delete(int index);
|
||||
template <typename TypeHandler>
|
||||
typename TypeHandler::Type* Add(typename TypeHandler::Type* prototype = NULL);
|
||||
#if LANG_CXX11
|
||||
template <typename TypeHandler>
|
||||
void Add(typename TypeHandler::Type&& value,
|
||||
std::enable_if<TypeHandler::Moveable>* dummy = NULL);
|
||||
#endif
|
||||
|
||||
template <typename TypeHandler>
|
||||
void RemoveLast();
|
||||
@ -575,6 +580,9 @@ template <typename GenericType>
|
||||
class GenericTypeHandler {
|
||||
public:
|
||||
typedef GenericType Type;
|
||||
#if LANG_CXX11
|
||||
static const bool Moveable = false;
|
||||
#endif
|
||||
static inline GenericType* New(Arena* arena) {
|
||||
return ::google::protobuf::Arena::CreateMaybeMessage<Type>(
|
||||
arena, static_cast<GenericType*>(0));
|
||||
@ -690,10 +698,20 @@ inline const Message& GenericTypeHandler<Message>::default_instance() {
|
||||
class StringTypeHandler {
|
||||
public:
|
||||
typedef string Type;
|
||||
#if LANG_CXX11
|
||||
static const bool Moveable =
|
||||
std::is_move_constructible<Type>::value &&
|
||||
std::is_move_assignable<Type>::value;
|
||||
#endif
|
||||
|
||||
static inline string* New(Arena* arena) {
|
||||
return Arena::Create<string>(arena);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
static inline string* New(Arena* arena, std::string&& value) {
|
||||
return Arena::Create<string>(arena, std::move(value));
|
||||
}
|
||||
#endif
|
||||
static inline string* NewFromPrototype(const string*,
|
||||
::google::protobuf::Arena* arena) {
|
||||
return New(arena);
|
||||
@ -743,6 +761,9 @@ class RepeatedPtrField PROTOBUF_FINAL : public internal::RepeatedPtrFieldBase {
|
||||
const Element& Get(int index) const;
|
||||
Element* Mutable(int index);
|
||||
Element* Add();
|
||||
#if LANG_CXX11
|
||||
void Add(Element&& value);
|
||||
#endif
|
||||
|
||||
const Element& operator[](int index) const { return Get(index); }
|
||||
Element& operator[](int index) { return *Mutable(index); }
|
||||
@ -1451,6 +1472,25 @@ inline typename TypeHandler::Type* RepeatedPtrFieldBase::Add(
|
||||
return result;
|
||||
}
|
||||
|
||||
#if LANG_CXX11
|
||||
template <typename TypeHandler>
|
||||
inline void RepeatedPtrFieldBase::Add(
|
||||
typename TypeHandler::Type&& value,
|
||||
std::enable_if<TypeHandler::Moveable>*) {
|
||||
if (rep_ != NULL && current_size_ < rep_->allocated_size) {
|
||||
cast<TypeHandler>(rep_->elements[current_size_++]) = std::move(value);
|
||||
}
|
||||
if (!rep_ || rep_->allocated_size == total_size_) {
|
||||
Reserve(total_size_ + 1);
|
||||
}
|
||||
++rep_->allocated_size;
|
||||
typename TypeHandler::Type* result =
|
||||
TypeHandler::New(arena_, std::move(value));
|
||||
rep_->elements[current_size_++] = result;
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
template <typename TypeHandler>
|
||||
inline void RepeatedPtrFieldBase::RemoveLast() {
|
||||
GOOGLE_DCHECK_GT(current_size_, 0);
|
||||
@ -1848,6 +1888,13 @@ inline Element* RepeatedPtrField<Element>::Add() {
|
||||
return RepeatedPtrFieldBase::Add<TypeHandler>();
|
||||
}
|
||||
|
||||
#if LANG_CXX11
|
||||
template <typename Element>
|
||||
inline void RepeatedPtrField<Element>::Add(Element&& value) {
|
||||
RepeatedPtrFieldBase::Add<TypeHandler>(std::move(value));
|
||||
}
|
||||
#endif
|
||||
|
||||
template <typename Element>
|
||||
inline void RepeatedPtrField<Element>::RemoveLast() {
|
||||
RepeatedPtrFieldBase::RemoveLast<TypeHandler>();
|
||||
|
@ -198,7 +198,8 @@ bool SourceContext::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string file_name = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_file_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
|
@ -306,7 +306,8 @@ bool Struct::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// map<string, .google.protobuf.Value> fields = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
Struct_FieldsEntry::Parser< ::google::protobuf::internal::MapField<
|
||||
::std::string, ::google::protobuf::Value,
|
||||
@ -769,7 +770,8 @@ bool Value::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// .google.protobuf.NullValue null_value = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
int value;
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
|
||||
@ -783,7 +785,8 @@ bool Value::MergePartialFromCodedStream(
|
||||
|
||||
// double number_value = 2;
|
||||
case 2: {
|
||||
if (tag == 17u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(17u)) {
|
||||
clear_kind();
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
double, ::google::protobuf::internal::WireFormatLite::TYPE_DOUBLE>(
|
||||
@ -797,7 +800,8 @@ bool Value::MergePartialFromCodedStream(
|
||||
|
||||
// string string_value = 3;
|
||||
case 3: {
|
||||
if (tag == 26u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(26u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_string_value()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -812,7 +816,8 @@ bool Value::MergePartialFromCodedStream(
|
||||
|
||||
// bool bool_value = 4;
|
||||
case 4: {
|
||||
if (tag == 32u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(32u)) {
|
||||
clear_kind();
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
|
||||
@ -826,7 +831,8 @@ bool Value::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.Struct struct_value = 5;
|
||||
case 5: {
|
||||
if (tag == 42u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(42u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
|
||||
input, mutable_struct_value()));
|
||||
} else {
|
||||
@ -837,7 +843,8 @@ bool Value::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.ListValue list_value = 6;
|
||||
case 6: {
|
||||
if (tag == 50u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(50u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
|
||||
input, mutable_list_value()));
|
||||
} else {
|
||||
@ -1590,7 +1597,8 @@ bool ListValue::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// repeated .google.protobuf.Value values = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_values()));
|
||||
|
@ -216,7 +216,8 @@ bool Timestamp::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// int64 seconds = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>(
|
||||
@ -229,7 +230,8 @@ bool Timestamp::MergePartialFromCodedStream(
|
||||
|
||||
// int32 nanos = 2;
|
||||
case 2: {
|
||||
if (tag == 16u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(16u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
|
||||
|
@ -486,7 +486,8 @@ bool Type::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string name = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -501,7 +502,8 @@ bool Type::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.Field fields = 2;
|
||||
case 2: {
|
||||
if (tag == 18u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(18u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_fields()));
|
||||
@ -514,7 +516,8 @@ bool Type::MergePartialFromCodedStream(
|
||||
|
||||
// repeated string oneofs = 3;
|
||||
case 3: {
|
||||
if (tag == 26u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(26u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->add_oneofs()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -530,7 +533,8 @@ bool Type::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.Option options = 4;
|
||||
case 4: {
|
||||
if (tag == 34u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(34u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_options()));
|
||||
@ -543,7 +547,8 @@ bool Type::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.SourceContext source_context = 5;
|
||||
case 5: {
|
||||
if (tag == 42u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(42u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
|
||||
input, mutable_source_context()));
|
||||
} else {
|
||||
@ -554,7 +559,8 @@ bool Type::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.Syntax syntax = 6;
|
||||
case 6: {
|
||||
if (tag == 48u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(48u)) {
|
||||
int value;
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
|
||||
@ -607,7 +613,7 @@ void Type::SerializeWithCachedSizes(
|
||||
}
|
||||
|
||||
// repeated string oneofs = 3;
|
||||
for (int i = 0; i < this->oneofs_size(); i++) {
|
||||
for (int i = 0, n = this->oneofs_size(); i < n; i++) {
|
||||
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
this->oneofs(i).data(), this->oneofs(i).length(),
|
||||
::google::protobuf::internal::WireFormatLite::SERIALIZE,
|
||||
@ -660,7 +666,7 @@ void Type::SerializeWithCachedSizes(
|
||||
}
|
||||
|
||||
// repeated string oneofs = 3;
|
||||
for (int i = 0; i < this->oneofs_size(); i++) {
|
||||
for (int i = 0, n = this->oneofs_size(); i < n; i++) {
|
||||
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
this->oneofs(i).data(), this->oneofs(i).length(),
|
||||
::google::protobuf::internal::WireFormatLite::SERIALIZE,
|
||||
@ -711,7 +717,7 @@ size_t Type::ByteSizeLong() const {
|
||||
// repeated string oneofs = 3;
|
||||
total_size += 1 *
|
||||
::google::protobuf::internal::FromIntSize(this->oneofs_size());
|
||||
for (int i = 0; i < this->oneofs_size(); i++) {
|
||||
for (int i = 0, n = this->oneofs_size(); i < n; i++) {
|
||||
total_size += ::google::protobuf::internal::WireFormatLite::StringSize(
|
||||
this->oneofs(i));
|
||||
}
|
||||
@ -957,6 +963,12 @@ void Type::set_oneofs(int index, const ::std::string& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.Type.oneofs)
|
||||
oneofs_.Mutable(index)->assign(value);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
void Type::set_oneofs(int index, ::std::string&& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.Type.oneofs)
|
||||
oneofs_.Mutable(index)->assign(std::move(value));
|
||||
}
|
||||
#endif
|
||||
void Type::set_oneofs(int index, const char* value) {
|
||||
oneofs_.Mutable(index)->assign(value);
|
||||
// @@protoc_insertion_point(field_set_char:google.protobuf.Type.oneofs)
|
||||
@ -974,6 +986,12 @@ void Type::add_oneofs(const ::std::string& value) {
|
||||
oneofs_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.Type.oneofs)
|
||||
}
|
||||
#if LANG_CXX11
|
||||
void Type::add_oneofs(::std::string&& value) {
|
||||
oneofs_.Add()->assign(std::move(value));
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.Type.oneofs)
|
||||
}
|
||||
#endif
|
||||
void Type::add_oneofs(const char* value) {
|
||||
oneofs_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add_char:google.protobuf.Type.oneofs)
|
||||
@ -1231,7 +1249,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// .google.protobuf.Field.Kind kind = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
int value;
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
|
||||
@ -1245,7 +1264,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.Field.Cardinality cardinality = 2;
|
||||
case 2: {
|
||||
if (tag == 16u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(16u)) {
|
||||
int value;
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
|
||||
@ -1259,7 +1279,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
|
||||
// int32 number = 3;
|
||||
case 3: {
|
||||
if (tag == 24u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(24u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
|
||||
@ -1272,7 +1293,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
|
||||
// string name = 4;
|
||||
case 4: {
|
||||
if (tag == 34u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(34u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -1287,7 +1309,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
|
||||
// string type_url = 6;
|
||||
case 6: {
|
||||
if (tag == 50u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(50u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_type_url()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -1302,7 +1325,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
|
||||
// int32 oneof_index = 7;
|
||||
case 7: {
|
||||
if (tag == 56u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(56u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
|
||||
@ -1315,7 +1339,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
|
||||
// bool packed = 8;
|
||||
case 8: {
|
||||
if (tag == 64u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(64u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
|
||||
@ -1328,7 +1353,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.Option options = 9;
|
||||
case 9: {
|
||||
if (tag == 74u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(74u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_options()));
|
||||
@ -1341,7 +1367,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
|
||||
// string json_name = 10;
|
||||
case 10: {
|
||||
if (tag == 82u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(82u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_json_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -1356,7 +1383,8 @@ bool Field::MergePartialFromCodedStream(
|
||||
|
||||
// string default_value = 11;
|
||||
case 11: {
|
||||
if (tag == 90u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(90u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_default_value()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -2267,7 +2295,8 @@ bool Enum::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string name = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -2282,7 +2311,8 @@ bool Enum::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.EnumValue enumvalue = 2;
|
||||
case 2: {
|
||||
if (tag == 18u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(18u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_enumvalue()));
|
||||
@ -2295,7 +2325,8 @@ bool Enum::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.Option options = 3;
|
||||
case 3: {
|
||||
if (tag == 26u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(26u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_options()));
|
||||
@ -2308,7 +2339,8 @@ bool Enum::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.SourceContext source_context = 4;
|
||||
case 4: {
|
||||
if (tag == 34u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(34u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
|
||||
input, mutable_source_context()));
|
||||
} else {
|
||||
@ -2319,7 +2351,8 @@ bool Enum::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.Syntax syntax = 5;
|
||||
case 5: {
|
||||
if (tag == 40u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(40u)) {
|
||||
int value;
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
|
||||
@ -2876,7 +2909,8 @@ bool EnumValue::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string name = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -2891,7 +2925,8 @@ bool EnumValue::MergePartialFromCodedStream(
|
||||
|
||||
// int32 number = 2;
|
||||
case 2: {
|
||||
if (tag == 16u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(16u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
|
||||
@ -2904,7 +2939,8 @@ bool EnumValue::MergePartialFromCodedStream(
|
||||
|
||||
// repeated .google.protobuf.Option options = 3;
|
||||
case 3: {
|
||||
if (tag == 26u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(26u)) {
|
||||
DO_(input->IncrementRecursionDepth());
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth(
|
||||
input, add_options()));
|
||||
@ -3367,7 +3403,8 @@ bool Option::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string name = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_name()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -3382,7 +3419,8 @@ bool Option::MergePartialFromCodedStream(
|
||||
|
||||
// .google.protobuf.Any value = 2;
|
||||
case 2: {
|
||||
if (tag == 18u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(18u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
|
||||
input, mutable_value()));
|
||||
} else {
|
||||
|
@ -254,10 +254,16 @@ class LIBPROTOBUF_EXPORT Type : public ::google::protobuf::Message /* @@protoc_i
|
||||
const ::std::string& oneofs(int index) const;
|
||||
::std::string* mutable_oneofs(int index);
|
||||
void set_oneofs(int index, const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void set_oneofs(int index, ::std::string&& value);
|
||||
#endif
|
||||
void set_oneofs(int index, const char* value);
|
||||
void set_oneofs(int index, const char* value, size_t size);
|
||||
::std::string* add_oneofs();
|
||||
void add_oneofs(const ::std::string& value);
|
||||
#if LANG_CXX11
|
||||
void add_oneofs(::std::string&& value);
|
||||
#endif
|
||||
void add_oneofs(const char* value);
|
||||
void add_oneofs(const char* value, size_t size);
|
||||
const ::google::protobuf::RepeatedPtrField< ::std::string>& oneofs() const;
|
||||
@ -1144,6 +1150,12 @@ inline void Type::set_oneofs(int index, const ::std::string& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.Type.oneofs)
|
||||
oneofs_.Mutable(index)->assign(value);
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void Type::set_oneofs(int index, ::std::string&& value) {
|
||||
// @@protoc_insertion_point(field_set:google.protobuf.Type.oneofs)
|
||||
oneofs_.Mutable(index)->assign(std::move(value));
|
||||
}
|
||||
#endif
|
||||
inline void Type::set_oneofs(int index, const char* value) {
|
||||
oneofs_.Mutable(index)->assign(value);
|
||||
// @@protoc_insertion_point(field_set_char:google.protobuf.Type.oneofs)
|
||||
@ -1161,6 +1173,12 @@ inline void Type::add_oneofs(const ::std::string& value) {
|
||||
oneofs_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.Type.oneofs)
|
||||
}
|
||||
#if LANG_CXX11
|
||||
inline void Type::add_oneofs(::std::string&& value) {
|
||||
oneofs_.Add()->assign(std::move(value));
|
||||
// @@protoc_insertion_point(field_add:google.protobuf.Type.oneofs)
|
||||
}
|
||||
#endif
|
||||
inline void Type::add_oneofs(const char* value) {
|
||||
oneofs_.Add()->assign(value);
|
||||
// @@protoc_insertion_point(field_add_char:google.protobuf.Type.oneofs)
|
||||
|
@ -312,7 +312,8 @@ bool DoubleValue::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// double value = 1;
|
||||
case 1: {
|
||||
if (tag == 9u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(9u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
double, ::google::protobuf::internal::WireFormatLite::TYPE_DOUBLE>(
|
||||
@ -567,7 +568,8 @@ bool FloatValue::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// float value = 1;
|
||||
case 1: {
|
||||
if (tag == 13u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(13u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
|
||||
@ -822,7 +824,8 @@ bool Int64Value::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// int64 value = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>(
|
||||
@ -1079,7 +1082,8 @@ bool UInt64Value::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// uint64 value = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::uint64, ::google::protobuf::internal::WireFormatLite::TYPE_UINT64>(
|
||||
@ -1336,7 +1340,8 @@ bool Int32Value::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// int32 value = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
|
||||
@ -1593,7 +1598,8 @@ bool UInt32Value::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// uint32 value = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32>(
|
||||
@ -1850,7 +1856,8 @@ bool BoolValue::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// bool value = 1;
|
||||
case 1: {
|
||||
if (tag == 8u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(8u)) {
|
||||
|
||||
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
|
||||
bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
|
||||
@ -2110,7 +2117,8 @@ bool StringValue::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// string value = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
|
||||
input, this->mutable_value()));
|
||||
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
|
||||
@ -2437,7 +2445,8 @@ bool BytesValue::MergePartialFromCodedStream(
|
||||
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
|
||||
// bytes value = 1;
|
||||
case 1: {
|
||||
if (tag == 10u) {
|
||||
if (static_cast<::google::protobuf::uint8>(tag) ==
|
||||
static_cast<::google::protobuf::uint8>(10u)) {
|
||||
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
|
||||
input, this->mutable_value()));
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user