jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
#region Apache License
//
// Licensed to the Apache Software Foundation (ASF) under one or more 
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership. 
// The ASF licenses this file to you 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
 
using System;
using System.Globalization;
using System.Reflection;
using System.Collections;
 
namespace log4net.Util.TypeConverters
{
    /// <summary>
    /// Register of type converters for specific types.
    /// </summary>
    /// <remarks>
    /// <para>
    /// Maintains a registry of type converters used to convert between
    /// types.
    /// </para>
    /// <para>
    /// Use the <see cref="AddConverter(Type, object)"/> and 
    /// <see cref="AddConverter(Type, Type)"/> methods to register new converters.
    /// The <see cref="GetConvertTo"/> and <see cref="GetConvertFrom"/> methods
    /// lookup appropriate converters to use.
    /// </para>
    /// </remarks>
    /// <seealso cref="IConvertFrom"/>
    /// <seealso cref="IConvertTo"/>
    /// <author>Nicko Cadell</author>
    /// <author>Gert Driesen</author>
    public sealed class ConverterRegistry
    {
        #region Private Constructors
 
        /// <summary>
        /// Private constructor
        /// </summary>
        /// <remarks>
        /// Initializes a new instance of the <see cref="ConverterRegistry" /> class.
        /// </remarks>
        private ConverterRegistry() 
        {
        }
 
        #endregion Private Constructors
 
        #region Static Constructor
 
        /// <summary>
        /// Static constructor.
        /// </summary>
        /// <remarks>
        /// <para>
        /// This constructor defines the intrinsic type converters.
        /// </para>
        /// </remarks>
        static ConverterRegistry()
        {
            // Add predefined converters here
            AddConverter(typeof(bool), typeof(BooleanConverter));
            AddConverter(typeof(System.Text.Encoding), typeof(EncodingConverter));
            AddConverter(typeof(System.Type), typeof(TypeConverter));
            AddConverter(typeof(log4net.Layout.PatternLayout), typeof(PatternLayoutConverter));
            AddConverter(typeof(log4net.Util.PatternString), typeof(PatternStringConverter));
            AddConverter(typeof(System.Net.IPAddress), typeof(IPAddressConverter));
        }
 
        #endregion Static Constructor
 
        #region Public Static Methods
 
        /// <summary>
        /// Adds a converter for a specific type.
        /// </summary>
        /// <param name="destinationType">The type being converted to.</param>
        /// <param name="converter">The type converter to use to convert to the destination type.</param>
        /// <remarks>
        /// <para>
        /// Adds a converter instance for a specific type.
        /// </para>
        /// </remarks>
        public static void AddConverter(Type destinationType, object converter)
        {
            if (destinationType != null && converter != null)
            {
                lock(s_type2converter)
                {
                    s_type2converter[destinationType] = converter;
                }
            }
        }
 
        /// <summary>
        /// Adds a converter for a specific type.
        /// </summary>
        /// <param name="destinationType">The type being converted to.</param>
        /// <param name="converterType">The type of the type converter to use to convert to the destination type.</param>
        /// <remarks>
        /// <para>
        /// Adds a converter <see cref="Type"/> for a specific type.
        /// </para>
        /// </remarks>
        public static void AddConverter(Type destinationType, Type converterType)
        {
            AddConverter(destinationType, CreateConverterInstance(converterType));
        }
 
        /// <summary>
        /// Gets the type converter to use to convert values to the destination type.
        /// </summary>
        /// <param name="sourceType">The type being converted from.</param>
        /// <param name="destinationType">The type being converted to.</param>
        /// <returns>
        /// The type converter instance to use for type conversions or <c>null</c> 
        /// if no type converter is found.
        /// </returns>
        /// <remarks>
        /// <para>
        /// Gets the type converter to use to convert values to the destination type.
        /// </para>
        /// </remarks>
        public static IConvertTo GetConvertTo(Type sourceType, Type destinationType)
        {
            // TODO: Support inheriting type converters.
            // i.e. getting a type converter for a base of sourceType
 
            // TODO: Is destinationType required? We don't use it for anything.
 
            lock(s_type2converter)
            {
                // Lookup in the static registry
                IConvertTo converter = s_type2converter[sourceType] as IConvertTo;
 
                if (converter == null)
                {
                    // Lookup using attributes
                    converter = GetConverterFromAttribute(sourceType) as IConvertTo;
 
                    if (converter != null)
                    {
                        // Store in registry
                        s_type2converter[sourceType] = converter;
                    }
                }
 
                return converter;
            }
        }
 
