毕业设计(论文)TCPIP的网络文字聊天程序设计_第1页
毕业设计(论文)TCPIP的网络文字聊天程序设计_第2页
毕业设计(论文)TCPIP的网络文字聊天程序设计_第3页
毕业设计(论文)TCPIP的网络文字聊天程序设计_第4页
毕业设计(论文)TCPIP的网络文字聊天程序设计_第5页
已阅读5页,还剩25页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、 网络编程 课程设计说明书 设计题目基于tcp/ip的网络文字聊天程序设计系 、 部: 计信学院 学生姓名: 学 号: 专 业: 网络工程 班 级: 网络1301班 指导教师: 完成时间: 2015-12-22 前言 socket协议:socket的英文原义是“孔”或“插座”。在这里作为4bds unix的进程通信机制,取后一种意思。socket非常类似于电话插座。以一个国家级电话网为例。电话的通话双方相当于相互通信的2个进程,区号是它的网络地址;区内一个单位的交换机相当于一台主机,主机分配给每个用户的局内号码相当于socket号。任何用户在通话之前,首先要占有一部电话机,相当于申请一个soc

2、ket;同时要知道对方的号码,相当于对方有一个固定的socket。然后向对方拨号呼叫,相当于发出连接请求(假如对方不在同一区内,还要拨对方区号,相当于给出网络地址)。对方假如在场并空闲(相当于通信的另一主机开机且可以接受连接请求),拿起电话话筒,双方就可以正式通话,相当于连接成功。双方通话的过程,是一方向电话机发出信号和对方从电话机接收信号的过程,相当于向socket发送数据和从socket接收数据。通话结束后,一方挂起电话机相当于关闭socket,撤消连接。在电话系统中,一般用户只能感受到本地电话机和对方电话号码的存在,建立通话的过程,话音传输的过程以及整个电话系统的技术细节对他都是透明的,

3、这也与socket机制非常相似。socket利用网间网通信设施实现进程通信,但它对通信设施的细节毫不关心,只要通信设施能提供足够的通信能力,它就满足了。至此,我们对socket进行了直观的描述。抽象出来,socket实质上提供了进程通信的端点。进程通信之前,双方首先必须各自创建一个端点,否则是没有办法建立联系并相互通信的。正如打电话之前,双方必须各自拥有一台电话机一样。在网间网内部,每一个socket用一个半相关描述:(协议,本地地址,本地端口)一个完整的socket有一个本地唯一的socket号,由操作系统分配。最重要的是,socket 是面向客户/服务器模型而设计的,针对客户和服务器程序提

4、供不同的socket 系统调用。客户随机申请一个socket (相当于一个想打电话的人可以在任何一台入网电话上拨号呼叫),系统为之分配一个socket号;服务器拥有全局公认的 socket ,任何客户都可以向它发出连接请求和信息请求(相当于一个被呼叫的电话拥有一个呼叫方知道的电话号码)。目录前言.-1-socket协议:.-1-一、课程设计题目.-3-二、设计原理.-3-三、课程设计内容.-4-(一)设计功能:.-4-(二)程序设计流程图.-4-(三)程序设计原理.-6-(四)程序主要代码.-6-(五)程序功能截图.-24-四、设计使用说明.-26-五、此次收获.-27-六、设计需要改进之处.

5、-27-七、参考文献.-27-一、 课程设计题目基于tcp/ip的网络文字聊天程序设计。二、 设计原理计算机网络技术发展至今已经大大超越了人们当初的预想,无论是人们日常的工作还是学习,我们都越来越多的依靠到互联网。各种实时性的聊天娱乐软件也同时诞生,而且为我们的即时通讯带来了众多的方便,比如说大家所熟知的腾讯qq、微软的msn、移动的fetion等,都是做的比较成功的实时聊天工具。随着网络的日益普及,各种聊天工具也层出不穷,但当我们学习了网络编程这门课程之后,我们便会觉得,其实要实现简单的网络通讯其实并不难。接下来的课程设计就是针对一个简单的网络聊天程序,利用mfc为开发工具,实现基本的通讯功

6、能。此程序主要分为两部分:服务器端和客户端。服务器端用于提供一个网络端口,等待客户端发出请求,登录到此服务端,然后进行网络通讯和消息的转发;客户端可通过服务器端的ip地址发送连接请求,然后登陆聊天室。在服务器端的成员列表栏中会显示在线的所有人名单。整个程序的主体使用了csocket类的方法,实现了网络通讯聊天。整个程序设计为两个部分:服务器 (server)和客户端 (client)多人聊天的关键在于要将每个客户端发送过来的消息分发给所有其他客户端,为了解决这个问题,在服务器程序中建立一个套接口链表,用来保存所有与客户端建立了连接的服务端口。下面描述了多人聊天的实现原理:当客户端client

7、n向对应的服务端口n发送了消息message,服务端口n将message复制给所有套接口列表(userlist)中的套接口缓冲区,然后向每个服务端口发送write消息,使每个服务端口将message发送给对应的客户端。这样,所有客户端就都获得了message消息,实现了多人聊天功能。三、 课程设计内容(一) 设计功能实现网络文字聊天程序的基本功能。主要包括:1. tcp聊天服务器程序2. tcp聊天客户端程序(二) 流程图1. 服务器流程图服务器端运行服务器输入ip,端口号判断输入ip是否为本机ip 提示失败 否 是设置成功 2. 客户端流程图客户端程序运行客户端连接服务器重新连接是否连接成功

8、 否 是进入聊天室输入文字信息发送文字信息结束(三)程序设计原理1. 客服端原理:链接到同一服务器的人进入一个聊天室,然后开始文字聊天。2. 服务器原理根据本台计算机的ip地址创建服务器。如果ip地址不同,则创建失败;相同则创建成功。(4) 程序主要代码1. 客户端界面主要代码:/ clientdlg.cpp : implementation file/#include stdafx.h#include client.h#include clientdlg.h#ifdef _debug#define new debug_new#undef this_filestatic char this_f

9、ile = _file_;#endif/ caboutdlg dialog used for app aboutclass caboutdlg : public cdialogpublic:caboutdlg();/ dialog data/afx_data(caboutdlg)enum idd = idd_aboutbox ;/afx_data/ classwizard generated virtual function overrides/afx_virtual(caboutdlg)protected:virtual void dodataexchange(cdataexchange*

10、pdx); / ddx/ddv support/afx_virtual/ implementationprotected:/afx_msg(caboutdlg)/afx_msgdeclare_message_map();caboutdlg:caboutdlg() : cdialog(caboutdlg:idd)/afx_data_init(caboutdlg)/afx_data_initvoid caboutdlg:dodataexchange(cdataexchange* pdx)cdialog:dodataexchange(pdx);/afx_data_map(caboutdlg)/afx

11、_data_mapbegin_message_map(caboutdlg, cdialog)/afx_msg_map(caboutdlg)/ no message handlers/afx_msg_mapend_message_map()/ cclientdlg dialogcclientdlg:cclientdlg(cwnd* pparent /*=null*/): cdialog(cclientdlg:idd, pparent)/afx_data_init(cclientdlg)/ note: the classwizard will add member initialization h

12、ere/afx_data_init/ note that loadicon does not require a subsequent destroyicon in win32m_hicon = afxgetapp()-loadicon(idi_icon1);void cclientdlg:dodataexchange(cdataexchange* pdx)cdialog:dodataexchange(pdx);/afx_data_map(cclientdlg)ddx_control(pdx, idc_text, m_text);ddx_control(pdx, idc_serverport,

13、 m_serverport);ddx_control(pdx, idc_serverip, m_serverip);ddx_control(pdx, idc_nickname, m_nickname);ddx_control(pdx, idc_list, m_list);/afx_data_mapbegin_message_map(cclientdlg, cdialog)/afx_msg_map(cclientdlg)on_wm_syscommand()on_wm_paint()on_wm_querydragicon()on_bn_clicked(idc_login, onlogin)on_b

