关于C#中动态加载AppDomain的问题

开发 后端
本文介绍了一些关于C#中动态加载AppDomain的问题的解决办法。在.NET中出现了一个新的概念:AppDomain——应用程序域,所有.NET应用程序都需要运行在托管环境中。

在操作系统中,利用进程可以对正在运行的应用程序进行隔离,每个应用程序被加载到单独的进程中,并为其分配虚拟内存,进程无法直接访问物理内存,只能通过操作系统将虚拟内存映射到物理内存中,并保证进程之间的物理内存不会重叠,但是进程***的缺点就是效率问题,尤其是进程的切换开销很大,而进程间不能共享内存,所以不可能从一个进程通过传递指针给另一个进程。

在.NET中出现了一个新的概念:AppDomain——应用程序域,所有.NET应用程序都需要运行在托管环境中,操作系统能提供的只有进程,因此.NET程序需要通过AppDomain这个媒介来运行在进程中,同时使用该incheng提供的内存空间,只要是.NET的应用都会运行在某个AppDomain中。

当我们运行一个.NET应用程序或者运行库宿主时,OS会首先建立一个进程,然后会在进程中加载CLR(这个加载一般是通过调用_CorExeMain或者_CorBindToRuntimeEx方法来实现),在加载CLR时会创建一个默认的AppDomain,它是CLR的运行单元,程序的Main方法就是在这里执行,这个默认的AppDomain是唯一且不能被卸载的,当该进程消灭时,默认AppDomain才会随之消失。

一个进程中可以有多个AppDomain,且它们直接是相互隔离的,我们的Assembly是不能单独执行的,它必须被加载到某个AppDomain中,要想卸载一个Assembly就只能卸载其AppDomain。

最近在我所参加的一个项目中要实现这样一个模块:定制一个作业管理器,它可以定时的以不同频率执行某些.Net应用程序或者存储过程,这里的频率可以是仅一次、每天、每周还是每月进行执行计划的实施,对于调用存储过程没什么好说的,但是调用.Net应用程序的时候就需要考虑如下问题:

一旦Assembly被作业管理器的服务器调用,(比如某个执行计划正好要被执行了),在调用之前会将程序集加载到默认AppDomain,然后执行,这就有个问题,如果我需要做替换或者删除Assembly等这些操作的时候,由于Assembly已经被默认AppDomain加载,那么对它的更改肯定是不允许的,它会弹出这样的错误:

错误提示

除非你关掉作业管理服务器,然后再操作,显然这样做是很不合理的。

并且默认AppDomain是不能被卸载的,那么我们该怎么办呢,我想到的方法是动态的加载Assembly,新建一个AppDomain,让Assembly加载到这个新AppDomain中然后执行,当执行完后卸载这个新的AppDomain即可,方法如下:

1、创建程序集加载类AssemblyDynamicLoader,该类用来创建新的AppDomain,并生成用来执行.Net程序的RemoteLoader类:

  1.  using System;  
  2.  
  3.     using System.Collections.Generic;  
  4.     using System.Globalization;  
  5.     using System.IO;  
  6.     using System.Reflection;  
  7.     using System.Text;  
  8.     using Ark.Log;  
  9.  
  10.     /// < summary>  
  11.     /// The local loader.  
  12.     /// < /summary>  
  13.     public class AssemblyDynamicLoader  
  14.     {  
  15.   /// < summary>  
  16.   /// The log util.  
  17.   /// < /summary>  
  18.   private static ILog log = LogManager.GetLogger(typeof(AssemblyDynamicLoader));  
  19.  
  20.   /// < summary>  
  21.   /// The new appdomain.  
  22.   /// < /summary>  
  23.   private AppDomain appDomain;  
  24.  
  25.   /// < summary>  
  26.   /// The remote loader.  
  27.   /// < /summary>  
  28.   private RemoteLoader remoteLoader;  
  29.  
  30.   /// < summary>  
  31.   /// Initializes a new instance of the < see cref="LocalLoader"/> class.  
  32.   /// < /summary>  
  33.   public AssemblyDynamicLoader()  
  34.   {  
  35. AppDomainSetup setup = new AppDomainSetup();  
  36. setup.ApplicationName = "ApplicationLoader";  
  37. setup.ApplicationBase = AppDomain.CurrentDomain.BaseDirectory;  
  38. setup.PrivateBinPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "private");  
  39. setup.CachePath = setup.ApplicationBase;  
  40. setup.ShadowCopyFiles = "true";  
  41. setup.ShadowCopyDirectories = setup.ApplicationBase;  
  42.  
  43. this.appDomain = AppDomain.CreateDomain("ApplicationLoaderDomain"null, setup);  
  44. String name = Assembly.GetExecutingAssembly().GetName().FullName;  
  45.  
  46. this.remoteLoader = (RemoteLoader)this.appDomain.CreateInstanceAndUnwrap(name, typeof(RemoteLoader).FullName);  
  47.   }  
  48.  
  49.   /// < summary>  
  50.   /// Invokes the method.  
  51.   /// < /summary>  
  52.   /// < param name="fullName">The full name.< /param>  
  53.   /// < param name="className">Name of the class.< /param>  
  54.   /// < param name="argsInput">The args input.< /param>  
  55.   /// < param name="programName">Name of the program.< /param>  
  56.   /// < returns>The output of excuting.< /returns>  
  57.   public String InvokeMethod(String fullName, String className, String argsInput, String programName)  
  58.   {  
  59. this.remoteLoader.InvokeMethod(fullName, className, argsInput, programName);  
  60. return this.remoteLoader.Output;  
  61.   }  
  62.  
  63.   /// < summary>  
  64.   /// Unloads this instance.  
  65.   /// < /summary>  
  66.   public void Unload()  
  67.   {  
  68. try 
  69. {  
  70.     AppDomain.Unload(this.appDomain);  
  71.     this.appDomain = null;  
  72. }  
  73. catch (CannotUnloadAppDomainException ex)  
  74. {  
  75.     log.Error("To unload assembly error!", ex);  
  76. }  
  77. }  
  78. }  

