forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEntityAction.cs
210 lines (178 loc) · 5.17 KB
/
EntityAction.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
using System;
using System.IO;
using System.Runtime.Serialization;
using NHibernate.Engine;
using NHibernate.Persister.Entity;
using NHibernate.Util;
using NHibernate.Impl;
using NHibernate.Persister;
namespace NHibernate.Action
{
/// <summary>
/// Base class for actions relating to insert/update/delete of an entity
/// instance.
/// </summary>
[Serializable]
public abstract partial class EntityAction :
IAsyncExecutable,
IBeforeTransactionCompletionProcess,
IAfterTransactionCompletionProcess,
IComparable<EntityAction>,
IDeserializationCallback,
ICacheableExecutable
{
private readonly string entityName;
private readonly object id;
private readonly object instance;
private readonly ISessionImplementor session;
[NonSerialized]
private IEntityPersister persister;
/// <summary>
/// Instantiate an action.
/// </summary>
/// <param name="session">The session from which this action is coming.</param>
/// <param name="id">The id of the entity</param>
/// <param name="instance">The entity instance</param>
/// <param name="persister">The entity persister</param>
protected internal EntityAction(ISessionImplementor session, object id, object instance, IEntityPersister persister)
{
entityName = persister.EntityName;
this.id = id;
this.instance = instance;
this.session = session;
this.persister = persister;
}
/// <summary>
/// Entity name accessor
/// </summary>
public string EntityName
{
get { return entityName; }
}
/// <summary>
/// Entity Id accessor
/// </summary>
public object Id
{
get
{
if (id is DelayedPostInsertIdentifier)
{
return session.PersistenceContext.GetEntry(instance).Id;
}
return id;
}
}
/// <summary>
/// Entity Instance
/// </summary>
public object Instance
{
get { return instance; }
}
/// <summary>
/// Session from which this action originated
/// </summary>
public ISessionImplementor Session
{
get { return session; }
}
/// <summary>
/// The entity persister.
/// </summary>
public IEntityPersister Persister
{
get { return persister; }
}
protected internal abstract bool HasPostCommitEventListeners { get; }
#region IExecutable Members
public string[] QueryCacheSpaces
{
get
{
// 6.0 TODO: Use IPersister.SupportsQueryCache property once IPersister's todo is done.
return persister.SupportsQueryCache() ? persister.PropertySpaces : null;
}
}
public string[] PropertySpaces
{
get { return persister.PropertySpaces; }
}
public void BeforeExecutions()
{
throw new AssertionFailure("BeforeExecutions() called for non-collection action");
}
public abstract void Execute();
//Since v5.2
[Obsolete("This property is not used and will be removed in a future version.")]
public virtual BeforeTransactionCompletionProcessDelegate BeforeTransactionCompletionProcess =>
NeedsBeforeTransactionCompletion()
? BeforeTransactionCompletionProcessImpl
: default(BeforeTransactionCompletionProcessDelegate);
//Since v5.2
[Obsolete("This property is not used and will be removed in a future version.")]
public virtual AfterTransactionCompletionProcessDelegate AfterTransactionCompletionProcess =>
NeedsAfterTransactionCompletion()
? AfterTransactionCompletionProcessImpl
: default(AfterTransactionCompletionProcessDelegate);
IBeforeTransactionCompletionProcess IAsyncExecutable.BeforeTransactionCompletionProcess =>
NeedsBeforeTransactionCompletion() ? this : null;
IAfterTransactionCompletionProcess IAsyncExecutable.AfterTransactionCompletionProcess =>
NeedsAfterTransactionCompletion() ? this : null;
protected virtual bool NeedsAfterTransactionCompletion()
{
return persister.HasCache || HasPostCommitEventListeners;
}
protected virtual bool NeedsBeforeTransactionCompletion()
{
// At the moment, there is no need to add the delegate,
// Subclasses can override this method and add the delegate if needed.
return false;
}
protected virtual void BeforeTransactionCompletionProcessImpl()
{
}
protected virtual void AfterTransactionCompletionProcessImpl(bool success)
{
}
#endregion
#region IComparable<EntityAction> Members
public virtual int CompareTo(EntityAction other)
{
//sort first by entity name
int roleComparison = entityName.CompareTo(other.entityName);
if (roleComparison != 0)
{
return roleComparison;
}
//then by id
return persister.IdentifierType.Compare(id, other.id);
}
#endregion
#region IDeserializationCallback Members
void IDeserializationCallback.OnDeserialization(object sender)
{
try
{
persister = session.Factory.GetEntityPersister(entityName);
}
catch (MappingException e)
{
throw new IOException("Unable to resolve class persister on deserialization", e);
}
}
#endregion
public override string ToString()
{
return StringHelper.Unqualify(GetType().FullName) + MessageHelper.InfoString(entityName, id);
}
public void ExecuteBeforeTransactionCompletion()
{
BeforeTransactionCompletionProcessImpl();
}
public void ExecuteAfterTransactionCompletion(bool success)
{
AfterTransactionCompletionProcessImpl(success);
}
}
}