基于Unity容器中的对象生存期管理分析
ioc容器的对象生存期管理
如果你一直在使用ioc容器,你可能已经使用过了一些对象生存期管理模型(object lifetime management)。通过对对象生存期的管理,将使对象的复用成为可能。同时其使容器可以控制如何创建和管理对象实例。
unity提供的对象生存期管理模型是通过从抽象类lifetimemanager的派生类来完成。unity将为每个类型的注册创建生存期管理器。每当unitycontainer需要创建一个新的对象实例时,将首先检测该对象类型的生存期管理器,是否已有一个对象实例可用。如果没有对象实例可用,则unitycontainer将基于配置的信息构造该对象实例并将该对象交予对象生存期管理器。
lifetimemanager
lifetimemanager是一个抽象类,其实现了ilifetimepolicy接口。该类被作为所有内置或自定义的生存期管理器的父类。它定义了3个方法: getvalue - 返回一个已经存储在生存期管理器中对象实例。 setvalue - 存储一个新对象实例到生存期管理器中。 removevalue - 从生存期管理器中将已存储的对象实例删除。unitycontainer的默认实现将不会调用此方法,但可在定制的容器扩展中调用。
unity内置了6种生存期管理模型,其中有2种即负责对象实例的创建也负责对象实例的销毁(disposing)。
•transientlifetimemanager - 为每次请求生成新的类型对象实例。 (默认行为)
•containercontrolledlifetimemanager - 实现singleton对象实例。 当容器被disposed后,对象实例也被disposed。
•hierarchicalifetimemanager - 实现singleton对象实例。但子容器并不共享父容器实例,而是创建针对字容器的singleton对象实例。当容器被disposed后,对象实例也被disposed。
•externallycontrolledlifetimemanager - 实现singleton对象实例,但容器仅持有该对象的弱引用(weakreference),所以该对象的生存期由外部引用控制。
•perthreadlifetimemanager - 为每个线程生成singleton的对象实例,通过threadstatic实现。
•perresolvelifetimemanager - 实现与transientlifetimemanager类似的行为,为每次请求生成新的类型对象实例。不同之处在于对象实例在buildup过程中是可被重用的。
code double
public interface iexample : idisposable
{
void sayhello();
}
public class example : iexample
{
private bool _disposed = false;
private readonly guid _key = guid.newguid();
public void sayhello()
{
if (_disposed)
{
throw new objectdisposedexception("example",
string.format("{0} is already disposed!", _key));
}
console.writeline("{0} says hello in thread {1}!", _key,
thread.currentthread.managedthreadid);
}
public void dispose()
{
if (!_disposed)
{
_disposed = true;
}
}
}
transientlifetimemanager
transientlifetimemanager是unity默认的生存期管理器。其内部的实现都为空,这就意味着每次容器都会创建和返回一个新的对象实例,当然容器也不负责存储和销毁该对象实例。
private static void testtransientlifetimemanager()
{
iexample example;
using (iunitycontainer container = new unitycontainer())
{
container.registertype(typeof(iexample), typeof(example),
new transientlifetimemanager());
// each one gets its own instance
container.resolve<iexample>().sayhello();
example = container.resolve<iexample>();
}
// container is disposed but example instance still lives
// all previously created instances weren't disposed!
example.sayhello();
console.readkey();
}
containercontrolledlifetimemanager
containercontrolledlifetimemanager将为unitycontainer及其子容器提供一个singleton的注册类型对象实例。其只在第一次请求某注册类型时创建一个新的对象实例,该对象实例将被存储到生存期管理器中,并且一直被重用。当容器析构时,生存期管理器会调用removevalue将存储的对象销毁。
singleton对象实例对应每个对象类型注册,如果同一对象类型注册多次,则将为每次注册创建单一的实例。
private static void testcontainercontrolledlifetimemanager()
{
iexample example;
using (iunitycontainer container = new unitycontainer())
{
container.registertype(typeof(iexample), typeof(example),
new containercontrolledlifetimemanager());
iunitycontainer firstsub = null;
iunitycontainer secondsub = null;
try
{
firstsub = container.createchildcontainer();
secondsub = container.createchildcontainer();
// all containers share same instance
// each resolve returns same instance
firstsub.resolve<iexample>().sayhello();
// run one resolving in other thread and still receive same instance
thread thread = new thread(
() => secondsub.resolve<iexample>().sayhello());
thread.start();
container.resolve<iexample>().sayhello();
example = container.resolve<iexample>();
thread.join();
}
finally
{
if (firstsub != null) firstsub.dispose();
if (secondsub != null) secondsub.dispose();
}
}
try
{
// exception - instance has been disposed with container
example.sayhello();
}
catch (objectdisposedexception ex)
{
console.writeline(ex.message);
}
console.readkey();
}
hierarchicallifetimemanager类衍生自containercontrolledlifetimemanager,其继承了父类的所有行为。与父类的不同之处在于子容器中的生存期管理器行为。containercontrolledlifetimemanager共享相同的对象实例,包括在子容器中。而hierarchicallifetimemanager只在同一个容器内共享,每个子容器都有其单独的对象实例。
private static void testhierarchicallifetimemanager()
{
iexample example;
using (iunitycontainer container = new unitycontainer())
{
container.registertype(typeof(iexample), typeof(example),
new hierarchicallifetimemanager());
iunitycontainer firstsub = null;
iunitycontainer secondsub = null;
try
{
firstsub = container.createchildcontainer();
secondsub = container.createchildcontainer();
// each subcontainer has its own instance
firstsub.resolve<iexample>().sayhello();
secondsub.resolve<iexample>().sayhello();
container.resolve<iexample>().sayhello();
example = firstsub.resolve<iexample>();
}
finally
{
if (firstsub != null) firstsub.dispose();
if (secondsub != null) secondsub.dispose();
}
}
try
{
// exception - instance has been disposed with container
example.sayhello();
}
catch (objectdisposedexception ex)
{
console.writeline(ex.message);
}
console.readkey();
}
externallycontrolledlifetimemanager
externallycontrolledlifetimemanager中的对象实例的生存期限将有unitycontainer外部的实现控制。此生存期管理器内部直存储了所提供对象实例的一个weakreference。所以如果unitycontainer容器外部实现中没有对该对象实例的强引用,则该对象实例将被gc回收。再次请求该对象类型实例时,将会创建新的对象实例。
private static void testexternallycontrolledlifetimemanager()
{
iexample example;
using (iunitycontainer container = new unitycontainer())
{
container.registertype(typeof(iexample), typeof(example),
new externallycontrolledlifetimemanager());
// same instance is used in following
container.resolve<iexample>().sayhello();
container.resolve<iexample>().sayhello();
// run garbate collector. stored example instance will be released
// beacuse there is no reference for it and lifetimemanager holds
// only weakreference
gc.collect();
// object stored targeted by weakreference was released
// new instance is created!
container.resolve<iexample>().sayhello();
example = container.resolve<iexample>();
}
example.sayhello();
console.readkey();
}
这个结果证明强引用还存在,不知道为什么?如果你找到了原因,烦请告诉我,谢谢。
perthreadlifetimemanager
perthreadlifetimemanager模型提供“每线程单实例”功能。所有的对象实例在内部被存储在threadstatic的集合。容器并不跟踪对象实例的创建并且也不负责dipose。
private static void testperthreadlifetimemanager()
{
iexample example;
using (iunitycontainer container = new unitycontainer())
{
container.registertype(typeof(iexample), typeof(example),
new perthreadlifetimemanager());
action<int> action = delegate(int sleep)
{
// both calls use same instance per thread
container.resolve<iexample>().sayhello();
thread.sleep(sleep);
container.resolve<iexample>().sayhello();
};
thread thread1 = new thread((a) => action.invoke((int)a));
thread thread2 = new thread((a) => action.invoke((int)a));
thread1.start(50);
thread2.start(50);
thread1.join();
thread2.join();
example = container.resolve<iexample>();
}
example.sayhello();
console.readkey();
}
perresolvelifetimemanager
perresolvelifetimemanager是unity内置的一个特殊的模型。因为unity使用单独的逻辑来处理注册类型的per-resolve生命期。每次请求resolve一个类型对象时,unitycontainer都会创建并返回一个新的对象实例。
private static void testperresolvelifetimemanager()
{
iexample example;
using (iunitycontainer container = new unitycontainer())
{
container.registertype(typeof(iexample), typeof(example),
new perresolvelifetimemanager());
container.resolve<iexample>().sayhello();
container.resolve<iexample>().sayhello();
example = container.resolve<iexample>();
}
example.sayhello();
console.readkey();
}