        /// <summary>
        /// Gets the type converter to use to convert values to the destination type.
        /// </summary>
        /// <param name="destinationType">The type being converted to.</param>
        /// <returns>
        /// The type converter instance to use for type conversions or <c>null</c> 
        /// if no type converter is found.
        /// </returns>
        /// <remarks>
        /// <para>
        /// Gets the type converter to use to convert values to the destination type.
        /// </para>
        /// </remarks>
        public static IConvertFrom GetConvertFrom(Type destinationType)
        {
            // TODO: Support inheriting type converters.
            // i.e. getting a type converter for a base of destinationType
 
            lock(s_type2converter)
            {
                // Lookup in the static registry
                IConvertFrom converter = s_type2converter[destinationType] as IConvertFrom;
 
                if (converter == null)
                {
                    // Lookup using attributes
                    converter = GetConverterFromAttribute(destinationType) as IConvertFrom;
 
                    if (converter != null)
                    {
                        // Store in registry
                        s_type2converter[destinationType] = converter;
                    }
                }
 
                return converter;
            }
        }
        
        /// <summary>
        /// Lookups the type converter to use as specified by the attributes on the 
        /// destination type.
        /// </summary>
        /// <param name="destinationType">The type being converted to.</param>
        /// <returns>
        /// The type converter instance to use for type conversions or <c>null</c> 
        /// if no type converter is found.
        /// </returns>
        private static object GetConverterFromAttribute(Type destinationType)
        {
            // Look for an attribute on the destination type
            object[] attributes = destinationType.GetCustomAttributes(typeof(TypeConverterAttribute), true);
            if (attributes != null && attributes.Length > 0)
            {
                TypeConverterAttribute tcAttr = attributes[0] as TypeConverterAttribute;
                if (tcAttr != null)
                {
                    Type converterType = SystemInfo.GetTypeFromString(destinationType, tcAttr.ConverterTypeName, false, true);
                    return CreateConverterInstance(converterType);
                }
            }
 
            // Not found converter using attributes
            return null;
        }
 
        /// <summary>
        /// Creates the instance of the type converter.
        /// </summary>
        /// <param name="converterType">The type of the type converter.</param>
        /// <returns>
        /// The type converter instance to use for type conversions or <c>null</c> 
        /// if no type converter is found.
        /// </returns>
        /// <remarks>
        /// <para>
        /// The type specified for the type converter must implement 
        /// the <see cref="IConvertFrom"/> or <see cref="IConvertTo"/> interfaces 
        /// and must have a public default (no argument) constructor.
        /// </para>
        /// </remarks>
        private static object CreateConverterInstance(Type converterType)
        {
            if (converterType == null)
            {
                throw new ArgumentNullException("converterType", "CreateConverterInstance cannot create instance, converterType is null");
            }
 
            // Check type is a converter
            if (typeof(IConvertFrom).IsAssignableFrom(converterType) || typeof(IConvertTo).IsAssignableFrom(converterType))
            {
                try
                {
                    // Create the type converter
                    return Activator.CreateInstance(converterType);
                }
                catch(Exception ex)
                {
                    LogLog.Error(declaringType, "Cannot CreateConverterInstance of type ["+converterType.FullName+"], Exception in call to Activator.CreateInstance", ex);
                }
            }
            else
            {
                LogLog.Error(declaringType, "Cannot CreateConverterInstance of type ["+converterType.FullName+"], type does not implement IConvertFrom or IConvertTo");
            }
            return null;
        }
 
        #endregion Public Static Methods
 
        #region Private Static Fields
 
        /// <summary>
        /// The fully qualified type of the ConverterRegistry class.
        /// </summary>
        /// <remarks>
        /// Used by the internal logger to record the Type of the
        /// log message.
        /// </remarks>
        private readonly static Type declaringType = typeof(ConverterRegistry);
 
        /// <summary>
        /// Mapping from <see cref="Type" /> to type converter.
        /// </summary>
        private static Hashtable s_type2converter = new Hashtable();
 
        #endregion
    }
}