Skip to content

Commit bc30eb4

Browse files
authored
Implement new StaticProxyFactoryFactory (nhibernate#1451)
- The factory generates high-efficient static proxies (no interceptor)
1 parent c4eb6f4 commit bc30eb4

10 files changed

+573
-5
lines changed

src/NHibernate.Test/Bytecode/Lightweight/BytecodeProviderFixture.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public void NotConfiguredProxyFactoryFactory()
1414
{
1515
var bcp = new BytecodeProviderImpl();
1616
IProxyFactoryFactory p = bcp.ProxyFactoryFactory;
17-
Assert.That(p, Is.InstanceOf<DefaultProxyFactoryFactory>());
17+
Assert.That(p, Is.InstanceOf<StaticProxyFactoryFactory>());
1818
}
1919

2020
[Test]

src/NHibernate/Bytecode/AbstractBytecodeProvider.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ public virtual IProxyFactoryFactory ProxyFactoryFactory
2828
throw new HibernateByteCodeException("Failed to create an instance of '" + proxyFactoryFactory.FullName + "'!", e);
2929
}
3030
}
31-
return new DefaultProxyFactoryFactory();
31+
32+
return StaticProxyFactoryFactory.Instance;
3233
}
3334
}
3435

@@ -116,4 +117,4 @@ public void SetCollectionTypeFactoryClass(System.Type type)
116117

117118
#endregion
118119
}
119-
}
120+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using NHibernate.Proxy;
2+
3+
namespace NHibernate.Bytecode
4+
{
5+
public class StaticProxyFactoryFactory : IProxyFactoryFactory
6+
{
7+
internal static StaticProxyFactoryFactory Instance = new StaticProxyFactoryFactory();
8+
9+
public IProxyFactory BuildProxyFactory() => new StaticProxyFactory();
10+
11+
public IProxyValidator ProxyValidator => new DynProxyTypeValidator();
12+
13+
public bool IsInstrumented(System.Type entityClass) => true;
14+
15+
public bool IsProxy(object entity) => entity is INHibernateProxy;
16+
}
17+
}

src/NHibernate/Proxy/DynamicProxy/DefaultProxyMethodBuilder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public DefaultyProxyMethodBuilder(IMethodBodyEmitter emitter)
3030

3131
public IMethodBodyEmitter MethodBodyEmitter { get; private set; }
3232

33-
private static MethodBuilder GenerateMethodSignature(string name, MethodInfo method, TypeBuilder typeBuilder)
33+
internal static MethodBuilder GenerateMethodSignature(string name, MethodInfo method, TypeBuilder typeBuilder)
3434
{
3535
//TODO: Should we use attributes of base method?
3636
var methodAttributes = MethodAttributes.Public | MethodAttributes.HideBySig | MethodAttributes.Virtual;

src/NHibernate/Proxy/DynamicProxy/ProxyFactory.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ private TypeInfo CreateUncachedProxyType(System.Type baseType, IReadOnlyCollecti
129129
return proxyType;
130130
}
131131

132-
private IEnumerable<MethodInfo> GetProxiableMethods(System.Type type, IEnumerable<System.Type> interfaces)
132+
internal static IEnumerable<MethodInfo> GetProxiableMethods(System.Type type, IEnumerable<System.Type> interfaces)
133133
{
134134
const BindingFlags candidateMethodsBindingFlags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance;
135135
return
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using NHibernate.Engine;
3+
4+
namespace NHibernate.Proxy
5+
{
6+
[Serializable]
7+
internal sealed class LiteLazyInitializer : AbstractLazyInitializer
8+
{
9+
internal LiteLazyInitializer(string entityName, object id, ISessionImplementor session, System.Type persistentClass)
10+
: base(entityName, id, session)
11+
{
12+
PersistentClass = persistentClass;
13+
}
14+
15+
public override System.Type PersistentClass { get; }
16+
}
17+
}

0 commit comments

Comments
 (0)