2、创建RemoteLoader类,它可以在AppDomain中自由穿越,这就需要继承System.MarshalByRefObject这个抽象类,这里RemoteLoader如果不继承MarshalByRefObject类则一定会报错(在不同AppDomain间传递对象,该对象必须是可序列化的)。以RemoteLoader类做为代理来调用待执行的.Net程序。

  1. using System;  
  2.  using System.Collections.Generic;  
  3.  using System.Globalization;  
  4.  using System.IO;  
  5.  using System.Reflection;  
  6.  using System.Text;  
  7.  
  8.  /// < summary>  
  9.  /// The Remote loader.  
  10.  /// < /summary>  
  11.  public class RemoteLoader : MarshalByRefObject  
  12.  {  
  13.   /// < summary>  
  14.   /// The assembly we need.  
  15.   /// < /summary>  
  16.   private Assembly assembly = null;  
  17.  
  18.   /// < summary>  
  19.   /// The output.  
  20.   /// < /summary>  
  21.   private String output = String.Empty;  
  22.  
  23.   /// < summary>  
  24.   /// Gets the output.  
  25.   /// < /summary>  
  26.   /// < value>The output.< /value>  
  27.   public String Output  
  28.   {  
  29. get 
  30. {  
  31.  return this.output;  
  32. }  
  33.   }  
  34.  
  35.   /// < summary>  
  36.   /// Invokes the method.  
  37.   /// < /summary>  
  38.   /// < param name="fullName">The full name.< /param>  
  39.   /// < param name="className">Name of the class.< /param>  
  40.   /// < param name="argsInput">The args input.< /param>  
  41.   /// < param name="programName">Name of the program.< /param>  
  42.   public void InvokeMethod(String fullName, String className, String argsInput, String programName)  
  43.   {  
  44. this.assembly = null;  
  45. this.output = String.Empty;  
  46.  
  47. try 
  48. {  
  49.  this.assembly = Assembly.LoadFrom(fullName);  
  50.  
  51.  Type pgmType = null;  
  52.  if (this.assembly != null)  
  53.  {  
  54.   pgmType = this.assembly.GetType(className, truetrue);  
  55.  }  
  56.  else 
  57.  {  
  58.   pgmType = Type.GetType(className, truetrue);  
  59.  }  
  60.  
  61.  Object[] args = RunJob.GetArgs(argsInput);  
  62.  
  63.  BindingFlags defaultBinding = BindingFlags.DeclaredOnly | BindingFlags.Public  
  64. | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.IgnoreCase  
  65. | BindingFlags.InvokeMethod | BindingFlags.Static;  
  66.  
  67.  CultureInfo cultureInfo = new CultureInfo("es-ES"false);  
  68.  
  69.  try 
  70.  {  
  71.   MethodInfo methisInfo = RunJob.GetItsMethodInfo(pgmType, defaultBinding, programName);  
  72.   if (methisInfo == null)  
  73.   {  
  74. this.output = "EMethod does not exist!";  
  75.   }  
  76.  
  77.   if (methisInfo.IsStatic)  
  78.   {  
  79. if (methisInfo.GetParameters().Length == 0)  
  80. {  
  81.  if (methisInfo.ReturnType == typeof(void))  
  82.  {  
  83.   pgmType.InvokeMember(programName, defaultBinding, nullnullnull, cultureInfo);  
  84.   this.output = "STo call a method without return value successful.";  
  85.  }  
  86.  else 
  87.  {  
  88.   this.output = (String)pgmType.InvokeMember(programName, defaultBinding, nullnullnull, cultureInfo);  
  89.  }  
  90. }  
  91. else 
  92. {  
  93.  if (methisInfo.ReturnType == typeof(void))  
  94.  {  
  95.   pgmType.InvokeMember(programName, defaultBinding, nullnull, args, cultureInfo);  
  96.   this.output = "STo call a method without return value successful.";  
  97.  }  
  98.  else 
  99.  {  
  100.   this.output = (String)pgmType.InvokeMember(programName, defaultBinding, nullnull, args, cultureInfo);  
  101.  }  
  102. }  
  103.   }  
  104.   else 
  105.   {  
  106. if (methisInfo.GetParameters().Length == 0)  
  107. {  
  108.  object pgmClass = Activator.CreateInstance(pgmType);  
  109.  
  110.  if (methisInfo.ReturnType == typeof(void))  
  111.  {  
  112.   pgmType.InvokeMember(programName, defaultBinding, null, pgmClass, null, cultureInfo);  
  113.   this.output = "STo call a method without return value successful.";  
  114.  }  
  115.  else 
  116.  {  
  117.   this.output = (String)pgmType.InvokeMember(programName, defaultBinding, null, pgmClass, null, cultureInfo);//'ymtpgm' is program's name and the return value of it must be started with 'O'.  
  118.  }  
  119. }  
  120. else 
  121. {  
  122.  object pgmClass = Activator.CreateInstance(pgmType);  
  123.  
  124.  if (methisInfo.ReturnType == typeof(void))  
  125.  {  
  126.   pgmType.InvokeMember(programName, defaultBinding, null, pgmClass, args, cultureInfo);  
  127.   this.output = "STo call a method without return value successful.";  
  128.  }  
  129.  else 
  130.  {  
  131.   this.output = (String)pgmType.InvokeMember(programName, defaultBinding, null, pgmClass, args, cultureInfo);//'ymtpgm' is program's name and the return value of it must be started with 'O'.  
  132.  }  
  133. }  
  134.   }  
  135.  }  
  136.  catch 
  137.  {  
  138.   this.output = (String)pgmType.InvokeMember(programName, defaultBinding, nullnullnull, cultureInfo);  
  139.  }  
  140. }  
  141. catch (Exception e)  
  142. {  
  143.  this.output = "E" + e.Message;  
  144. }  
  145. }  
  146. }   

