你曾经需要在同一台机器的两个.net应用程序间进行数据交换吗?例如,一个web站点和一个windows服务?.net框架提供了几种好的选择来完成进程间通信(ipc):web service,remoting。最快的是remoting,因为它使用tcp通道和二进制格式。
然而,如果需要频繁地从一个应用程序调用另外一个应用程序,并且你主要关心的是性能,remoting还是显得慢了一点。让remoting变慢的,不是协议,而是序列化。
通常来说,remoting是很不错的,但如果仅限于本地机器的两个进程间相互通信,其处理机制增加了不必要的开销。所以要考虑一些别的选择,比较好的是命名管道(named pipes),不会进行二进制序列化,所以提供了更快的ipc。
要记住,这个解决方案最有效的使用是在一个应用程序需要和另一个应用程序进行非常频繁的、短文本的消息通信的情况下,并且是在同一台机器或在同一局域网内部。对于结构化的数据交换,这些文本消息也可以是xml文档或序列化的.net对象。通信时没有安全层,因为命名管道最多只能在局域网中运行,所以假定安全问题由别的层进行处理。
一、实现命名管道
以下是.net命名管道解决方案中几个主要的类。
. namedpipenative:这个类和kernal32.dll联系实现命名管道的通信,其中包含一些常用方法和常量。
. namedpipewrapper :这个类是namedpipenative的一个包装。
. apipeconnection:这是一个抽象类,定义了命名管道连接、读、写数据的方法。这个类是从clientpipeconnection 和serverpipeconnection 继承的,分别在客户端和服务器端应用程序中使用。
. clientpipeconnection:被客户端应用程序使用,使用命名管道和服务器通信。
. serverpipeconnection:允许命名管道服务器创建连接,和客户端进行通信。
. pipehandle:保存操作系统的本地句柄,以及管道连接的当前状态。
了解上述的类之后,需要了解一下命名管道的操作。
二、创建一个服务器端命名管道
服务器端管道名的语法是://./pipe/pipename。“pipename”.. 部分是管道的具体名字。要连接管道,客户端应用程序需要创建一个同样名称的客户端命名管道。如果客户端在不同的机器上,服务器端管道的名称应该是//server/pipe/pipename。下面的代码是namedpipewrapper的一个静态方法,被用来实例化一个服务器端命名管道。
public static pipehandle create(string name,uintoutbuffer, uintinbuffer){
name = @"/./pipe/" + name;
pipehandle handle = new pipehandle();
for(inti=1;i<=attempts;i++){
handle.state=interprocessconnectionstate.creating;
handle.handle = namedpipenative.createnamedpipe( name,
namedpipenative.pipe_access_duplex,
namedpipenative.pipe_type_message |
namedpipenative.pipe_readmode_message |
namedpipenative.pipe_wait,
namedpipenative.pipe_unlimited_instances,
outbuffer,
inbuffer,
namedpipenative.nmpwait_wait_forever,
intptr.zero);
if(handle.handle.toint32()!=namedpipenative.invalid_handle_value){
handle.state=interprocessconnectionstate.created;
break;
}
if (i >= attempts) {
handle.state = interprocessconnectionstate.error;
throw new namedpipeioexception("error creating named
pipe"+name+".internalerror:"+namedpipenative.getlasterror().tostring(),namedpipenative.getlasterror());
}
}
returnhandle;
}
通过调用namedpipenative.createnamedpipe方法,上面的方法创建了一个双方互通的命名管道,并且指定管道可以有无限制的实例。常量的名称都是英语,不难看懂,就不一一解释了。
假定服务器端命名管道创建成功,它就可以开始监听客户端连接了。
三、连接到客户端管道
命名管道服务器需要设置成监听状态,以使客户端管道能够连接它。这可以由调用namedpipenative.connectnamedpipe方法完成。
调用namedpipenative.createfile方法,就可以创建一个命名管道客户端,并且连接到一个监听的服务器管道。下面的代码是namedpipewrapper.connecttopipe的一部分,可以阐释这一点。
public static pipehandle connecttopipe(string pipename, string servername) {
pipehandle handle = new pipehandle();
//buildthename ofthe pipe.
string name = @"/" + servername + @"/pipe/" + pipename;
for(inti=1;i<=attempts;i++){
handle.state = interprocessconnectionstate.connectingtoserver;
// try to connect to the server
handle.handle = namedpipenative.createfile(name, namedpipenative.generic_read | namedpipenative.
generic_write, 0,null,namedpipenative.open_existing,0,0);
在创建一个pipehandle对象并建立管道名称后,我们调用namedpipenative.createfile方法来创建一个客户端命名管道,并连接到指定的服务器端管道。在我们的例子中,客户端管道被配置为可读可写的。
如果客户端管道被成功创建,namedpipenative.createfile方法返回其对应的本地句柄,这在以后的操作中会用到。如果由于某种原因创建失败,方法会返回1, 并把namedpipenative设为invalid_handle_value常量。
在客户端命名管道可以用来读和写之前,还要做一件事情。我们需要把handle 设为pipe_readmode_message。可以调用namedpipenative.setnamed-pipehandlestate 实现。
if (handle.handle.toint32() != namedpipenative.invalid_handle_value){
// the client managed to connect to the server pipe
handle.state = interprocessconnectionstate.
connectedtoserver;
// set the read mode of the pipe channel
uint mode = namedpipenative.pipe_readmode_message;
if(namedpipenative.setnamedpipehandlestate(handle.handle,refmode,intptr.zero,intptr.zero)){
break;
}
每个客户端管道和一个服务器管道的实例通信。若服务器端的实例达到最大数目,创建客户端管道会失败。
四、读写数据
从命名管道读数据时我们不能提前知道消息的长度。我们的解决方案不需要处理很长的消息,所以使用system.int32变量来指定消息的长度。
namedpipewrapper.writebytes 方法可以将消息写到一个命名管道,消息按utf8编码,然后按字节数组传递。
public static void writebytes(pipehandle handle, byte[]bytes) {
byte[] numreadwritten = new byte[4];
uint len;
if(bytes==null){
bytes=newbyte[0];
}
if (bytes.length == 0) {
bytes = new byte[1];
bytes = system.text.encoding.utf8.getbytes(" ");
}
// 获取消息的长度:
len= (uint)bytes.length;
handle.state = interprocessconnectionstate.writing;
// 获取消息长度的字节表示,先写这四字节
if(namedpipenative.writefile(handle.handle,bitconverter.getbytes(len),4,numreadwritten,0)){
// 写余下的消息
if(!namedpipenative.writefile(handle.handle,bytes,len,numreadwritten,0)){
handle.state=interprocessconnectionstate.error;
thrownewnamedpipeioexception("errorwritingtopipe. internalerror:"+namedpipenative.getlasterror().tostring(), namedpipenative.getlasterror());
}
}
else{
handle.state=interprocessconnectionstate.error;
thrownewnamedpipeioexception("errorwritingtopipe.internalerror:"+namedpipenative.getlasterror().tostring(),
namedpipenative.getlasterror());
}
handle.state =interprocessconnectionstate.flushing;
// 激活管道,保证任何缓存数据都被写入管道,不会丢失:
flush(handle);
handle.state = interprocessconnectionstate.flusheddata;
}
要从一个命名管道读数据,先要把前四个字节转化为整数以确定消息的长度。接着,就可以读余下的数据了,请看下面的namedpipewrapper.readbytes方法。
public static byte[] readbytes(pipehandle handle, int maxbytes) {
byte[]numreadwritten=newbyte[4];
byte[]intbytes=newbyte[4];
byte[]msgbytes=null;
intlen;
handle.state=interprocessconnectionstate.reading;
handle.state=interprocessconnectionstate.flushing;
// 读前四个字节并转化为整数:
if(namedpipenative.readfile(handle.handle, intbytes,4, numreadwritten, 0)) {
len=bitconverter.toint32(intbytes,0);
msgbytes=newbyte[len];
handle.state=interprocessconnectionstate.flushing;
// 读余下的数据或抛出异常:
if(!namedpipenative.readfile(handle.handle,msgbytes,(uint) len,numreadwritten,0)){
handle.state=interprocessconnectionstate.error;
thrownewnamedpipeioexception("error readingfrompipe. internalerror:"+namedpipenative.getlasterror().tostring(), namedpipenative.getlasterror());
}
}
else {
handle.state=interprocessconnectionstate.error;
thrownewnamedpipeioexception("errorreadingfrompipe. internalerror:"+namedpipenative.getlasterror().tostring(), namedpipenative.getlasterror());
}
handle.state=interprocessconnectionstate.readdata;
if(len>maxbytes){
returnnull; }
returnmsgbytes;
}
以上就是命名管道的实现和一些主要的方法,下面介绍如何创建进行文本消息通信的命名管道服务器和客户端应用程序。
五、创建命名管道服务器
命名管道服务器是一个多线程的引擎,用来为并发的请求服务,创建新的线程和管道连接。
appmodule.namedpipes assembly包含了一个基类apipeconnection,是对普通命名管道操作的封装,例如创建管道、读写数据等等,这是一个抽象类。
另外,有两个从apipeconnection继承的管道连接类clientpipeconnection 和 serverpipeconnection。它们重载了一些方法(例如连接和关闭)并为服务器和客户端命名管道分别提供实现。clientpipeconnection 和serverpipeconnection都有调用dispose方法的析构器,
清除非管控的资源。
命名管道服务器负责创建命名管道,处理客户端连接。有两个主要的类提供了服务功能: servernamedpipe和pipemanager。
(1)servernamedpipe类
其构造器如下:..
internal servernamedpipe(stringname, uint outbuffer,uintinbuffer,intmaxreadbytes){
pipeconnection=newserverpipeconnection(name,outbuffer,inbuffer,maxreadbytes);
pipethread=newthread(newthreadstart(pipelistener));
pipethread.isbackground=true;
pipethread.name ="pipethread "+this.pipeconnection.nativehandle.tostring();
lastaction=datetime.now;
}
构造器创建了一个新的serverpipeconnection实例,并调用pipelistener方法。随后的主要部分是循环监听客户端连接,以及读写数据。
private void pipelistener() {
checkifdisposed();
try{
listen=form1.pipemanager.listen;
form1.activityref.appendtext("pipe"+this.pipeconnection.nativehandle.tostring() + ": new pipe started" + environment.newline);
while(listen){
lastaction=datetime.now;
// 从客户端管道读取数据:
stringrequest=pipeconnection.read();
lastaction=datetime.now;
if(request.trim()!=""){
//pipemanager.handlerequest 方法接受客户端请求处理之,
// 然后进行响应,这个响应接着就被写入管道。
pipeconnection.write(form1.pipemanager.handlerequest(request));
form1.activityref.appendtext("pipe"+this.pipeconnection.nativehandle.tostring()+ ":requesthandled"+environment.newline);
}
else{ pipeconnection.write("error:badrequest");}
lastaction=datetime.now;
// 从客户端管道断开连接
pipeconnection.disconnect();
if(listen){
form1.activityref.appendtext("pipe"+this.pipeconnection. nativehandle.tostring()+":listening"+environment.newline);
// 开始监听一个新的连接:
connect(); }
form1.pipemanager.wakeup();
}
}
catch(system.threading.threadabortexceptionex){}
catch(system.threading.threadstateexceptionex){}
catch(exceptionex){
//logexception
}
finally{
this.close();}
}
请注意不要关闭服务器管道,因为创建一个服务器管道是一个相对昂贵的操作,会引起比较昂贵的开销。
(2)pipemanager 类
pipemanager 类负责在必要的时候创建服务器管道,管理线程,并生成客户端请求的响应。下面代码中initialize方法调用start方法创建一个新的线程:
public void initialize() {
pipes=hashtable.synchronized(_pipes);
mre =newmanualresetevent(false);
mainthread =newthread(newthreadstart(start));
mainthread.isbackground=true;
mainthread.name = "mainpipethread";
mainthread.start();
thread.sleep(1000);
}
pipemanager类只在获得请求的时候才创建新的管道连接和线程。这意味着serverpipeconnection对象只在没有连接存在或所有连接都忙于响应请求的时候才被创建。通常2-3个命名管道实例就能处理很大负载的并发客户端请求,但这个主要取决于处理客户端请求和生
成响应的时间。
创建serverpipeconnection对象的引用被保存在管道哈希表中。
private void start() {
try{
while(_listen){
int[]keys=newint[pipes.keys.count];
pipes.keys.copyto(keys,0);
// 循环检验serverpipeconnection 对象是否还是可用:
foreach(intkeyinkeys){
servernamedpipeserverpipe=(servernamedpipe)pipes[key];
if(serverpipe!=null&& datetime.now.subtract(serverpipe.lastaction).milliseconds>
pipe_max_stuffed_time && serverpipe.pipeconnection.getstate()!=interprocessconnectionstate.waitingforclient){
serverpipe.listen=false;
serverpipe.pipethread.abort();
removeserverchannel(serverpipe.pipeconnection.nativehandle);
}
}
//numberpipes 字段包含了可以在服务器上拥有的命名管道最大数目
if(numchannels<=numberpipes){
servernamedpipe pipe = new servernamedpipe(pipename,outbuffer,inbuffer,max_read_bytes);
try{
//connect 方法将新生成的管道置为监听模式。
pipe.connect();
pipe.lastaction=datetime.now;
system.threading.interlocked.increment(refnumchannels);
// 开始serverpipeconnection 线程
pipe.start();
pipes.add(pipe.pipeconnection.nativehandle,pipe);
}
catch (interprocessioexception ex) {
removeserverchannel(pipe.pipeconnection.nativehandle);
pipe.dispose();
}
}
else{ mre.reset(); mre.waitone(1000,false); }
}
}
catch { //logexception }
}
六、创建客户端管道连接
要使用命名管道把一个客户端应用程序连接到服务器,我们必须创建clientpipeconnection类的一个实例,使用它的方法来读写数据。
iinterprocessconnectionclientconnection=null;
try{
clientconnection=newclientpipeconnection("mypipe",".");
clientconnection.connect();
clientconnection.write(textbox1.text);
clientconnection.close();
}
catch{
clientconnection.dispose();
}
管道名称“mypipe” 必须和服务器管道的名称一样,如果命名管道服务器也在同一台机器上,clientpipeconnection构造器的第二个参数应该是“.”。如果不在同一台机器上,第二个参数就是服务器的网络名称。
以上,我介绍了命名管道的解决方案,我再重申一下,命名管道最有效的使用是在一个应用程序需要和另一个应用程序进行非常频繁的,短文本的消息通信的情况下,并且是在同一台机器或在局域网内部。如果您遇到了这样的情况,希望我的这些代码能给你启发和参考。