-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathLogging.log4net.cs
238 lines (200 loc) · 8.11 KB
/
Logging.log4net.cs
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
using System;
using System.Linq.Expressions;
using System.Reflection;
using NHibernate.Util;
namespace NHibernate
{
#pragma warning disable 618 // ILoggerFactory is obsolete
/// <summary>
/// Reflection based log4net logger factory.
/// </summary>
public class Log4NetLoggerFactory: ILoggerFactory
#pragma warning restore 618
{
private static readonly System.Type LogManagerType = System.Type.GetType("log4net.LogManager, log4net");
private static readonly Func<Assembly, string, object> GetLoggerByNameDelegate;
private static readonly Func<System.Type, object> GetLoggerByTypeDelegate;
static Log4NetLoggerFactory()
{
GetLoggerByNameDelegate = GetGetLoggerByNameMethodCall();
GetLoggerByTypeDelegate = GetGetLoggerMethodCall<System.Type>();
}
#pragma warning disable 618
[Obsolete("Use this as an INHibernateLoggerFactory instead.")]
public IInternalLogger LoggerFor(string keyName)
{
return new Log4NetLogger(GetLoggerByNameDelegate(typeof(Log4NetLoggerFactory).Assembly, keyName));
}
[Obsolete("Use this as an INHibernateLoggerFactory instead.")]
public IInternalLogger LoggerFor(System.Type type)
{
return new Log4NetLogger(GetLoggerByTypeDelegate(type));
}
#pragma warning restore 618
private static Func<TParameter, object> GetGetLoggerMethodCall<TParameter>()
{
var method = LogManagerType.GetMethod("GetLogger", new[] { typeof(TParameter) });
ParameterExpression resultValue;
ParameterExpression keyParam = Expression.Parameter(typeof(TParameter), "key");
MethodCallExpression methodCall = Expression.Call(null, method, resultValue = keyParam);
return Expression.Lambda<Func<TParameter, object>>(methodCall, resultValue).Compile();
}
private static Func<Assembly, string, object> GetGetLoggerByNameMethodCall()
{
var method = LogManagerType.GetMethod("GetLogger", new[] {typeof(Assembly), typeof(string)});
ParameterExpression nameParam = Expression.Parameter(typeof(string), "name");
ParameterExpression repositoryAssemblyParam = Expression.Parameter(typeof(Assembly), "repositoryAssembly");
MethodCallExpression methodCall = Expression.Call(null, method, repositoryAssemblyParam, nameParam);
return Expression.Lambda<Func<Assembly, string, object>>(methodCall, repositoryAssemblyParam, nameParam).Compile();
}
}
#pragma warning disable 618 // IInternalLogger is obsolete, to be removed in a upcoming major version
/// <summary>
/// Reflection based log4net logger.
/// </summary>
public class Log4NetLogger : IInternalLogger
#pragma warning restore 618
{
private static readonly System.Type ILogType = System.Type.GetType("log4net.ILog, log4net");
private static readonly Func<object, bool> IsErrorEnabledDelegate;
private static readonly Func<object, bool> IsFatalEnabledDelegate;
private static readonly Func<object, bool> IsDebugEnabledDelegate;
private static readonly Func<object, bool> IsInfoEnabledDelegate;
private static readonly Func<object, bool> IsWarnEnabledDelegate;
private static readonly Action<object, object> ErrorDelegate;
private static readonly Action<object, object, Exception> ErrorExceptionDelegate;
private static readonly Action<object, string, object[]> ErrorFormatDelegate;
private static readonly Action<object, object> FatalDelegate;
private static readonly Action<object, object, Exception> FatalExceptionDelegate;
private static readonly Action<object, object> DebugDelegate;
private static readonly Action<object, object, Exception> DebugExceptionDelegate;
private static readonly Action<object, string, object[]> DebugFormatDelegate;
private static readonly Action<object, object> InfoDelegate;
private static readonly Action<object, object, Exception> InfoExceptionDelegate;
private static readonly Action<object, string, object[]> InfoFormatDelegate;
private static readonly Action<object, object> WarnDelegate;
private static readonly Action<object, object, Exception> WarnExceptionDelegate;
private static readonly Action<object, string, object[]> WarnFormatDelegate;
private readonly object _logger;
static Log4NetLogger()
{
IsErrorEnabledDelegate = DelegateHelper.BuildPropertyGetter<bool>(ILogType, "IsErrorEnabled");
IsFatalEnabledDelegate = DelegateHelper.BuildPropertyGetter<bool>(ILogType, "IsFatalEnabled");
IsDebugEnabledDelegate = DelegateHelper.BuildPropertyGetter<bool>(ILogType, "IsDebugEnabled");
IsInfoEnabledDelegate = DelegateHelper.BuildPropertyGetter<bool>(ILogType, "IsInfoEnabled");
IsWarnEnabledDelegate = DelegateHelper.BuildPropertyGetter<bool>(ILogType, "IsWarnEnabled");
ErrorDelegate = DelegateHelper.BuildAction<object>(ILogType, "Error");
ErrorExceptionDelegate = DelegateHelper.BuildAction<object, Exception>(ILogType, "Error");
ErrorFormatDelegate = DelegateHelper.BuildAction<string, object[]>(ILogType, "ErrorFormat");
FatalDelegate = DelegateHelper.BuildAction<object>(ILogType, "Fatal");
FatalExceptionDelegate = DelegateHelper.BuildAction<object, Exception>(ILogType, "Fatal");
DebugDelegate = DelegateHelper.BuildAction<object>(ILogType, "Debug");
DebugExceptionDelegate = DelegateHelper.BuildAction<object, Exception>(ILogType, "Debug");
DebugFormatDelegate = DelegateHelper.BuildAction<string, object[]>(ILogType, "DebugFormat");
InfoDelegate = DelegateHelper.BuildAction<object>(ILogType, "Info");
InfoExceptionDelegate = DelegateHelper.BuildAction<object, Exception>(ILogType, "Info");
InfoFormatDelegate = DelegateHelper.BuildAction<string, object[]>(ILogType, "InfoFormat");
WarnDelegate = DelegateHelper.BuildAction<object>(ILogType, "Warn");
WarnExceptionDelegate = DelegateHelper.BuildAction<object, Exception>(ILogType, "Warn");
WarnFormatDelegate = DelegateHelper.BuildAction<string, object[]>(ILogType, "WarnFormat");
}
/// <summary>
/// Default constructor.
/// </summary>
/// <param name="logger">The <c>log4net.ILog</c> logger to use for logging.</param>
public Log4NetLogger(object logger)
{
_logger = logger;
}
public bool IsErrorEnabled
{
get { return IsErrorEnabledDelegate(_logger); }
}
public bool IsFatalEnabled
{
get { return IsFatalEnabledDelegate(_logger); }
}
public bool IsDebugEnabled
{
get { return IsDebugEnabledDelegate(_logger); }
}
public bool IsInfoEnabled
{
get { return IsInfoEnabledDelegate(_logger); }
}
public bool IsWarnEnabled
{
get { return IsWarnEnabledDelegate(_logger); }
}
public void Error(object message)
{
if (IsErrorEnabled)
ErrorDelegate(_logger, message);
}
public void Error(object message, Exception exception)
{
if (IsErrorEnabled)
ErrorExceptionDelegate(_logger, message, exception);
}
public void ErrorFormat(string format, params object[] args)
{
if (IsErrorEnabled)
ErrorFormatDelegate(_logger, format, args);
}
public void Fatal(object message)
{
if (IsFatalEnabled)
FatalDelegate(_logger, message);
}
public void Fatal(object message, Exception exception)
{
if (IsFatalEnabled)
FatalExceptionDelegate(_logger, message, exception);
}
public void Debug(object message)
{
if (IsDebugEnabled)
DebugDelegate(_logger, message);
}
public void Debug(object message, Exception exception)
{
if (IsDebugEnabled)
DebugExceptionDelegate(_logger, message, exception);
}
public void DebugFormat(string format, params object[] args)
{
if (IsDebugEnabled)
DebugFormatDelegate(_logger, format, args);
}
public void Info(object message)
{
if (IsInfoEnabled)
InfoDelegate(_logger, message);
}
public void Info(object message, Exception exception)
{
if (IsInfoEnabled)
InfoExceptionDelegate(_logger, message, exception);
}
public void InfoFormat(string format, params object[] args)
{
if (IsInfoEnabled)
InfoFormatDelegate(_logger, format, args);
}
public void Warn(object message)
{
if (IsWarnEnabled)
WarnDelegate(_logger, message);
}
public void Warn(object message, Exception exception)
{
if (IsWarnEnabled)
WarnExceptionDelegate(_logger, message, exception);
}
public void WarnFormat(string format, params object[] args)
{
if (IsWarnEnabled)
WarnFormatDelegate(_logger, format, args);
}
}
}