Skip to content

Commit d055c8c

Browse files
committed
Refactoring SessionFactoryImpl (generics collection part I )
SVN: trunk@3522
1 parent 13067e0 commit d055c8c

8 files changed

+139
-156
lines changed

src/NHibernate/Action/BulkOperationCleanupAction.cs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System;
22
using System.Collections;
33
using System.Collections.Generic;
4-
using Iesi.Collections;
54
using Iesi.Collections.Generic;
65
using NHibernate.Engine;
76
using NHibernate.Persister.Entity;
@@ -16,7 +15,7 @@ public class BulkOperationCleanupAction: IExecutable
1615
{
1716
private readonly ISessionImplementor session;
1817
private readonly HashedSet<string> affectedEntityNames= new HashedSet<string>();
19-
private readonly HashedSet affectedCollectionRoles= new HashedSet();
18+
private readonly HashedSet<string> affectedCollectionRoles = new HashedSet<string>();
2019
private readonly List<string> spaces;
2120

2221
public BulkOperationCleanupAction(ISessionImplementor session, IQueryable[] affectedQueryables)
@@ -29,7 +28,7 @@ public BulkOperationCleanupAction(ISessionImplementor session, IQueryable[] affe
2928
{
3029
affectedEntityNames.Add(affectedQueryables[i].EntityName);
3130
}
32-
ISet roles = session.Factory.GetCollectionRolesByEntityParticipant(affectedQueryables[i].EntityName);
31+
ISet<string> roles = session.Factory.GetCollectionRolesByEntityParticipant(affectedQueryables[i].EntityName);
3332
if (roles != null)
3433
{
3534
affectedCollectionRoles.AddAll(roles);
@@ -65,7 +64,7 @@ public BulkOperationCleanupAction(ISessionImplementor session, ISet<string> quer
6564
{
6665
affectedEntityNames.Add(persister.EntityName);
6766
}
68-
ISet roles = session.Factory.GetCollectionRolesByEntityParticipant(persister.EntityName);
67+
ISet<string> roles = session.Factory.GetCollectionRolesByEntityParticipant(persister.EntityName);
6968
if (roles != null)
7069
{
7170
affectedCollectionRoles.AddAll(roles);

src/NHibernate/Engine/ISessionFactoryImplementor.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
using System.Collections;
2+
using System.Collections.Generic;
13
using System.Data;
4+
using Iesi.Collections.Generic;
25
using NHibernate.Cache;
36
using NHibernate.Context;
47
using NHibernate.Dialect.Function;
@@ -13,9 +16,6 @@
1316
using NHibernate.Stat;
1417
using NHibernate.Transaction;
1518
using NHibernate.Type;
16-
using System.Collections;
17-
using Iesi.Collections;
18-
using System.Collections.Generic;
1919

2020
namespace NHibernate.Engine
2121
{
@@ -147,7 +147,7 @@ public interface ISessionFactoryImplementor : IMapping, ISessionFactory
147147
/// <summary>
148148
/// Get the identifier generator for the hierarchy
149149
/// </summary>
150-
IIdentifierGenerator GetIdentifierGenerator(System.Type rootClass);
150+
IIdentifierGenerator GetIdentifierGenerator(string rootEntityName);
151151

152152
ResultSetMappingDefinition GetResultSetMapping(string resultSetRef);
153153

@@ -207,7 +207,7 @@ ISession OpenSession(
207207
/// <returns>
208208
/// Set of all the collection roles in which the given entityName participates.
209209
/// </returns>
210-
ISet GetCollectionRolesByEntityParticipant(string entityName);
210+
ISet<string> GetCollectionRolesByEntityParticipant(string entityName);
211211

212212
/// <summary> The cache of table update timestamps</summary>
213213
UpdateTimestampsCache UpdateTimestampsCache { get;}

src/NHibernate/Event/Default/DefaultEvictEventListener.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public virtual void OnEvict(EvictEvent @event)
2828
{
2929
ILazyInitializer li = ((INHibernateProxy)obj).HibernateLazyInitializer;
3030
object id = li.Identifier;
31-
IEntityPersister persister = source.Factory.GetEntityPersister(li.PersistentClass);
31+
IEntityPersister persister = source.Factory.GetEntityPersister(li.EntityName);
3232
if (id == null)
3333
{
3434
throw new ArgumentException("null identifier");

src/NHibernate/ISessionFactory.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public interface ISessionFactory : IDisposable
9898
/// to metadata object
9999
/// </summary>
100100
/// <returns></returns>
101-
IDictionary GetAllCollectionMetadata();
101+
IDictionary<string, ICollectionMetadata> GetAllCollectionMetadata();
102102

103103
/// <summary>
104104
/// Destroy this <c>SessionFactory</c> and release all resources

src/NHibernate/Impl/AbstractQueryImpl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ private IType GuessType(System.Type clazz)
210210
{
211211
try
212212
{
213-
session.Factory.GetEntityPersister(clazz);
213+
session.Factory.GetEntityPersister(clazz.FullName);
214214
}
215215
catch (MappingException)
216216
{

0 commit comments

Comments
 (0)