forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBytecodeEnhancementMetadataPocoImpl.cs
221 lines (189 loc) · 6.95 KB
/
BytecodeEnhancementMetadataPocoImpl.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
using System;
using System.Collections.Generic;
using NHibernate.Bytecode;
using NHibernate.Engine;
using NHibernate.Intercept;
using NHibernate.Mapping;
using NHibernate.Util;
namespace NHibernate.Tuple.Entity
{
/// <summary>
/// Author: Steve Ebersole
/// </summary>
[Serializable]
public class BytecodeEnhancementMetadataPocoImpl : IBytecodeEnhancementMetadata
{
private readonly System.Type _entityType;
public static IBytecodeEnhancementMetadata From(
PersistentClass persistentClass,
ICollection<LazyPropertyDescriptor> lazyPropertyDescriptors,
ICollection<UnwrapProxyPropertyDescriptor> unwrapProxyPropertyDescriptors)
{
var mappedClass = persistentClass.MappedClass;
var enhancedForLazyLoading = lazyPropertyDescriptors?.Count > 0 || unwrapProxyPropertyDescriptors?.Count > 0;
// We have to check all subclasses if any of them is enhanced for lazy loading as the
// root class will be enhanced when any of the subclasses is enhanced, even if it
// does not have any lazy properties.
// If we do not check the subclasses, where the root-entity has no lazy properties
// we will eager-load/double-load those properties (NH2488).
if (!enhancedForLazyLoading)
{
foreach (var persistentSubclass in persistentClass.SubclassClosureIterator)
{
enhancedForLazyLoading |= IsEnhancedForLazyLoading(persistentSubclass);
if (enhancedForLazyLoading)
{
break;
}
}
}
var lazyPropertiesMetadata = enhancedForLazyLoading
? LazyPropertiesMetadata.From(persistentClass.EntityName, lazyPropertyDescriptors)
: LazyPropertiesMetadata.NonEnhanced(persistentClass.EntityName);
var unwrapProxyPropertiesMetadata = enhancedForLazyLoading
? UnwrapProxyPropertiesMetadata.From(persistentClass.EntityName, unwrapProxyPropertyDescriptors)
: UnwrapProxyPropertiesMetadata.NonEnhanced(persistentClass.EntityName);
return new BytecodeEnhancementMetadataPocoImpl(
persistentClass.EntityName,
mappedClass,
enhancedForLazyLoading,
lazyPropertiesMetadata,
unwrapProxyPropertiesMetadata
);
}
/// <summary>
/// Check for a <see cref="PersistentClass"/> if is enhanced for lazy loading.
/// NOTE: The logic was taken from <see cref="EntityMetamodel"/>.
/// </summary>
/// <param name="persistentClass">The persistent class to check.</param>
/// <returns>Whether the persistent class is enhanced for lazy loading or not.</returns>
private static bool IsEnhancedForLazyLoading(PersistentClass persistentClass)
{
var lazyAvailable = persistentClass.HasPocoRepresentation
&& FieldInterceptionHelper.IsInstrumented(persistentClass.MappedClass);
var lazy = persistentClass.IsLazy && (!persistentClass.HasPocoRepresentation ||
!ReflectHelper.IsFinalClass(persistentClass.ProxyInterface));
lazyAvailable &= lazy;
if (!lazyAvailable)
{
return false;
}
foreach (var prop in persistentClass.PropertyIterator)
{
// NH: A lazy property is a simple property marked with lazy=true
var islazyProperty = prop.IsLazy && (!prop.IsEntityRelation || prop.UnwrapProxy);
// NH: A Relation (in this case many-to-one or one-to-one) marked as "no-proxy"
var isUnwrapProxy = prop.UnwrapProxy;
if (islazyProperty || isUnwrapProxy)
{
return true;
}
}
return false;
}
public BytecodeEnhancementMetadataPocoImpl(
string entityName,
System.Type entityType,
bool enhancedForLazyLoading,
LazyPropertiesMetadata lazyPropertiesMetadata,
UnwrapProxyPropertiesMetadata unwrapProxyPropertiesMetadata)
{
EntityName = entityName;
_entityType = entityType;
EnhancedForLazyLoading = enhancedForLazyLoading;
LazyPropertiesMetadata = lazyPropertiesMetadata;
UnwrapProxyPropertiesMetadata = unwrapProxyPropertiesMetadata;
}
/// <inheritdoc />
public string EntityName { get; }
/// <inheritdoc />
public bool EnhancedForLazyLoading { get; }
/// <inheritdoc />
public LazyPropertiesMetadata LazyPropertiesMetadata { get; }
/// <inheritdoc />
public UnwrapProxyPropertiesMetadata UnwrapProxyPropertiesMetadata { get; }
/// <inheritdoc />
public IFieldInterceptor InjectInterceptor(object entity, ISessionImplementor session)
{
if (!EnhancedForLazyLoading)
{
throw new NotInstrumentedException($"Entity class [{_entityType}] is not enhanced for lazy loading");
}
if (!(entity is IFieldInterceptorAccessor fieldInterceptorAccessor))
{
return null; // Can happen when a saved entity is refreshed within the same session NH2860
}
if (!_entityType.IsInstanceOfType(entity))
{
throw new ArgumentException(
$"Passed entity instance [{entity}] is not of expected type [{EntityName}]");
}
var fieldInterceptorImpl = new DefaultFieldInterceptor(
session,
LazyPropertiesMetadata.HasLazyProperties
? new HashSet<string>(LazyPropertiesMetadata.LazyPropertyNames)
: null,
UnwrapProxyPropertiesMetadata.UnwrapProxyPropertyNames,
EntityName,
_entityType);
fieldInterceptorAccessor.FieldInterceptor = fieldInterceptorImpl;
return fieldInterceptorImpl;
}
/// <inheritdoc />
public IFieldInterceptor ExtractInterceptor(object entity)
{
if (!EnhancedForLazyLoading)
{
throw new NotInstrumentedException($"Entity class [{_entityType}] is not enhanced for lazy loading");
}
if (!(entity is IFieldInterceptorAccessor fieldInterceptorAccessor))
{
return null;
}
var interceptor = fieldInterceptorAccessor.FieldInterceptor;
if (interceptor == null)
{
return null;
}
if (!_entityType.IsAssignableFrom(interceptor.MappedClass))
{
throw new ArgumentException(
$"Passed entity instance [{entity}] is not of expected type [{EntityName}]");
}
return fieldInterceptorAccessor.FieldInterceptor;
}
/// <inheritdoc />
public ISet<string> GetUninitializedLazyProperties(object entity)
{
var interceptor = LazyPropertiesMetadata.HasLazyProperties ? ExtractInterceptor(entity) : null;
if (interceptor == null)
{
return CollectionHelper.EmptySet<string>();
}
return interceptor.GetUninitializedFields() ?? LazyPropertiesMetadata.LazyPropertyNames;
}
/// <inheritdoc />
public ISet<string> GetUninitializedLazyProperties(object[] entityState)
{
if (!LazyPropertiesMetadata.HasLazyProperties)
{
return CollectionHelper.EmptySet<string>();
}
var uninitializedProperties = new HashSet<string>();
foreach (var propertyDescriptor in LazyPropertiesMetadata.LazyPropertyDescriptors)
{
if (entityState[propertyDescriptor.PropertyIndex] == LazyPropertyInitializer.UnfetchedProperty)
{
uninitializedProperties.Add(propertyDescriptor.Name);
}
}
return uninitializedProperties;
}
/// <inheritdoc />
public bool HasAnyUninitializedLazyProperties(object entity)
{
var interceptor = LazyPropertiesMetadata.HasLazyProperties ? ExtractInterceptor(entity) : null;
return interceptor?.GetUninitializedFields().Count > 0;
}
}
}