VbOpts.cpp
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:5k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*============================================================================
  2.    Copyright (c) 1996
  3.   Hewlett-Packard Company
  4.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  5.   Permission to use, copy, modify, distribute and/or sell this software 
  6.   and/or its documentation is hereby granted without fee. User agrees 
  7.   to display the above copyright notice and this license notice in all 
  8.   copies of the software and any documentation of the software. User 
  9.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  10.   makes no representations about the suitability of this software for any 
  11.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  12.   or implied. User hereby grants a royalty-free license to any and all 
  13.   derivatives based upon this software code base. 
  14. =============================================================================*/
  15. #include "stdafx.h"
  16. #include "browser.h"
  17. #include "vbopts.h"
  18. #include "snmp_pp.h"
  19. #ifdef _DEBUG
  20. #define new DEBUG_NEW
  21. #undef THIS_FILE
  22. static char THIS_FILE[] = __FILE__;
  23. #endif
  24. #define STRTOL( str) ((strcmp(str,"0")==0)?-1:atol(str))
  25. // returns status and if success, returns value 
  26. inline int string_to_long(  CString str, unsigned long &val) {
  27.    if ( str.Find(".") != -1)
  28.    return FALSE;
  29.    if ( strcmp(str,"0")==0)
  30.    {
  31.       val = 0;
  32.       return TRUE;
  33.    }
  34.    val = atol( str);
  35.    if ( val == 0)
  36.    return FALSE;
  37.    else
  38.        return TRUE;
  39. };
  40. /////////////////////////////////////////////////////////////////////////////
  41. // VbOpts dialog
  42. VbOpts::VbOpts(CWnd* pParent /*=NULL*/)
  43. : CDialog(VbOpts::IDD, pParent)
  44. {
  45. //{{AFX_DATA_INIT(VbOpts)
  46. m_vboid = _T("");
  47. m_vbvalue = _T("");
  48. //}}AFX_DATA_INIT
  49. }
  50. void VbOpts::DoDataExchange(CDataExchange* pDX)
  51. {
  52. CDialog::DoDataExchange(pDX);
  53. //{{AFX_DATA_MAP(VbOpts)
  54. DDX_Text(pDX, IDC_VBOID, m_vboid);
  55. DDV_MaxChars(pDX, m_vboid, 200);
  56. DDX_Text(pDX, IDC_VBVALUE, m_vbvalue);
  57. DDV_MaxChars(pDX, m_vbvalue, 200);
  58. //}}AFX_DATA_MAP
  59. }
  60. BEGIN_MESSAGE_MAP(VbOpts, CDialog)
  61. //{{AFX_MSG_MAP(VbOpts)
  62. ON_BN_CLICKED(IDCONTINUE, OnContinue)
  63. //}}AFX_MSG_MAP
  64. END_MESSAGE_MAP()
  65. /////////////////////////////////////////////////////////////////////////////
  66. // VbOpts message handlers
  67. BOOL VbOpts::OnInitDialog() 
  68. {
  69. CDialog::OnInitDialog();
  70. // TODO: Add extra initialization here
  71. CheckRadioButton( IDC_RADIO_OCTETSTR, IDC_RADIO_UINT32, IDC_RADIO_OCTETSTR); 
  72. return TRUE;  // return TRUE unless you set the focus to a control
  73.               // EXCEPTION: OCX Property Pages should return FALSE
  74. }
  75. void VbOpts::OnContinue() 
  76. {
  77. // TODO: Add your control notification handler code here
  78. UpdateData( TRUE);
  79. // verify that the oid is correct
  80. Oid oid( m_vboid);
  81. if ( !oid.valid())
  82. {
  83. AfxMessageBox("Invalid VB Oid Portion!");
  84. return;
  85. }
  86. // set the oid portion
  87. my_vb.set_oid( oid);
  88. // verify that the value is correct based on the type selected
  89. int option = GetCheckedRadioButton( IDC_RADIO_OCTETSTR, IDC_RADIO_UINT32);
  90. switch ( option) {
  91. // octet string
  92. case  IDC_RADIO_OCTETSTR:
  93. {
  94. OctetStr octetstr( m_vbvalue);
  95. if ( !octetstr.valid())
  96. {
  97. AfxMessageBox("Invalid Octet String Value!");
  98. return;
  99. }
  100. else
  101. my_vb.set_value( octetstr);
  102. }
  103. break;
  104. // oid
  105. case IDC_RADIO_OID:
  106. {
  107. Oid oid( m_vbvalue);
  108. if ( !oid.valid())
  109. {
  110. AfxMessageBox("Invalid Oid Value!");
  111. return;
  112. }
  113. else
  114. my_vb.set_value( oid);
  115. }
  116. break;
  117. // counter32
  118. case IDC_RADIO_COUNTER32:
  119. {
  120.     unsigned long  v;
  121. if ( !string_to_long( m_vbvalue, v))
  122. {
  123.    AfxMessageBox("Invalid Counter32 Value!");
  124.    return;
  125. }
  126. Counter32 counter32( v);
  127. if ( !counter32.valid())
  128. {
  129.    AfxMessageBox("Invalid Counter32 Value!");
  130.    return;
  131. }
  132. else
  133. my_vb.set_value( counter32);
  134. }
  135. break;
  136. // gauge32
  137. case IDC_RADIO_GAUGE32:
  138. {
  139.     unsigned long  v;
  140. if ( !string_to_long( m_vbvalue, v))
  141. {
  142.    AfxMessageBox("Invalid Gauge32 Value!");
  143.    return;
  144. }
  145. Gauge32 gauge32( v);
  146. if ( !gauge32.valid())
  147. {
  148.    AfxMessageBox("Invalid Gauge32 Value!");
  149.    return;
  150. }
  151. else
  152. my_vb.set_value( gauge32);
  153. }
  154. break;
  155. // timeticks
  156. case IDC_RADIO_TIMETICKS:
  157. {
  158.     unsigned long  t;
  159. if ( !string_to_long( m_vbvalue, t))
  160. {
  161.    AfxMessageBox("Invalid TimeTicks Value!");
  162.    return;
  163. }
  164. TimeTicks timeticks( t);
  165. if ( !timeticks.valid())
  166. {
  167.    AfxMessageBox("Invalid TimeTicks Value!");
  168.    return;
  169. }
  170. else
  171. my_vb.set_value( timeticks);
  172. }
  173. break;
  174. // ip address
  175. case IDC_RADIO_IPADDRESS:
  176. {
  177.     IpAddress ip( m_vbvalue);
  178. if ( ! ip.valid())
  179. {
  180.    AfxMessageBox("Invalid IP Address Value!");
  181.    return;
  182. }
  183. else
  184. my_vb.set_value( ip);
  185. }
  186. break;
  187. // unsigned int32
  188. case IDC_RADIO_INT32:
  189. {
  190. unsigned long i;
  191. if ( ! string_to_long( m_vbvalue, (unsigned long) i))
  192. {
  193. AfxMessageBox("Invalid Integer Value!");
  194. return;
  195. }
  196. else
  197. my_vb.set_value( (long int) i);
  198. }
  199. break;
  200. // int32
  201. case IDC_RADIO_UINT32:
  202. {
  203. unsigned long int i;
  204. if ( ! string_to_long( m_vbvalue,i)) {
  205. AfxMessageBox("Invalid Unsigned Integer Value!");
  206. return;
  207. }
  208. else
  209. my_vb.set_value( (unsigned long int) i);
  210. }
  211. break;
  212. };
  213. UpdateData( TRUE);
  214. OnCancel();
  215. }
  216. int VbOpts::DoModal() 
  217. {
  218. // TODO: Add your specialized code here and/or call the base class
  219. return CDialog::DoModal();
  220. }