ValidIPTestDlg.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:6k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ValidIPTestDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ValidIPTest.h"
  5. #include "ValidIPTestDlg.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. // CValidIPTestDlg dialog
  50. CValidIPTestDlg::CValidIPTestDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CValidIPTestDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CValidIPTestDlg)
  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. }
  59. void CValidIPTestDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CValidIPTestDlg)
  63. DDX_Control(pDX, IDC_NETWORKID, m_ctrlNetworkID);
  64. DDX_Control(pDX, IDC_MASK, m_ctrlMask);
  65. DDX_Control(pDX, IDC_IP, m_ctrlIP);
  66. //}}AFX_DATA_MAP
  67. }
  68. BEGIN_MESSAGE_MAP(CValidIPTestDlg, CDialog)
  69. //{{AFX_MSG_MAP(CValidIPTestDlg)
  70. ON_WM_SYSCOMMAND()
  71. ON_WM_PAINT()
  72. ON_WM_QUERYDRAGICON()
  73. ON_BN_CLICKED(IDC_TEST, OnTest)
  74. //}}AFX_MSG_MAP
  75. END_MESSAGE_MAP()
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CValidIPTestDlg message handlers
  78. BOOL CValidIPTestDlg::OnInitDialog()
  79. {
  80. CDialog::OnInitDialog();
  81. // Add "About..." menu item to system menu.
  82. // IDM_ABOUTBOX must be in the system command range.
  83. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  84. ASSERT(IDM_ABOUTBOX < 0xF000);
  85. CMenu* pSysMenu = GetSystemMenu(FALSE);
  86. if (pSysMenu != NULL)
  87. {
  88. CString strAboutMenu;
  89. strAboutMenu.LoadString(IDS_ABOUTBOX);
  90. if (!strAboutMenu.IsEmpty())
  91. {
  92. pSysMenu->AppendMenu(MF_SEPARATOR);
  93. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  94. }
  95. }
  96. // Set the icon for this dialog.  The framework does this automatically
  97. //  when the application's main window is not a dialog
  98. SetIcon(m_hIcon, TRUE); // Set big icon
  99. SetIcon(m_hIcon, FALSE); // Set small icon
  100. // TODO: Add extra initialization here
  101. return TRUE;  // return TRUE  unless you set the focus to a control
  102. }
  103. void CValidIPTestDlg::OnSysCommand(UINT nID, LPARAM lParam)
  104. {
  105. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  106. {
  107. CAboutDlg dlgAbout;
  108. dlgAbout.DoModal();
  109. }
  110. else
  111. {
  112. CDialog::OnSysCommand(nID, lParam);
  113. }
  114. }
  115. // If you add a minimize button to your dialog, you will need the code below
  116. //  to draw the icon.  For MFC applications using the document/view model,
  117. //  this is automatically done for you by the framework.
  118. void CValidIPTestDlg::OnPaint() 
  119. {
  120. if (IsIconic())
  121. {
  122. CPaintDC dc(this); // device context for painting
  123. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  124. // Center icon in client rectangle
  125. int cxIcon = GetSystemMetrics(SM_CXICON);
  126. int cyIcon = GetSystemMetrics(SM_CYICON);
  127. CRect rect;
  128. GetClientRect(&rect);
  129. int x = (rect.Width() - cxIcon + 1) / 2;
  130. int y = (rect.Height() - cyIcon + 1) / 2;
  131. // Draw the icon
  132. dc.DrawIcon(x, y, m_hIcon);
  133. }
  134. else
  135. {
  136. CDialog::OnPaint();
  137. }
  138. }
  139. // The system calls this to obtain the cursor to display while the user drags
  140. //  the minimized window.
  141. HCURSOR CValidIPTestDlg::OnQueryDragIcon()
  142. {
  143. return (HCURSOR) m_hIcon;
  144. }
  145. void CValidIPTestDlg::OnTest() 
  146. {
  147.     DWORD dwIP,dwMask,dwNetworkID;
  148. //取得用户输入的IP地址
  149. m_ctrlIP.GetAddress(dwIP);
  150. //取得掩码数据
  151. m_ctrlMask.GetAddress(dwMask);
  152.     //取得网络ID值
  153. m_ctrlNetworkID.GetAddress(dwNetworkID);
  154. //如果IP和掩码数据按位做与操作,结果不等于网络ID
  155. //则说明该IP地址是无效的
  156. /*
  157. if ((dwIP & dwMask) != dwNetworkID)
  158. {
  159. AfxMessageBox("这是一个无效的IP地址,因为该IP地址和掩码按位与后不等于网络ID");
  160. return;
  161. }
  162. */
  163. //将掩码数据取反,根据得到结果中1的个数和位置
  164. //就知道IP地址中主机ID有几位,在哪些位置上
  165. DWORD dw = ~dwMask;
  166. //如果主机位全是1,则这个IP地址是无效的。
  167. if ((dw & dwIP) == dw)
  168. {
  169. AfxMessageBox("这是一个无效的IP地址,因为主机位全是1");
  170. return;
  171. }
  172. //如果主机位全是0,则这个IP地址是无效的
  173.     if ((dw & dwIP) == 0)
  174. {
  175. AfxMessageBox("这是一个无效的IP地址,因为主机位全是0");
  176. return;
  177. }
  178. //另外,每个网段的开始和结束的那段IP也是无效的
  179. DWORD dwStart1,dwEnd1,dwStart2,dwEnd2;
  180. //计算本网段开始一段的无效IP地址范围
  181. dwStart1 = dwNetworkID + 0;
  182. dwEnd1   = dwNetworkID + dw;
  183. //计算本网段结束一段的无效IP地址
  184. DWORD dwBase;
  185. if (dw < 0x100)
  186. {
  187. dwBase = (0x100 -1) & ~dw;
  188. }
  189. else if (dw >= 0x100 && dw < 0x10000)
  190. {
  191. dwBase = (0x10000 -1) & ~dw;
  192. }
  193. else if (dw >= 0x10000 && dw < 0x1000000)
  194. {
  195. dwBase = (0x1000000 -1) & ~dw;
  196. }
  197. else
  198. {
  199. //因为A、B、C、D、E五类网址的掩码最高位都是255
  200. //因此dw不可能比0x1000000大的
  201. AfxMessageBox("指定的掩码数据是错误的");
  202. return;
  203. }
  204. dwStart2 = dwNetworkID + dwBase;
  205. dwEnd2   = dwNetworkID + dwBase + dw;
  206. //判断给定的IP是否在这两个范围之内,如果在则是无效的
  207. if ((dwIP >= dwStart1 && dwIP <= dwEnd1)||
  208. (dwIP >= dwStart2 && dwIP <= dwEnd2))
  209. {
  210. AfxMessageBox("给定的IP地址是无效的,每个网段的最开始的那段和结束的那段IP都不可以使用");
  211. return;
  212. }
  213. AfxMessageBox("这是一个合法的IP地址");
  214.    
  215. }