Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
5bdc5729
Commit
5bdc5729
authored
Aug 06, 2015
by
Jon Skeet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Generated code for previous commit.
parent
e7f88ff1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
107 additions
and
312 deletions
+107
-312
Addressbook.cs
csharp/src/AddressBook/Addressbook.cs
+3
-12
Conformance.cs
csharp/src/Google.Protobuf.Conformance/Conformance.cs
+5
-20
MapUnittestProto3.cs
.../src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs
+7
-28
UnittestImportProto3.cs
...c/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs
+1
-4
UnittestImportPublicProto3.cs
...le.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs
+1
-4
UnittestIssues.cs
csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs
+10
-40
UnittestProto3.cs
csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs
+0
-0
UnittestWellKnownTypes.cs
...Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs
+4
-16
WrappersTest.cs
...p/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs
+23
-0
InvalidProtocolBufferException.cs
csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs
+6
-0
DescriptorProtoFile.cs
csharp/src/Google.Protobuf/Reflection/DescriptorProtoFile.cs
+22
-88
Any.cs
csharp/src/Google.Protobuf/WellKnownTypes/Any.cs
+1
-4
Api.cs
csharp/src/Google.Protobuf/WellKnownTypes/Api.cs
+2
-8
Duration.cs
csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs
+1
-4
Empty.cs
csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs
+1
-4
FieldMask.cs
csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs
+1
-4
SourceContext.cs
csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs
+1
-4
Struct.cs
csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs
+3
-12
Timestamp.cs
csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs
+1
-4
Type.cs
csharp/src/Google.Protobuf/WellKnownTypes/Type.cs
+5
-20
Wrappers.cs
csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs
+9
-36
No files found.
csharp/src/AddressBook/Addressbook.cs
View file @
5bdc5729
...
...
@@ -189,10 +189,7 @@ namespace Google.Protobuf.Examples.AddressBook {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -335,10 +332,7 @@ namespace Google.Protobuf.Examples.AddressBook {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Number
=
input
.
ReadString
();
...
...
@@ -441,10 +435,7 @@ namespace Google.Protobuf.Examples.AddressBook {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
people_
.
AddEntriesFrom
(
input
,
_repeated_people_codec
);
...
...
csharp/src/Google.Protobuf.Conformance/Conformance.cs
View file @
5bdc5729
...
...
@@ -321,10 +321,7 @@ namespace Conformance {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
ProtobufPayload
=
input
.
ReadBytes
();
...
...
@@ -557,10 +554,7 @@ namespace Conformance {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
ParseError
=
input
.
ReadString
();
...
...
@@ -1829,10 +1823,7 @@ namespace Conformance {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
OptionalInt32
=
input
.
ReadInt32
();
...
...
@@ -2256,10 +2247,7 @@ namespace Conformance {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
A
=
input
.
ReadInt32
();
...
...
@@ -2373,10 +2361,7 @@ namespace Conformance {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
C
=
input
.
ReadInt32
();
...
...
csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs
View file @
5bdc5729
...
...
@@ -476,10 +476,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
mapInt32Int32_
.
AddEntriesFrom
(
input
,
_map_mapInt32Int32_codec
);
...
...
@@ -648,10 +645,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
if
(
testMap_
==
null
)
{
...
...
@@ -748,10 +742,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
mapInt32Message_
.
AddEntriesFrom
(
input
,
_map_mapInt32Message_codec
);
...
...
@@ -859,10 +850,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
map1_
.
AddEntriesFrom
(
input
,
_map_map1_codec
);
...
...
@@ -1156,10 +1144,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
mapInt32Int32_
.
AddEntriesFrom
(
input
,
_map_mapInt32Int32_codec
);
...
...
@@ -1309,10 +1294,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
type_
.
AddEntriesFrom
(
input
,
_map_type_codec
);
...
...
@@ -1416,10 +1398,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
entry_
.
AddEntriesFrom
(
input
,
_map_entry_codec
);
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs
View file @
5bdc5729
...
...
@@ -139,10 +139,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
D
=
input
.
ReadInt32
();
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs
View file @
5bdc5729
...
...
@@ -125,10 +125,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
E
=
input
.
ReadInt32
();
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs
View file @
5bdc5729
...
...
@@ -142,10 +142,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
}
}
...
...
@@ -222,10 +219,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
}
}
...
...
@@ -302,10 +296,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
}
}
...
...
@@ -441,10 +432,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
value_
=
(
global
::
UnitTest
.
Issues
.
TestProtos
.
NegativeEnum
)
input
.
ReadEnum
();
...
...
@@ -534,10 +522,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
}
}
...
...
@@ -730,10 +715,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
PrimitiveValue
=
input
.
ReadInt32
();
...
...
@@ -860,10 +842,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Item
=
input
.
ReadInt32
();
...
...
@@ -987,10 +966,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Types_
=
input
.
ReadInt32
();
...
...
@@ -1075,10 +1051,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
}
}
...
...
@@ -1343,10 +1316,7 @@ namespace UnitTest.Issues.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
PlainString
=
input
.
ReadString
();
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs
View file @
5bdc5729
This diff is collapsed.
Click to expand it.
csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs
View file @
5bdc5729
...
...
@@ -679,10 +679,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
if
(
anyField_
==
null
)
{
...
...
@@ -1136,10 +1133,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
anyField_
.
AddEntriesFrom
(
input
,
_repeated_anyField_codec
);
...
...
@@ -1757,10 +1751,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
global
::
Google
.
Protobuf
.
WellKnownTypes
.
Any
subBuilder
=
new
global
::
Google
.
Protobuf
.
WellKnownTypes
.
Any
();
...
...
@@ -2205,10 +2196,7 @@ namespace Google.Protobuf.TestProtos {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
anyField_
.
AddEntriesFrom
(
input
,
_map_anyField_codec
);
...
...
csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs
View file @
5bdc5729
...
...
@@ -322,5 +322,28 @@ namespace Google.Protobuf.WellKnownTypes
// A normal implementation would have 0 now, as the explicit default would have been overwritten the 5.
Assert
.
AreEqual
(
5
,
message
.
Int32Field
);
}
[
Test
]
public
void
UnknownFieldInWrapper
()
{
var
stream
=
new
MemoryStream
();
var
output
=
new
CodedOutputStream
(
stream
);
var
wrapperTag
=
WireFormat
.
MakeTag
(
TestWellKnownTypes
.
Int32FieldFieldNumber
,
WireFormat
.
WireType
.
LengthDelimited
);
var
unknownTag
=
WireFormat
.
MakeTag
(
15
,
WireFormat
.
WireType
.
Varint
);
var
valueTag
=
WireFormat
.
MakeTag
(
Int32Value
.
ValueFieldNumber
,
WireFormat
.
WireType
.
Varint
);
output
.
WriteTag
(
wrapperTag
);
output
.
WriteLength
(
4
);
// unknownTag + value 5 + valueType + value 6, each 1 byte
output
.
WriteTag
(
unknownTag
);
output
.
WriteInt32
((
int
)
valueTag
);
// Sneakily "pretend" it's a tag when it's really a value
output
.
WriteTag
(
valueTag
);
output
.
WriteInt32
(
6
);
output
.
Flush
();
stream
.
Position
=
0
;
var
message
=
TestWellKnownTypes
.
Parser
.
ParseFrom
(
stream
);
Assert
.
AreEqual
(
6
,
message
.
Int32Field
);
}
}
}
csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs
View file @
5bdc5729
...
...
@@ -45,6 +45,12 @@ namespace Google.Protobuf
{
}
internal
static
InvalidProtocolBufferException
MoreDataAvailable
()
{
return
new
InvalidProtocolBufferException
(
"Completed reading a message while more data was available in the stream."
);
}
internal
static
InvalidProtocolBufferException
TruncatedMessage
()
{
return
new
InvalidProtocolBufferException
(
...
...
csharp/src/Google.Protobuf/Reflection/DescriptorProtoFile.cs
View file @
5bdc5729
...
...
@@ -242,10 +242,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
file_
.
AddEntriesFrom
(
input
,
_repeated_file_codec
);
...
...
@@ -539,10 +536,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -833,10 +827,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -1000,10 +991,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Start
=
input
.
ReadInt32
();
...
...
@@ -1131,10 +1119,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Start
=
input
.
ReadInt32
();
...
...
@@ -1424,10 +1409,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -1597,10 +1579,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -1741,10 +1720,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -1904,10 +1880,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -2059,10 +2032,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -2288,10 +2258,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -2716,10 +2683,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
JavaPackage
=
input
.
ReadString
();
...
...
@@ -2969,10 +2933,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
MessageSetWireFormat
=
input
.
ReadBool
();
...
...
@@ -3214,10 +3175,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
ctype_
=
(
global
::
Google
.
Protobuf
.
Reflection
.
FieldOptions
.
Types
.
CType
)
input
.
ReadEnum
();
...
...
@@ -3397,10 +3355,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
16
:
{
AllowAlias
=
input
.
ReadBool
();
...
...
@@ -3524,10 +3479,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Deprecated
=
input
.
ReadBool
();
...
...
@@ -3647,10 +3599,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
264
:
{
Deprecated
=
input
.
ReadBool
();
...
...
@@ -3770,10 +3719,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
264
:
{
Deprecated
=
input
.
ReadBool
();
...
...
@@ -4003,10 +3949,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
18
:
{
name_
.
AddEntriesFrom
(
input
,
_repeated_name_codec
);
...
...
@@ -4155,10 +4098,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
NamePart_
=
input
.
ReadString
();
...
...
@@ -4261,10 +4201,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
location_
.
AddEntriesFrom
(
input
,
_repeated_location_codec
);
...
...
@@ -4431,10 +4368,7 @@ namespace Google.Protobuf.Reflection {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
case
8
:
{
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Any.cs
View file @
5bdc5729
...
...
@@ -150,10 +150,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
TypeUrl
=
input
.
ReadString
();
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Api.cs
View file @
5bdc5729
...
...
@@ -213,10 +213,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -439,10 +436,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs
View file @
5bdc5729
...
...
@@ -151,10 +151,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Seconds
=
input
.
ReadInt64
();
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs
View file @
5bdc5729
...
...
@@ -106,10 +106,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
}
}
...
...
csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs
View file @
5bdc5729
...
...
@@ -120,10 +120,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
paths_
.
AddEntriesFrom
(
input
,
_repeated_paths_codec
);
...
...
csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs
View file @
5bdc5729
...
...
@@ -129,10 +129,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
FileName
=
input
.
ReadString
();
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs
View file @
5bdc5729
...
...
@@ -139,10 +139,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
fields_
.
AddEntriesFrom
(
input
,
_map_fields_codec
);
...
...
@@ -392,10 +389,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
kind_
=
input
.
ReadEnum
();
...
...
@@ -520,10 +514,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
values_
.
AddEntriesFrom
(
input
,
_repeated_values_codec
);
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs
View file @
5bdc5729
...
...
@@ -151,10 +151,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Seconds
=
input
.
ReadInt64
();
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Type.cs
View file @
5bdc5729
...
...
@@ -226,10 +226,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -496,10 +493,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
kind_
=
(
global
::
Google
.
Protobuf
.
WellKnownTypes
.
Field
.
Types
.
Kind
)
input
.
ReadEnum
();
...
...
@@ -716,10 +710,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -872,10 +863,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
@@ -1010,10 +998,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Name
=
input
.
ReadString
();
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs
View file @
5bdc5729
...
...
@@ -138,10 +138,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
9
:
{
Value
=
input
.
ReadDouble
();
...
...
@@ -243,10 +240,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
13
:
{
Value
=
input
.
ReadFloat
();
...
...
@@ -348,10 +342,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Value
=
input
.
ReadInt64
();
...
...
@@ -453,10 +444,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Value
=
input
.
ReadUInt64
();
...
...
@@ -558,10 +546,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Value
=
input
.
ReadInt32
();
...
...
@@ -663,10 +648,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Value
=
input
.
ReadUInt32
();
...
...
@@ -768,10 +750,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
8
:
{
Value
=
input
.
ReadBool
();
...
...
@@ -873,10 +852,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Value
=
input
.
ReadString
();
...
...
@@ -978,10 +954,7 @@ namespace Google.Protobuf.WellKnownTypes {
while
((
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
}
input
.
ConsumeLastField
();
input
.
SkipLastField
();
break
;
case
10
:
{
Value
=
input
.
ReadBytes
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment