1 | #region Copyright notice and license
|
---|
2 |
|
---|
3 | // Protocol Buffers - Google's data interchange format
|
---|
4 | // Copyright 2008 Google Inc. All rights reserved.
|
---|
5 | // http://github.com/jskeet/dotnet-protobufs/
|
---|
6 | // Original C++/Java/Python code:
|
---|
7 | // http://code.google.com/p/protobuf/
|
---|
8 | //
|
---|
9 | // Redistribution and use in source and binary forms, with or without
|
---|
10 | // modification, are permitted provided that the following conditions are
|
---|
11 | // met:
|
---|
12 | //
|
---|
13 | // * Redistributions of source code must retain the above copyright
|
---|
14 | // notice, this list of conditions and the following disclaimer.
|
---|
15 | // * Redistributions in binary form must reproduce the above
|
---|
16 | // copyright notice, this list of conditions and the following disclaimer
|
---|
17 | // in the documentation and/or other materials provided with the
|
---|
18 | // distribution.
|
---|
19 | // * Neither the name of Google Inc. nor the names of its
|
---|
20 | // contributors may be used to endorse or promote products derived from
|
---|
21 | // this software without specific prior written permission.
|
---|
22 | //
|
---|
23 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
24 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
25 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
26 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
---|
27 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
---|
28 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
---|
29 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
30 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
31 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
32 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
---|
33 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
34 |
|
---|
35 | #endregion
|
---|
36 |
|
---|
37 | using System;
|
---|
38 | using System.Collections.Generic;
|
---|
39 | using Google.ProtocolBuffers.Descriptors;
|
---|
40 |
|
---|
41 | namespace Google.ProtocolBuffers.ProtoGen
|
---|
42 | {
|
---|
43 | public delegate TResult Func<T, TResult>(T arg);
|
---|
44 |
|
---|
45 | internal static class SourceGenerators
|
---|
46 | {
|
---|
47 | private static readonly Dictionary<Type, Func<IDescriptor, ISourceGenerator>> GeneratorFactories =
|
---|
48 | new Dictionary<Type, Func<IDescriptor, ISourceGenerator>>
|
---|
49 | {
|
---|
50 | {typeof (FileDescriptor), descriptor => new UmbrellaClassGenerator((FileDescriptor) descriptor)},
|
---|
51 | {typeof (EnumDescriptor), descriptor => new EnumGenerator((EnumDescriptor) descriptor)},
|
---|
52 | {typeof (ServiceDescriptor), descriptor => new ServiceGenerator((ServiceDescriptor) descriptor)},
|
---|
53 | {typeof (MessageDescriptor), descriptor => new MessageGenerator((MessageDescriptor) descriptor)},
|
---|
54 | // For other fields, we have IFieldSourceGenerators.
|
---|
55 | {typeof (FieldDescriptor), descriptor => new ExtensionGenerator((FieldDescriptor) descriptor)}
|
---|
56 | };
|
---|
57 |
|
---|
58 | public static IFieldSourceGenerator CreateFieldGenerator(FieldDescriptor field, int fieldOrdinal)
|
---|
59 | {
|
---|
60 | switch (field.MappedType)
|
---|
61 | {
|
---|
62 | case MappedType.Message:
|
---|
63 | return field.IsRepeated
|
---|
64 | ? (IFieldSourceGenerator) new RepeatedMessageFieldGenerator(field, fieldOrdinal)
|
---|
65 | : new MessageFieldGenerator(field, fieldOrdinal);
|
---|
66 | case MappedType.Enum:
|
---|
67 | return field.IsRepeated
|
---|
68 | ? (IFieldSourceGenerator) new RepeatedEnumFieldGenerator(field, fieldOrdinal)
|
---|
69 | : new EnumFieldGenerator(field, fieldOrdinal);
|
---|
70 | default:
|
---|
71 | return field.IsRepeated
|
---|
72 | ? (IFieldSourceGenerator) new RepeatedPrimitiveFieldGenerator(field, fieldOrdinal)
|
---|
73 | : new PrimitiveFieldGenerator(field, fieldOrdinal);
|
---|
74 | }
|
---|
75 | }
|
---|
76 |
|
---|
77 | public static ISourceGenerator CreateGenerator<T>(T descriptor) where T : IDescriptor
|
---|
78 | {
|
---|
79 | Func<IDescriptor, ISourceGenerator> factory;
|
---|
80 | if (!GeneratorFactories.TryGetValue(typeof (T), out factory))
|
---|
81 | {
|
---|
82 | throw new ArgumentException("No generator registered for " + typeof (T).Name);
|
---|
83 | }
|
---|
84 | return factory(descriptor);
|
---|
85 | }
|
---|
86 | }
|
---|
87 | } |
---|