14、n_clicked(idc_sendtext, onsendtext)on_en_change(idc_serverip, onchangeserverip)/afx_msg_mapend_message_map()/ cclientdlg message handlersbool cclientdlg:oninitdialog()cdialog:oninitdialog();/ add about. menu item to system menu./ idm_aboutbox must be in the system command range.assert(idm_aboutbox &

15、 0xfff0) = idm_aboutbox);assert(idm_aboutbox appendmenu(mf_separator);psysmenu-appendmenu(mf_string, idm_aboutbox, straboutmenu);/ set the icon for this dialog. the framework does this automatically/ when the applications main window is not a dialogseticon(m_hicon, true);/ set big iconseticon(m_hico

16、n, false);/ set small icon/ todo: add extra initialization herem_sockclient.create();m_sockclient.setdialog(this);return true; / return true unless you set the focus to a controlvoid cclientdlg:onsyscommand(uint nid, lparam lparam)if (nid & 0xfff0) = idm_aboutbox)caboutdlg dlgabout;dlgabout.domodal(

17、);elsecdialog:onsyscommand(nid, lparam);/ if you add a minimize button to your dialog, you will need the code below/ to draw the icon. for mfc applications using the document/view model,/ this is automatically done for you by the framework.void cclientdlg:onpaint() if (isiconic()cpaintdc dc(this); /

18、 device context for paintingsendmessage(wm_iconerasebkgnd, (wparam) dc.getsafehdc(), 0);/ center icon in client rectangleint cxicon = getsystemmetrics(sm_cxicon);int cyicon = getsystemmetrics(sm_cyicon);crect rect;getclientrect(&rect);int x = (rect.width() - cxicon + 1) / 2;int y = (rect.height() -

19、cyicon + 1) / 2;/ draw the icondc.drawicon(x, y, m_hicon);elsecdialog:onpaint();/ the system calls this to obtain the cursor to display while the user drags/ the minimized window.hcursor cclientdlg:onquerydragicon()return (hcursor) m_hicon;void cclientdlg:onok() void cclientdlg:receivetext()char buf

20、ferbuffersize;int len = m_sockclient.receive(buffer,buffersize);if (len != -1)bufferlen = 0;m_list.addstring(buffer);void cclientdlg:onlogin() cstring strip,strport;uint port ;m_serverip.getwindowtext(strip);m_nickname.getwindowtext(m_name);m_serverport.getwindowtext(strport);if (strip.isempty() | s

21、trport.isempty() | m_name.isempty()messagebox(请设置服务器信息,提示);return;port = atoi(strport);if (m_sockclient.connect(strip,port)messagebox(连接服务器成功!,提示);cstring str;str.format(%s-%s,m_name,进入聊天室);m_sockclient.send(str.getbuffer(0),str.getlength();elsemessagebox(连接服务器失败!,提示);void cclientdlg:onsendtext() cs

22、tring strtext,strinfo;m_text.getwindowtext(strtext);if (!strtext.isempty() & !m_name.isempty()strinfo.format(%s说: %s,m_name,strtext);int len = m_sockclient.send(strinfo.getbuffer(strinfo.getlength(),strinfo.getlength();void cclientdlg:onchangeserverip() / todo: if this is a richedit control, the con

23、trol will not/ send this notification unless you override the cdialog:oninitdialog()/ function and call cricheditctrl().seteventmask()/ with the enm_change flag ored into the mask./ todo: add your control notification handler code here2. 服务器界面主要代码:/ serverdlg.cpp : implementation file/#include stdaf

24、x.h#include server.h#include serverdlg.h#include serversocket.h#ifdef _debug#define new debug_new#undef this_filestatic char this_file = _file_;#endif/ caboutdlg dialog used for app aboutclass caboutdlg : public cdialogpublic:caboutdlg();/ dialog data/afx_data(caboutdlg)enum idd = idd_aboutbox ;/afx

25、_data/ classwizard generated virtual function overrides/afx_virtual(caboutdlg)protected:virtual void dodataexchange(cdataexchange* pdx); / ddx/ddv support/afx_virtual/ implementationprotected:/afx_msg(caboutdlg)/afx_msgdeclare_message_map();caboutdlg:caboutdlg() : cdialog(caboutdlg:idd)/afx_data_ini

26、t(caboutdlg)/afx_data_initvoid caboutdlg:dodataexchange(cdataexchange* pdx)cdialog:dodataexchange(pdx);/afx_data_map(caboutdlg)/afx_data_mapbegin_message_map(caboutdlg, cdialog)/afx_msg_map(caboutdlg)/ no message handlers/afx_msg_mapend_message_map()/ cserverdlg dialogcserverdlg:cserverdlg(cwnd* ppa

27、rent /*=null*/): cdialog(cserverdlg:idd, pparent)/afx_data_init(cserverdlg)/ note: the classwizard will add member initialization here/afx_data_init/ note that loadicon does not require a subsequent destroyicon in win32m_hicon = afxgetapp()-loadicon(idi_icon1);void cserverdlg:dodataexchange(cdataexc

28、hange* pdx)cdialog:dodataexchange(pdx);/afx_data_map(cserverdlg)ddx_control(pdx, idc_serverport, m_serverport);ddx_control(pdx, idc_serverip, m_serverip);/afx_data_mapbegin_message_map(cserverdlg, cdialog)/afx_msg_map(cserverdlg)on_wm_syscommand()on_wm_paint()on_wm_querydragicon()on_bn_clicked(idc_q

29、uit, onquit)on_bn_clicked(idc_config, onconfig)on_en_change(idc_serverip, onchangeserverip)on_en_change(idc_serverport, onchangeserverport)/afx_msg_mapend_message_map()/ cserverdlg message handlersbool cserverdlg:oninitdialog()cdialog:oninitdialog();/ add about. menu item to system menu./ idm_aboutb

30、ox must be in the system command range.assert(idm_aboutbox & 0xfff0) = idm_aboutbox);assert(idm_aboutbox appendmenu(mf_separator);psysmenu-appendmenu(mf_string, idm_aboutbox, straboutmenu);/ set the icon for this dialog. the framework does this automatically/ when the applications main window is not

31、 a dialogseticon(m_hicon, true);/ set big iconseticon(m_hicon, false);/ set small iconreturn true; / return true unless you set the focus to a controlvoid cserverdlg:onsyscommand(uint nid, lparam lparam)if (nid & 0xfff0) = idm_aboutbox)caboutdlg dlgabout;dlgabout.domodal();elsecdialog:onsyscommand(n

32、id, lparam);/ if you add a minimize button to your dialog, you will need the code below/ to draw the icon. for mfc applications using the document/view model,/ this is automatically done for you by the framework.void cserverdlg:onpaint() if (isiconic()cpaintdc dc(this); / device context for painting

33、sendmessage(wm_iconerasebkgnd, (wparam) dc.getsafehdc(), 0);/ center icon in client rectangleint cxicon = getsystemmetrics(sm_cxicon);int cyicon = getsystemmetrics(sm_cyicon);crect rect;getclientrect(&rect);int x = (rect.width() - cxicon + 1) / 2;int y = (rect.height() - cyicon + 1) / 2;/ draw the i

34、condc.drawicon(x, y, m_hicon);elsecdialog:onpaint();/ the system calls this to obtain the cursor to display while the user drags/ the minimized window.hcursor cserverdlg:onquerydragicon()return (hcursor) m_hicon;void cserverdlg:onok() void cserverdlg:onquit() oncancel();void cserverdlg:onconfig() m_

35、serversock.setdialog(this);cstring strport,strip;m_serverport.getwindowtext(strport);m_serverip.getwindowtext(strip);if (!strport.isempty() & !strip.isempty()uint port = atoi(strport);m_serversock.create(port,sock_stream,strip);bool ret = m_serversock.listen();if (ret)messagebox(启动成功!,提示);elsemessag

36、ebox(启动失败!,提示);void cserverdlg:receivedata(csocket &socket)char bufferdatabuffersize;int len = socket.receive(bufferdata,buffersize);if (len != -1)bufferdatalen = 0;position pos = m_socketlist.getheadposition();while (pos != null)cclientsocket* socket = (cclientsocket*)m_socketlist.getnext(pos);if (

37、socket != null)socket-send(bufferdata,len);void cserverdlg:acceptconnect()cclientsocket* psocket = new cclientsocket();psocket-setdialog(this);if (m_serversock.accept(*psocket)m_socketlist.addtail(psocket);elsedelete psocket;void cserverdlg:oncancel()position pos = m_socketlist.getheadposition();while (pos != null)cclientsocket* socket = (cclientsocket*)m_socketlist.getnext(pos);if (socket != null)del

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论