资源简介
最近有项目要做一个高性能网络服务器,去网络上搜到到的都是C++版本而且是英文或者简单的DEMO,所以自己动手写了C# 的DEMO。
网络上只写接收到的数据,没有说怎么处理缓冲区数据,本DEMO简单的介绍如何处理接收到的数据。简单易用,希望对大家有用.
1、在C#中,不用去面对完成端口的操作系统内核对象,Microsoft已经为我们提供了SocketAsyncEventArgs类,它封装了IOCP的使用。请参考:http://msdn.microsoft.com/zh-cn/library/system.net.sockets.socketasynceventargs.aspx?cs-save-lang=1&cs-lang=cpp#code-snippet-1。
2、我的SocketAsyncEventArgsPool类使用List对象来存储对客户端来通信的SocketAsyncEventArgs对象,它相当于直接使用内核对象时的IoContext。我这样设计比用堆栈来实现的好处理是,我可以在SocketAsyncEventArgsPool池中找到任何一个与服务器连接的客户,主动向它发信息。而用堆栈来实现的话,要主动给客户发信息,则还要设计一个结构来存储已连接上服务器的客户。
3、对每一个客户端不管还发送还是接收,我使用同一个SocketAsyncEventArgs对象,对每一个客户端来说,通信是同步进行的,也就是说服务器高度保证同一个客户连接上要么在投递发送请求,并等待;或者是在投递接收请求,等待中。本例只做echo服务器,还未考虑由服务器主动向客户发送信息。
4、SocketAsyncEventArgs的UserToken被直接设定为被接受的客户端Socket。
5、没有使用BufferManager 类,因为我在初始化时给每一个SocketAsyncEventArgsPool中的对象分配一个缓冲区,发送时使用Arrary.Copy来进行字符拷贝,不去改变缓冲区的位置,只改变使用的长度,因此在下次投递接收请求时恢复缓冲区长度就可以了!如果要主动给客户发信息的话,可以new一个SocketAsyncEventArgs对象,或者在初始化中建立几个来专门用于主动发送信息,因为这种需求一般是进行信息群发,建立一个对象可以用于很多次信息发送,总体来看,这种花销不大,还减去了字符拷贝和消耗。
6、测试结果:(在我的笔记本上时行的,我的本本是T420 I7 8G内存)
100客户 100,000(十万次)不间断的发送接收数据(发送和接收之间没有Sleep,就一个一循环,不断的发送与接收)
耗时3004.6325 秒完成
总共 10,000,000 一千万次访问
平均每分完成 199,691.6 次发送与接收
平均每秒完成 3,328.2 次发送与接收
整个运行过程中,内存消耗在开始两三分种后就保持稳定不再增涨。
看了一下对每个客户端的延迟最多不超过2秒。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace IocpServer
{
public partial class MainForm : Form
{
public delegate void SetListBoxCallBack(string str);
public SetListBoxCallBack setlistboxcallback;
public void SetListBox(string str)
{
infoList.Items.Insert(0 str);
infoList.SelectedIndex = 0;
}
private IoServer iocp = new IoServer(2 1024);
public MainForm()
{
InitializeComponent();
setlistboxcallback = new SetListBoxCallBack(SetListBox);
}
private void startBtn_Click(object sender EventArgs e)
{
iocp.Start(1086);
iocp.mainForm = this;
startBtn.Enabled = false;
stopBtn.Enabled = true;
SetListBox(“监听开启...“);
}
private void stopBtn_Click(object sender EventArgs e)
{
iocp.Stop();
startBtn.Enabled = true;
stopBtn.Enabled = false;
SetListBox(“监听停止...“);
}
private void exitBtn_Click(object sender EventArgs e)
{
if (stopBtn.Enabled)
iocp.Stop();
this.Close();
}
private void clearBtn_Click(object sender EventArgs e)
{
infoList.Items.Clear();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-07-02 19:13 IocpServer\
目录 0 2013-07-02 19:13 IocpServer\IocpServer\
文件 872 2012-11-22 09:26 IocpServer\IocpServer.sln
文件 27136 2013-07-03 14:34 IocpServer\IocpServer.suo
目录 0 2013-07-02 19:13 IocpServer\IocpServer\bin\
目录 0 2013-07-03 14:34 IocpServer\IocpServer\bin\Debug\
文件 16384 2013-07-03 14:34 IocpServer\IocpServer\bin\Debug\IocpServer.exe
文件 34304 2013-07-03 14:34 IocpServer\IocpServer\bin\Debug\IocpServer.pdb
文件 11600 2013-07-03 14:25 IocpServer\IocpServer\bin\Debug\IocpServer.vshost.exe
文件 490 2010-03-17 22:39 IocpServer\IocpServer\bin\Debug\IocpServer.vshost.exe.manifest
文件 1560 2013-07-02 15:33 IocpServer\IocpServer\Form1.cs
文件 6992 2013-07-02 13:15 IocpServer\IocpServer\Form1.Designer.cs
文件 5817 2013-07-02 13:15 IocpServer\IocpServer\Form1.resx
文件 3477 2012-11-23 00:10 IocpServer\IocpServer\IoContextPool.cs
文件 3717 2012-11-22 19:20 IocpServer\IocpServer\IocpServer.csproj
文件 14576 2013-07-03 14:34 IocpServer\IocpServer\IoServer.cs
目录 0 2013-07-02 19:13 IocpServer\IocpServer\obj\
目录 0 2013-07-02 19:13 IocpServer\IocpServer\obj\x86\
目录 0 2013-07-03 14:34 IocpServer\IocpServer\obj\x86\Debug\
文件 4501 2013-07-02 17:45 IocpServer\IocpServer\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6291 2013-07-03 14:34 IocpServer\IocpServer\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 674 2013-07-03 14:34 IocpServer\IocpServer\obj\x86\Debug\GenerateResource.read.1.tlog
文件 1582 2013-07-03 14:34 IocpServer\IocpServer\obj\x86\Debug\GenerateResource.write.1.tlog
文件 2021 2013-07-03 14:34 IocpServer\IocpServer\obj\x86\Debug\IocpServer.csproj.FileListAbsolute.txt
文件 16384 2013-07-03 14:34 IocpServer\IocpServer\obj\x86\Debug\IocpServer.exe
文件 180 2013-07-03 14:34 IocpServer\IocpServer\obj\x86\Debug\IocpServer.MainForm.resources
文件 34304 2013-07-03 14:34 IocpServer\IocpServer\obj\x86\Debug\IocpServer.pdb
文件 180 2013-07-03 14:34 IocpServer\IocpServer\obj\x86\Debug\IocpServer.Properties.Resources.resources
目录 0 2013-07-02 13:13 IocpServer\IocpServer\obj\x86\Debug\TempPE\
文件 485 2012-11-22 22:50 IocpServer\IocpServer\Program.cs
目录 0 2013-07-02 19:13 IocpServer\IocpServer\Properties\
............此处省略5个文件信息
相关资源
- C#callC++dll.pptx
- C++ 垃圾代码生成器
- VC+MFC网络聊天工具详细设计.doc
- c++与c#命名管道
- 通过C#调用共享MFC C++项目DLL
- HJ212TCPServerMFC.rar(MFC HJ212TCP Socket服务
- grpc-x86_64-1.27.2-2-any.zip
- 基于MFC的TCP调试助手源码
- C语言伪造TCP、UDP数据包.zip
- C# 调用C++DLL函数参数包含指针
- 基于微信hook的二次开发c#版全功能演
- C语言编写的员工管理系统
- 基于C#写的TCP 客户端多线程处理源码
- HJ212TCPServerC.rar(TCP Socket多线程服务端
- MFC网络编程源代码vc网络编程mfc sock
- libXL 3.8.0 For Windows 正式授权及使用方
- c#高级编程 第十版 PDF
- MFC中基于TCP的客户端与服务端通信
- CefSharp - 最火热的 Winform 使用 Webkit 内
- C# 调用c++ 库 参数为指针类型导出函数
- QT的TCP服务器DEMO
- 基于STM32实现Modbus tcp Slave通信
- 完成端口开发包iocpmfc
- Linux TCP IP 协议栈分析.pdf
- IOCP端口完成模型
- modbus tcp 封装类
- C++ 检测TCP_IP协议是否安装
- 3D测量 TCP通信
- 八皇后 回溯算法 (C语言与c#源码)
- 《基于TCP协议的端口扫描技术》pdf
评论
共有 条评论