Im using MEF in .Net 4.0 to save me a good amount of abstract factory code and config gubbins. Cannot move to .net 4.5 as it is not deployed.
The class
/// <summary>
/// Factory relies upon the use of the .net 4.0 MEF framework
/// All processors need to export themselves to make themselves visible to the 'Processors' import property auto MEF population
/// This class is implemented as a singleton
/// </summary>
public class MessageProsessorFactory
{
private static readonly string pluginFilenameFilter = "Connectors.*.dll";
private static CompositionContainer _container;
private static MessageProsessorFactory _instance;
private static object MessageProsessorFactoryLock = new object();
/// <summary>
/// Initializes the <see cref="MessageProsessorFactory" /> class.
/// Loads all MEF imports
/// </summary>
/// <exception cref="System.NotSupportedException"></exception>
private MessageProsessorFactory()
{
lock (MessageProsessorFactoryLock)
{
if (_container == null)
{
RemoveDllSecurityZoneRestrictions();
//Create a thread safe composition container
_container = new CompositionContainer(new DirectoryCatalog(".", pluginFilenameFilter), true, null);
_container.ComposeParts(this);
}
}
}
/// <summary>
/// A list of detected class instances that support IMessageProcessor
/// </summary>
[ImportMany(typeof(IMessageProcessor), RequiredCreationPolicy = CreationPolicy.NonShared)]
private List<Lazy<IMessageProcessor, IMessageProccessorExportMetadata>> Processors { get; set; }
/// <summary>
/// Gets the message factory.
/// </summary>
/// <param name="messageEnvelope">The message envelope.</param>
/// <returns><see cref="IMessageProcessor"/></returns>
/// <exception cref="System.NotSupportedException">The supplied target is not supported: + target</exception>
public static IMessageProcessor GetMessageProcessor(MessageEnvelope messageEnvelope)
{
if (_instance == null)
_instance = new MessageProsessorFactory();
var p = _instance.Processors.FirstOrDefault(
s => s.Metadata.ExpectedType.AssemblyQualifiedName == messageEnvelope.AssemblyQualifiedName);
if (p == null)
throw new NotSupportedException(
"The supplied type is not supported: " + messageEnvelope.AssemblyQualifiedName);
return p.Value;
}
/// <summary>
/// Removes any zone flags otherwise MEF wont load files with
/// a URL zone flag set to anything other than 'MyComputer', we are trusting all pluggins here.
/// http://msdn.microsoft.com/en-us/library/ms537183(v=vs.85).aspx
/// </summary>
private static void RemoveDllSecurityZoneRestrictions()
{
string path = System.IO.Path.GetDirectoryName(
System.Reflection.Assembly.GetExecutingAssembly().Location);
foreach (var filePath in Directory.EnumerateFiles(path, pluginFilenameFilter))
{
var zone = Zone.CreateFromUrl(filePath);
if (zone.SecurityZone != SecurityZone.MyComputer)
{
var fileInfo = new FileInfo(filePath);
fileInfo.DeleteAlternateDataStream("Zone.Identifier");
}
}
}
}
After _container.ComposeParts(this); is called, Processors is populated with all the IMessageProcessor implementations found. Great.
Notes
- GetMessageProcessor is called by many threads.
- We have no control over how a developer might structure there class implementations of IMessageProcessor, therefore we cannot guarantee them to be thread safe - re-entrant. However the class must be instrumented with the Export attribute.
The export attribute
[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class MessageProccessorExportAttribute : ExportAttribute
{
public MessageProccessorExportAttribute()
: base(typeof(IMessageProcessor))
{
}
public Type ExpectedType { get; set; }
}
- ExpectedType is just metadata that notes what IMessageProcessor.ProcessMessage() expects to be dealing with, purely implementation detail.
My problem is that I read everywhere that each Imported instance will be a Singleton, regardless of its activation policy when its constructed via a Lazy<> reference.
Therefore we cannot allow an instance from the MEF to be returned from GetMessageProcessor, since multiple threads are going to get the same instance and that is undesirable. Ahhh! I was wondering if the following 'work around' is the best approach or have i got the MEF insistence concept wrong.
My workaround is to change the seemingly pointless RequiredCreationPolicy = CreationPolicy.NonShared attribute setting to CreationPolicy.Shared.
Then change the function GetMessageProcessor to create a new instance manually, entrely seprate from the MEF. using the MEF shared instance prulry as a list of types.
IMessageProcessor newInstance = (IMessageProcessor)Activator.CreateInstance(p.Value.GetType());
The full method;
public static IMessageProcessor GetMessageProcessor(MessageEnvelope messageEnvelope)
{
if (_instance == null)
_instance = new MessageProsessorFactory();
var p = _instance.Processors.FirstOrDefault(
s => s.Metadata.ExpectedType.AssemblyQualifiedName == messageEnvelope.AssemblyQualifiedName);
if (p == null)
throw new NotSupportedException(
"The supplied type is not supported: " + messageEnvelope.AssemblyQualifiedName);
// we need to create a new instance from the singleton instance provided by MEF to assure we get a instance un-associated with the MEF container for
// currently as of .net 4.0 it wants to keep references on objects which may impact memory consumption.
// As we have no control over how a developer will organise there class that exposes an Export,
// this could lead to multithreading issues as an imported lazy instance is a singleton regardless
// of the RequiredCreationPolicy.
// MEF is still invaluable in avoided a tone of abstract factory code and its dynamic detection of all supporting
// Exports conforming to IMessageProcessor means there is no factory config for us to maintain.
IMessageProcessor newInstance = (IMessageProcessor)Activator.CreateInstance(p.Value.GetType());
return newInstance;
}

IMessageProcessorinstance has anImportingConstructorinstead of a default constructor? Also, it's not going to satisfy any imports on the new instance. – Richard Deeming Dec 4 '12 at 19:22