-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathAbstractSessionImpl.cs
714 lines (615 loc) · 21.1 KB
/
AbstractSessionImpl.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
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Linq;
using NHibernate.AdoNet;
using NHibernate.Cache;
using NHibernate.Collection;
using NHibernate.Connection;
using NHibernate.Engine;
using NHibernate.Engine.Query;
using NHibernate.Engine.Query.Sql;
using NHibernate.Event;
using NHibernate.Exceptions;
using NHibernate.Hql;
using NHibernate.Linq;
using NHibernate.Loader.Custom;
using NHibernate.Loader.Custom.Sql;
using NHibernate.Multi;
using NHibernate.MultiTenancy;
using NHibernate.Persister.Entity;
using NHibernate.Transaction;
using NHibernate.Type;
using NHibernate.Util;
namespace NHibernate.Impl
{
/// <summary> Functionality common to stateless and stateful sessions </summary>
[Serializable]
public abstract partial class AbstractSessionImpl : ISessionImplementor
{
[NonSerialized]
private ISessionFactoryImplementor _factory;
private FlushMode _flushMode;
[NonSerialized]
private IQueryBatch _futureMultiBatch;
private bool closed;
/// <summary>Get the current NHibernate transaction.</summary>
// Since v5.3
[Obsolete("Use GetCurrentTransaction extension method instead, and check for null.")]
public ITransaction Transaction => ConnectionManager.Transaction;
protected bool IsTransactionCoordinatorShared { get; }
public ITransactionContext TransactionContext
{
get; set;
}
private bool isAlreadyDisposed;
private static readonly INHibernateLogger Log = NHibernateLogger.For(typeof(AbstractSessionImpl));
public Guid SessionId { get; }
internal AbstractSessionImpl() { }
private TenantConfiguration ValidateTenantConfiguration(ISessionFactoryImplementor factory, ISessionCreationOptions options)
{
if (factory.Settings.MultiTenancyStrategy == MultiTenancyStrategy.None)
return null;
var tenantConfiguration = ReflectHelper.CastOrThrow<ISessionCreationOptionsWithMultiTenancy>(options, "multi-tenancy").TenantConfiguration;
if (string.IsNullOrEmpty(tenantConfiguration?.TenantIdentifier))
{
throw new ArgumentException(
$"Tenant configuration with `{nameof(TenantConfiguration.TenantIdentifier)}` defined is required for multi-tenancy.",
nameof(tenantConfiguration));
}
if (_factory.Settings.MultiTenancyConnectionProvider == null)
{
throw new ArgumentException(
$"`{nameof(IMultiTenancyConnectionProvider)}` is required for multi-tenancy." +
$" Provide it via '{Cfg.Environment.MultiTenancyConnectionProvider}` session factory setting." +
$" You can use `{nameof(AbstractMultiTenancyConnectionProvider)}` as a base.");
}
return tenantConfiguration;
}
protected internal AbstractSessionImpl(ISessionFactoryImplementor factory, ISessionCreationOptions options)
{
SessionId = factory.Settings.TrackSessionId ? Guid.NewGuid() : Guid.Empty;
using (BeginContext())
{
_factory = factory;
Timestamp = factory.Settings.CacheProvider.NextTimestamp();
_flushMode = options.InitialSessionFlushMode;
Interceptor = options.SessionInterceptor ?? EmptyInterceptor.Instance;
_tenantConfiguration = ValidateTenantConfiguration(factory, options);
if (options is ISharedSessionCreationOptions sharedOptions && sharedOptions.IsTransactionCoordinatorShared)
{
// NH specific implementation: need to port Hibernate transaction management.
IsTransactionCoordinatorShared = true;
if (options.UserSuppliedConnection != null)
throw new SessionException("Cannot simultaneously share transaction context and specify connection");
var connectionManager = sharedOptions.ConnectionManager;
connectionManager.AddDependentSession(this);
ConnectionManager = connectionManager;
}
else
{
ConnectionManager = new ConnectionManager(
this,
options.UserSuppliedConnection,
options.SessionConnectionReleaseMode,
Interceptor,
options.ShouldAutoJoinTransaction,
_tenantConfiguration == null
? new NonContextualConnectionAccess(_factory)
: _factory.Settings.MultiTenancyConnectionProvider.GetConnectionAccess(_tenantConfiguration, _factory));
}
}
}
#region ISessionImplementor Members
// Since v5.1
[Obsolete("This method has no more usages in NHibernate and will be removed.")]
public void Initialize()
{
BeginProcess()?.Dispose();
}
public abstract void InitializeCollection(IPersistentCollection collection, bool writing);
public abstract object InternalLoad(string entityName, object id, bool eager, bool isNullable);
public abstract object ImmediateLoad(string entityName, object id);
public EntityKey GenerateEntityKey(object id, IEntityPersister persister)
{
return new EntityKey(id, persister);
}
public CacheKey GenerateCacheKey(object id, IType type, string entityOrRoleName)
{
return new CacheKey(id, type, entityOrRoleName, Factory, TenantIdentifier);
}
public ISessionFactoryImplementor Factory
{
get => _factory;
protected set => _factory = value;
}
// 6.0 TODO: remove virtual.
/// <inheritdoc />
public virtual IBatcher Batcher
{
get
{
CheckAndUpdateSessionStatus();
return ConnectionManager.Batcher;
}
}
public abstract void CloseSessionFromSystemTransaction();
public virtual IList List(IQueryExpression queryExpression, QueryParameters parameters)
{
var results = (IList)typeof(List<>)
.MakeGenericType(queryExpression.Type)
.GetConstructor(System.Type.EmptyTypes)
.Invoke(null);
List(queryExpression, parameters, results);
return results;
}
public abstract void List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results);
public virtual IList<T> List<T>(IQueryExpression query, QueryParameters parameters)
{
using (BeginProcess())
{
var results = new List<T>();
List(query, parameters, results);
return results;
}
}
//TODO 6.0: Make abstract
public virtual IList<T> List<T>(CriteriaImpl criteria)
{
using (BeginProcess())
{
var results = new List<T>();
List(criteria, results);
return results;
}
}
//TODO 6.0: Make virtual
public abstract void List(CriteriaImpl criteria, IList results);
//{
// ArrayHelper.AddAll(results, List(criteria));
//}
public virtual IList List(CriteriaImpl criteria)
{
return List<object>(criteria).ToIList();
}
public abstract IList ListFilter(object collection, string filter, QueryParameters parameters);
public IList ListFilter(object collection, IQueryExpression queryExpression, QueryParameters parameters)
{
var results = (IList)typeof(List<>).MakeGenericType(queryExpression.Type)
.GetConstructor(System.Type.EmptyTypes)
.Invoke(null);
ListFilter(collection, queryExpression, parameters, results);
return results;
}
protected abstract void ListFilter(object collection, IQueryExpression queryExpression, QueryParameters parameters, IList results);
public abstract IList<T> ListFilter<T>(object collection, string filter, QueryParameters parameters);
public abstract IEnumerable EnumerableFilter(object collection, string filter, QueryParameters parameters);
public abstract IEnumerable<T> EnumerableFilter<T>(object collection, string filter, QueryParameters parameters);
public abstract IEntityPersister GetEntityPersister(string entityName, object obj);
public abstract void AfterTransactionBegin(ITransaction tx);
public abstract void BeforeTransactionCompletion(ITransaction tx);
public abstract void FlushBeforeTransactionCompletion();
public abstract void AfterTransactionCompletion(bool successful, ITransaction tx);
public abstract object GetContextEntityIdentifier(object obj);
//Since 5.3
[Obsolete("Use override with persister parameter")]
public abstract object Instantiate(string clazz, object id);
//6.0 TODO: Make abstract
public virtual object Instantiate(IEntityPersister persister, object id)
{
#pragma warning disable 618
return Instantiate(persister.EntityName, id);
#pragma warning restore 618
}
public virtual IList List(NativeSQLQuerySpecification spec, QueryParameters queryParameters)
{
using (BeginProcess())
{
var results = new List<object>();
List(spec, queryParameters, results);
return results;
}
}
public virtual void List(NativeSQLQuerySpecification spec, QueryParameters queryParameters, IList results)
{
using (BeginProcess())
{
var query = new SQLCustomQuery(
spec.SqlQueryReturns,
spec.QueryString,
spec.QuerySpaces,
Factory);
ListCustomQuery(query, queryParameters, results);
}
}
public virtual IList<T> List<T>(NativeSQLQuerySpecification spec, QueryParameters queryParameters)
{
using (BeginProcess())
{
var results = new List<T>();
List(spec, queryParameters, results);
return results;
}
}
public abstract void ListCustomQuery(ICustomQuery customQuery, QueryParameters queryParameters, IList results);
public virtual IList<T> ListCustomQuery<T>(ICustomQuery customQuery, QueryParameters queryParameters)
{
using (BeginProcess())
{
var results = new List<T>();
ListCustomQuery(customQuery, queryParameters, results);
return results;
}
}
public abstract object GetFilterParameterValue(string filterParameterName);
public abstract IType GetFilterParameterType(string filterParameterName);
public abstract IDictionary<string, IFilter> EnabledFilters { get; }
public virtual IQuery GetNamedSQLQuery(string name)
{
using (BeginProcess())
{
var nsqlqd = _factory.GetNamedSQLQuery(name);
if (nsqlqd == null)
{
throw new MappingException("Named SQL query not known: " + name);
}
var query = new SqlQueryImpl(nsqlqd, this,
_factory.QueryPlanCache.GetSQLParameterMetadata(nsqlqd.QueryString));
query.SetComment("named native SQL query " + name);
InitQuery(query, nsqlqd);
return query;
}
}
// 6.0 TODO: remove virtual from below properties.
/// <inheritdoc />
public virtual ConnectionManager ConnectionManager { get; protected set; }
/// <inheritdoc />
public virtual bool IsConnected => ConnectionManager.IsConnected;
/// <inheritdoc />
public virtual DbConnection Connection => ConnectionManager.GetConnection();
// Since v5.2
[Obsolete("This method has no usages and will be removed in a future version")]
public abstract IQueryTranslator[] GetQueries(IQueryExpression query, bool scalar);
public abstract EventListeners Listeners { get; }
public abstract bool IsEventSource { get; }
public abstract object GetEntityUsingInterceptor(EntityKey key);
public abstract IPersistenceContext PersistenceContext { get; }
public abstract CacheMode CacheMode { get; set; }
public abstract bool IsOpen { get; }
public abstract string FetchProfile { get; set; }
public abstract string BestGuessEntityName(object entity);
public abstract string GuessEntityName(object entity);
public abstract int ExecuteNativeUpdate(NativeSQLQuerySpecification specification, QueryParameters queryParameters);
//Since 5.2
[Obsolete("Replaced by FutureBatch")]
public abstract FutureCriteriaBatch FutureCriteriaBatch { get; protected internal set; }
//Since 5.2
[Obsolete("Replaced by FutureBatch")]
public abstract FutureQueryBatch FutureQueryBatch { get; protected internal set; }
public virtual IQueryBatch FutureBatch
=>_futureMultiBatch ?? (_futureMultiBatch = new QueryBatch(this, true));
public virtual IInterceptor Interceptor { get; protected set; }
public virtual FlushMode FlushMode
{
get => _flushMode;
set => _flushMode = value;
}
//6.0 TODO: Make abstract
/// <summary>
/// detect in-memory changes, determine if the changes are to tables
/// named in the query and, if so, complete execution the flush
/// </summary>
/// <param name="querySpaces"></param>
/// <returns>Returns true if flush was executed</returns>
public virtual bool AutoFlushIfRequired(ISet<string> querySpaces)
{
return false;
}
public virtual IQuery GetNamedQuery(string queryName)
{
using (BeginProcess())
{
var nqd = _factory.GetNamedQuery(queryName);
IQuery query;
if (nqd != null)
{
var queryString = nqd.QueryString;
query = new QueryImpl(queryString, nqd.FlushMode, this, GetHQLQueryPlan(queryString.ToQueryExpression(), false).ParameterMetadata);
query.SetComment("named HQL query " + queryName);
}
else
{
var nsqlqd = _factory.GetNamedSQLQuery(queryName);
if (nsqlqd == null)
{
throw new MappingException("Named query not known: " + queryName);
}
query = new SqlQueryImpl(nsqlqd, this,
_factory.QueryPlanCache.GetSQLParameterMetadata(nsqlqd.QueryString));
query.SetComment("named native SQL query " + queryName);
nqd = nsqlqd;
}
InitQuery(query, nqd);
return query;
}
}
public virtual long Timestamp { get; protected set; }
public bool IsClosed
{
get { return closed; }
}
/// <summary>
/// If not nested in another call to <c>BeginProcess</c> on this session, check and update the
/// session status and set its session id in context.
/// </summary>
/// <returns>
/// If not already processing, an object to dispose for signaling the end of the process.
/// Otherwise, <see langword="null" />.
/// </returns>
public IDisposable BeginProcess()
{
return _processHelper.BeginProcess(this);
}
/// <summary>
/// If not nested in a call to <c>BeginProcess</c> on this session, set its session id in context.
/// </summary>
/// <returns>
/// If not already processing, an object to dispose for restoring the previous session id.
/// Otherwise, <see langword="null" />.
/// </returns>
public IDisposable BeginContext()
{
return _processHelper.Processing ? null : SessionIdLoggingContext.CreateOrNull(SessionId);
}
private ProcessHelper _processHelper = new ProcessHelper();
private TenantConfiguration _tenantConfiguration;
[Serializable]
private sealed class ProcessHelper : IDisposable
{
[NonSerialized]
private IDisposable _context;
[NonSerialized]
private bool _processing;
public ProcessHelper()
{
}
public bool Processing { get => _processing; }
public IDisposable BeginProcess(AbstractSessionImpl session)
{
if (_processing)
return null;
try
{
_context = SessionIdLoggingContext.CreateOrNull(session.SessionId);
session.CheckAndUpdateSessionStatus();
_processing = true;
}
catch
{
Dispose();
throw;
}
return this;
}
public void Dispose()
{
_context?.Dispose();
_context = null;
_processing = false;
}
}
protected internal virtual void CheckAndUpdateSessionStatus()
{
if (_processHelper.Processing)
return;
ErrorIfClosed();
// Ensure the session does not run on a thread supposed to be blocked, waiting
// for transaction completion.
TransactionContext?.Wait();
EnlistInAmbientTransactionIfNeeded();
}
protected virtual void ErrorIfClosed()
{
if (IsClosed || IsAlreadyDisposed)
{
throw new ObjectDisposedException(nameof(ISession), "Session is closed!");
}
}
protected bool IsAlreadyDisposed
{
get { return isAlreadyDisposed; }
set { isAlreadyDisposed = value; }
}
public abstract void Flush();
// 6.0 TODO: remove virtual.
/// <inheritdoc />
public virtual bool TransactionInProgress => ConnectionManager.IsInActiveTransaction;
//6.0 TODO Add to ISessionImplementor
public TenantConfiguration TenantConfiguration
{
get => _tenantConfiguration;
protected set => _tenantConfiguration = value;
}
public string TenantIdentifier => _tenantConfiguration?.TenantIdentifier;
#endregion
protected internal void SetClosed()
{
closed = true;
}
protected DbConnection CloseConnectionManager()
{
if (!IsTransactionCoordinatorShared)
return ConnectionManager.Close();
ConnectionManager.RemoveDependentSession(this);
return null;
}
private void InitQuery(IQuery query, NamedQueryDefinition nqd)
{
query.SetCacheable(nqd.IsCacheable);
query.SetCacheRegion(nqd.CacheRegion);
if (nqd.Timeout != -1)
{
query.SetTimeout(nqd.Timeout);
}
if (nqd.FetchSize != -1)
{
query.SetFetchSize(nqd.FetchSize);
}
if (nqd.CacheMode.HasValue)
query.SetCacheMode(nqd.CacheMode.Value);
query.SetReadOnly(nqd.IsReadOnly);
if (nqd.Comment != null)
{
query.SetComment(nqd.Comment);
}
query.SetFlushMode(nqd.FlushMode);
}
public virtual IQuery CreateQuery(IQueryExpression queryExpression)
{
using (BeginProcess())
{
var queryPlan = GetHQLQueryPlan(queryExpression, false);
var query = new ExpressionQueryImpl(queryPlan.QueryExpression, this, queryPlan.ParameterMetadata);
query.SetComment("[expression]");
return query;
}
}
public virtual IQuery CreateQuery(string queryString)
{
using (BeginProcess())
{
var queryPlan = GetHQLQueryPlan(queryString.ToQueryExpression(), false);
var query = new QueryImpl(queryString, this, queryPlan.ParameterMetadata);
query.SetComment(queryString);
return query;
}
}
public virtual ISQLQuery CreateSQLQuery(string sql)
{
using (BeginProcess())
{
var query = new SqlQueryImpl(sql, this, _factory.QueryPlanCache.GetSQLParameterMetadata(sql));
query.SetComment("dynamic native SQL query");
return query;
}
}
protected internal virtual IQueryExpressionPlan GetHQLQueryPlan(IQueryExpression queryExpression, bool shallow)
{
using (BeginProcess())
{
return _factory.QueryPlanCache.GetHQLQueryPlan(queryExpression, shallow, EnabledFilters);
}
}
protected internal virtual NativeSQLQueryPlan GetNativeSQLQueryPlan(NativeSQLQuerySpecification spec)
{
using (BeginContext())
{
return _factory.QueryPlanCache.GetNativeSQLQueryPlan(spec);
}
}
protected Exception Convert(Exception sqlException, string message)
{
using (BeginContext())
{
return ADOExceptionHelper.Convert(_factory.SQLExceptionConverter, sqlException, message);
}
}
protected void AfterOperation(bool success)
{
using (BeginContext())
{
if (!ConnectionManager.IsInActiveTransaction)
{
ConnectionManager.AfterNonTransactionalQuery(success);
ConnectionManager.AfterTransaction();
AfterTransactionCompletion(success, null);
}
}
}
/// <summary>
/// Begin a NHibernate transaction
/// </summary>
/// <returns>A NHibernate transaction</returns>
public ITransaction BeginTransaction()
{
using (BeginProcess())
{
if (IsTransactionCoordinatorShared)
{
// Todo : should seriously consider not allowing a txn to begin from a child session
// can always route the request to the root session...
Log.Warn("Transaction started on non-root session");
}
return ConnectionManager.BeginTransaction();
}
}
/// <summary>
/// Begin a NHibernate transaction with the specified isolation level
/// </summary>
/// <param name="isolationLevel">The isolation level</param>
/// <returns>A NHibernate transaction</returns>
public ITransaction BeginTransaction(IsolationLevel isolationLevel)
{
using (BeginProcess())
{
if (IsTransactionCoordinatorShared)
{
// Todo : should seriously consider not allowing a txn to begin from a child session
// can always route the request to the root session...
Log.Warn("Transaction started on non-root session");
}
return ConnectionManager.BeginTransaction(isolationLevel);
}
}
protected void EnlistInAmbientTransactionIfNeeded()
{
_factory.TransactionFactory.EnlistInSystemTransactionIfNeeded(this);
}
public void JoinTransaction()
{
using (BeginProcess())
_factory.TransactionFactory.ExplicitJoinSystemTransaction(this);
}
public abstract IQuery CreateFilter(object collection, IQueryExpression queryExpression);
internal IOuterJoinLoadable GetOuterJoinLoadable(string entityName)
{
using (BeginContext())
{
var persister = Factory.GetEntityPersister(entityName) as IOuterJoinLoadable;
if (persister == null)
{
throw new MappingException("class persister is not OuterJoinLoadable: " + entityName);
}
return persister;
}
}
public abstract IEnumerable Enumerable(IQueryExpression queryExpression, QueryParameters queryParameters);
public abstract IEnumerable<T> Enumerable<T>(IQueryExpression queryExpression, QueryParameters queryParameters);
public abstract int ExecuteUpdate(IQueryExpression queryExpression, QueryParameters queryParameters);
/// <summary>
/// Creates a new Linq <see cref="IQueryable{T}"/> for the entity class.
/// </summary>
/// <typeparam name="T">The entity class</typeparam>
/// <returns>An <see cref="IQueryable{T}"/> instance</returns>
public IQueryable<T> Query<T>()
{
return new NhQueryable<T>(this);
}
/// <summary>
/// Creates a new Linq <see cref="IQueryable{T}"/> for the entity class and with given entity name.
/// </summary>
/// <typeparam name="T">The type of entity to query.</typeparam>
/// <param name="entityName">The entity name.</param>
/// <returns>An <see cref="IQueryable{T}"/> instance</returns>
public IQueryable<T> Query<T>(string entityName)
{
return new NhQueryable<T>(this, entityName);
}
public virtual IQueryBatch CreateQueryBatch()
{
return new QueryBatch(this, false);
}
}
}