如何使用未硬编码到程序集中的数据填充MEF插件?

时间:2010-05-30 18:48:47

标签: c# database mef

我正在开发一个与各种硬件进行通信的程序。由于它通信和控制的项目的性质不同,我需要为每个不同的硬件提供不同的“驱动程序”。这让我觉得MEF是一个很好的方法,可以将这些驱动程序作为插件,即使在产品发布后也可以添加。

我已经看了很多关于如何使用MEF的例子,但是我无法找到答案的问题是如何使用外部数据填充MEF插件(例如,从数据库中) 。我可以找到的所有示例都将“数据”硬编码到程序集中,如下例所示:

[Export( typeof( IRule ) )]  
public class RuleInstance : IRule  
{
    public void DoIt() {}  

    public string Name  
    {  
        get { return "Rule Instance 3"; }  
    }

    public string Version  
    {  
        get { return "1.1.0.0"; }  
    }  

    public string Description  
    {  
        get { return "Some Rule Instance"; }  
    }  
}

如果我希望名称,版本和描述来自数据库怎么办?我怎么告诉MEF在哪里获取这些信息?

我可能会遗漏一些非常明显的东西,但我不知道它是什么。

2 个答案:

答案 0 :(得分:3)

在通过属性加载后,您必须将信息传递给插件:

[Export( typeof( IRule ) )]  
public class RuleInstance : IRule  
{
    puliic void DoIt() 
    { }

    public string Name { get; set; }
}

public class Program
{
    [Import(typeof( IRule ))]
    public IRule instance { get; set; }

    public void Run()
    {
        // Load the assemblies here

        instance.Name = "Rule Instance 3";
    }             
}

或者插件可以通过主机接口请求变量。您可以通过属性或构造函数参数传递IHost实例,但使用MEF构造函数参数并不简单。这是通过一个属性:

 [Export( typeof( IRule ) )]  
public class RuleInstance : IRule  
{
    puliic void DoIt() 
    { }

    public void Initialise()
    {
        // Load our name from the host, this cannot be done in the constructor
        string name = Host.GetName(/* some parameters? */)
    }


    public IHost Host { get; set; }
    public string Name { get; set; }
}

public interface IHost
{
    string GetName(/* some parameters? */);
}

public class Program : IHost
{
    [Import(typeof( IRule ))]
    public IRule instance { get; set; }

    public void Run()
    {
        // Load the assemblies here       

        // Make sure the plugins know where the host is...
        instance.Host = this;
    }             
}

你也可以“导出”数据库界面并将其“导入”任何需要数据库访问的插件......

答案 1 :(得分:1)

您始终可以导出单个值(通过合同名称),这是一个示例:

public class Configuration
{
  [Export("SomeValue")]
  public string SomeValue
  {
    get { /* return value from database perhaps? */ }
  }
}

[Export(typeof(IRule))]
public class RuleInstance : IRule
{
  [Import("SomeValue")]
  public string SomeValue { get; private set; }
}