ClientDlg.cpp
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:7k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ClientDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Client.h"
  5. #include "ClientDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CClientDlg dialog
  50. CClientDlg::CClientDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CClientDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CClientDlg)
  54. // NOTE: the ClassWizard will add member initialization here
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. m_hSocket = NULL;
  59. }
  60. void CClientDlg::DoDataExchange(CDataExchange* pDX)
  61. {
  62. CDialog::DoDataExchange(pDX);
  63. //{{AFX_DATA_MAP(CClientDlg)
  64. DDX_Control(pDX, ID_SERVER, m_ctrlServer);
  65. //}}AFX_DATA_MAP
  66. }
  67. BEGIN_MESSAGE_MAP(CClientDlg, CDialog)
  68. //{{AFX_MSG_MAP(CClientDlg)
  69. ON_WM_SYSCOMMAND()
  70. ON_WM_PAINT()
  71. ON_WM_QUERYDRAGICON()
  72. ON_BN_CLICKED(IDC_SYNCH, OnSynch)
  73. //}}AFX_MSG_MAP
  74. END_MESSAGE_MAP()
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CClientDlg message handlers
  77. BOOL CClientDlg::OnInitDialog()
  78. {
  79. CDialog::OnInitDialog();
  80. // Add "About..." menu item to system menu.
  81. // IDM_ABOUTBOX must be in the system command range.
  82. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  83. ASSERT(IDM_ABOUTBOX < 0xF000);
  84. CMenu* pSysMenu = GetSystemMenu(FALSE);
  85. if (pSysMenu != NULL)
  86. {
  87. CString strAboutMenu;
  88. strAboutMenu.LoadString(IDS_ABOUTBOX);
  89. if (!strAboutMenu.IsEmpty())
  90. {
  91. pSysMenu->AppendMenu(MF_SEPARATOR);
  92. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  93. }
  94. }
  95. // Set the icon for this dialog.  The framework does this automatically
  96. //  when the application's main window is not a dialog
  97. SetIcon(m_hIcon, TRUE); // Set big icon
  98. SetIcon(m_hIcon, FALSE); // Set small icon
  99. // TODO: Add extra initialization here
  100. return TRUE;  // return TRUE  unless you set the focus to a control
  101. }
  102. void CClientDlg::OnSysCommand(UINT nID, LPARAM lParam)
  103. {
  104. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  105. {
  106. CAboutDlg dlgAbout;
  107. dlgAbout.DoModal();
  108. }
  109. else
  110. {
  111. CDialog::OnSysCommand(nID, lParam);
  112. }
  113. }
  114. // If you add a minimize button to your dialog, you will need the code below
  115. //  to draw the icon.  For MFC applications using the document/view model,
  116. //  this is automatically done for you by the framework.
  117. void CClientDlg::OnPaint() 
  118. {
  119. if (IsIconic())
  120. {
  121. CPaintDC dc(this); // device context for painting
  122. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  123. // Center icon in client rectangle
  124. int cxIcon = GetSystemMetrics(SM_CXICON);
  125. int cyIcon = GetSystemMetrics(SM_CYICON);
  126. CRect rect;
  127. GetClientRect(&rect);
  128. int x = (rect.Width() - cxIcon + 1) / 2;
  129. int y = (rect.Height() - cyIcon + 1) / 2;
  130. // Draw the icon
  131. dc.DrawIcon(x, y, m_hIcon);
  132. }
  133. else
  134. {
  135. CDialog::OnPaint();
  136. }
  137. }
  138. // The system calls this to obtain the cursor to display while the user drags
  139. //  the minimized window.
  140. HCURSOR CClientDlg::OnQueryDragIcon()
  141. {
  142. return (HCURSOR) m_hIcon;
  143. }
  144. void CClientDlg::OnSynch() 
  145. {
  146. //得到服务器IP地址
  147. BYTE b1,b2,b3,b4;
  148. m_ctrlServer.GetAddress(b1,b2,b3,b4);
  149.     char strServer[256];
  150. memset(strServer,0,256);
  151. sprintf(strServer,"%d.%d.%d.%d",b1,b2,b3,b4);
  152. //设置客户端要同步的服务器的sockaddr_in结构
  153. m_ServerAddr.sin_family = AF_INET;
  154. m_ServerAddr.sin_port = htons(CONNECE_PORT);
  155.     m_ServerAddr.sin_addr.s_addr = inet_addr(strServer); 
  156. m_hSocket = NULL;
  157. //连接服务器
  158. ContactServer();
  159. }
  160. void CClientDlg::ContactServer()
  161. {
  162. ASSERT(m_hSocket == NULL);
  163. WORD wVersionRequested;
  164. WSADATA wsaData;
  165. int nErr;
  166. wVersionRequested = MAKEWORD( 2, 0 );
  167. //加载所需的Winsock dll版本
  168. nErr = WSAStartup( wVersionRequested, &wsaData );
  169. if(nErr)
  170. {
  171. AfxMessageBox("加载Winsock DLL 出错");
  172. return;
  173. }
  174. if((m_hSocket = socket(AF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET) 
  175. {
  176. AfxMessageBox("创建Socket失败");
  177. return;
  178. }
  179. //连接服务器
  180. ASSERT(m_hSocket != NULL);
  181. if(connect(m_hSocket, (sockaddr*)&m_ServerAddr, sizeof(SOCKADDR)) == SOCKET_ERROR)
  182. {
  183. AfxMessageBox("连接服务器失败");
  184. return;
  185. }
  186. //构造消息命令串,此处的消息命令串比较简单,
  187. //只有Get Time八个字符
  188. CString strMsg = "Get Time";
  189. int nLen = strMsg.GetLength();
  190. //向服务器端发送消息请求
  191. FD_SET fd = {1, m_hSocket};
  192. TIMEVAL tv = {TIME_OUT,0};
  193. if(select(0, NULL, &fd, NULL, &tv) == 0) 
  194. {
  195. AfxMessageBox("发送超时");
  196. return;
  197. }
  198. int nBytesSent;
  199. if((nBytesSent = send(m_hSocket, strMsg, nLen, 0)) == SOCKET_ERROR) 
  200. {
  201. AfxMessageBox("发送数据失败");
  202. return;
  203. }
  204. if (nBytesSent == nLen)          // 发送成功
  205. {
  206. //收取数据
  207. char m_pReadBuf[256];
  208. //循环等待服务器的相应消息
  209. while(1)
  210. {
  211. //给接受数据缓冲区清零
  212. memset(m_pReadBuf,0,256);
  213. if(select(0, &fd, NULL, NULL, &tv) == 0) 
  214. {
  215. AfxMessageBox("接受超时");
  216. return;
  217. }
  218. //接收数据
  219. int nBytesReceived;
  220. if((nBytesReceived = recv(m_hSocket, m_pReadBuf, 255, 0)) == SOCKET_ERROR)
  221. {
  222. AfxMessageBox("接受数据失败");
  223. return;
  224. }
  225.             
  226. //如果接受到的数据长度大于0,则退出循环,否则循环等待
  227. if (nBytesReceived > 0)
  228. break;
  229. };
  230. char strCommand[9];
  231. memset(strCommand,0,9);
  232. strncpy(strCommand,m_pReadBuf,8);
  233. if (strcmp(strCommand,"Set Time") == 0)
  234. {      
  235. char sYear[5],sMonth[3],sDay[3],sHour[3],sMinute[3],sSecond[3];
  236. memset(sYear,0,5);
  237. memset(sMonth,0,3);
  238. memset(sDay,0,3);
  239. memset(sHour,0,3);
  240. memset(sMinute,0,3);
  241. memset(sSecond,0,3);
  242. //分析读到的数据格式,从中解析出时间数据
  243. strncpy(sYear,m_pReadBuf+8,4);
  244. strncpy(sMonth,m_pReadBuf+12,2);
  245. strncpy(sDay,m_pReadBuf+14,2);
  246. strncpy(sHour,m_pReadBuf+16,2);
  247. strncpy(sMinute,m_pReadBuf+18,2);
  248. strncpy(sSecond,m_pReadBuf+20,2);
  249. //根据服务器发过来的时间数据设置本机时间
  250. SYSTEMTIME time;
  251. time.wYear = atoi(sYear);
  252. time.wMonth = atoi(sMonth);
  253. time.wDay = atoi(sDay);
  254. time.wHour = atoi(sHour);
  255. time.wMinute = atoi(sMinute);
  256. time.wSecond = atoi(sSecond);
  257. time.wMilliseconds = 0;
  258. time.wDayOfWeek = 0;           
  259. SetLocalTime(&time);
  260. }
  261. }
  262. // 关闭Socket
  263. if(closesocket(m_hSocket) == SOCKET_ERROR)
  264. {
  265. AfxMessageBox("关闭连接失败");
  266. m_hSocket = NULL;
  267. return;
  268. }
  269. }