其中的InvokeMethod方法只要提供Assembly的全名、类的全名、待执行方法的输入参数和其全名就可以执行该方法,该方法可以是带参数或不带参数,静态的或者不是静态的。

***这样使用这两个类:

  1. AssemblyDynamicLoader loader = new AssemblyDynamicLoader();  
  2. String output = loader.InvokeMethod("fileName""ymtcla""yjoinp""ymtpgm");  
  3.  loader.Unload();  

【编辑推荐】

  1. 浅谈C#泛型的用处
  2. 浅谈C#如何实现多继承
  3. C#语言与Java语言程序的比较
  4. 利用C#指针进行图像操作
  5. C#中用鼠标移动页面功能的实现
责任编辑:yangsai 来源: 博客园
相关推荐

2009-08-28 16:14:26

C#实现加载动态库

2009-07-31 14:47:22

JavaScript函C#

2009-02-05 15:32:23

接口委托

2009-02-03 09:33:26

动态类型动态编程C# 4.0

2009-08-11 14:26:56

C#动态调用WebSe

2021-02-06 10:27:45

C#函数参数

2022-01-14 07:56:39

C#动态查询

2009-09-02 10:58:02

C#动态数组

2009-08-12 16:01:32

C#动态改变数据

2009-08-24 16:11:35

C#项目开发

2010-06-01 13:32:15

Visual Stud

2011-06-09 09:08:00

C#循环结构

2009-09-17 18:07:22

C#动态数组

2009-09-02 11:02:57

C#动态数组

2012-12-26 09:31:44

C#Winform

2009-08-17 17:08:47

C#转义

2009-09-17 18:14:05

C#动态数组

2009-08-27 16:29:18

C#动态编译

2009-09-17 17:44:51

C#动态数组

2009-09-17 17:40:36

C#动态数组
点赞
收藏

51CTO技术栈公众号