使用反射、工厂调用多个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,依次发送数据到相应的客户端。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在Python调用DLL多个函数,可以按照以下步骤进行操作: 1. 首先,确保已经安装了Python解释器和相应的库,如pywin32和PyInstaller。你可以从Python官方网站下载最新的Python 2版本,并使用pip安装pywin32和PyInstaller。 2. 创建一个新的Python脚本,可以使用任何文本编辑器打开。在脚本的开头,导入必要的库,比如ctypes。ctypes库提供了与C DLL交互的功能。 3. 使用ctypes库的cdll或windll函数加载DLL文件。cdll用于加载C语言编写的DLL,而windll用于加载Windows API的DLL。你需要提供DLL文件的路径作为参数。 4. 使用加载的DLL对象调用的函数。你可以使用DLL对象的属性或方法来访问和调用DLL的函数。要调用函数,你需要提供函数名称和参数。 5. 在调用DLL函数之前,你可能需要定义函数的返回类型和参数类型。这是因为Python是动态类型语言,需要明确指定函数的类型信息才能正确地调用。 6. 最后,测试你的代码。你可以运行Python脚本,检查是否成功调用DLL多个函数。确保调用的函数和参数与DLL的定义相匹配。 综上所述,Python调用DLL多个函数的步骤包括导入必要的库、加载DLL文件、调用函数并进行测试。通过这些步骤,你可以在Python成功调用DLL多个函数。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [Python调用DLL的函数](https://blog.csdn.net/donghailin/article/details/82705784)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] - *3* [python使用ctypes库调用DLL动态链接库](https://download.csdn.net/download/weixin_38703823/13705547)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值