aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/FieldAccess/FieldAccessorTable.cs
blob: c7f5da6d8ffefcabbe51168de99be34b010ea0de (plain) (blame)
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
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc.
// http://code.google.com/p/protobuf/
//
// 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 Google.ProtocolBuffers.Descriptors;

namespace Google.ProtocolBuffers.FieldAccess {
  /// <summary>
  /// Provides access to fields in generated messages via reflection.
  /// This type is public to allow it to be used by generated messages, which
  /// create appropriate instances in the .proto file description class.
  /// TODO(jonskeet): See if we can hide it somewhere...
  /// </summary>
  public sealed class FieldAccessorTable<TMessage, TBuilder>
      where TMessage : IMessage<TMessage, TBuilder>
      where TBuilder : IBuilder<TMessage, TBuilder> {

    readonly IFieldAccessor<TMessage, TBuilder>[] accessors;

    readonly MessageDescriptor descriptor;

    public MessageDescriptor Descriptor { 
      get { return descriptor; }
    }

   /// <summary>
    /// Constructs a FieldAccessorTable for a particular message class.
    /// Only one FieldAccessorTable should be constructed per class.
    /// </summary>
    /// <param name="descriptor">The type's descriptor</param>
    /// <param name="propertyNames">The Pascal-case names of all the field-based properties in the message.</param>
    public FieldAccessorTable(MessageDescriptor descriptor, String[] propertyNames) {
      this.descriptor = descriptor;
      accessors = new IFieldAccessor<TMessage, TBuilder>[descriptor.Fields.Count];
      for (int i=0; i < accessors.Length; i++) {
        accessors[i] = CreateAccessor(descriptor.Fields[i], propertyNames[i]);
      }
    }

     /// <summary>
     /// Creates an accessor for a single field
     /// </summary>   
    private static IFieldAccessor<TMessage, TBuilder> CreateAccessor(FieldDescriptor field, string name) {
      if (field.IsRepeated) {
        switch (field.MappedType) {
          case MappedType.Message: return new RepeatedMessageAccessor<TMessage, TBuilder>(name);
          case MappedType.Enum: return new RepeatedEnumAccessor<TMessage, TBuilder>(field, name);
          default: return new RepeatedPrimitiveAccessor<TMessage, TBuilder>(name);
        }
      } else {
        switch (field.MappedType) {
          case MappedType.Message: return new SingleMessageAccessor<TMessage, TBuilder>(name);
          case MappedType.Enum: return new SingleEnumAccessor<TMessage, TBuilder>(field, name);
          default: return new SinglePrimitiveAccessor<TMessage, TBuilder>(name);
        }
      }
    }

    internal IFieldAccessor<TMessage, TBuilder> this[FieldDescriptor field] {
      get {
        if (field.ContainingType != descriptor) {
          throw new ArgumentException("FieldDescriptor does not match message type.");
        } else if (field.IsExtension) {
          // If this type had extensions, it would subclass ExtendableMessage,
          // which overrides the reflection interface to handle extensions.
          throw new ArgumentException("This type does not have extensions.");
        }
        return accessors[field.Index];
      }
    }
  }
}