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

SNMP编程

开发平台:

Visual C++

  1. /*===================================================================
  2.   Copyright (c) 1999
  3.   Hewlett-Packard Company
  4.  
  5.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  6.   Permission to use, copy, modify, distribute and/or sell this software 
  7.   and/or its documentation is hereby granted without fee. User agrees 
  8.   to display the above copyright notice and this license notice in all 
  9.   copies of the software and any documentation of the software. User 
  10.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  11.   makes no representations about the suitability of this software for any 
  12.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  13.   or implied. User hereby grants a royalty-free license to any and all 
  14.   derivatives based upon this software code base. 
  15.     
  16.   C O U N T E R 6 4. C P P   
  17.       
  18.   COUNTER64 CLASS IMPLEMENTATION
  19.        
  20.   VERSION 2.8
  21.       
  22.   DESIGN:
  23.   Peter E. Mellquist          
  24.           
  25.   AUTHOR:   
  26.   Peter E Mellquist
  27.         
  28.   DATE:  
  29.   June 15, 1999
  30.         
  31.   DESCRIPTION:
  32.   Implementation for
  33.   Counter64 ( 64 bit counter class).
  34.          
  35.         
  36.   LANGUAGE:
  37.   ANSI C++
  38.         
  39.   OPERATING SYSTEM(S):
  40.   MS-Windows Win32
  41.   BSD UNIX
  42.         
  43. =====================================================================*/ 
  44. char counter64_cpp_version[]="@(#) SNMP++ 2.8 $Header: ctr64.cpp,v 1.8 96/09/11 14:01:49 hmgr Exp $";
  45.  
  46. #include "ctr64.h"
  47. #include <stdio.h>   // for pretty printing...
  48. #define MAX32 4294967295UL
  49. //-----------[ syntax type ]----------------------------------------------
  50. SmiUINT32 Counter64::get_syntax()
  51. { return sNMP_SYNTAX_CNTR64; };
  52. //------------------[ constructor with no value ]------------------------ 
  53. Counter64::Counter64( void)
  54. {
  55.   smival.syntax = sNMP_SYNTAX_CNTR64;
  56.   smival.value.hNumber.hipart = 0;
  57.   smival.value.hNumber.lopart = 0;
  58. };
  59. //------------------[ constructor with values ]-------------------------- 
  60. Counter64::Counter64( unsigned long hiparm, unsigned long loparm)
  61. {
  62.   smival.syntax = sNMP_SYNTAX_CNTR64;
  63.   smival.value.hNumber.hipart = hiparm;
  64.   smival.value.hNumber.lopart = loparm;
  65. };
  66. //------------------[ constructor with low value only ]------------------ 
  67. Counter64::Counter64( unsigned long loparm )
  68. {
  69.   smival.syntax = sNMP_SYNTAX_CNTR64;
  70.   smival.value.hNumber.hipart = 0;
  71.   smival.value.hNumber.lopart = loparm;
  72. };
  73. //------------------[ copy constructor ]--------------------------------- 
  74. Counter64::Counter64( const Counter64 &ctr64 )
  75. {
  76.   smival.syntax = sNMP_SYNTAX_CNTR64;
  77.   smival.value.hNumber.hipart = ctr64.high();
  78.   smival.value.hNumber.lopart = ctr64.low();
  79. };
  80. //------------------[ destructor ]--------------------------------- 
  81. Counter64::~Counter64()
  82. {};
  83. //------------------[ Counter64::high() ]------------------------------ 
  84. // return the high part   
  85. unsigned long int Counter64::high() const
  86.   return smival.value.hNumber.hipart; 
  87. };
  88. //------------------[ Counter64::low() ]-------------------------------        
  89. // return the low part   
  90. unsigned long int Counter64::low() const
  91.   return smival.value.hNumber.lopart;
  92. };
  93. //------------------[ set_high( const unsigned long int h) ]-----------        
  94. // set the high part   
  95. void Counter64::set_high( const unsigned long int h)
  96. { smival.value.hNumber.hipart = h; };
  97.    
  98. //------------------[ set_low( const unsigned long int l) ]------------        
  99. // set the low part   
  100. void Counter64::set_low( const unsigned long int l)
  101. { smival.value.hNumber.lopart = l; }; 
  102.         
  103. //------------------[ operator=( const Counter64 &ctr64) ]-------------     
  104. // assign a ctr64 to a ctr64 
  105. Counter64& Counter64::operator=( const Counter64 &ctr64) 
  106.    smival.value.hNumber.hipart = ctr64.high();
  107.    smival.value.hNumber.lopart = ctr64.low();
  108.    return *this;
  109. };         
  110. //-------------------[ operator=( const unsigned long int i) ]---------
  111. // assign a ul to a ctr64, clears the high part
  112. // and assugns the low part
  113. Counter64& Counter64::operator=( const unsigned long int i) 
  114.    smival.value.hNumber.hipart = 0;
  115.    smival.value.hNumber.lopart = i;
  116.    return *this;
  117. };
  118. //-----------[ c64_to_ld( Counter64 c64) ]-----------------------------
  119. // convert a Counter 64 to a long double
  120. long double Counter64::c64_to_ld( Counter64 &c64)
  121. {
  122.   long double ld = c64.high();
  123.   ld *= MAX32;
  124.   ld += c64.low();
  125.   return (ld);
  126. };
  127. //-----------[ ld_to_c64( long double ld) ]----------------------------      
  128. // convert a long double to a Counter64
  129. Counter64 Counter64::ld_to_c64( long double ld)
  130. {
  131.      unsigned long h;
  132.      unsigned long l;
  133.      h = (unsigned long)(ld / MAX32);
  134.      l = (unsigned long)(ld-h);
  135.      return ( Counter64( h,l));
  136. };  
  137. //----------[ Counter64::operator+( const Counter64 &c) ]---------------
  138. // add two Counter64s
  139. Counter64 Counter64::operator+( const Counter64 &c)
  140. {
  141.    long double ld1, ld2, ldsum;
  142.    Counter64 result;
  143.    Counter64 temp( c);
  144.    ld1 = c64_to_ld( *this);
  145.    ld2 = c64_to_ld( temp);
  146.    ldsum = ld1+ld2;
  147.    result = ld_to_c64( ldsum);
  148.    
  149.    return ( Counter64( result.high(),result.low() ));
  150. }; 
  151. // add a unsigned long and a Counter64
  152. Counter64 operator+( unsigned long ul, const Counter64 &c64)
  153. {  
  154.    return   Counter64( ul) + c64;
  155. };    
  156.      
  157. //------------[ Counter64::operator-( const Counter64 &c) ]-------------
  158. // subtract two Counter64s
  159. Counter64 Counter64::operator-( const Counter64 &c)
  160. {  
  161.    long double ld1, ld2, ldsum;
  162.    Counter64 result;
  163.    Counter64 temp( c);
  164.    ld1 = c64_to_ld( *this);
  165.    ld2 = c64_to_ld( temp);
  166.    ldsum = ld1-ld2;
  167.    result = ld_to_c64( ldsum);
  168.    
  169.    return ( Counter64( result.high(),result.low() ));
  170. }; 
  171. // add a unsigned long and a Counter64
  172. Counter64 operator-( unsigned long ul, const Counter64 &c64)
  173. {  
  174.    return   Counter64( ul) - c64;
  175. };    
  176.         
  177. //------------[ Counter64::operator*( const Counter64 &c) ]-------------
  178. // multiply two Counter64s
  179. Counter64 Counter64::operator*( const Counter64 &c)
  180. {
  181.    long double ld1, ld2, ldsum;
  182.    Counter64 result;
  183.    Counter64 temp( c);
  184.    ld1 = c64_to_ld( *this);
  185.    ld2 = c64_to_ld( temp);
  186.    ldsum = ld1*ld2;
  187.    result = ld_to_c64( ldsum);
  188.    
  189.    return ( Counter64( result.high(),result.low() )); 
  190. }; 
  191. // add a unsigned long and a Counter64
  192. Counter64 operator*( unsigned long ul, const Counter64 &c64)
  193. {  
  194.    return   Counter64( ul) * c64;
  195. };  
  196.      
  197. //------------[ Counter64::operator/( const Counter64 &c) ]--------------     
  198. // divide two Counter64s
  199. Counter64 Counter64::operator/( const Counter64 &c)
  200. {
  201.    long double ld1, ld2, ldsum;
  202.    Counter64 result;
  203.    Counter64 temp( c);
  204.    ld1 = c64_to_ld( *this);
  205.    ld2 = c64_to_ld( temp);
  206.    ldsum = ld1/ld2;
  207.    result = ld_to_c64( ldsum);
  208.    
  209.    return ( Counter64( result.high(),result.low() ));
  210. };
  211. // add a unsigned long and a Counter64
  212. Counter64 operator/( unsigned long ul, const Counter64 &c64)
  213. {  
  214.    return   Counter64( ul) / c64;
  215. };  
  216.      
  217. //-------[ overloaded equivlence test ]----------------------------------
  218. int operator==( Counter64 &lhs, Counter64 &rhs)
  219. {
  220.    if (( lhs.high() == rhs.high()) && ( lhs.low() == rhs.low()))
  221.       return TRUE;
  222.    else
  223.       return FALSE;       
  224. };
  225.      
  226. //-------[ overloaded not equal test ]-----------------------------------
  227. int operator!=( Counter64 &lhs, Counter64 &rhs)
  228. {
  229.    if (( lhs.high() != rhs.high()) || ( lhs.low() != rhs.low()))
  230.       return TRUE;
  231.    else
  232.       return FALSE;
  233. };             
  234.      
  235. //--------[ overloaded less than ]---------------------------------------
  236. int operator<( Counter64 &lhs, Counter64 &rhs)
  237. {    
  238.    long double ld_lhs, ld_rhs;
  239.    ld_lhs = lhs.c64_to_ld( lhs);
  240.    ld_rhs = rhs.c64_to_ld( rhs);
  241.    if ( ld_lhs < ld_rhs)
  242.       return TRUE;
  243.    else
  244.       return FALSE;   
  245. };
  246. //---------[ overloaded less than or equal ]-----------------------------
  247. int operator<=( Counter64 &lhs, Counter64 &rhs)
  248. {  
  249.    long double ld_lhs, ld_rhs;
  250.    ld_lhs = lhs.c64_to_ld( lhs);
  251.    ld_rhs = rhs.c64_to_ld( rhs);
  252.    if ( ld_lhs <= ld_rhs)
  253.       return TRUE;
  254.    else
  255.       return FALSE;   
  256. };
  257.      
  258. //---------[ overloaded greater than ]-----------------------------------
  259. int operator>( Counter64 &lhs, Counter64 &rhs)
  260. {  
  261.    long double ld_lhs, ld_rhs;
  262.    ld_lhs = lhs.c64_to_ld( lhs);
  263.    ld_rhs = rhs.c64_to_ld( rhs);
  264.    if ( ld_lhs > ld_rhs)
  265.       return TRUE;
  266.    else
  267.       return FALSE;   
  268. };
  269.      
  270. //----------[ overloaded greater than or equal ]-------------------------
  271. int operator>=( Counter64 &lhs, Counter64 &rhs)
  272. {
  273.    long double ld_lhs, ld_rhs;
  274.    ld_lhs = lhs.c64_to_ld( lhs);
  275.    ld_rhs = rhs.c64_to_ld( rhs);
  276.    if ( ld_lhs >= ld_rhs)
  277.       return TRUE;
  278.    else
  279.       return FALSE;     
  280. };
  281. //----------[ return ASCII format ]-------------------------
  282. // TODO:  Fix up to do real 64bit decimal value printing... 
  283. //        For now, print > 32-bit values in hex
  284. char * Counter64::get_printable() 
  285.   if ( high() != 0 )
  286.     sprintf(output_buffer, "0x%X%08X", high(), low());
  287.   else
  288.     sprintf(output_buffer, "%d", low());
  289.   return output_buffer;
  290. };
  291. //----------------[ general Value = operator ]---------------------
  292. SnmpSyntax& Counter64::operator=( SnmpSyntax &val)
  293. {
  294.   // protect against assignment from itself
  295.   if ( this == &val )
  296.       return *this;
  297.   smival.value.hNumber.lopart = 0; // pessimsitic - assume no mapping
  298.   smival.value.hNumber.hipart = 0;
  299.   // try to make assignment valid
  300.   if (val.valid()){
  301.     switch (val.get_syntax()){
  302.       case sNMP_SYNTAX_CNTR64:
  303. smival.value.hNumber.hipart = 
  304. ((Counter64 &)val).smival.value.hNumber.hipart;
  305. smival.value.hNumber.lopart = 
  306. ((Counter64 &)val).smival.value.hNumber.lopart;
  307. break;
  308.       case sNMP_SYNTAX_CNTR32:
  309.       case sNMP_SYNTAX_TIMETICKS:
  310.       case sNMP_SYNTAX_GAUGE32:
  311.    // case sNMP_SYNTAX_UINT32: .. indistinguishable from GAUGE32
  312.       case sNMP_SYNTAX_INT32:
  313. // take advantage of union...
  314. smival.value.hNumber.lopart = ((Counter64 &)val).smival.value.uNumber;
  315. smival.value.hNumber.hipart = 0;
  316. break;
  317.     }
  318.   }
  319.   return *this;
  320. };
  321. //----------------[ Counter64::clone() ]-----------------------------------
  322. // create a new instance of this Value
  323. SnmpSyntax* Counter64::clone() const 
  324. { return ( SnmpSyntax *) new Counter64(*this); };
  325. //----------------[ Counter64::valid() ]-------------------------------------
  326. int Counter64::valid() const
  327. { return 1; };