FieldCodec.cs 32.5 KB
Newer Older
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
#region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2015 Google Inc.  All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//     * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endregion
32

33
using Google.Protobuf.Collections;
34
using Google.Protobuf.Compatibility;
35
using Google.Protobuf.WellKnownTypes;
36
using System;
Jon Skeet's avatar
Jon Skeet committed
37 38 39 40 41 42 43 44 45
using System.Collections.Generic;

namespace Google.Protobuf
{
    /// <summary>
    /// Factory methods for <see cref="FieldCodec{T}"/>.
    /// </summary>
    public static class FieldCodec
    {
46
        // TODO: Avoid the "dual hit" of lambda expressions: create open delegates instead. (At least test...)
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
        /// <summary>
        /// Retrieves a codec suitable for a string field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<string> ForString(uint tag)
        {
            return FieldCodec.ForString(tag, "");
        }

        /// <summary>
        /// Retrieves a codec suitable for a bytes field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<ByteString> ForBytes(uint tag)
        {
            return FieldCodec.ForBytes(tag, ByteString.Empty);
        }

        /// <summary>
        /// Retrieves a codec suitable for a bool field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<bool> ForBool(uint tag)
        {
            return FieldCodec.ForBool(tag, false);
        }

        /// <summary>
        /// Retrieves a codec suitable for an int32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<int> ForInt32(uint tag)
        {
            return FieldCodec.ForInt32(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for an sint32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<int> ForSInt32(uint tag)
        {
            return FieldCodec.ForSInt32(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for a fixed32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<uint> ForFixed32(uint tag)
        {
            return FieldCodec.ForFixed32(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for an sfixed32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<int> ForSFixed32(uint tag)
        {
            return FieldCodec.ForSFixed32(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for a uint32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<uint> ForUInt32(uint tag)
        {
            return FieldCodec.ForUInt32(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for an int64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<long> ForInt64(uint tag)
        {
            return FieldCodec.ForInt64(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for an sint64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<long> ForSInt64(uint tag)
        {
            return FieldCodec.ForSInt64(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for a fixed64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<ulong> ForFixed64(uint tag)
        {
            return FieldCodec.ForFixed64(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for an sfixed64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<long> ForSFixed64(uint tag)
        {
            return FieldCodec.ForSFixed64(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for a uint64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<ulong> ForUInt64(uint tag)
        {
            return FieldCodec.ForUInt64(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for a float field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<float> ForFloat(uint tag)
        {
            return FieldCodec.ForFloat(tag, 0);
        }

        /// <summary>
        /// Retrieves a codec suitable for a double field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<double> ForDouble(uint tag)
        {
            return FieldCodec.ForDouble(tag, 0);
        }

        // Enums are tricky. We can probably use expression trees to build these delegates automatically,
        // but it's easy to generate the code for it.

        /// <summary>
        /// Retrieves a codec suitable for an enum field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <param name="toInt32">A conversion function from <see cref="Int32"/> to the enum type.</param>
        /// <param name="fromInt32">A conversion function from the enum type to <see cref="Int32"/>.</param>
        /// <returns>A codec for the given tag.</returns>
        public static FieldCodec<T> ForEnum<T>(uint tag, Func<T, int> toInt32, Func<int, T> fromInt32)
        {
            return FieldCodec.ForEnum(tag, toInt32, fromInt32, default(T));
        }

213 214 215 216
        /// <summary>
        /// Retrieves a codec suitable for a string field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
217
        /// <param name="defaultValue">The default value.</param>
218
        /// <returns>A codec for the given tag.</returns>
219
        public static FieldCodec<string> ForString(uint tag, string defaultValue)
Jon Skeet's avatar
Jon Skeet committed
220
        {
221
            return new FieldCodec<string>(input => input.ReadString(), (output, value) => output.WriteString(value), CodedOutputStream.ComputeStringSize, tag);
Jon Skeet's avatar
Jon Skeet committed
222 223
        }

224 225 226 227
        /// <summary>
        /// Retrieves a codec suitable for a bytes field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
228
        /// <param name="defaultValue">The default value.</param>
229
        /// <returns>A codec for the given tag.</returns>
230
        public static FieldCodec<ByteString> ForBytes(uint tag, ByteString defaultValue)
Jon Skeet's avatar
Jon Skeet committed
231 232 233 234
        {
            return new FieldCodec<ByteString>(input => input.ReadBytes(), (output, value) => output.WriteBytes(value), CodedOutputStream.ComputeBytesSize, tag);
        }

235 236 237 238
        /// <summary>
        /// Retrieves a codec suitable for a bool field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
239
        /// <param name="defaultValue">The default value.</param>
240
        /// <returns>A codec for the given tag.</returns>
241
        public static FieldCodec<bool> ForBool(uint tag, bool defaultValue)
Jon Skeet's avatar
Jon Skeet committed
242
        {
243
            return new FieldCodec<bool>(input => input.ReadBool(), (output, value) => output.WriteBool(value), CodedOutputStream.BoolSize, tag);
Jon Skeet's avatar
Jon Skeet committed
244 245
        }

246 247 248 249
        /// <summary>
        /// Retrieves a codec suitable for an int32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
250
        /// <param name="defaultValue">The default value.</param>
251
        /// <returns>A codec for the given tag.</returns>
252
        public static FieldCodec<int> ForInt32(uint tag, int defaultValue)
Jon Skeet's avatar
Jon Skeet committed
253 254 255 256
        {
            return new FieldCodec<int>(input => input.ReadInt32(), (output, value) => output.WriteInt32(value), CodedOutputStream.ComputeInt32Size, tag);
        }

257 258 259 260
        /// <summary>
        /// Retrieves a codec suitable for an sint32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
261
        /// <param name="defaultValue">The default value.</param>
262
        /// <returns>A codec for the given tag.</returns>
263
        public static FieldCodec<int> ForSInt32(uint tag, int defaultValue)
Jon Skeet's avatar
Jon Skeet committed
264 265 266 267
        {
            return new FieldCodec<int>(input => input.ReadSInt32(), (output, value) => output.WriteSInt32(value), CodedOutputStream.ComputeSInt32Size, tag);
        }

268 269 270 271
        /// <summary>
        /// Retrieves a codec suitable for a fixed32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
272
        /// <param name="defaultValue">The default value.</param>
273
        /// <returns>A codec for the given tag.</returns>
274
        public static FieldCodec<uint> ForFixed32(uint tag, uint defaultValue)
Jon Skeet's avatar
Jon Skeet committed
275
        {
276
            return new FieldCodec<uint>(input => input.ReadFixed32(), (output, value) => output.WriteFixed32(value), 4, tag);
Jon Skeet's avatar
Jon Skeet committed
277 278
        }

279 280 281 282
        /// <summary>
        /// Retrieves a codec suitable for an sfixed32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
283
        /// <param name="defaultValue">The default value.</param>
284
        /// <returns>A codec for the given tag.</returns>
285
        public static FieldCodec<int> ForSFixed32(uint tag, int defaultValue)
286
        {
287
            return new FieldCodec<int>(input => input.ReadSFixed32(), (output, value) => output.WriteSFixed32(value), 4, tag);
288 289
        }

290 291 292 293
        /// <summary>
        /// Retrieves a codec suitable for a uint32 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
294
        /// <param name="defaultValue">The default value.</param>
295
        /// <returns>A codec for the given tag.</returns>
296
        public static FieldCodec<uint> ForUInt32(uint tag, uint defaultValue)
Jon Skeet's avatar
Jon Skeet committed
297 298 299 300
        {
            return new FieldCodec<uint>(input => input.ReadUInt32(), (output, value) => output.WriteUInt32(value), CodedOutputStream.ComputeUInt32Size, tag);
        }

301 302 303 304
        /// <summary>
        /// Retrieves a codec suitable for an int64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
305
        /// <param name="defaultValue">The default value.</param>
306
        /// <returns>A codec for the given tag.</returns>
307
        public static FieldCodec<long> ForInt64(uint tag, long defaultValue)
Jon Skeet's avatar
Jon Skeet committed
308 309 310 311
        {
            return new FieldCodec<long>(input => input.ReadInt64(), (output, value) => output.WriteInt64(value), CodedOutputStream.ComputeInt64Size, tag);
        }

312 313 314 315
        /// <summary>
        /// Retrieves a codec suitable for an sint64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
316
        /// <param name="defaultValue">The default value.</param>
317
        /// <returns>A codec for the given tag.</returns>
318
        public static FieldCodec<long> ForSInt64(uint tag, long defaultValue)
Jon Skeet's avatar
Jon Skeet committed
319 320 321 322
        {
            return new FieldCodec<long>(input => input.ReadSInt64(), (output, value) => output.WriteSInt64(value), CodedOutputStream.ComputeSInt64Size, tag);
        }

323 324 325 326
        /// <summary>
        /// Retrieves a codec suitable for a fixed64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
327
        /// <param name="defaultValue">The default value.</param>
328
        /// <returns>A codec for the given tag.</returns>
329
        public static FieldCodec<ulong> ForFixed64(uint tag, ulong defaultValue)
Jon Skeet's avatar
Jon Skeet committed
330
        {
331
            return new FieldCodec<ulong>(input => input.ReadFixed64(), (output, value) => output.WriteFixed64(value), 8, tag);
Jon Skeet's avatar
Jon Skeet committed
332 333
        }

334 335 336 337
        /// <summary>
        /// Retrieves a codec suitable for an sfixed64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
338
        /// <param name="defaultValue">The default value.</param>
339
        /// <returns>A codec for the given tag.</returns>
340
        public static FieldCodec<long> ForSFixed64(uint tag, long defaultValue)
341
        {
342
            return new FieldCodec<long>(input => input.ReadSFixed64(), (output, value) => output.WriteSFixed64(value), 8, tag);
343 344
        }

345 346 347 348
        /// <summary>
        /// Retrieves a codec suitable for a uint64 field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
349
        /// <param name="defaultValue">The default value.</param>
350
        /// <returns>A codec for the given tag.</returns>
351
        public static FieldCodec<ulong> ForUInt64(uint tag, ulong defaultValue)
Jon Skeet's avatar
Jon Skeet committed
352 353 354 355
        {
            return new FieldCodec<ulong>(input => input.ReadUInt64(), (output, value) => output.WriteUInt64(value), CodedOutputStream.ComputeUInt64Size, tag);
        }

356 357 358 359
        /// <summary>
        /// Retrieves a codec suitable for a float field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
360
        /// <param name="defaultValue">The default value.</param>
361
        /// <returns>A codec for the given tag.</returns>
362
        public static FieldCodec<float> ForFloat(uint tag, float defaultValue)
Jon Skeet's avatar
Jon Skeet committed
363
        {
364
            return new FieldCodec<float>(input => input.ReadFloat(), (output, value) => output.WriteFloat(value), CodedOutputStream.FloatSize, tag);
Jon Skeet's avatar
Jon Skeet committed
365 366
        }

367 368 369 370
        /// <summary>
        /// Retrieves a codec suitable for a double field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
371
        /// <param name="defaultValue">The default value.</param>
372
        /// <returns>A codec for the given tag.</returns>
373
        public static FieldCodec<double> ForDouble(uint tag, double defaultValue)
Jon Skeet's avatar
Jon Skeet committed
374
        {
375
            return new FieldCodec<double>(input => input.ReadDouble(), (output, value) => output.WriteDouble(value), CodedOutputStream.DoubleSize, tag);
Jon Skeet's avatar
Jon Skeet committed
376 377 378
        }

        // Enums are tricky. We can probably use expression trees to build these delegates automatically,
379
        // but it's easy to generate the code for it.
380 381 382 383 384 385 386

        /// <summary>
        /// Retrieves a codec suitable for an enum field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <param name="toInt32">A conversion function from <see cref="Int32"/> to the enum type.</param>
        /// <param name="fromInt32">A conversion function from the enum type to <see cref="Int32"/>.</param>
387
        /// <param name="defaultValue">The default value.</param>
388
        /// <returns>A codec for the given tag.</returns>
389
        public static FieldCodec<T> ForEnum<T>(uint tag, Func<T, int> toInt32, Func<int, T> fromInt32, T defaultValue)
Jon Skeet's avatar
Jon Skeet committed
390 391 392 393 394 395 396
        {
            return new FieldCodec<T>(input => fromInt32(
                input.ReadEnum()),
                (output, value) => output.WriteEnum(toInt32(value)),
                value => CodedOutputStream.ComputeEnumSize(toInt32(value)), tag);
        }

397 398 399 400 401 402
        /// <summary>
        /// Retrieves a codec suitable for a message field with the given tag.
        /// </summary>
        /// <param name="tag">The tag.</param>
        /// <param name="parser">A parser to use for the message type.</param>
        /// <returns>A codec for the given tag.</returns>
403
        public static FieldCodec<T> ForMessage<T>(uint tag, MessageParser<T> parser) where T : class, IMessage<T>
Jon Skeet's avatar
Jon Skeet committed
404 405
        {
            return new FieldCodec<T>(input => { T message = parser.CreateTemplate(); input.ReadMessage(message); return message; },
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
                (output, value) => output.WriteMessage(value), (CodedInputStream i, ref T v) => 
                {
                    if (v == null)
                    {
                        v = parser.CreateTemplate();
                    }

                    i.ReadMessage(v);
                },
                (ref T v, T v2) =>
                {
                    if (v2 == null)
                    {
                        return false;
                    }
                    else if (v == null)
                    {
                        v = v2.Clone();
                    }
                    else
                    {
                        v.MergeFrom(v2);
                    }
                    return true;
                }, message => CodedOutputStream.ComputeMessageSize(message), tag);
Jon Skeet's avatar
Jon Skeet committed
431
        }
432

433 434 435 436 437 438 439
        /// <summary>
        /// Retrieves a codec suitable for a group field with the given tag.
        /// </summary>
        /// <param name="startTag">The start group tag.</param>
        /// <param name="endTag">The end group tag.</param>
        /// <param name="parser">A parser to use for the group message type.</param>
        /// <returns>A codec for given tag</returns>
440
        public static FieldCodec<T> ForGroup<T>(uint startTag, uint endTag, MessageParser<T> parser) where T : class, IMessage<T>
441 442
        {
            return new FieldCodec<T>(input => { T message = parser.CreateTemplate(); input.ReadGroup(message); return message; },
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
                (output, value) => output.WriteGroup(value), (CodedInputStream i, ref T v) => {
                    if (v == null)
                    {
                        v = parser.CreateTemplate();
                    }

                    i.ReadGroup(v);
                },
                (ref T v, T v2) =>
                {
                    if (v2 == null)
                    {
                        return v == null;
                    }
                    else if (v == null)
                    {
                        v = v2.Clone();
                    }
                    else
                    {
                        v.MergeFrom(v2);
                    }
                    return true;
                }, message => CodedOutputStream.ComputeGroupSize(message), startTag, endTag);
467 468
        }

469 470 471 472 473 474 475 476 477
        /// <summary>
        /// Creates a codec for a wrapper type of a class - which must be string or ByteString.
        /// </summary>
        public static FieldCodec<T> ForClassWrapper<T>(uint tag) where T : class
        {
            var nestedCodec = WrapperCodecs.GetCodec<T>();
            return new FieldCodec<T>(
                input => WrapperCodecs.Read<T>(input, nestedCodec),
                (output, value) => WrapperCodecs.Write<T>(output, value, nestedCodec),
478 479
                (CodedInputStream i, ref T v) => v = WrapperCodecs.Read<T>(i, nestedCodec),
                (ref T v, T v2) => { v = v2; return v == null; },
480
                value => WrapperCodecs.CalculateSize<T>(value, nestedCodec),
481
                tag, 0,
482 483 484 485 486 487 488 489 490 491 492 493 494
                null); // Default value for the wrapper
        }

        /// <summary>
        /// Creates a codec for a wrapper type of a struct - which must be Int32, Int64, UInt32, UInt64,
        /// Bool, Single or Double.
        /// </summary>
        public static FieldCodec<T?> ForStructWrapper<T>(uint tag) where T : struct
        {
            var nestedCodec = WrapperCodecs.GetCodec<T>();
            return new FieldCodec<T?>(
                input => WrapperCodecs.Read<T>(input, nestedCodec),
                (output, value) => WrapperCodecs.Write<T>(output, value.Value, nestedCodec),
495 496
                (CodedInputStream i, ref T? v) => v = WrapperCodecs.Read<T>(i, nestedCodec),
                (ref T? v, T? v2) => { if (v2.HasValue) { v = v2; } return v.HasValue; },
497
                value => value == null ? 0 : WrapperCodecs.CalculateSize<T>(value.Value, nestedCodec),
498
                tag, 0,
499 500 501
                null); // Default value for the wrapper
        }

Jon Skeet's avatar
Jon Skeet committed
502 503 504 505 506 507 508 509
        /// <summary>
        /// Helper code to create codecs for wrapper types.
        /// </summary>
        /// <remarks>
        /// Somewhat ugly with all the static methods, but the conversions involved to/from nullable types make it
        /// slightly tricky to improve. So long as we keep the public API (ForClassWrapper, ForStructWrapper) in place,
        /// we can refactor later if we come up with something cleaner.
        /// </remarks>
510 511
        private static class WrapperCodecs
        {
512
            private static readonly Dictionary<System.Type, object> Codecs = new Dictionary<System.Type, object>
513
            {
514 515 516 517 518 519 520 521 522
                { typeof(bool), ForBool(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.Varint)) },
                { typeof(int), ForInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.Varint)) },
                { typeof(long), ForInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.Varint)) },
                { typeof(uint), ForUInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.Varint)) },
                { typeof(ulong), ForUInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.Varint)) },
                { typeof(float), ForFloat(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.Fixed32)) },
                { typeof(double), ForDouble(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.Fixed64)) },
                { typeof(string), ForString(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.LengthDelimited)) },
                { typeof(ByteString), ForBytes(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.LengthDelimited)) }
523 524 525 526
            };

            /// <summary>
            /// Returns a field codec which effectively wraps a value of type T in a message.
527
            ///
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
            /// </summary>
            internal static FieldCodec<T> GetCodec<T>()
            {
                object value;
                if (!Codecs.TryGetValue(typeof(T), out value))
                {
                    throw new InvalidOperationException("Invalid type argument requested for wrapper codec: " + typeof(T));
                }
                return (FieldCodec<T>) value;
            }

            internal static T Read<T>(CodedInputStream input, FieldCodec<T> codec)
            {
                int length = input.ReadLength();
                int oldLimit = input.PushLimit(length);

                uint tag;
                T value = codec.DefaultValue;
546
                while ((tag = input.ReadTag()) != 0)
547 548 549 550 551
                {
                    if (tag == codec.Tag)
                    {
                        value = codec.Read(input);
                    }
Jon Skeet's avatar
Jon Skeet committed
552
                    else
553
                    {
Jon Skeet's avatar
Jon Skeet committed
554
                        input.SkipLastField();
555
                    }
Jon Skeet's avatar
Jon Skeet committed
556

557
                }
Jon Skeet's avatar
Jon Skeet committed
558
                input.CheckReadEndOfStreamTag();
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
                input.PopLimit(oldLimit);

                return value;
            }

            internal static void Write<T>(CodedOutputStream output, T value, FieldCodec<T> codec)
            {
                output.WriteLength(codec.CalculateSizeWithTag(value));
                codec.WriteTagAndValue(output, value);
            }

            internal  static int CalculateSize<T>(T value, FieldCodec<T> codec)
            {
                int fieldLength = codec.CalculateSizeWithTag(value);
                return CodedOutputStream.ComputeLengthSize(fieldLength) + fieldLength;
            }
        }
Jon Skeet's avatar
Jon Skeet committed
576 577 578
    }

    /// <summary>
579
    /// <para>
Jon Skeet's avatar
Jon Skeet committed
580 581 582
    /// An encode/decode pair for a single field. This effectively encapsulates
    /// all the information needed to read or write the field value from/to a coded
    /// stream.
583 584 585 586 587
    /// </para>
    /// <para>
    /// This class is public and has to be as it is used by generated code, but its public
    /// API is very limited - just what the generated code needs to call directly.
    /// </para>
Jon Skeet's avatar
Jon Skeet committed
588 589
    /// </summary>
    /// <remarks>
590 591
    /// This never writes default values to the stream, and does not address "packedness"
    /// in repeated fields itself, other than to know whether or not the field *should* be packed.
Jon Skeet's avatar
Jon Skeet committed
592 593 594
    /// </remarks>
    public sealed class FieldCodec<T>
    {
595
        private static readonly EqualityComparer<T> EqualityComparer = ProtobufEqualityComparers.GetEqualityComparer<T>();
596
        private static readonly T DefaultDefault;
597 598
        // Only non-nullable value types support packing. This is the simplest way of detecting that.
        private static readonly bool TypeSupportsPacking = default(T) != null;
Jon Skeet's avatar
Jon Skeet committed
599

600 601 602 603 604 605 606 607 608 609
        /// <summary>
        /// Merges an input stream into a value
        /// </summary>
        internal delegate void InputMerger(CodedInputStream input, ref T value);

        /// <summary>
        /// Merges a value into a reference to another value, returning a boolean if the value was set
        /// </summary>
        internal delegate bool ValuesMerger(ref T value, T other);

Jon Skeet's avatar
Jon Skeet committed
610 611 612 613
        static FieldCodec()
        {
            if (typeof(T) == typeof(string))
            {
614
                DefaultDefault = (T)(object)"";
Jon Skeet's avatar
Jon Skeet committed
615 616 617
            }
            else if (typeof(T) == typeof(ByteString))
            {
618
                DefaultDefault = (T)(object)ByteString.Empty;
Jon Skeet's avatar
Jon Skeet committed
619
            }
620
            // Otherwise it's the default value of the CLR type
Jon Skeet's avatar
Jon Skeet committed
621 622
        }

623 624
        internal static bool IsPackedRepeatedField(uint tag) =>
            TypeSupportsPacking && WireFormat.GetTagWireType(tag) == WireFormat.WireType.LengthDelimited;
Jon Skeet's avatar
Jon Skeet committed
625

626
        internal bool PackedRepeatedField { get; }
627 628

        /// <summary>
629
        /// Returns a delegate to write a value (unconditionally) to a coded output stream.
630
        /// </summary>
631
        internal Action<CodedOutputStream, T> ValueWriter { get; }
632 633

        /// <summary>
634
        /// Returns the size calculator for just a value.
635
        /// </summary>
636
        internal Func<T, int> ValueSizeCalculator { get; }
637 638 639 640 641

        /// <summary>
        /// Returns a delegate to read a value from a coded input stream. It is assumed that
        /// the stream is already positioned on the appropriate tag.
        /// </summary>
642
        internal Func<CodedInputStream, T> ValueReader { get; }
643

644 645 646 647 648 649 650 651 652 653 654
        /// <summary>
        /// Returns a delegate to merge a value from a coded input stream.
        /// It is assumed that the stream is already positioned on the appropriate tag
        /// </summary>
        internal InputMerger ValueMerger { get; }

        /// <summary>
        /// Returns a delegate to merge two values together.
        /// </summary>
        internal ValuesMerger FieldMerger { get; }

655 656 657
        /// <summary>
        /// Returns the fixed size for an entry, or 0 if sizes vary.
        /// </summary>
658
        internal int FixedSize { get; }
659

660 661 662 663 664 665
        /// <summary>
        /// Gets the tag of the codec.
        /// </summary>
        /// <value>
        /// The tag of the codec.
        /// </value>
666
        internal uint Tag { get; }
Jon Skeet's avatar
Jon Skeet committed
667

668 669 670 671 672 673 674 675
        /// <summary>
        /// Gets the end tag of the codec or 0 if there is no end tag
        /// </summary>
        /// <value>
        /// The end tag of the codec.
        /// </value>
        internal uint EndTag { get; }

676
        /// <summary>
677 678 679
        /// Default value for this codec. Usually the same for every instance of the same type, but
        /// for string/ByteString wrapper fields the codec's default value is null, whereas for
        /// other string/ByteString fields it's "" or ByteString.Empty.
680 681 682 683
        /// </summary>
        /// <value>
        /// The default value of the codec's type.
        /// </value>
684 685 686
        internal T DefaultValue { get; }

        private readonly int tagSize;
687

688 689 690 691 692 693 694 695 696 697 698 699 700
        internal FieldCodec(
                Func<CodedInputStream, T> reader,
                Action<CodedOutputStream, T> writer,
                int fixedSize,
                uint tag) : this(reader, writer, _ => fixedSize, tag)
        {
            FixedSize = fixedSize;
        }

        internal FieldCodec(
            Func<CodedInputStream, T> reader,
            Action<CodedOutputStream, T> writer,
            Func<T, int> sizeCalculator,
701
            uint tag,
702 703 704 705 706 707 708 709 710 711 712 713
            uint endTag = 0) : this(reader, writer, (CodedInputStream i, ref T v) => v = reader(i), (ref T v, T v2) => { v = v2; return true; }, sizeCalculator, tag, endTag, DefaultDefault)
        {
        }

        internal FieldCodec(
            Func<CodedInputStream, T> reader,
            Action<CodedOutputStream, T> writer,
            InputMerger inputMerger,
            ValuesMerger valuesMerger,
            Func<T, int> sizeCalculator,
            uint tag,
            uint endTag = 0) : this(reader, writer, inputMerger, valuesMerger, sizeCalculator, tag, endTag, DefaultDefault)
714 715 716 717 718 719
        {
        }

        internal FieldCodec(
            Func<CodedInputStream, T> reader,
            Action<CodedOutputStream, T> writer,
720 721
            InputMerger inputMerger,
            ValuesMerger valuesMerger,
722 723
            Func<T, int> sizeCalculator,
            uint tag,
724
            uint endTag,
725 726 727 728
            T defaultValue)
        {
            ValueReader = reader;
            ValueWriter = writer;
729 730
            ValueMerger = inputMerger;
            FieldMerger = valuesMerger;
731 732 733 734 735
            ValueSizeCalculator = sizeCalculator;
            FixedSize = 0;
            Tag = tag;
            DefaultValue = defaultValue;
            tagSize = CodedOutputStream.ComputeRawVarint32Size(tag);
736 737
            if (endTag != 0)
                tagSize += CodedOutputStream.ComputeRawVarint32Size(endTag);
738 739 740
            // Detect packed-ness once, so we can check for it within RepeatedField<T>.
            PackedRepeatedField = IsPackedRepeatedField(tag);
        }
Jon Skeet's avatar
Jon Skeet committed
741

742 743 744 745
        /// <summary>
        /// Write a tag and the given value, *if* the value is not the default.
        /// </summary>
        public void WriteTagAndValue(CodedOutputStream output, T value)
Jon Skeet's avatar
Jon Skeet committed
746 747 748
        {
            if (!IsDefault(value))
            {
749 750
                output.WriteTag(Tag);
                ValueWriter(output, value);
751 752 753 754
                if (EndTag != 0)
                {
                    output.WriteTag(EndTag);
                }
Jon Skeet's avatar
Jon Skeet committed
755 756 757
            }
        }

758 759 760 761 762
        /// <summary>
        /// Reads a value of the codec type from the given <see cref="CodedInputStream"/>.
        /// </summary>
        /// <param name="input">The input stream to read from.</param>
        /// <returns>The value read from the stream.</returns>
763
        public T Read(CodedInputStream input) => ValueReader(input);
Jon Skeet's avatar
Jon Skeet committed
764

765 766 767 768
        /// <summary>
        /// Calculates the size required to write the given value, with a tag,
        /// if the value is not the default.
        /// </summary>
769
        public int CalculateSizeWithTag(T value) => IsDefault(value) ? 0 : ValueSizeCalculator(value) + tagSize;
770

771
        private bool IsDefault(T value) => EqualityComparer.Equals(value, DefaultValue);
Jon Skeet's avatar
Jon Skeet committed
772 773
    }
}