blob: 730081af7983ae1ae39e7bf3530974f712da38b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="MefBootstrapper.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The MEF Bootstrapper (Not Used)
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Startup
{
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;
using System.Linq;
using Caliburn.Micro;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// The MEF Bootstrapper (Not Used)
/// </summary>
public class MefBootstrapper : Bootstrapper<IMainViewModel>
{
/// <summary>
/// The Backing field for the container
/// </summary>
private CompositionContainer container;
/// <summary>
/// MEF Configure
/// </summary>
protected override void Configure()
{
container = new CompositionContainer(
new AggregateCatalog(AssemblySource.Instance.Select(x => new AssemblyCatalog(x)))
);
var batch = new CompositionBatch();
batch.AddExportedValue<IWindowManager>(new WindowManager());
batch.AddExportedValue<IEventAggregator>(new EventAggregator());
batch.AddExportedValue(container);
container.Compose(batch);
}
/// <summary>
/// Get an Instance of a service
/// </summary>
/// <param name="serviceType">
/// The service.
/// </param>
/// <param name="key">
/// The key.
/// </param>
/// <returns>
/// The Service Requested
/// </returns>
protected override object GetInstance(Type serviceType, string key)
{
string contract = string.IsNullOrEmpty(key) ? AttributedModelServices.GetContractName(serviceType) : key;
var exports = container.GetExportedValues<object>(contract);
if (exports.Count() > 0)
return exports.First();
throw new Exception(string.Format("Could not locate any instances of contract {0}.", contract));
}
/// <summary>
/// Get all instances of a service
/// </summary>
/// <param name="serviceType">
/// The service.
/// </param>
/// <returns>
/// A collection of instances of the requested service type.
/// </returns>
protected override IEnumerable<object> GetAllInstances(Type serviceType)
{
return container.GetExportedValues<object>(AttributedModelServices.GetContractName(serviceType));
}
/// <summary>
/// Build Up
/// </summary>
/// <param name="instance">
/// The instance.
/// </param>
protected override void BuildUp(object instance)
{
container.SatisfyImportsOnce(instance);
}
}
}
|