forked from mongodb/mongo-csharp-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInt16Serializer.cs
238 lines (207 loc) · 8.04 KB
/
Int16Serializer.cs
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/* Copyright 2010-present MongoDB Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using MongoDB.Bson.IO;
using MongoDB.Bson.Serialization.Options;
namespace MongoDB.Bson.Serialization.Serializers
{
/// <summary>
/// Represents a serializer for Int16s.
/// </summary>
public sealed class Int16Serializer : StructSerializerBase<short>, IRepresentationConfigurable<Int16Serializer>, IRepresentationConverterConfigurable<Int16Serializer>
{
#region static
private static readonly Int16Serializer __instance = new();
/// <summary>
/// Gets a cached instance of an Int16Serializer;
/// </summary>
public static Int16Serializer Instance => __instance;
#endregion
// private fields
private readonly BsonType _representation;
private readonly RepresentationConverter _converter;
// constructors
/// <summary>
/// Initializes a new instance of the <see cref="Int16Serializer"/> class.
/// </summary>
public Int16Serializer()
: this(BsonType.Int32)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="Int16Serializer"/> class.
/// </summary>
/// <param name="representation">The representation.</param>
public Int16Serializer(BsonType representation)
: this(representation, new RepresentationConverter(false, false))
{
}
/// <summary>
/// Initializes a new instance of the <see cref="Int16Serializer"/> class.
/// </summary>
/// <param name="representation">The representation.</param>
/// <param name="converter">The converter.</param>
public Int16Serializer(BsonType representation, RepresentationConverter converter)
{
switch (representation)
{
case BsonType.Decimal128:
case BsonType.Double:
case BsonType.Int32:
case BsonType.Int64:
case BsonType.String:
break;
default:
var message = string.Format("{0} is not a valid representation for an Int16Serializer.", representation);
throw new ArgumentException(message);
}
_representation = representation;
_converter = converter;
}
// public properties
/// <summary>
/// Gets the converter.
/// </summary>
/// <value>
/// The converter.
/// </value>
public RepresentationConverter Converter
{
get { return _converter; }
}
/// <summary>
/// Gets the representation.
/// </summary>
/// <value>
/// The representation.
/// </value>
public BsonType Representation
{
get { return _representation; }
}
// public methods
/// <summary>
/// Deserializes a value.
/// </summary>
/// <param name="context">The deserialization context.</param>
/// <param name="args">The deserialization args.</param>
/// <returns>A deserialized value.</returns>
public override short Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args)
{
var bsonReader = context.Reader;
var bsonType = bsonReader.GetCurrentBsonType();
switch (bsonType)
{
case BsonType.Decimal128:
return _converter.ToInt16(bsonReader.ReadDecimal128());
case BsonType.Double:
return _converter.ToInt16(bsonReader.ReadDouble());
case BsonType.Int32:
return _converter.ToInt16(bsonReader.ReadInt32());
case BsonType.Int64:
return _converter.ToInt16(bsonReader.ReadInt64());
case BsonType.String:
return JsonConvert.ToInt16(bsonReader.ReadString());
default:
throw CreateCannotDeserializeFromBsonTypeException(bsonType);
}
}
/// <inheritdoc/>
public override bool Equals(object obj)
{
if (object.ReferenceEquals(obj, null)) { return false; }
if (object.ReferenceEquals(this, obj)) { return true; }
return
base.Equals(obj) &&
obj is Int16Serializer other &&
object.Equals(_converter, other._converter) &&
_representation.Equals(other._representation);
}
/// <inheritdoc/>
public override int GetHashCode() => 0;
/// <summary>
/// Serializes a value.
/// </summary>
/// <param name="context">The serialization context.</param>
/// <param name="args">The serialization args.</param>
/// <param name="value">The object.</param>
public override void Serialize(BsonSerializationContext context, BsonSerializationArgs args, short value)
{
var bsonWriter = context.Writer;
switch (_representation)
{
case BsonType.Decimal128:
bsonWriter.WriteDecimal128(_converter.ToDecimal128(value));
break;
case BsonType.Double:
bsonWriter.WriteDouble(_converter.ToDouble(value));
break;
case BsonType.Int32:
bsonWriter.WriteInt32(_converter.ToInt32(value));
break;
case BsonType.Int64:
bsonWriter.WriteInt64(_converter.ToInt64(value));
break;
case BsonType.String:
bsonWriter.WriteString(JsonConvert.ToString(value));
break;
default:
var message = string.Format("'{0}' is not a valid Int16 representation.", _representation);
throw new BsonSerializationException(message);
}
}
/// <summary>
/// Returns a serializer that has been reconfigured with the specified item serializer.
/// </summary>
/// <param name="converter">The converter.</param>
/// <returns>The reconfigured serializer.</returns>
public Int16Serializer WithConverter(RepresentationConverter converter)
{
if (converter == _converter)
{
return this;
}
else
{
return new Int16Serializer(_representation, converter);
}
}
/// <summary>
/// Returns a serializer that has been reconfigured with the specified representation.
/// </summary>
/// <param name="representation">The representation.</param>
/// <returns>The reconfigured serializer.</returns>
public Int16Serializer WithRepresentation(BsonType representation)
{
if (representation == _representation)
{
return this;
}
else
{
return new Int16Serializer(representation, _converter);
}
}
// explicit interface implementations
IBsonSerializer IRepresentationConverterConfigurable.WithConverter(RepresentationConverter converter)
{
return WithConverter(converter);
}
IBsonSerializer IRepresentationConfigurable.WithRepresentation(BsonType representation)
{
return WithRepresentation(representation);
}
}
}