-
Notifications
You must be signed in to change notification settings - Fork 458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed components resolved from typed factories being disposed along with unrelated objects #439
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
// Copyright 2018 Castle Project - http://www.castleproject.org/ | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
namespace CastleTests.Facilities.TypedFactory | ||
{ | ||
using System; | ||
|
||
using Castle.Facilities.TypedFactory; | ||
using Castle.MicroKernel.Registration; | ||
|
||
using NUnit.Framework; | ||
|
||
public sealed class BurdenAddedToUnrelatedObjectTestCase : AbstractContainerTestCase | ||
{ | ||
protected override void AfterContainerCreated() | ||
{ | ||
Container.AddFacility<TypedFactoryFacility>(); | ||
} | ||
|
||
[Test] | ||
public void Object_resolved_from_factory_is_not_added_as_burden_of_object_being_created() | ||
{ | ||
Container.Register( | ||
Component.For(typeof(IFactory<>)).AsFactory(), | ||
Component.For<Foo>().LifeStyle.Transient, | ||
Component.For<LongLivedService>().LifeStyle.Singleton, | ||
Component.For<ShortLivedViewModel>().LifeStyle.Transient); | ||
|
||
var longLivedService = Container.Resolve<LongLivedService>(); | ||
var shortLivedViewModel = Container.Resolve<ShortLivedViewModel>(); | ||
|
||
var prematureDisposalHandler = new EventHandler((s, e) => | ||
Assert.Fail("Long-lived service’s connection was disposed when short-lived view model was released.")); | ||
|
||
longLivedService.SqlConnection.Disposed += prematureDisposalHandler; | ||
Container.Release(shortLivedViewModel); | ||
longLivedService.SqlConnection.Disposed -= prematureDisposalHandler; | ||
|
||
Container.Release(longLivedService); | ||
} | ||
|
||
public sealed class Foo : IDisposable | ||
{ | ||
public event EventHandler Disposed; | ||
|
||
public void Dispose() => Disposed?.Invoke(this, EventArgs.Empty); | ||
} | ||
|
||
public interface IFactory<T> | ||
{ | ||
T Resolve(); | ||
void Release(T instance); | ||
} | ||
|
||
public sealed class LongLivedService | ||
{ | ||
public IFactory<Foo> FooFactory { get; } | ||
|
||
public Foo SqlConnection { get; private set; } | ||
|
||
public LongLivedService(IFactory<Foo> fooFactory) | ||
{ | ||
FooFactory = fooFactory; | ||
} | ||
|
||
public void StartSomething() | ||
{ | ||
SqlConnection = FooFactory.Resolve(); | ||
} | ||
|
||
public void Dispose() | ||
{ | ||
FooFactory.Release(SqlConnection); | ||
} | ||
} | ||
|
||
public sealed class ShortLivedViewModel | ||
{ | ||
public IFactory<Foo> FooFactory { get; } | ||
public LongLivedService LongLivedService { get; } | ||
|
||
public ShortLivedViewModel(IFactory<Foo> fooFactory, LongLivedService longLivedService) | ||
{ | ||
FooFactory = fooFactory; | ||
LongLivedService = longLivedService; | ||
longLivedService.StartSomething(); | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ public interface IKernelInternal : IKernel | |
|
||
IDisposable OptimizeDependencyResolution(); | ||
|
||
object Resolve(Type service, IDictionary arguments, IReleasePolicy policy); | ||
object Resolve(Type service, IDictionary arguments, IReleasePolicy policy, bool ignoreParentContext = false); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adding this parameter is a breaking change to implementors of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Correct, it is there because Castle used to have two containers, the MicroKernel and Windsor, the two got merged but obviously still visible from the code base. |
||
|
||
/// <summary> | ||
/// Returns a component instance by the key | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The original protected method above can be deleted if you don't think users will have inherited from
DefaultKernel
and calledResolveComponent(IHandler, Type, IDictionary, IReleasePolicy)
from inside.