-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathStatelessSessionImpl.cs
893 lines (799 loc) · 24.9 KB
/
StatelessSessionImpl.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
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq.Expressions;
using NHibernate.Cache;
using NHibernate.Collection;
using NHibernate.Criterion;
using NHibernate.Engine;
using NHibernate.Engine.Query;
using NHibernate.Engine.Query.Sql;
using NHibernate.Event;
using NHibernate.Hql;
using NHibernate.Id;
using NHibernate.Loader.Criteria;
using NHibernate.Loader.Custom;
using NHibernate.Persister.Entity;
using NHibernate.Proxy;
using NHibernate.Type;
using NHibernate.Util;
namespace NHibernate.Impl
{
[Serializable]
public partial class StatelessSessionImpl : AbstractSessionImpl, IStatelessSession
{
private static readonly INHibernateLogger log = NHibernateLogger.For(typeof(StatelessSessionImpl));
[NonSerialized]
private readonly StatefulPersistenceContext temporaryPersistenceContext;
internal StatelessSessionImpl(SessionFactoryImpl factory, ISessionCreationOptions options)
: base(factory, options)
{
// This context is disposed only on session own disposal. This greatly reduces the number of context switches
// for most usual session usages. It may cause an irrelevant session id to be set back on disposal, but since all
// session entry points are supposed to set it, it should not have any consequences.
_context = SessionIdLoggingContext.CreateOrNull(SessionId);
try
{
temporaryPersistenceContext = new StatefulPersistenceContext(this);
if (log.IsDebugEnabled())
{
log.Debug("[session-id={0}] opened session for session factory: [{1}/{2}]",
SessionId, factory.Name, factory.Uuid);
}
CheckAndUpdateSessionStatus();
}
catch
{
_context?.Dispose();
throw;
}
}
public override void InitializeCollection(IPersistentCollection collection, bool writing)
{
if (temporaryPersistenceContext.IsLoadFinished)
{
throw new SessionException("Collections cannot be fetched by a stateless session. You can eager load it through specific query.");
}
CollectionEntry ce = temporaryPersistenceContext.GetCollectionEntry(collection);
if (!collection.WasInitialized)
{
ce.LoadedPersister.Initialize(ce.LoadedKey, this);
}
}
public override object InternalLoad(string entityName, object id, bool eager, bool isNullable)
{
using (BeginProcess())
{
IEntityPersister persister = Factory.GetEntityPersister(entityName);
object loaded = temporaryPersistenceContext.GetEntity(GenerateEntityKey(id, persister));
if (loaded != null)
{
return loaded;
}
if (!eager && persister.HasProxy)
{
return persister.CreateProxy(id, this);
}
//TODO: if not loaded, throw an exception
return Get(entityName, id);
}
}
public override object ImmediateLoad(string entityName, object id)
{
throw new SessionException("proxies cannot be fetched by a stateless session");
}
public override long Timestamp
{
get { throw new NotSupportedException(); }
}
public override void CloseSessionFromSystemTransaction()
{
Dispose(true);
}
public override IQuery CreateFilter(object collection, IQueryExpression queryExpression)
{
throw new NotSupportedException();
}
public override void List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results)
{
using (BeginProcess())
{
queryParameters.ValidateParameters();
var plan = GetHQLQueryPlan(queryExpression, false);
bool success = false;
try
{
plan.PerformList(queryParameters, this, results);
success = true;
}
catch (HibernateException)
{
// Do not call Convert on HibernateExceptions
throw;
}
catch (Exception e)
{
throw Convert(e, "Could not execute query");
}
finally
{
AfterOperation(success);
}
temporaryPersistenceContext.Clear();
}
}
public override IList<T> List<T>(CriteriaImpl criteria)
{
using (BeginProcess())
{
string[] implementors = Factory.GetImplementors(criteria.EntityOrClassName);
int size = implementors.Length;
CriteriaLoader[] loaders = new CriteriaLoader[size];
for (int i = 0; i < size; i++)
{
loaders[size - 1 - i] = new CriteriaLoader(GetOuterJoinLoadable(implementors[i]), Factory,
criteria, implementors[i], EnabledFilters);
}
bool success = false;
try
{
var results = loaders.LoadAllToList<T>(this);
success = true;
return results;
}
catch (HibernateException)
{
// Do not call Convert on HibernateExceptions
throw;
}
catch (Exception sqle)
{
throw Convert(sqle, "Unable to perform find");
}
finally
{
AfterOperation(success);
temporaryPersistenceContext.Clear();
}
}
}
//TODO 6.0: Remove (use base class implementation)
public override void List(CriteriaImpl criteria, IList results)
{
ArrayHelper.AddAll(results, List(criteria));
}
public override IEnumerable Enumerable(IQueryExpression queryExpression, QueryParameters queryParameters)
{
throw new NotImplementedException();
}
public override IEnumerable<T> Enumerable<T>(IQueryExpression queryExpression, QueryParameters queryParameters)
{
throw new NotImplementedException();
}
public override IList ListFilter(object collection, string filter, QueryParameters parameters)
{
throw new NotSupportedException();
}
protected override void ListFilter(object collection, IQueryExpression queryExpression, QueryParameters parameters, IList results)
{
throw new NotSupportedException();
}
public override IList<T> ListFilter<T>(object collection, string filter, QueryParameters parameters)
{
throw new NotSupportedException();
}
public override IEnumerable EnumerableFilter(object collection, string filter, QueryParameters parameters)
{
throw new NotSupportedException();
}
public override IEnumerable<T> EnumerableFilter<T>(object collection, string filter, QueryParameters parameters)
{
throw new NotSupportedException();
}
public override void AfterTransactionBegin(ITransaction tx)
{
}
public override void BeforeTransactionCompletion(ITransaction tx)
{
var context = TransactionContext;
if (tx == null && context == null)
throw new InvalidOperationException("Cannot complete a transaction without neither an explicit transaction nor an ambient one.");
// Always allow flushing from explicit transactions, otherwise check if flushing from scope is enabled.
if (tx != null || context.CanFlushOnSystemTransactionCompleted)
FlushBeforeTransactionCompletion();
}
public override void FlushBeforeTransactionCompletion()
{
if (FlushMode != FlushMode.Manual)
Flush();
}
public override void AfterTransactionCompletion(bool successful, ITransaction tx)
{
}
public override object GetContextEntityIdentifier(object obj)
{
using (BeginProcess())
{
EntityEntry entry = temporaryPersistenceContext.GetEntry(obj);
return (entry != null) ? entry.Id : null;
}
}
//Since 5.3
[Obsolete("Use override with persister parameter")]
public override object Instantiate(string clazz, object id)
{
return Instantiate(Factory.GetEntityPersister(clazz), id);
}
public override object Instantiate(IEntityPersister persister, object id)
{
using (BeginProcess())
{
return persister.Instantiate(id);
}
}
public override void ListCustomQuery(ICustomQuery customQuery, QueryParameters queryParameters, IList results)
{
using (BeginProcess())
{
var loader = new CustomLoader(customQuery, Factory);
var success = false;
try
{
ArrayHelper.AddAll(results, loader.List(this, queryParameters));
success = true;
}
finally
{
AfterOperation(success);
}
temporaryPersistenceContext.Clear();
}
}
public override object GetFilterParameterValue(string filterParameterName)
{
throw new NotSupportedException();
}
public override IType GetFilterParameterType(string filterParameterName)
{
throw new NotSupportedException();
}
public override IDictionary<string, IFilter> EnabledFilters
{
get { return CollectionHelper.EmptyDictionary<string, IFilter>(); }
}
// Since v5.2
[Obsolete("This method has no usages and will be removed in a future version")]
public override IQueryTranslator[] GetQueries(IQueryExpression query, bool scalar)
{
using (BeginContext())
{
// take the union of the query spaces (ie the queried tables)
var plan = Factory.QueryPlanCache.GetHQLQueryPlan(query, scalar, EnabledFilters);
return plan.Translators;
}
}
public override IInterceptor Interceptor
{
get { return EmptyInterceptor.Instance; }
}
public override EventListeners Listeners
{
get { throw new NotSupportedException(); }
}
public override bool IsEventSource
{
get { return false; }
}
public override object GetEntityUsingInterceptor(EntityKey key)
{
using (BeginProcess())
{
// while a pending Query we should use existing temporary entities so a join fetch does not create multiple instances
// of the same parent item (NH-3015, NH-3705).
object obj;
if (temporaryPersistenceContext.EntitiesByKey.TryGetValue(key, out obj))
return obj;
return null;
}
}
public override IPersistenceContext PersistenceContext
{
get { return temporaryPersistenceContext; }
}
public override bool IsOpen
{
get { return !IsClosed; }
}
public override FlushMode FlushMode
{
get { return FlushMode.Commit; }
set { throw new NotSupportedException(); }
}
public override string BestGuessEntityName(object entity)
{
using (BeginContext())
{
if (entity.IsProxy())
{
var proxy = entity as INHibernateProxy;
entity = proxy.HibernateLazyInitializer.GetImplementation();
}
return GuessEntityName(entity);
}
}
public override string GuessEntityName(object entity)
{
using (BeginContext())
{
return entity.GetType().FullName;
}
}
public IStatelessSession SetBatchSize(int batchSize)
{
Batcher.BatchSize = batchSize;
return this;
}
public override void Flush()
{
ManagedFlush(); // NH Different behavior since ADOContext.Context is not implemented
}
public void ManagedFlush()
{
using (BeginProcess())
{
Batcher.ExecuteBatch();
}
}
#region IStatelessSession Members
public override CacheMode CacheMode
{
get { return CacheMode.Ignore; }
set { throw new NotSupportedException(); }
}
public override string FetchProfile
{
get { return null; }
set { }
}
/// <summary>
/// Gets the stateless session implementation.
/// </summary>
/// <remarks>
/// This method is provided in order to get the <b>NHibernate</b> implementation of the session from wrapper implementations.
/// Implementors of the <seealso cref="IStatelessSession"/> interface should return the NHibernate implementation of this method.
/// </remarks>
/// <returns>
/// An NHibernate implementation of the <seealso cref="ISessionImplementor"/> interface
/// </returns>
public ISessionImplementor GetSessionImplementation()
{
return this;
}
/// <summary> Close the stateless session and release the ADO.NET connection.</summary>
public void Close()
{
ManagedClose();
}
public void ManagedClose()
{
using (BeginContext())
{
if (IsClosed)
{
throw new SessionException("Session was already closed!");
}
CloseConnectionManager();
SetClosed();
}
}
/// <summary> Insert a entity.</summary>
/// <param name="entity">A new transient instance </param>
/// <returns> the identifier of the instance </returns>
public object Insert(object entity)
{
return Insert(null, entity);
}
/// <summary> Insert a row. </summary>
/// <param name="entityName">The entityName for the entity to be inserted </param>
/// <param name="entity">a new transient instance </param>
/// <returns> the identifier of the instance </returns>
public object Insert(string entityName, object entity)
{
using (BeginProcess())
{
IEntityPersister persister = GetEntityPersister(entityName, entity);
object id = persister.IdentifierGenerator.Generate(this, entity);
object[] state = persister.GetPropertyValues(entity);
if (persister.IsVersioned)
{
object versionValue = state[persister.VersionProperty];
bool substitute = Versioning.SeedVersion(state, persister.VersionProperty, persister.VersionType,
persister.IsUnsavedVersion(versionValue), this);
if (substitute)
{
persister.SetPropertyValues(entity, state);
}
}
if (id == IdentifierGeneratorFactory.PostInsertIndicator)
{
id = persister.Insert(state, entity, this);
}
else
{
persister.Insert(id, state, entity, this);
}
persister.SetIdentifier(entity, id);
return id;
}
}
/// <summary> Update a entity.</summary>
/// <param name="entity">a detached entity instance </param>
public void Update(object entity)
{
Update(null, entity);
}
/// <summary>Update a entity.</summary>
/// <param name="entityName">The entityName for the entity to be updated </param>
/// <param name="entity">a detached entity instance </param>
public void Update(string entityName, object entity)
{
using (BeginProcess())
{
IEntityPersister persister = GetEntityPersister(entityName, entity);
object id = persister.GetIdentifier(entity);
object[] state = persister.GetPropertyValues(entity);
object oldVersion;
if (persister.IsVersioned)
{
oldVersion = persister.GetVersion(entity);
object newVersion = Versioning.Increment(oldVersion, persister.VersionType, this);
Versioning.SetVersion(state, newVersion, persister);
persister.SetPropertyValues(entity, state);
}
else
{
oldVersion = null;
}
persister.Update(id, state, null, false, null, oldVersion, entity, null, this);
}
}
/// <summary> Delete a entity. </summary>
/// <param name="entity">a detached entity instance </param>
public void Delete(object entity)
{
Delete(null, entity);
}
/// <summary> Delete a entity. </summary>
/// <param name="entityName">The entityName for the entity to be deleted </param>
/// <param name="entity">a detached entity instance </param>
public void Delete(string entityName, object entity)
{
using (BeginProcess())
{
IEntityPersister persister = GetEntityPersister(entityName, entity);
object id = persister.GetIdentifier(entity);
object version = persister.GetVersion(entity);
persister.Delete(id, version, entity, this);
}
}
/// <summary> Retrieve an entity. </summary>
/// <returns> a detached entity instance </returns>
public object Get(string entityName, object id)
{
return Get(entityName, id, LockMode.None);
}
/// <summary>
/// Retrieve an entity.
/// </summary>
/// <returns> a detached entity instance
/// </returns>
public T Get<T>(object id)
{
return (T) Get(typeof(T).FullName, id);
}
/// <summary>
/// Retrieve an entity, obtaining the specified lock mode.
/// </summary>
/// <returns> a detached entity instance </returns>
public object Get(string entityName, object id, LockMode lockMode)
{
using (BeginProcess())
{
object result = Factory.GetEntityPersister(entityName).Load(id, null, lockMode ?? LockMode.None, this);
if (temporaryPersistenceContext.IsLoadFinished)
{
temporaryPersistenceContext.Clear();
}
return result;
}
}
/// <summary>
/// Retrieve an entity, obtaining the specified lock mode.
/// </summary>
/// <returns> a detached entity instance </returns>
public T Get<T>(object id, LockMode lockMode)
{
return (T) Get(typeof(T).FullName, id, lockMode);
}
/// <summary>
/// Refresh the entity instance state from the database.
/// </summary>
/// <param name="entity">The entity to be refreshed. </param>
public void Refresh(object entity)
{
using (BeginProcess())
{
Refresh(BestGuessEntityName(entity), entity, LockMode.None);
}
}
/// <summary>
/// Refresh the entity instance state from the database.
/// </summary>
/// <param name="entityName">The entityName for the entity to be refreshed. </param>
/// <param name="entity">The entity to be refreshed.</param>
public void Refresh(string entityName, object entity)
{
Refresh(entityName, entity, LockMode.None);
}
/// <summary>
/// Refresh the entity instance state from the database.
/// </summary>
/// <param name="entity">The entity to be refreshed. </param>
/// <param name="lockMode">The LockMode to be applied.</param>
public void Refresh(object entity, LockMode lockMode)
{
using (BeginProcess())
{
Refresh(BestGuessEntityName(entity), entity, lockMode);
}
}
/// <summary>
/// Refresh the entity instance state from the database.
/// </summary>
/// <param name="entityName">The entityName for the entity to be refreshed. </param>
/// <param name="entity">The entity to be refreshed. </param>
/// <param name="lockMode">The LockMode to be applied. </param>
public void Refresh(string entityName, object entity, LockMode lockMode)
{
using (BeginProcess())
{
IEntityPersister persister = GetEntityPersister(entityName, entity);
object id = persister.GetIdentifier(entity);
if (log.IsDebugEnabled())
{
log.Debug("refreshing transient {0}", MessageHelper.InfoString(persister, id, Factory));
}
//from H3.2 TODO : can this ever happen???
// EntityKey key = new EntityKey( id, persister, source.getEntityMode() );
// if ( source.getPersistenceContext().getEntry( key ) != null ) {
// throw new PersistentObjectException(
// "attempted to refresh transient instance when persistent " +
// "instance was already associated with the Session: " +
// MessageHelper.infoString( persister, id, source.getFactory() )
// );
// }
if (persister.HasCache)
{
CacheKey ck = GenerateCacheKey(id, persister.IdentifierType, persister.RootEntityName);
persister.Cache.Remove(ck);
}
string previousFetchProfile = FetchProfile;
object result;
try
{
FetchProfile = "refresh";
result = persister.Load(id, entity, lockMode, this);
}
finally
{
FetchProfile = previousFetchProfile;
}
UnresolvableObjectException.ThrowIfNull(result, id, persister.EntityName);
}
}
/// <summary>
/// Create a new <see cref="ICriteria"/> instance, for the given entity class,
/// or a superclass of an entity class.
/// </summary>
/// <typeparam name="T">A class, which is persistent, or has persistent subclasses</typeparam>
/// <returns> The <see cref="ICriteria"/>. </returns>
/// <remarks>Entities returned by the query are detached.</remarks>
public ICriteria CreateCriteria<T>() where T : class
{
return CreateCriteria(typeof(T));
}
/// <summary>
/// Create a new <see cref="ICriteria"/> instance, for the given entity class,
/// or a superclass of an entity class, with the given alias.
/// </summary>
/// <typeparam name="T">A class, which is persistent, or has persistent subclasses</typeparam>
/// <param name="alias">The alias of the entity</param>
/// <returns> The <see cref="ICriteria"/>. </returns>
/// <remarks>Entities returned by the query are detached.</remarks>
public ICriteria CreateCriteria<T>(string alias) where T : class
{
return CreateCriteria(typeof(T), alias);
}
public ICriteria CreateCriteria(System.Type entityType)
{
using (BeginProcess())
{
return new CriteriaImpl(entityType, this);
}
}
public ICriteria CreateCriteria(System.Type entityType, string alias)
{
using (BeginProcess())
{
return new CriteriaImpl(entityType, alias, this);
}
}
/// <summary>
/// Create a new <see cref="ICriteria"/> instance, for the given entity name.
/// </summary>
/// <param name="entityName">The entity name. </param>
/// <returns> The <see cref="ICriteria"/>. </returns>
/// <remarks>Entities returned by the query are detached.</remarks>
public ICriteria CreateCriteria(string entityName)
{
using (BeginProcess())
{
return new CriteriaImpl(entityName, this);
}
}
/// <summary>
/// Create a new <see cref="ICriteria"/> instance, for the given entity name,
/// with the given alias.
/// </summary>
/// <param name="entityName">The entity name. </param>
/// <param name="alias">The alias of the entity</param>
/// <returns> The <see cref="ICriteria"/>. </returns>
/// <remarks>Entities returned by the query are detached.</remarks>
public ICriteria CreateCriteria(string entityName, string alias)
{
using (BeginProcess())
{
return new CriteriaImpl(entityName, alias, this);
}
}
public IQueryOver<T, T> QueryOver<T>() where T : class
{
using (BeginProcess())
{
return new QueryOver<T, T>(new CriteriaImpl(typeof(T), this));
}
}
public IQueryOver<T, T> QueryOver<T>(Expression<Func<T>> alias) where T : class
{
using (BeginProcess())
{
string aliasPath = ExpressionProcessor.FindMemberExpression(alias.Body);
return new QueryOver<T, T>(new CriteriaImpl(typeof(T), aliasPath, this));
}
}
#endregion
#region IDisposable Members
private bool _isAlreadyDisposed;
private IDisposable _context;
///<summary>
///Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
///</summary>
///<filterpriority>2</filterpriority>
public void Dispose()
{
using (BeginContext())
{
log.Debug("running IStatelessSession.Dispose()");
// Ensure we are not disposing concurrently to transaction completion, which would
// remove the context. (Do not store it into a local variable before the Wait.)
TransactionContext?.Wait();
// If the synchronization above is bugged and lets a race condition remaining, we may
// blow here with a null ref exception after the null check. We could introduce
// a local variable for avoiding it, but that would turn a failure causing an exception
// into a failure causing a session and connection leak. So do not do it, better blow away
// with a null ref rather than silently leaking a session. And then fix the synchronization.
if (TransactionContext != null && TransactionContext.CanFlushOnSystemTransactionCompleted)
{
TransactionContext.ShouldCloseSessionOnSystemTransactionCompleted = true;
return;
}
Dispose(true);
}
}
//TODO: Get rid of isDisposing parameter. Finalizer is removed as not needed, so isDisposing is always true
protected void Dispose(bool isDisposing)
{
using (BeginContext())
{
if (_isAlreadyDisposed)
{
// don't dispose of multiple times.
return;
}
// free managed resources that are being managed by the session if we
// know this call came through Dispose()
if (isDisposing)
{
if (!IsClosed)
{
Close();
}
}
// free unmanaged resources here
_isAlreadyDisposed = true;
}
_context?.Dispose();
}
#endregion
public override int ExecuteNativeUpdate(NativeSQLQuerySpecification nativeSQLQuerySpecification, QueryParameters queryParameters)
{
using (BeginProcess())
{
queryParameters.ValidateParameters();
NativeSQLQueryPlan plan = GetNativeSQLQueryPlan(nativeSQLQuerySpecification);
bool success = false;
int result;
try
{
result = plan.PerformExecuteUpdate(queryParameters, this);
success = true;
}
finally
{
AfterOperation(success);
}
temporaryPersistenceContext.Clear();
return result;
}
}
public override int ExecuteUpdate(IQueryExpression queryExpression, QueryParameters queryParameters)
{
using (BeginProcess())
{
queryParameters.ValidateParameters();
var plan = GetHQLQueryPlan(queryExpression, false);
bool success = false;
int result;
try
{
result = plan.PerformExecuteUpdate(queryParameters, this);
success = true;
}
finally
{
AfterOperation(success);
}
temporaryPersistenceContext.Clear();
return result;
}
}
//Since 5.2
[Obsolete("Replaced by QueryBatch")]
public override FutureCriteriaBatch FutureCriteriaBatch
{
get { throw new NotSupportedException("future queries are not supported for stateless session"); }
protected internal set { throw new NotSupportedException("future queries are not supported for stateless session"); }
}
//Since 5.2
[Obsolete("Replaced by QueryBatch")]
public override FutureQueryBatch FutureQueryBatch
{
get { throw new NotSupportedException("future queries are not supported for stateless session"); }
protected internal set { throw new NotSupportedException("future queries are not supported for stateless session"); }
}
public override IEntityPersister GetEntityPersister(string entityName, object obj)
{
using (BeginProcess())
{
if (entityName == null)
{
return Factory.GetEntityPersister(GuessEntityName(obj));
}
else
{
return Factory.GetEntityPersister(entityName).GetSubclassEntityPersister(obj, Factory);
}
}
}
}
}