- 浏览: 61896 次
- 性别:
- 来自: 广州
文章分类
最新评论
在.net中有了一个AppDomain——应用程序域 的新概念,.NET程序通过AppDomain这个媒介来运行在进程中。
我们运行一个.NET应用程序或者一个运行库宿主时,OS会首先建立一个进程,然后会在进程中加载CLR(这个加载一般是通过调用 _CorExeMain或者_CorBindToRuntimeEx方法来实现),在加载CLR时会创建一个默认的AppDomain,它是CLR的运行 单元,程序的Main方法就是在这里执行,这个默认的AppDomain是唯一且不能被卸载的,当该进程消灭时,默认AppDomain才会随之消失。
一个进程中可以有多个AppDomain,且它们直接是相互隔离的,我们的Assembly是不能单独执行的,它必须被加载到某个AppDomain中,要想卸载一个Assembly 就只能卸载其AppDomain。
一旦Assembly被调用,在调用之前会将程序集加载到默认AppDomain,然后执行,我们就会遇到这个问题:如果我需要做替换或者删除 Assembly等这些操作的时候,由于Assembly已经被默认AppDomain加载,那么对它的更改肯定是不允许的,它会弹出这样的错误:
除非你关掉作业管理服务器,然后再操作,显然这样做是很不合理的。
并且默认AppDomain是不能被卸载的,那么我们该怎么办呢,我想到的方法是动态的加载Assembly,新建一个AppDomain,让Assembly加载到这个新AppDomain中然后执行,当执行完后卸载这个新的AppDomain即可。核心思想就是:如果程序集被加载到默认应用程序域中,则当进程运行时将无法从内存中卸载该程序集。但是,如果打开另一个应用程序域来加载和执行程序集,则卸载该应用程序域时也会同时卸载程序集。使用此技术最小化长时间运行的进程的工作集 。,方法如下:
1、创建程序集加载类AssemblyDynamicLoader,该类用来创建新的AppDomain,并生成用来执行.net程序的RemoteLoader类:
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Reflection; using System.Text; using Ark.Log; /// /// The local loader. /// public class AssemblyDynamicLoader { /// /// The log util. /// private static ILog log = LogManager.GetLogger( typeof (AssemblyDynamicLoader)); /// /// The new appdomain. /// private AppDomain appDomain; /// /// The remote loader. /// private RemoteLoader remoteLoader; /// /// Initializes a new instance of the class. /// public AssemblyDynamicLoader() { AppDomainSetup setup = new AppDomainSetup(); setup.ApplicationName = " ApplicationLoader " ; setup.ApplicationBase = AppDomain.CurrentDomain.BaseDirectory; setup.PrivateBinPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, " private " ); setup.CachePath = setup.ApplicationBase; setup.ShadowCopyFiles = " true " ; setup.ShadowCopyDirectories = setup.ApplicationBase; this .appDomain = AppDomain.CreateDomain( " ApplicationLoaderDomain " , null , setup); String name = Assembly.GetExecutingAssembly().GetName().FullName; this .remoteLoader = (RemoteLoader) this .appDomain.CreateInstanceAndUnwrap(name, typeof (RemoteLoader).FullName); } /// /// Invokes the method. /// /// The full name. /// Name of the class. /// The args input. /// Name of the program. /// The output of excuting. public String InvokeMethod(String fullName, String className, String argsInput, String programName) { this .remoteLoader.InvokeMethod(fullName, className, argsInput, programName); return this .remoteLoader.Output; } /// /// Unloads this instance. /// public void Unload() { try { AppDomain.Unload( this .appDomain); this .appDomain = null ; } catch (CannotUnloadAppDomainException ex) { log.Error( " To unload assembly error! " , ex); } } }
2、创建RemoteLoader类,它可以在AppDomain中自由穿越,这就需要继承 System.MarshalByRefObject这个抽象类,这里RemoteLoader如果不继承MarshalByRefObject类则一定 会报错(在不同AppDomain间传递对象,该对象必须是可序列化的)。以RemoteLoader类做为代理来调用待执行的.net程序。
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Reflection; using System.Text; /// /// The Remote loader. /// public class RemoteLoader : MarshalByRefObject { /// /// The assembly we need. /// private Assembly assembly = null ; /// /// The output. /// private String output = String.Empty; /// /// Gets the output. /// /// The output. public String Output { get { return this .output; } } /// /// Invokes the method. /// /// The full name. /// Name of the class. /// The args input. /// Name of the program. public void InvokeMethod(String fullName, String className, String argsInput, String programName) { this .assembly = null ; this .output = String.Empty; try { this .assembly = Assembly.LoadFrom(fullName); Type pgmType = null ; if ( this .assembly != null ) { pgmType = this .assembly.GetType(className, true , true ); } else { pgmType = Type.GetType(className, true , true ); } Object[] args = RunJob.GetArgs(argsInput); BindingFlags defaultBinding = BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.IgnoreCase | BindingFlags.InvokeMethod | BindingFlags.Static; CultureInfo cultureInfo = new CultureInfo( " es-ES " , false ); try { MethodInfo methisInfo = RunJob.GetItsMethodInfo(pgmType, defaultBinding, programName); if (methisInfo == null ) { this .output = " EMethod does not exist! " ; } if (methisInfo.IsStatic) { if (methisInfo.GetParameters().Length == 0 ) { if (methisInfo.ReturnType == typeof ( void )) { pgmType.InvokeMember(programName, defaultBinding, null , null , null , cultureInfo); this .output = " STo call a method without return value successful. " ; } else { this .output = (String)pgmType.InvokeMember(programName, defaultBinding, null , null , null , cultureInfo); } } else { if (methisInfo.ReturnType == typeof ( void )) { pgmType.InvokeMember(programName, defaultBinding, null , null , args, cultureInfo); this .output = " STo call a method without return value successful. " ; } else { this .output = (String)pgmType.InvokeMember(programName, defaultBinding, null , null , args, cultureInfo); } } } else { if (methisInfo.GetParameters().Length == 0 ) { object pgmClass = Activator.CreateInstance(pgmType); if (methisInfo.ReturnType == typeof ( void )) { pgmType.InvokeMember(programName, defaultBinding, null , pgmClass, null , cultureInfo); this .output = " STo call a method without return value successful. " ; } else { 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'. } } else { object pgmClass = Activator.CreateInstance(pgmType); if (methisInfo.ReturnType == typeof ( void )) { pgmType.InvokeMember(programName, defaultBinding, null , pgmClass, args, cultureInfo); this .output = " STo call a method without return value successful. " ; } else { 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'. } } } } catch { this .output = (String)pgmType.InvokeMember(programName, defaultBinding, null , null , null , cultureInfo); } } catch (Exception e) { this .output = " E " + e.Message; } } }
其中的InvokeMethod方法只要提供Assembly的全名、类的全名、待执行方法的输入参数和其全名就可以执行该方法,该方法可以是带参数或不带参数,静态的或者不是静态的。
最后这样使用这两个类:
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> AssemblyDynamicLoader loader = new AssemblyDynamicLoader(); String output = loader.InvokeMethod( " fileName " , " ymtcla " , " yjoinp " , " ymtpgm " ); loader.Unload();
发表评论
-
C#中怎么判断一个数组中是否存在某个数组值 转
2011-10-20 10:02 2236C#中怎么判断一个数组中是否存在某个数组值 作者: 李嘉 ... -
C#开发和调用Web Service (转)
2011-08-12 22:43 11851.1 、 Web Service 基 ... -
profile 实现购物车 实例(二)(转)
2011-07-29 14:27 1056上个例子,我见了两个类,一个商品类。一个购物车类。并把购物 ... -
profile 实现购物车 实例(一)(转)
2011-07-29 14:25 1009首先要了解什么是Profile,不了解就查下资料跟MSDN ... -
Profile的简单的配置与操作(转)
2011-07-29 14:20 1052下面由我来给大家配置一个 Profile与 Profile ... -
Profile实现购物车(应用Profile)(转)
2011-07-29 14:15 1017上面我已经介绍过了 Profile的配置和简单应用了,如果大 ... -
浅析Microsoft .net PetShop程序中的购物车和订单处理模块(Profile技术,异步MSMQ消息)
2011-07-29 11:55 1401对于Microsoft .net PetShop程序中的购物车 ... -
大型网站访问性能处理(转集)
2011-07-28 14:14 1076高性能网站性能优化与系统架构(ZT) 说说大型高并发高 ... -
不使用DalFactory和IDAL,支持多种数据库应用
2011-07-27 23:23 2MS的PetShop示例应用程序的“多层架构”被很多.NET开 ... -
ASP.NET页面刷新方法总结(顺便散分)
2011-07-07 15:17 1188先看看ASP.NET页面刷新的实现方法: 第一: ... -
c#将对象序列化为字符串和将字符串反序列化为对象
2011-06-30 11:23 1575c#将对象序列化为字符串和将字符串反序列化为对象 a ... -
provider: SQL 网络接口, error: 26 解决方法 图
2011-06-03 10:06 6601在建立与服务器的连接时出错。在连接到 SQL Server 2 ... -
Server.Execute和#include相异之处
2011-05-17 13:37 727server 是 ASP 中的一个内置对象, 有一个方法为 ... -
Response.Redirect(),Server.Transfer(),Server.Execute()的区别.docx
2011-05-17 11:48 11991 、 Response.Redirect(): ... -
win7下装不了vs2008的情况
2011-04-09 01:11 717vs2005与vs2008都是镜像文件 ,所以用了虚拟光驱,装 ... -
ASP.NET + SQL 分页存储过程以及对应的类
2011-03-21 16:57 1005ASP.NET + SQL 分页存 ... -
ASP.NET 错误页处理
2011-03-19 21:46 1007ASP.NET 提供三种用于在出现错误时捕获和响应错误的主 ... -
asp.net 伪静态 html 后面带参数
2011-03-16 21:22 2044例如:faq_1.html?id=2 相关设置请在网上 ... -
DataFormatString的使用
2011-01-05 09:16 880在 我们从业务逻辑层获得数据实体时候,接下来的事情就是要绑定 ... -
ASP.NET 伪静态 静态页 访问不了 方法
2010-12-31 11:14 2005本站基于asp.net+UrlRewriter来实现网站伪 ...
相关推荐
C#动态加载程序集详解 动态程序集是指没有被编译至主程序,而是主程序在运行时动态调用或者生成的程序集。C#生成的程序集也是动态链接库(DLL)。在实际应用中,一些程序不一定要在启动的时候就把所有DLL文件都加载...
通过使用System.AppDomain.CurrentDomain.BaseDirectory可以获取当前Thread的当前应用程序域的基目录,它由程序集冲突解决程序用来探测程序集。例如: string str = System.AppDomain.CurrentDomain.BaseDirectory; ...
首先,我们要了解C#中的Assembly(程序集)概念。在C#中,程序集是类型和资源的物理容器,它可以包含一个或多个编译后的DLL或EXE文件。LiteLoader.NET的核心功能就是解析这些程序集,查找并执行其中的特定类和方法。...
### C# 获取运行程序路径详解 在开发C#应用程序时,有时我们需要获取当前正在运行的应用程序的各种路径信息,比如程序所在目录、启动程序的可执行文件路径等。这些信息对于进行文件读写操作、资源定位等任务至关...
通过`Assembly.LoadFile()`直接加载程序集(如"BhgpsWnb.exe"),内存占用约为8MB,并且一旦加载,程序集不会自动卸载,即使尝试使用`AppDomain.Unload()`卸载应用域,内存也不会显著减少。这是因为程序集被加载到...
- **应用场景**:适用于获取程序的基目录,用于程序集冲突解决等。 5. **`System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase`** - **作用**:获取和设置包含该应用程序的目录的名称。 - **示例...
`AppDomain.CurrentDomain.BaseDirectory` 返回的是应用程序的基础目录,这个目录通常包含程序集和应用程序配置文件。它是程序集冲突解决程序用来查找程序集的路径。 **二、Web应用程序的根目录** 1. **...
### C# 多线程详解 #### 一、线程的定义 1.1 **进程、应用程序域与线程的关系** - **进程**:在Windows系统中,进程是最基本的概念之一,代表一个运行中的程序实例。每个进程都有独立的地址空间和其他资源。进程...
- 程序集包含IL代码、元数据、资源和程序清单,是.NET应用程序的基本部署单元。 19. 调用WebService的方式: - 使用WSDL.exe生成客户端代理类。 - 直接在VS.NET中添加Web引用或服务引用。 这些是针对C#面试的...
程序集(Assembly)是.NET程序的基本构建块,包含元数据、IL代码、资源等。 17. 调用WebService的方法: - WSDL.exe工具:生成代理类。 - VS.NET的Add Service Reference:自动创建客户端代理类。 以上是C#面试...
- 内部(internal):在同一程序集内可访问。 - 朋友类(friend):通过using关键字的命名空间内部访问。 例如: ```csharp public class A { public void PublicMethod() { } private void PrivateMethod() ...
- **Internal**: 内部访问修饰符,限制访问权限为同一程序集内的类型。 ### 2. ASP.NET 页面间传递值的方法 页面间传递值是ASP.NET中常见的需求之一,主要通过以下几种方式实现: - **Query String**: 使用URL参数...
4. **internal**: 变量或方法仅能在包含它的程序集内访问。 这些访问修饰符是理解类成员可见性的重要概念,在面试中经常会被问到。 #### 二、ADO.NET基础 ADO.NET是Microsoft提供的用于与数据库交互的数据访问技术...
获取程序的基目录,该目录被程序集冲突解析器用来探测程序集。 ```csharp string str4 = System.AppDomain.CurrentDomain.BaseDirectory; ``` **特点:** - **固定不变**:无论程序如何运行或改变工作目录,这个...
- **Attribute**(特性): 特性是一种元数据标记,用于提供有关程序集、类、方法等的附加信息。它们通常用于编译时或运行时,以帮助编译器或运行时环境更好地理解和处理代码。例如,`Serializable`特性用于指示类...
- **加载库**: 每个应用程序域都有自己的装入点,可以独立地加载和卸载程序集。 - **安全边界**: 提供了一种安全模型,限制代码执行的上下文,从而增强了安全性。 - **异常隔离**: 应用程序域间的异常不会相互影响,...