1 | // Protocol Buffers - Google's data interchange format
|
---|
2 | // Copyright 2008 Google Inc. All rights reserved.
|
---|
3 | // http://github.com/jskeet/dotnet-protobufs/
|
---|
4 | // Original C++/Java/Python code:
|
---|
5 | // http://code.google.com/p/protobuf/
|
---|
6 | //
|
---|
7 | // Redistribution and use in source and binary forms, with or without
|
---|
8 | // modification, are permitted provided that the following conditions are
|
---|
9 | // met:
|
---|
10 | //
|
---|
11 | // * Redistributions of source code must retain the above copyright
|
---|
12 | // notice, this list of conditions and the following disclaimer.
|
---|
13 | // * Redistributions in binary form must reproduce the above
|
---|
14 | // copyright notice, this list of conditions and the following disclaimer
|
---|
15 | // in the documentation and/or other materials provided with the
|
---|
16 | // distribution.
|
---|
17 | // * Neither the name of Google Inc. nor the names of its
|
---|
18 | // contributors may be used to endorse or promote products derived from
|
---|
19 | // this software without specific prior written permission.
|
---|
20 | //
|
---|
21 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
22 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
23 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
24 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
---|
25 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
---|
26 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
---|
27 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
28 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
29 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
30 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
---|
31 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
32 | using System;
|
---|
33 | using System.Collections.Generic;
|
---|
34 | using System.Reflection;
|
---|
35 | using Google.ProtocolBuffers.Collections;
|
---|
36 |
|
---|
37 | namespace Google.ProtocolBuffers.Descriptors
|
---|
38 | {
|
---|
39 | /// <summary>
|
---|
40 | /// Defined specifically for the <see cref="FieldType" /> enumeration,
|
---|
41 | /// this allows each field type to specify the mapped type and wire type.
|
---|
42 | /// </summary>
|
---|
43 | [CLSCompliant(false)]
|
---|
44 | [AttributeUsage(AttributeTargets.Field)]
|
---|
45 | public sealed class FieldMappingAttribute : Attribute
|
---|
46 | {
|
---|
47 | public FieldMappingAttribute(MappedType mappedType, WireFormat.WireType wireType)
|
---|
48 | {
|
---|
49 | MappedType = mappedType;
|
---|
50 | WireType = wireType;
|
---|
51 | }
|
---|
52 |
|
---|
53 | public MappedType MappedType { get; private set; }
|
---|
54 | public WireFormat.WireType WireType { get; private set; }
|
---|
55 |
|
---|
56 |
|
---|
57 | /// <summary>
|
---|
58 | /// Immutable mapping from field type to mapped type. Built using the attributes on
|
---|
59 | /// FieldType values.
|
---|
60 | /// </summary>
|
---|
61 | private static readonly IDictionary<FieldType, FieldMappingAttribute> FieldTypeToMappedTypeMap = MapFieldTypes();
|
---|
62 |
|
---|
63 | private static IDictionary<FieldType, FieldMappingAttribute> MapFieldTypes()
|
---|
64 | {
|
---|
65 | var map = new Dictionary<FieldType, FieldMappingAttribute>();
|
---|
66 | foreach (FieldInfo field in typeof (FieldType).GetFields(BindingFlags.Static | BindingFlags.Public))
|
---|
67 | {
|
---|
68 | FieldType fieldType = (FieldType) field.GetValue(null);
|
---|
69 | FieldMappingAttribute mapping =
|
---|
70 | (FieldMappingAttribute) field.GetCustomAttributes(typeof (FieldMappingAttribute), false)[0];
|
---|
71 | map[fieldType] = mapping;
|
---|
72 | }
|
---|
73 | return Dictionaries.AsReadOnly(map);
|
---|
74 | }
|
---|
75 |
|
---|
76 | internal static MappedType MappedTypeFromFieldType(FieldType type)
|
---|
77 | {
|
---|
78 | return FieldTypeToMappedTypeMap[type].MappedType;
|
---|
79 | }
|
---|
80 |
|
---|
81 | internal static WireFormat.WireType WireTypeFromFieldType(FieldType type, bool packed)
|
---|
82 | {
|
---|
83 | return packed ? WireFormat.WireType.LengthDelimited : FieldTypeToMappedTypeMap[type].WireType;
|
---|
84 | }
|
---|
85 | }
|
---|
86 | } |
---|