Stylet/Bootstrappers/StructureMapBootstrapper.cs

75 lines
2.6 KiB
C#

using StructureMap;
using StructureMap.Pipeline;
using Stylet;
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Windows;
namespace Bootstrappers
{
public class StructureMapBootstrapper<TRootViewModel> : BootstrapperBase where TRootViewModel : class
{
private IContainer container;
private object _rootViewModel;
protected virtual object RootViewModel
{
get { return this._rootViewModel ?? (this._rootViewModel = this.GetInstance(typeof(TRootViewModel))); }
}
protected override void ConfigureBootstrapper()
{
this.container = new Container(config =>
{
this.DefaultConfigureIoC(config);
this.ConfigureIoC(config);
});
}
/// <summary>
/// Carries out default configuration of the IoC container. Override if you don't want to do this
/// </summary>
protected virtual void DefaultConfigureIoC(ConfigurationExpression config)
{
var viewManagerConfig = new ViewManagerConfig()
{
ViewFactory = this.GetInstance,
ViewAssemblies = new List<Assembly>() { this.GetType().Assembly }
};
config.For<IViewManager>().Add(new ViewManager(viewManagerConfig));
// Trick it into not taking ownership of (and disposing) the instance
config.For<IWindowManagerConfig>().Add(c => this).LifecycleIs<UniquePerRequestLifecycle>();
config.For<IWindowManager>().Add<WindowManager>().LifecycleIs<SingletonLifecycle>();
config.For<IEventAggregator>().Add<EventAggregator>().LifecycleIs<SingletonLifecycle>();
config.For<IMessageBoxViewModel>().Add<MessageBoxViewModel>().LifecycleIs<UniquePerRequestLifecycle>();
config.Scan(x => x.Assembly(this.GetType().Assembly));
}
/// <summary>
/// Override to add your own types to the IoC container.
/// </summary>
protected virtual void ConfigureIoC(ConfigurationExpression config) { }
public override object GetInstance(Type type)
{
return this.container.GetInstance(type);
}
protected override void Launch()
{
base.DisplayRootView(this.RootViewModel);
}
public override void Dispose()
{
ScreenExtensions.TryDispose(this._rootViewModel);
if (this.container != null)
this.container.Dispose();
base.Dispose();
}
}
}