1
- #region License
2
-
3
1
/*
4
2
* Copyright © 2002-2011 the original author or authors.
5
3
*
16
14
* limitations under the License.
17
15
*/
18
16
19
- #endregion
20
-
21
17
using System ;
22
18
using System . Collections ;
23
19
using System . Collections . Generic ;
24
20
using System . Reflection ;
21
+ using System . Runtime . Serialization ;
25
22
using System . Text ;
26
23
27
24
using AopAlliance . Aop ;
@@ -56,8 +53,6 @@ namespace Spring.Aop.Framework
56
53
[ Serializable ]
57
54
public class AdvisedSupport : ProxyConfig , IAdvised
58
55
{
59
- #region Fields
60
-
61
56
/// <summary>The list of advice.</summary>
62
57
/// <remarks>
63
58
/// <p>
@@ -108,7 +103,7 @@ public class AdvisedSupport : ProxyConfig, IAdvised
108
103
/// <summary>
109
104
/// The list of <see cref="Spring.Aop.Framework.AdvisedSupport"/> event listeners.
110
105
/// </summary>
111
- private readonly IList < IAdvisedSupportListener > listeners = new List < IAdvisedSupportListener > ( ) ;
106
+ private readonly List < IAdvisedSupportListener > listeners = new List < IAdvisedSupportListener > ( ) ;
112
107
113
108
/// <summary>
114
109
/// The advisor chain factory.
@@ -121,10 +116,6 @@ public class AdvisedSupport : ProxyConfig, IAdvised
121
116
/// </summary>
122
117
private bool autoDetectInterfaces ;
123
118
124
- #endregion
125
-
126
- #region Constructor(s)
127
-
128
119
/// <summary>
129
120
/// Creates a new instance of the
130
121
/// <see cref="Spring.Aop.Framework.AdvisedSupport"/> class using the
@@ -187,9 +178,46 @@ public AdvisedSupport(ITargetSource targetSource)
187
178
TargetSource = targetSource ;
188
179
}
189
180
190
- #endregion
181
+ /// <inheritdoc />
182
+ protected AdvisedSupport ( SerializationInfo info , StreamingContext context )
183
+ : base ( info , context )
184
+ {
185
+ _advisors = ( List < IAdvisor > ) info . GetValue ( "advisors" , typeof ( List < IAdvisor > ) ) ;
186
+ _advisorsArray = ( IAdvisor [ ] ) info . GetValue ( "advisorsArray" , typeof ( IAdvisor [ ] ) ) ;
187
+ _introductions = ( List < IIntroductionAdvisor > ) info . GetValue ( "introductions" , typeof ( List < IIntroductionAdvisor > ) ) ;
191
188
192
- #region IAdvised implementation
189
+ var map = ( Dictionary < string , IIntroductionAdvisor > ) info . GetValue ( "interfaceMap" , typeof ( Dictionary < string , IIntroductionAdvisor > ) ) ;
190
+ interfaceMap = new Dictionary < Type , IIntroductionAdvisor > ( ) ;
191
+ foreach ( var pair in map )
192
+ {
193
+ interfaceMap [ Type . GetType ( pair . Key ) ] = pair . Value ;
194
+ }
195
+ m_targetSource = ( ITargetSource ) info . GetValue ( "targetSource" , typeof ( ITargetSource ) ) ;
196
+ isActive = info . GetBoolean ( "isActive" ) ;
197
+ listeners = ( List < IAdvisedSupportListener > ) info . GetValue ( "listeners" , typeof ( List < IAdvisedSupportListener > ) ) ;
198
+ advisorChainFactory = ( IAdvisorChainFactory ) info . GetValue ( "advisorChainFactory" , typeof ( IAdvisorChainFactory ) ) ;
199
+ autoDetectInterfaces = info . GetBoolean ( "autoDetectInterfaces" ) ;
200
+ }
201
+
202
+ /// <inheritdoc />
203
+ public override void GetObjectData ( SerializationInfo info , StreamingContext context )
204
+ {
205
+ base . GetObjectData ( info , context ) ;
206
+ info . AddValue ( "advisors" , _advisors ) ;
207
+ info . AddValue ( "advisorsArray" , _advisorsArray ) ;
208
+ info . AddValue ( "introductions" , _introductions ) ;
209
+ var map = new Dictionary < string , IIntroductionAdvisor > ( ) ;
210
+ foreach ( var pair in interfaceMap )
211
+ {
212
+ map . Add ( pair . Key . AssemblyQualifiedName , pair . Value ) ;
213
+ }
214
+ info . AddValue ( "interfaceMap" , map ) ;
215
+ info . AddValue ( "targetSource" , m_targetSource ) ;
216
+ info . AddValue ( "isActive" , isActive ) ;
217
+ info . AddValue ( "listeners" , listeners ) ;
218
+ info . AddValue ( "advisorChainFactory" , advisorChainFactory ) ;
219
+ info . AddValue ( "autoDetectInterfaces" , autoDetectInterfaces ) ;
220
+ }
193
221
194
222
/// <summary>
195
223
/// Gets and sets the
@@ -943,10 +971,6 @@ protected virtual string ToProxyConfigStringInternal()
943
971
return buffer . ToString ( ) ;
944
972
}
945
973
946
- #endregion
947
-
948
- #region Properties
949
-
950
974
/// <summary>
951
975
/// Gets the target type behind the implementing object.
952
976
/// Ttypically a proxy configuration or an actual proxy.
@@ -992,8 +1016,6 @@ protected bool IsActive
992
1016
get { return isActive ; }
993
1017
}
994
1018
995
- #endregion
996
-
997
1019
/// <summary>
998
1020
/// Specifies the <see cref="System.Type"/> of proxies that are to be
999
1021
/// created for this instance of proxy config.
@@ -1342,8 +1364,6 @@ private void UpdateAdvisorsArray()
1342
1364
this . _advisorsArray = advisorsArray ;
1343
1365
}
1344
1366
1345
- #region IAdvisedSupportListener support
1346
-
1347
1367
/// <summary>
1348
1368
/// Callback method that is invoked when the list of proxied interfaces
1349
1369
/// has changed.
@@ -1399,8 +1419,6 @@ protected void Activate()
1399
1419
}
1400
1420
}
1401
1421
1402
- #endregion
1403
-
1404
1422
/// <summary>
1405
1423
/// Creates an AOP proxy using this instance's configuration data.
1406
1424
/// </summary>
0 commit comments