forked from msgpack/msgpack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssemblyBuilderCodeGenerationContext.cs
More file actions
130 lines (119 loc) · 4.41 KB
/
AssemblyBuilderCodeGenerationContext.cs
File metadata and controls
130 lines (119 loc) · 4.41 KB
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
#region -- License Terms --
//
// MessagePack for CLI
//
// Copyright (C) 2010-2017 FUJIWARA, Yusuke
//
// 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.
//
#endregion -- License Terms --
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection.Emit;
using MsgPack.Serialization.AbstractSerializers;
namespace MsgPack.Serialization.EmittingSerializers
{
/// <summary>
/// An <see cref="ISerializerCodeGenerationContext"/> for <see cref="AssemblyBuilderSerializerBuilder"/>.
/// </summary>
internal class AssemblyBuilderCodeGenerationContext : ISerializerCodeGenerationContext
{
private readonly SerializationContext _context;
public SerializationContext SerializationContext
{
get { return this._context; }
}
private readonly SerializationMethodGeneratorManager _generatorManager;
private readonly AssemblyBuilder _assemblyBuilder;
private readonly string _directory;
private readonly string _namespace;
private readonly List<SerializerSpecification> _generatedSerializers;
public AssemblyBuilderCodeGenerationContext( SerializationContext context, AssemblyBuilder assemblyBuilder, SerializerAssemblyGenerationConfiguration configuration )
{
this._context = context;
this._assemblyBuilder = assemblyBuilder;
SerializationMethodGeneratorManager.SetUpAssemblyBuilderAttributes( assemblyBuilder, false );
this._generatorManager = SerializationMethodGeneratorManager.Get( assemblyBuilder );
this._directory = configuration.OutputDirectory;
this._namespace = configuration.Namespace;
this._generatedSerializers = new List<SerializerSpecification>();
}
/// <summary>
/// Create new <see cref="AssemblyBuilderEmittingContext"/> for specified <see cref="Type"/>.
/// </summary>
/// <param name="targetType">The target type of the serializer.</param>
/// <param name="targetTypeCollectionTraits">The collection traits of <paramref name="targetType"/>.</param>
/// <param name="serializerBaseClass">The base class of the serializer.</param>
/// <returns><see cref="AssemblyBuilderEmittingContext"/>.</returns>
public AssemblyBuilderEmittingContext CreateEmittingContext( Type targetType, CollectionTraits targetTypeCollectionTraits, Type serializerBaseClass )
{
string serializerTypeName, serializerTypeNamespace;
DefaultSerializerNameResolver.ResolveTypeName(
this._assemblyBuilder == null,
targetType,
this._namespace,
out serializerTypeName,
out serializerTypeNamespace
);
var spec =
new SerializerSpecification(
targetType,
targetTypeCollectionTraits,
serializerTypeName,
serializerTypeNamespace
);
this._generatedSerializers.Add( spec );
return
new AssemblyBuilderEmittingContext(
this._context,
targetType,
targetType.GetIsEnum()
? new Func<SerializerEmitter>( () => this._generatorManager.CreateEnumEmitter( this._context, spec ) )
: () => this._generatorManager.CreateObjectEmitter( spec, serializerBaseClass )
);
}
/// <summary>
/// Generates codes for this context.
/// </summary>
/// <returns>A <see cref="SerializerCodeGenerationResult"/> collection which correspond to genereated codes.</returns>
public IEnumerable<SerializerCodeGenerationResult> Generate()
{
#if NETSTANDARD2_0
throw new PlatformNotSupportedException( "Assembly generation is not supported in .NET Standard." );
#else
var assemblyFileName = this._assemblyBuilder.GetName().Name + ".dll";
this._assemblyBuilder.Save( assemblyFileName );
var assemblyFilePath =
Path.GetFullPath(
Path.Combine(
this._directory,
assemblyFileName
)
);
return
this._generatedSerializers.Select(
s =>
new SerializerCodeGenerationResult(
s.TargetType,
assemblyFilePath,
s.SerializerTypeFullName,
s.SerializerTypeNamespace,
s.SerializerTypeName
)
);
#endif // NETSTANDARD2_0
}
}
}