1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using ProtoBuf.Meta;
namespace ProtoBuf
{
internal static class ExtensibleUtil
{
internal static IEnumerable<TValue> GetExtendedValues<TValue>(IExtensible instance, int tag, DataFormat format, bool singleton, bool allowDefinedTag)
{
foreach (object obj in ExtensibleUtil.GetExtendedValues(RuntimeTypeModel.Default, typeof(TValue), instance, tag, format, singleton, allowDefinedTag))
{
TValue value = (TValue)((object)obj);
yield return value;
value = default(TValue);
}
IEnumerator enumerator = null;
yield break;
yield break;
}
internal static IEnumerable GetExtendedValues(TypeModel model, Type type, IExtensible instance, int tag, DataFormat format, bool singleton, bool allowDefinedTag)
{
bool flag = instance == null;
if (flag)
{
throw new ArgumentNullException("instance");
}
bool flag2 = tag <= 0;
if (flag2)
{
throw new ArgumentOutOfRangeException("tag");
}
IExtension extn = instance.GetExtensionObject(false);
bool flag3 = extn == null;
if (flag3)
{
yield break;
}
Stream stream = extn.BeginQuery();
object value = null;
ProtoReader reader = null;
try
{
SerializationContext ctx = new SerializationContext();
reader = ProtoReader.Create(stream, model, ctx, -1);
while (model.TryDeserializeAuxiliaryType(reader, format, tag, type, ref value, true, false, false, false) && value != null)
{
bool flag4 = !singleton;
if (flag4)
{
yield return value;
value = null;
}
}
bool flag5 = singleton && value != null;
if (flag5)
{
yield return value;
}
ctx = null;
}
finally
{
ProtoReader.Recycle(reader);
extn.EndQuery(stream);
}
yield break;
yield break;
}
internal static void AppendExtendValue(TypeModel model, IExtensible instance, int tag, DataFormat format, object value)
{
bool flag = instance == null;
if (flag)
{
throw new ArgumentNullException("instance");
}
bool flag2 = value == null;
if (flag2)
{
throw new ArgumentNullException("value");
}
IExtension extensionObject = instance.GetExtensionObject(true);
bool flag3 = extensionObject == null;
if (flag3)
{
throw new InvalidOperationException("No extension object available; appended data would be lost.");
}
bool commit = false;
Stream stream = extensionObject.BeginAppend();
try
{
using (ProtoWriter protoWriter = new ProtoWriter(stream, model, null))
{
model.TrySerializeAuxiliaryType(protoWriter, null, format, tag, value, false);
protoWriter.Close();
}
commit = true;
}
finally
{
extensionObject.EndAppend(stream, commit);
}
}
}
}
|