forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSessionFactoryImpl.cs
1711 lines (1482 loc) · 48.5 KB
/
SessionFactoryImpl.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
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.Common;
using System.Linq;
using System.Runtime.Serialization;
using System.Security;
using System.Text;
using NHibernate.Cache;
using NHibernate.Cfg;
using NHibernate.Connection;
using NHibernate.Context;
using NHibernate.Dialect.Function;
using NHibernate.Engine;
using NHibernate.Engine.Query;
using NHibernate.Engine.Query.Sql;
using NHibernate.Event;
using NHibernate.Exceptions;
using NHibernate.Hql;
using NHibernate.Id;
using NHibernate.Mapping;
using NHibernate.Metadata;
using NHibernate.MultiTenancy;
using NHibernate.Persister;
using NHibernate.Persister.Collection;
using NHibernate.Persister.Entity;
using NHibernate.Proxy;
using NHibernate.Stat;
using NHibernate.Tool.hbm2ddl;
using NHibernate.Transaction;
using NHibernate.Type;
using NHibernate.Util;
using Environment = NHibernate.Cfg.Environment;
using HibernateDialect = NHibernate.Dialect.Dialect;
using IQueryable = NHibernate.Persister.Entity.IQueryable;
namespace NHibernate.Impl
{
/// <summary>
/// Concrete implementation of a SessionFactory.
/// </summary>
/// <remarks>
/// Has the following responsibilities:
/// <list type="">
/// <item>
/// Caches configuration settings (immutably)</item>
/// <item>
/// Caches "compiled" mappings - ie. <see cref="IEntityPersister"/>
/// and <see cref="ICollectionPersister"/>
/// </item>
/// <item>
/// Caches "compiled" queries (memory sensitive cache)
/// </item>
/// <item>
/// Manages <c>PreparedStatements/DbCommands</c> - how true in NH?
/// </item>
/// <item>
/// Delegates <c>DbConnection</c> management to the <see cref="IConnectionProvider"/>
/// </item>
/// <item>
/// Factory for instances of <see cref="ISession"/>
/// </item>
/// </list>
/// <para>
/// This class must appear immutable to clients, even if it does all kinds of caching
/// and pooling under the covers. It is crucial that the class is not only thread safe
/// , but also highly concurrent. Synchronization must be used extremely sparingly.
/// </para>
/// </remarks>
/// <seealso cref="IConnectionProvider"/>
/// <seealso cref="ISession"/>
/// <seealso cref="IQueryTranslator"/>
/// <seealso cref="IEntityPersister"/>
/// <seealso cref="ICollectionPersister"/>
[Serializable]
public sealed partial class SessionFactoryImpl : ISessionFactoryImplementor, IObjectReference
{
#region Default entity not found delegate
internal class DefaultEntityNotFoundDelegate : IEntityNotFoundDelegate
{
#region IEntityNotFoundDelegate Members
public void HandleEntityNotFound(string entityName, object id)
{
throw new ObjectNotFoundException(id, entityName);
}
public void HandleEntityNotFound(string entityName, string propertyName, object key)
{
throw new ObjectNotFoundByUniqueKeyException(entityName, propertyName, key);
}
#endregion
}
#endregion
private static readonly INHibernateLogger log = NHibernateLogger.For(typeof(SessionFactoryImpl));
private static readonly IIdentifierGenerator UuidGenerator = new UUIDHexGenerator();
[NonSerialized]
private readonly ConcurrentDictionary<string, CacheBase> _allCacheRegions =
new ConcurrentDictionary<string, CacheBase>();
[NonSerialized]
private readonly IDictionary<string, IClassMetadata> classMetadata;
[NonSerialized]
private readonly IDictionary<string, ICollectionMetadata> collectionMetadata;
[NonSerialized]
private readonly Dictionary<string, ICollectionPersister> collectionPersisters;
[NonSerialized]
private readonly ILookup<string, ICollectionPersister> collectionPersistersSpaces;
[NonSerialized]
private readonly IDictionary<string, ISet<string>> collectionRolesByEntityParticipant;
[NonSerialized]
private readonly ICurrentSessionContext currentSessionContext;
[NonSerialized]
private readonly IEntityNotFoundDelegate entityNotFoundDelegate;
[NonSerialized]
private readonly IDictionary<string, IEntityPersister> entityPersisters;
[NonSerialized]
private readonly ILookup<string, IEntityPersister> entityPersistersSpaces;
/// <summary>
/// NH specific : to avoid the use of entityName for generic implementation
/// </summary>
/// <remarks>this is a shortcut.</remarks>
[NonSerialized]
private readonly IDictionary<System.Type, string> implementorToEntityName;
[NonSerialized]
private readonly EventListeners eventListeners;
[NonSerialized]
private readonly Dictionary<string, FilterDefinition> filters;
[NonSerialized]
private readonly Dictionary<string, IIdentifierGenerator> identifierGenerators;
[NonSerialized]
private readonly Dictionary<string, string> imports;
[NonSerialized]
private readonly IInterceptor interceptor;
private readonly string name;
[NonSerialized]
private readonly Dictionary<string, NamedQueryDefinition> namedQueries;
[NonSerialized]
private readonly Dictionary<string, NamedSQLQueryDefinition> namedSqlQueries;
[NonSerialized]
private readonly IDictionary<string, string> properties;
[NonSerialized]
private readonly IQueryCache queryCache;
[NonSerialized]
private readonly ConcurrentDictionary<string, Lazy<IQueryCache>> queryCaches;
[NonSerialized]
private readonly SchemaExport schemaExport;
[NonSerialized]
private readonly Settings settings;
[NonSerialized]
private readonly SQLFunctionRegistry sqlFunctionRegistry;
[NonSerialized]
private readonly Dictionary<string, ResultSetMappingDefinition> sqlResultSetMappings;
[NonSerialized]
private readonly UpdateTimestampsCache updateTimestampsCache;
[NonSerialized]
private readonly ConcurrentDictionary<string, string[]> entityNameImplementorsMap = new ConcurrentDictionary<string, string[]>(4 * System.Environment.ProcessorCount, 100);
private readonly string uuid;
[NonSerialized]
private bool disposed;
[NonSerialized]
private bool isClosed = false;
[NonSerialized]
private QueryPlanCache queryPlanCache;
[NonSerialized]
private StatisticsImpl statistics;
public SessionFactoryImpl(Configuration cfg, IMapping mapping, Settings settings, EventListeners listeners)
{
this.settings = settings;
Init();
log.Info("building session factory");
properties = new Dictionary<string, string>(cfg.Properties);
interceptor = cfg.Interceptor;
sqlFunctionRegistry = new SQLFunctionRegistry(settings.Dialect, cfg.SqlFunctions);
eventListeners = listeners;
filters = new Dictionary<string, FilterDefinition>(cfg.FilterDefinitions);
if (log.IsDebugEnabled())
{
log.Debug("Session factory constructed with filter configurations : {0}", CollectionPrinter.ToString(filters));
}
if (log.IsDebugEnabled())
{
log.Debug("instantiating session factory with properties: {0}", CollectionPrinter.ToString(properties));
}
try
{
if (settings.IsKeywordsImportEnabled)
{
SchemaMetadataUpdater.Update(this);
}
if (settings.IsAutoQuoteEnabled)
{
SchemaMetadataUpdater.QuoteTableAndColumns(cfg, Dialect);
}
}
catch (NotSupportedException ex)
{
// Ignore if the Dialect does not provide DataBaseSchema
log.Warn(ex, "Dialect does not provide DataBaseSchema, but keywords import or auto quoting is enabled.");
}
#region Serialization info
name = settings.SessionFactoryName;
try
{
uuid = (string)UuidGenerator.Generate(null, null);
}
catch (Exception ex)
{
throw new AssertionFailure("Could not generate UUID", ex);
}
SessionFactoryObjectFactory.AddInstance(uuid, name, this, properties);
#endregion
#region Caches
settings.CacheProvider.Start(properties);
#endregion
#region Generators
identifierGenerators = new Dictionary<string, IIdentifierGenerator>();
foreach (PersistentClass model in cfg.ClassMappings)
{
if (!model.IsInherited)
{
IIdentifierGenerator generator =
model.Identifier.CreateIdentifierGenerator(settings.Dialect, settings.DefaultCatalogName,
settings.DefaultSchemaName, (RootClass)model);
identifierGenerators[model.EntityName] = generator;
}
}
#endregion
#region Persisters
var caches = new Dictionary<Tuple<string, string>, ICacheConcurrencyStrategy>();
entityPersisters = new Dictionary<string, IEntityPersister>();
implementorToEntityName = new Dictionary<System.Type, string>();
Dictionary<string, IClassMetadata> classMeta = new Dictionary<string, IClassMetadata>();
foreach (PersistentClass model in cfg.ClassMappings)
{
model.PrepareTemporaryTables(mapping, settings.Dialect);
var cache = GetCacheConcurrencyStrategy(
model.RootClazz.CacheRegionName,
model.CacheConcurrencyStrategy,
model.IsMutable,
caches);
var cp = PersisterFactory.CreateClassPersister(model, cache, this, mapping);
entityPersisters[model.EntityName] = cp;
classMeta[model.EntityName] = cp.ClassMetadata;
if (model.HasPocoRepresentation)
{
implementorToEntityName[model.MappedClass] = model.EntityName;
}
}
entityPersistersSpaces = entityPersisters
.SelectMany(x => x.Value.QuerySpaces.Select(y => new { QuerySpace = y, Persister = x.Value }))
.ToLookup(x => x.QuerySpace, x => x.Persister);
classMetadata = new ReadOnlyDictionary<string, IClassMetadata>(classMeta);
Dictionary<string, ISet<string>> tmpEntityToCollectionRoleMap = new Dictionary<string, ISet<string>>();
collectionPersisters = new Dictionary<string, ICollectionPersister>();
foreach (Mapping.Collection model in cfg.CollectionMappings)
{
var cache = GetCacheConcurrencyStrategy(
model.CacheRegionName,
model.CacheConcurrencyStrategy,
model.Owner.IsMutable,
caches);
var persister = PersisterFactory.CreateCollectionPersister(model, cache, this);
collectionPersisters[model.Role] = persister;
IType indexType = persister.IndexType;
if (indexType != null && indexType.IsAssociationType && !indexType.IsAnyType)
{
string entityName = ((IAssociationType)indexType).GetAssociatedEntityName(this);
ISet<string> roles;
if (!tmpEntityToCollectionRoleMap.TryGetValue(entityName, out roles))
{
roles = new HashSet<string>();
tmpEntityToCollectionRoleMap[entityName] = roles;
}
roles.Add(persister.Role);
}
IType elementType = persister.ElementType;
if (elementType.IsAssociationType && !elementType.IsAnyType)
{
string entityName = ((IAssociationType)elementType).GetAssociatedEntityName(this);
ISet<string> roles;
if (!tmpEntityToCollectionRoleMap.TryGetValue(entityName, out roles))
{
roles = new HashSet<string>();
tmpEntityToCollectionRoleMap[entityName] = roles;
}
roles.Add(persister.Role);
}
}
collectionPersistersSpaces = collectionPersisters
.SelectMany(x => x.Value.CollectionSpaces.Select(y => new { QuerySpace = y, Persister = x.Value }))
.ToLookup(x => x.QuerySpace, x => x.Persister);
Dictionary<string, ICollectionMetadata> tmpcollectionMetadata = new Dictionary<string, ICollectionMetadata>(collectionPersisters.Count);
foreach (KeyValuePair<string, ICollectionPersister> collectionPersister in collectionPersisters)
{
tmpcollectionMetadata.Add(collectionPersister.Key, collectionPersister.Value.CollectionMetadata);
}
collectionMetadata = new ReadOnlyDictionary<string, ICollectionMetadata>(tmpcollectionMetadata);
collectionRolesByEntityParticipant = new ReadOnlyDictionary<string, ISet<string>>(tmpEntityToCollectionRoleMap);
#endregion
#region Named Queries
namedQueries = new Dictionary<string, NamedQueryDefinition>(cfg.NamedQueries);
namedSqlQueries = new Dictionary<string, NamedSQLQueryDefinition>(cfg.NamedSQLQueries);
sqlResultSetMappings = new Dictionary<string, ResultSetMappingDefinition>(cfg.SqlResultSetMappings);
#endregion
imports = new Dictionary<string, string>(cfg.Imports);
#region after *all* persisters and named queries are registered
foreach (IEntityPersister persister in entityPersisters.Values)
{
persister.PostInstantiate();
}
foreach (ICollectionPersister persister in collectionPersisters.Values)
{
persister.PostInstantiate();
}
#endregion
log.Debug("Instantiated session factory");
#region Schema management
if (settings.IsAutoCreateSchema)
{
new SchemaExport(cfg).Create(false, true);
}
if (settings.IsAutoUpdateSchema)
{
var schemaUpdate = new SchemaUpdate(cfg);
schemaUpdate.Execute(false, true);
if (settings.ThrowOnSchemaUpdate)
{
if (schemaUpdate.Exceptions.Any())
{
throw new AggregateHibernateException(
"Schema update has failed, see inner exceptions for details", schemaUpdate.Exceptions);
}
}
}
if (settings.IsAutoValidateSchema)
{
new SchemaValidator(cfg, settings).Validate();
}
if (settings.IsAutoDropSchema)
{
schemaExport = new SchemaExport(cfg);
}
#endregion
#region Obtaining TransactionManager
// not ported yet
#endregion
currentSessionContext = BuildCurrentSessionContext();
if (settings.IsQueryCacheEnabled)
{
var updateTimestampsCacheName = nameof(Cache.UpdateTimestampsCache);
updateTimestampsCache = new UpdateTimestampsCache(GetCache(updateTimestampsCacheName));
var queryCacheName = typeof(StandardQueryCache).FullName;
queryCache = BuildQueryCache(queryCacheName);
queryCaches = new ConcurrentDictionary<string, Lazy<IQueryCache>>();
queryCaches.TryAdd(queryCacheName, new Lazy<IQueryCache>(() => queryCache));
}
else
{
updateTimestampsCache = null;
queryCache = null;
queryCaches = null;
}
#region Checking for named queries
if (settings.IsNamedQueryStartupCheckingEnabled)
{
IDictionary<string, HibernateException> errors = CheckNamedQueries();
if (errors.Count > 0)
{
StringBuilder failingQueries = new StringBuilder("Errors in named queries: ");
foreach (KeyValuePair<string, HibernateException> pair in errors)
{
failingQueries.Append('{').Append(pair.Key).Append('}');
log.Error(pair.Value, "Error in named query: {0}", pair.Key);
}
throw new AggregateHibernateException(failingQueries.ToString(), errors.Values);
}
}
#endregion
Statistics.IsStatisticsEnabled = settings.IsStatisticsEnabled;
// EntityNotFoundDelegate
IEntityNotFoundDelegate enfd = cfg.EntityNotFoundDelegate;
if (enfd == null)
{
enfd = new DefaultEntityNotFoundDelegate();
}
entityNotFoundDelegate = enfd;
}
private IQueryCache BuildQueryCache(string queryCacheName)
{
return
settings.QueryCacheFactory.GetQueryCache(
updateTimestampsCache,
properties,
GetCache(queryCacheName))
// 6.0 TODO: remove the coalesce once IQueryCacheFactory todos are done
#pragma warning disable 618
?? settings.QueryCacheFactory.GetQueryCache(
#pragma warning restore 618
queryCacheName,
updateTimestampsCache,
settings,
properties);
}
private ICacheConcurrencyStrategy GetCacheConcurrencyStrategy(
string cacheRegion,
string strategy,
bool isMutable,
Dictionary<Tuple<string, string>, ICacheConcurrencyStrategy> caches)
{
if (strategy == null || strategy == CacheFactory.Never || !settings.IsSecondLevelCacheEnabled)
return null;
var cacheKey = new Tuple<string, string>(cacheRegion, strategy);
if (caches.TryGetValue(cacheKey, out var cache))
return cache;
cache = CacheFactory.CreateCache(strategy, GetCache(cacheRegion), settings);
caches.Add(cacheKey, cache);
if (isMutable && strategy == CacheFactory.ReadOnly)
log.Warn("read-only cache configured for mutable: {0}", name);
return cache;
}
public EventListeners EventListeners
{
get
{
CheckNotClosed();
return eventListeners;
}
}
#region IObjectReference Members
[SecurityCritical]
public object GetRealObject(StreamingContext context)
{
// the SessionFactory that was serialized only has values in the properties
// "name" and "uuid". In here convert the serialized SessionFactory into
// an instance of the SessionFactory in the current AppDomain.
log.Debug("Resolving serialized SessionFactory");
// look for the instance by uuid - this will work when a SessionFactory
// is serialized and deserialized in the same AppDomain.
ISessionFactory result = SessionFactoryObjectFactory.GetInstance(uuid);
if (result == null)
{
// if we were deserialized into a different AppDomain, look for an instance with the
// same name.
result = SessionFactoryObjectFactory.GetNamedInstance(name);
if (result == null)
{
throw new NullReferenceException("Could not find a SessionFactory named " + name + " or identified by uuid " + uuid);
}
else
{
log.Debug("resolved SessionFactory by name");
}
}
else
{
log.Debug("resolved SessionFactory by uuid");
}
return result;
}
#endregion
#region ISessionFactoryImplementor Members
public ISessionBuilder WithOptions()
{
CheckNotClosed();
return new SessionBuilderImpl(this);
}
public ISession OpenSession()
{
return WithOptions().OpenSession();
}
// Obsolete since v5
[Obsolete("Please use WithOptions instead.")]
public ISession OpenSession(DbConnection connection)
{
return WithOptions()
.Connection(connection)
.OpenSession();
}
// Obsolete since v5
[Obsolete("Please use WithOptions instead.")]
public ISession OpenSession(DbConnection connection, IInterceptor sessionLocalInterceptor)
{
return WithOptions()
.Connection(connection)
.Interceptor(sessionLocalInterceptor)
.OpenSession();
}
// Obsolete since v5
[Obsolete("Please use WithOptions instead.")]
public ISession OpenSession(IInterceptor sessionLocalInterceptor)
{
return WithOptions()
.Interceptor(sessionLocalInterceptor)
.OpenSession();
}
// Obsolete since v5
[Obsolete("Please use WithOptions instead.")]
public ISession OpenSession(DbConnection connection, bool flushBeforeCompletionEnabled, bool autoCloseSessionEnabled,
ConnectionReleaseMode connectionReleaseMode)
{
return WithOptions()
.Connection(connection)
.AutoClose(autoCloseSessionEnabled)
.ConnectionReleaseMode(connectionReleaseMode)
.OpenSession();
}
public IStatelessSessionBuilder WithStatelessOptions()
{
CheckNotClosed();
return new StatelessSessionBuilderImpl(this);
}
public IStatelessSession OpenStatelessSession()
{
return WithStatelessOptions().OpenStatelessSession();
}
public IStatelessSession OpenStatelessSession(DbConnection connection)
{
return WithStatelessOptions()
.Connection(connection)
.OpenStatelessSession();
}
public IEntityPersister GetEntityPersister(string entityName)
{
CheckNotClosed();
IEntityPersister value;
if (entityPersisters.TryGetValue(entityName, out value) == false)
throw new MappingException("No persister for: " + entityName);
return value;
}
public IEntityPersister TryGetEntityPersister(string entityName)
{
CheckNotClosed();
IEntityPersister result;
entityPersisters.TryGetValue(entityName, out result);
return result;
}
public ICollectionPersister GetCollectionPersister(string role)
{
CheckNotClosed();
ICollectionPersister value;
if (collectionPersisters.TryGetValue(role, out value) == false)
throw new MappingException("Unknown collection role: " + role);
return value;
}
public ISet<string> GetCollectionRolesByEntityParticipant(string entityName)
{
ISet<string> result;
collectionRolesByEntityParticipant.TryGetValue(entityName, out result);
return result;
}
/// <summary>
/// Get entity persisters filtered by the given query spaces.
/// </summary>
/// <param name="spaces">The query spaces, or <c>null</c> or an empty set for getting all persisters.</param>
/// <returns>A set of entity persisters.</returns>
public ISet<IEntityPersister> GetEntityPersisters(ISet<string> spaces)
{
if (spaces == null || spaces.Count == 0)
{
return new HashSet<IEntityPersister>(entityPersisters.Values);
}
var persisters = new HashSet<IEntityPersister>();
foreach (var space in spaces)
{
persisters.UnionWith(entityPersistersSpaces[space]);
}
return persisters;
}
/// <summary>
/// Get collection persisters filtered by the given query spaces.
/// </summary>
/// <param name="spaces">The query spaces, or <c>null</c> or an empty set for getting all persisters.</param>
/// <returns>A set of collection persisters.</returns>
public ISet<ICollectionPersister> GetCollectionPersisters(ISet<string> spaces)
{
if (spaces == null || spaces.Count == 0)
{
return new HashSet<ICollectionPersister>(collectionPersisters.Values);
}
var persisters = new HashSet<ICollectionPersister>();
foreach (var space in spaces)
{
persisters.UnionWith(collectionPersistersSpaces[space]);
}
return persisters;
}
/// <summary></summary>
public HibernateDialect Dialect
{
get { return settings.Dialect; }
}
public IInterceptor Interceptor
{
get { return interceptor; }
}
/// <summary></summary>
public ITransactionFactory TransactionFactory
{
get { return settings.TransactionFactory; }
}
// TransactionManager - not ported
public ISQLExceptionConverter SQLExceptionConverter
{
get { return settings.SqlExceptionConverter; }
}
/// <summary>
/// Gets the <c>hql</c> query identified by the <c>name</c>.
/// </summary>
/// <param name="queryName">The name of that identifies the query.</param>
/// <returns>
/// A <c>hql</c> query or <see langword="null" /> if the named
/// query does not exist.
/// </returns>
public NamedQueryDefinition GetNamedQuery(string queryName)
{
NamedQueryDefinition result;
namedQueries.TryGetValue(queryName, out result);
return result;
}
public NamedSQLQueryDefinition GetNamedSQLQuery(string queryName)
{
NamedSQLQueryDefinition result;
namedSqlQueries.TryGetValue(queryName, out result);
return result;
}
public IType GetIdentifierType(string className)
{
return GetEntityPersister(className).IdentifierType;
}
public string GetIdentifierPropertyName(string className)
{
return GetEntityPersister(className).IdentifierPropertyName;
}
public IType[] GetReturnTypes(String queryString)
{
return
queryPlanCache.GetHQLQueryPlan(queryString.ToQueryExpression(), false, CollectionHelper.EmptyDictionary<string, IFilter>()).
ReturnMetadata.ReturnTypes;
}
/// <summary> Get the return aliases of a query</summary>
public string[] GetReturnAliases(string queryString)
{
return
queryPlanCache.GetHQLQueryPlan(queryString.ToQueryExpression(), false, CollectionHelper.EmptyDictionary<string, IFilter>()).
ReturnMetadata.ReturnAliases;
}
public IClassMetadata GetClassMetadata(System.Type persistentClass)
{
return GetClassMetadata(persistentClass.FullName);
}
public IClassMetadata GetClassMetadata(string entityName)
{
IClassMetadata result;
classMetadata.TryGetValue(entityName, out result);
return result;
}
public ICollectionMetadata GetCollectionMetadata(string roleName)
{
ICollectionMetadata result;
collectionMetadata.TryGetValue(roleName, out result);
return result;
}
/// <summary>
/// Return the names of all persistent (mapped) classes that extend or implement the
/// given class or interface, accounting for implicit/explicit polymorphism settings
/// and excluding mapped subclasses/joined-subclasses of other classes in the result.
/// </summary>
public string[] GetImplementors(string entityOrClassName)
{
string[] knownMap;
if (entityNameImplementorsMap.TryGetValue(entityOrClassName, out knownMap))
{
return knownMap;
}
System.Type clazz = null;
// NH Different implementation for performance: a class without at least a namespace sure can't be found by reflection
if (entityOrClassName.IndexOf('.') > 0)
{
IEntityPersister checkPersister;
// NH Different implementation: we have better performance checking, first of all, if we know the class
// and take the System.Type directly from the persister (className have high probability to be entityName at least using Criteria or Linq)
if (entityPersisters.TryGetValue(entityOrClassName, out checkPersister))
{
if (!checkPersister.EntityMetamodel.HasPocoRepresentation)
{
// we found the persister but it is a dynamic entity without class
knownMap = new[] { entityOrClassName };
entityNameImplementorsMap[entityOrClassName] = knownMap;
return knownMap;
}
// NH : take care with this because we are forcing the Poco EntityMode
clazz = checkPersister.MappedClass;
}
if (clazz == null)
{
try
{
clazz = ReflectHelper.ClassForFullNameOrNull(entityOrClassName);
}
catch (Exception)
{
clazz = null;
}
}
}
if (clazz == null)
{
// try to get the class from imported names
string importedName = GetImportedClassName(entityOrClassName);
if (importedName != entityOrClassName)
{
clazz = System.Type.GetType(importedName, false);
}
}
if (clazz == null)
{
knownMap = new[] { entityOrClassName };
entityNameImplementorsMap[entityOrClassName] = knownMap;
return knownMap; //for a dynamic-class
}
var results = new List<string>();
foreach (var q in entityPersisters.Values.OfType<IQueryable>())
{
string registeredEntityName = q.EntityName;
// NH: as entity-name we are using the FullName but in HQL we allow just the Name, the class is mapped even when its FullName match the entity-name
bool isMappedClass = entityOrClassName.Equals(registeredEntityName) || clazz.FullName.Equals(registeredEntityName);
if (q.IsExplicitPolymorphism)
{
if (isMappedClass)
{
knownMap = new[] { registeredEntityName };
entityNameImplementorsMap[entityOrClassName] = knownMap;
return knownMap; // NOTE EARLY EXIT
}
}
else
{
if (isMappedClass)
{
results.Add(registeredEntityName);
}
else
{
if (IsMatchingImplementor(entityOrClassName, clazz, q))
{
bool assignableSuperclass;
if (q.IsInherited)
{
System.Type mappedSuperclass = GetEntityPersister(q.MappedSuperclass).MappedClass;
assignableSuperclass = clazz.IsAssignableFrom(mappedSuperclass);
}
else
{
assignableSuperclass = false;
}
if (!assignableSuperclass)
{
results.Add(registeredEntityName);
}
}
}
}
}
knownMap = results.ToArray();
entityNameImplementorsMap[entityOrClassName] = knownMap;
return knownMap;
}
private static bool IsMatchingImplementor(string entityOrClassName, System.Type entityClass, IQueryable implementor)
{
var implementorClass = implementor.MappedClass;
if (implementorClass == null)
{
return false;
}
if (entityClass == implementorClass)
{
// It is possible to have multiple mappings for the same entity class, but with different entity names.
// When querying for a specific entity name, we should only return entities for the requested entity name
// and not return entities for any other entity names that may map to the same entity class.
bool isEntityName = !entityOrClassName.Equals(entityClass.FullName);
return !isEntityName || entityOrClassName.Equals(implementor.EntityName);
}
return entityClass.IsAssignableFrom(implementorClass);
}
public string GetImportedClassName(string className)
{
string result;
if (className != null && imports.TryGetValue(className, out result))
{
return result;
}
else
{
return className;
}
}
/// <summary></summary>
public IDictionary<string, IClassMetadata> GetAllClassMetadata()
{
return classMetadata;
}
/// <summary></summary>
public IDictionary<string, ICollectionMetadata> GetAllCollectionMetadata()
{
return collectionMetadata;
}
public void Dispose()
{
if (disposed)
{
return;
}
disposed = true;
Close();
}
private void CheckNotClosed()
{
if (isClosed)
{
throw new ObjectDisposedException($"Session factory {Name} with id {Uuid}");
}
}
/// <summary>
/// Closes the session factory, releasing all held resources.
/// <list>
/// <item>cleans up used cache regions and "stops" the cache provider.</item>
/// <item>close the ADO.NET connection</item>
/// </list>
/// </summary>
public void Close()
{
if (isClosed)
{
if (log.IsDebugEnabled())
{
log.Debug("Already closed");
}
return;
}
log.Info("Closing");
isClosed = true;
foreach (IEntityPersister p in entityPersisters.Values)
{
if (p.HasCache)
{
p.Cache.Destroy();
}
}
foreach (ICollectionPersister p in collectionPersisters.Values)
{
if (p.HasCache)
{
p.Cache.Destroy();
}
}
if (settings.IsQueryCacheEnabled)
{
foreach (var cache in queryCaches.Values)
{
cache.Value.Destroy();
}
}
foreach (var cache in _allCacheRegions.Values)
{
cache.Destroy();
}
settings.CacheProvider.Stop();
try
{
settings.ConnectionProvider.Dispose();
}
finally