

已阅读5页,还剩8页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
计算机网络课程设计 目录1需求分析 21.1开发环境21.2功能要求213功能实现 22总体设计 32.1软件的运行环境设计 32.2客户端设计 32.3服务器端设计 43详细设计与系统实现 43.1客户端的实现 43.2服务器端的实现 84软件测试与性能分析 114.1软件测试 114.2性能分析 125设计总结126参考文献13“聊天热线”的制作 -网络通信软件设计报告1. 需求分析1.1 开发背景随着数据通信技术的发展特别是计算机技术的发展,网络已成为信息传播的重要渠道,在很多c/s软件中,都提供了在线交流的功能,类似qq、uc、网络聊天室一类的聊天系统的发展日新月异。因此,制作了一个网络“聊天热线”,通过制作该软件更好的学习网络编程原理和实现技术。1.2 功能要求客户端需要完成的功能:(1)通过ip地址和端口号请求与服务器连接。(2)可以向服务器发送消息。(3)如果服务器端断开,在列表中给出响应提示。(4)可以清空和保存历史聊天记录。(5)可以查看版本信息。(6)文件传输。服务器端需要完成的功能:(1)打开本地端口,并对其进行监控。(2)当接收到连接请求时打开与客户端的连接,并将连接的信息显示在列表中。(3)当接收到客户端发来的消息时将其显示在列表中。(4)可以回复客户端。(5)可以清空和保存历史聊天记录。(6)可以查看版本信息。(7)当接收到客户端关闭请求时,断开与客户端的连接。(8)文件传输。1.3 功能实现考虑到通信软件制作的复杂性和课程设计的时间问题,设计的“聊天热线”主要实现了以下功能:客户端实现的功能:(1)通过ip地址和端口号与服务器连接验证成功。(2)向服务器发送消息验证功能。(3)服务器端断开,在列表中给出响应提示。(4)清空和保存历史聊天记录验证功能。(5)查看版本信息。服务器端实现的功能:(1)打开并监控本地端口。(2)与客户端连接的信息显示在列表中验证功能。(3)客户端发来的消息显示在列表中验证功能。(4)回复客户端。(5)清空和保存历史聊天记录。(6)查看版本信息。(7)接受到客户端关闭请求,断开与客户端的连接。2总体设计设计思想:为实现网络聊天的功能,采用windows socket编程。在设计聊天方案时,客户端通过ip地址和端口号与服务器端连接,服务器端监听到连接请求,进行响应;建立连接之后客户端将信息发往服务器端,再由服务器端进行分别处理。客户端和服务器端都实现清空和保存历史聊天记录。“聊天热线”制作的总体设计包括:l 软件的运行环境设计l 客户端设计l 服务器端设计2.1 软件的运行环境设计为了保证系统运行的效率和可靠性,一般情况下,服务器端应具有较高的软硬件配置,客户端的要求不需要很高。此应用程序虽适用于internet和内部局域网,但只是为了进一步学习网络编程知识,应用不够广泛,所以对软硬件配置不是太高。1. 软件环境l 客户端:windows 98,microsoft visual c+ 6.0以上版本l 服务器端:windows 98/2000,microsoft visual c+ 6.0以上版本2. 硬件环境l 客户机:cpu要求200mmx以上,内存64mb以上l 服务器端:cpu要求200mmx以上,内存64mb以上2.2 客户端设计根据需求分析和功能要求,对客户端各个功能进行集中、分块,本软件客户端的功能模块图如图1所示。客户端通过ip地址和端口号请求与服务器连接客户端列表显示向服务器发送的消息清空和保存历史聊天记录服务器端断开, 客户端列表给出响应提示查看版本信息图1 客户端功能模块图2.3 服务器端设计根据需求分析和功能要求,对服务器端各个功能进行集中、分块,本软件服务器端的功能模块图如图2所示。服务器端服务器端列表显示与客户端连接的信息服务器端列表显示客户端发来的消息清空和保存历史聊天记录服务器端回复客户端消息查看版本信息客户端关闭 ,服务器端列表显示断开信息打开本地端口并对其进行监控图2 服务器端功能模块图3. 详细设计与系统实现3.1 客户端的实现建立一个基于dialogbased的mfc appwizard项目,其中使用静态文本控件、按扭控件、ip地址控件、编辑控件、组控件、和列表控件等各种常用控件,以及通过socket进行网络通信编程。1. 从casyncsocket派生出类cclientsocket,其头文件如下:class cclientsocket : public casyncsocket/ attributespublic:/ operationspublic:cclientsocket();virtual cclientsocket();/ overridespublic:/ classwizard generated virtual function overrides/afx_virtual(cclientsocket)public:virtual void onconnect(int nerrorcode);virtual void onreceive(int nerrorcode);virtual void onclose(int nerrorcode);/afx_virtual/ generated message map functions/afx_msg(cclientsocket)/ note - the classwizard will add and remove member functions here./afx_msg/ implementationprotected:;2. 类cclientsocket中重写三个成员函数:onconnect、onreceive、onclose,代码如下:void cclientsocket:onconnect(int nerrorcode) / todo: add your specialized code here and/or call the base classif(nerrorcode)afxmessagebox(连接出现错误,请您重新连接!);return;asyncselect(fd_read|fd_write|fd_close);(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-serverip.enablewindow(false);(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_buttonconnect.enablewindow(false);(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_buttonsend.enablewindow();(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.addstring(连接上服务器端);(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.settopindex(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.getcount()-1);casyncsocket:onconnect(nerrorcode);void cclientsocket:onreceive(int nerrorcode) / todo: add your specialized code here and/or call the base classchar sztemp250;int n=receive(sztemp,250);sztempn=0;cstring stemp;stemp.format(收到:%s,sztemp);(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.addstring(stemp);(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.settopindex(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.getcount()-1);casyncsocket:onreceive(nerrorcode);void cclientsocket:onclose(int nerrorcode) / todo: add your specialized code here and/or call the base class(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.addstring(服务器端已经断开);(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.settopindex(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.getcount()-1);(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-serverip.enablewindow();(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_buttonconnect.enablewindow();(cchatclientdlg*)(afxgetapp()-m_pmainwnd)-m_buttonsend.enablewindow(false);close();casyncsocket:onclose(nerrorcode);3. 类cchatclientdlg中添加5个事件处理函数,代码如下:void cchatclientdlg:onbuttonconnect() / todo: add your control notification handler code herebyte nfild4;updatedata(true);serverip.getaddress(nfild0,nfild1,nfild2,nfild3);cstring sip;sip.format(%d.%d.%d.%d,nfild0,nfild1,nfild2,nfild3);m_clientsocket.create();m_clientsocket.connect(sip,14875);void cchatclientdlg:onbuttonsend() / todo: add your control notification handler code hereupdatedata();m_clientsocket.send(m_swords,m_swords.getlength();m_listwords.addstring(发送:+m_swords);m_listwords.settopindex(m_listwords.getcount()-1); m_swords=;updatedata(false);void cchatclientdlg:onbuttonclear() / todo: add your control notification handler code herem_listwords.resetcontent();void cchatclientdlg:onbuttonsave() / todo: add your control notification handler code herechar szfilters=文本文件(*.txt)|*.txt|;cfiledialog filedlg(false,txt,chathistory.txt,ofn_hidereadonly,szfilters,this);if(filedlg.domodal()=idok)cstring spathname=filedlg.getpathname();cfile historyfile;if(historyfile.open(spathname,cfile:modecreate|cfile:modewrite)char sztemp250;int n;for(int i=0;im_pmainwnd)-m_serversocket);/启用发送按扭(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_buttonsend.enablewindow();(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_serversocket.asyncselect(fd_read|fd_write|fd_close);(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.addstring(接受客户端连接请求);(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.settopindex(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.getcount()-1);casyncsocket:onaccept(nerrorcode); void cserversocket:onreceive(int nerrorcode) / todo: add your specialized code here and/or call the base classchar sztemp250;int n=receive(sztemp,250);sztempn=0;cstring stemp;stemp.format(收到:%s,sztemp);(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.addstring(stemp);(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.settopindex(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.getcount()-1);casyncsocket:onreceive(nerrorcode);void cserversocket:onclose(int nerrorcode) / todo: add your specialized code here and/or call the base class(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.addstring(客户端已经断开);(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.settopindex(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_listwords.getcount()-1);(cchatserverdlg*)(afxgetapp()-m_pmainwnd)-m_buttonsend.enablewindow(false);close();casyncsocket:onclose(nerrorcode);3. 类cchatserverdlg中添加4个事件处理函数,代码如下:void cchatserverdlg:onbuttonsend() / todo: add your control notification handler code hereupdatedata();m_serversocket.send(m_swords,m_swords.getlength();m_listwords.addstring(发送:+m_swords);m_listwords.settopindex(m_listwords.getcount()-1);m_swords=;updatedata(false);void cchatserverdlg:onbuttonclear() / todo: add your control notification handler code herem_listwords.resetcontent();void cchatserverdlg:onbuttonsave() / todo: add your control notification handler code herechar szfilters=文本文件(*.txt)|*.txt|;cfiledialog filedlg(false,txt,chathistory.txt,ofn_hidereadonly,szfilters,this);if(filedlg.domodal()=idok)cstring spathname=filedlg.getpathname();cfile historyfile;if(historyfile.open(spathname,cfile:modecreate|cfile:modewrite)char sztemp250;int n;for(int i=0;im_listwords.getcount();i+)n=m_listwords.gettextlen(i);m_listwords.gettext(i,sztemp);sztempn=r;sztempn+1=n;historyfile.write(sztemp,n+2);historyfile.close();elseafxmessagebox(无法打开文件:+spathname);void cchatserverdlg:onbuttonabout() / todo: add your control notification handler code herecaboutdlg dlgabout;dlgabout.domodal();4.在cchatserverdlg类的oninitdialog()成员函数中添加如下代码:m_serversocket.create(14875); /创建监听socket,端口号为14875m_serversocket.listen(
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- GB/T 15370.2-2025农业拖拉机通用技术条件第2部分:50 kW~130 kW轮式拖拉机
- 2024年档案管理者的职业路径试题及答案
- 食品应急响应机制试题及答案
- 2025年商场租赁合同协议书
- 公共管理案例分析大赛获奖
- 防拐骗教育课件
- 古代文学史考点全解析试题及答案
- 《2025年艺术品买卖合同》
- 2025餐饮店代理经营合同
- 公共事业管理考试复习方向试题及答案
- 2024年中国物流招聘笔试参考题库附带答案详解
- 2024年中国饰品行业发展状况与消费行为洞察报告-艾媒咨询
- 二甲双胍恩格列净片(Ⅲ)-临床用药解读
- 2024带病体保险创新研究报告
- 3.28百万农奴解放纪念日演讲稿1500字2篇
- 员工节能环保培训课件
- 《精益生产培训》课件
- 学校招生工作培训方案
- 访谈记录表模板
- 初高中物理的区别以及如何学好高中物理课件
- 工程结构静力试验
评论
0/150
提交评论