使用反射、工厂调用多个dll中的的派生类

 

 
 
 
使用反射、工厂调用多个dll中的的派生类
 
假设有一个接口ISend。ISend负责发送数据到不同的客户端。通过ISend可以把数据发送到sockent客户端,也可能是邮件服务器,或者时消息队列,或者时数据库。关键是我们开发的时候不知道有多少个客户端。但是我们的程序必须动态的加载这些客户端然后把所有的消息发送出去。
Interface ISend
{
Send(IData data);
}
由于不知道有多少个客户端,我们想到把多个ISend的实现放在dll中实现。如SockentSend,MailSend,MSGSend。通过反射可以调用dll中的这些实现。如:
 
……
但是我们注意到我们在每个dll中的实现都必须通过名字空间和类名称来加载class。这就不符合我们希望不知道dll中实际的类名称,也能加载dll中的实现类的目的。我们有个简单的办法解决这个问题。就是在dll中实现一个简单工厂。通过这个工厂加载dll中的实现类。如
FactorySend
{
ISend GreateInstance();
}
在每个dll中都有一个FactorySend类,负责创建一个Send对象。
例如SockentSend.dll:
FactorySend
{
ISend GreateInstance()
{
Return new SockentSend();
}
}
我们在每个dll中有了一个统一的工厂FactorySend,通过反射调用统一工厂FactorySend加载不同ISend的实现类。
现在还有一个问题,我们系统怎么动态的知道应该加载dll呢?这里我们可以使用一个.net一个监视文件系统的类 FileSystemWatcher。程序运行时,监视exe的根目录,当有dll文件复制到该目录的时候,我们就加载这个dll。
public class Watcher
{
 
    public static void Main()
    {
          Run();
    }
    [PermissionSet(SecurityAction.Demand, Name="FullTrust")]
    public static void Run()
    {
        string[] args = System.Environment.GetCommandLineArgs();
        // If a directory is not specified, exit program.
        if(args.Length != 2)
        {
            // Display the proper way to call the program.
            Console.WriteLine("Usage: Watcher.exe (directory)");
            return;
        }
        // Create a new FileSystemWatcher and set its properties.
        FileSystemWatcher watcher = new FileSystemWatcher();
        watcher.Path = args[1];
        /* Watch for changes in LastAccess and LastWrite times, and
           the renaming of files or directories. */
        watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite
           | NotifyFilters.FileName | NotifyFilters.DirectoryName;
        // Only watch text files.
        watcher.Filter = "*.txt";
        // Add event handlers.
        watcher.Changed += new FileSystemEventHandler(OnChanged);
        watcher.Created += new FileSystemEventHandler(OnChanged);
        watcher.Deleted += new FileSystemEventHandler(OnChanged);
        watcher.Renamed += new RenamedEventHandler(OnRenamed);
        // Begin watching.
        watcher.EnableRaisingEvents = true;
        // Wait for the user to quit the program.
        Console.WriteLine("Press /'q/' to quit the sample.");
        while(Console.Read()!='q');
    }
    // Define the event handlers.
    private static void OnChanged(object source, FileSystemEventArgs e)
    {
        // Specify what is done when a file is changed, created, or deleted.
       Console.WriteLine("File: " + e.FullPath + " " + e.ChangeType);
    }
    private static void OnRenamed(object source, RenamedEventArgs e)
    {
        // Specify what is done when a file is renamed.
        Console.WriteLine("File: {0} renamed to {1}", e.OldFullPath, e.FullPath);
    }
}
 
在系统中应该有一个ISend 实现的列表List<ISend> list。当发送数据的时候,遍历这个list,依次发送数据到相应的客户端。
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值