ctr64.cpp
上传用户:ets1996
上传日期:2014-09-30
资源大小:353k
文件大小:14k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  ctr64.cpp  
  4.   _##
  5.   _##  SNMP++v3.2.22
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2007 Jochen Katz, Frank Fock
  8.   _##
  9.   _##  This software is based on SNMP++2.6 from Hewlett Packard:
  10.   _##  
  11.   _##    Copyright (c) 1996
  12.   _##    Hewlett-Packard Company
  13.   _##  
  14.   _##  ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  15.   _##  Permission to use, copy, modify, distribute and/or sell this software 
  16.   _##  and/or its documentation is hereby granted without fee. User agrees 
  17.   _##  to display the above copyright notice and this license notice in all 
  18.   _##  copies of the software and any documentation of the software. User 
  19.   _##  agrees to assume all liability for the use of the software; 
  20.   _##  Hewlett-Packard and Jochen Katz make no representations about the 
  21.   _##  suitability of this software for any purpose. It is provided 
  22.   _##  "AS-IS" without warranty of any kind, either express or implied. User 
  23.   _##  hereby grants a royalty-free license to any and all derivatives based
  24.   _##  upon this software code base. 
  25.   _##  
  26.   _##  Stuttgart, Germany, Wed May  2 23:22:30 CEST 2007 
  27.   _##  
  28.   _##########################################################################*/
  29. /*===================================================================
  30.   Copyright (c) 1999
  31.   Hewlett-Packard Company
  32.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  33.   Permission to use, copy, modify, distribute and/or sell this software
  34.   and/or its documentation is hereby granted without fee. User agrees
  35.   to display the above copyright notice and this license notice in all
  36.   copies of the software and any documentation of the software. User
  37.   agrees to assume all liability for the use of the software; Hewlett-Packard
  38.   makes no representations about the suitability of this software for any
  39.   purpose. It is provided "AS-IS" without warranty of any kind,either express
  40.   or implied. User hereby grants a royalty-free license to any and all
  41.   derivatives based upon this software code base.
  42.   C O U N T E R 6 4. C P P
  43.   COUNTER64 CLASS IMPLEMENTATION
  44.   DESIGN + AUTHOR:     Peter E. Mellquist
  45.   LANGUAGE:            ANSI C++
  46.   DESCRIPTION:         Implementation for Counter64 (64 bit counter class).
  47. =====================================================================*/
  48. char counter64_cpp_version[]="@(#) SNMP++ $Id: ctr64.cpp 265 2006-09-03 17:55:52Z katz $";
  49. #include "snmp_pp/ctr64.h"
  50. #include "snmp_pp/asn1.h"
  51. #include "snmp_pp/v3.h"
  52. #include <stdio.h>   // for pretty printing...
  53. #ifdef SNMP_PP_NAMESPACE
  54. namespace Snmp_pp {
  55. #endif
  56. #define MAX32 4294967295u
  57. //------------------[ constructor with no value ]------------------------
  58. Counter64::Counter64() : m_changed(true)
  59. {
  60.   smival.syntax = sNMP_SYNTAX_CNTR64;
  61.   smival.value.hNumber.hipart = 0;
  62.   smival.value.hNumber.lopart = 0;
  63. }
  64. //------------------[ constructor with values ]--------------------------
  65. Counter64::Counter64(unsigned long hi, unsigned long lo) : m_changed(true)
  66. {
  67.   smival.syntax = sNMP_SYNTAX_CNTR64;
  68.   smival.value.hNumber.hipart = hi;
  69.   smival.value.hNumber.lopart = lo;
  70. }
  71. //------------------[ constructor with low value only ]------------------
  72. Counter64::Counter64(unsigned long lo) : m_changed(true)
  73. {
  74.   smival.syntax = sNMP_SYNTAX_CNTR64;
  75.   smival.value.hNumber.hipart = 0;
  76.   smival.value.hNumber.lopart = lo;
  77. }
  78. //------------------[ copy constructor ]---------------------------------
  79. Counter64::Counter64(const Counter64 &ctr64 ) : m_changed(true)
  80. {
  81.   smival.syntax = sNMP_SYNTAX_CNTR64;
  82.   smival.value.hNumber.hipart = ctr64.high();
  83.   smival.value.hNumber.lopart = ctr64.low();
  84. }
  85. //------------------[ operator=(const Counter64 &ctr64) ]-------------
  86. // assign a ctr64 to a ctr64
  87. Counter64& Counter64::operator=(const Counter64 &ctr64)
  88. {
  89.   if (this == &ctr64) return *this;  // check for self assignment
  90.   smival.value.hNumber.hipart = ctr64.high();
  91.   smival.value.hNumber.lopart = ctr64.low();
  92.   m_changed = true;
  93.   return *this;
  94. }
  95. //-------------------[ operator=(const unsigned long int i) ]---------
  96. // assign a ul to a ctr64, clears the high part
  97. // and assugns the low part
  98. Counter64& Counter64::operator=(const unsigned long i)
  99. {
  100.   smival.value.hNumber.hipart = 0;
  101.   smival.value.hNumber.lopart = i;
  102.   m_changed = true;
  103.   return *this;
  104. }
  105. //-----------[ c64_to_ld(Counter64 c64) ]-----------------------------
  106. // convert a Counter 64 to a long double
  107. long double Counter64::c64_to_ld(const Counter64 &c64)
  108. {
  109.   long double ld = c64.high();
  110.   ld *= (long double)MAX32 + 1.0l; // gotta be MAX32 + 1 to move it to next pos
  111.   ld += c64.low();
  112.   return ld;
  113. }
  114. //-----------[ c64_to_ld( ) ]------------------------------------------
  115. long double Counter64::c64_to_ld() const
  116. {
  117.   long double ld = high();
  118.   ld *= (long double)MAX32 + 1.0l; // gotta be MAX32 + 1 to move it to next pos
  119.   ld += low();
  120.   return ld;
  121. }
  122. //-----------[ ld_to_c64(long double ld) ]----------------------------
  123. // convert a long double to a Counter64
  124. Counter64 Counter64::ld_to_c64(const long double &ld)
  125. {
  126.   long double high = MAX32 + 1.0l; // look above
  127.   unsigned long h = (unsigned long)(ld / high);
  128.   return Counter64(h, (unsigned long)(ld - (h * high)));
  129. }
  130. //-----------[ c64_to_ll(Counter64 c64) ]-----------------------------
  131. // convert a Counter 64 to a 64 bit integer
  132. pp_uint64 Counter64::c64_to_ll(const Counter64 &c64)
  133. {
  134.   pp_uint64 ll = c64.high();
  135.   ll *= (pp_uint64)MAX32 + (pp_uint64)1; // gotta be MAX32 + 1 to move it to next pos
  136.   ll += c64.low();
  137.   return ll;
  138. }
  139. //-----------[ c64_to_ll( ) ]------------------------------------------
  140. pp_uint64 Counter64::c64_to_ll() const
  141. {
  142.   pp_uint64 ll = high();
  143.   ll *= (pp_uint64)MAX32 + (pp_uint64)1; // gotta be MAX32 + 1 to move it to next pos
  144.   ll += low();
  145.   return ll;
  146. }
  147. //-----------[ ll_to_c64(pp_uint64 ll) ]----------------------------
  148. // convert a 64 bit integer to a Counter64
  149. Counter64 Counter64::ll_to_c64(const pp_uint64 &ll)
  150. {
  151.   pp_uint64 high = (pp_uint64)MAX32 + (pp_uint64)1; // look above
  152.   unsigned long h = (unsigned long)(ll / high);
  153.   return Counter64(h, (unsigned long)(ll - (h * high)));
  154. }
  155. //----------[ Counter64::operator+(const Counter64 &c) ]---------------
  156. // add two Counter64s
  157. Counter64 Counter64::operator+(const Counter64 &c) const
  158. {
  159.   pp_uint64 llsum = c64_to_ll() + c.c64_to_ll();
  160.   return ll_to_c64(llsum);
  161. }
  162. //------------[ Counter64::operator-(const Counter64 &c) ]-------------
  163. // subtract two Counter64s
  164. Counter64 Counter64::operator-(const Counter64 &c) const
  165. {
  166.   pp_uint64 lldiff = c64_to_ll() - c.c64_to_ll();
  167.   return ll_to_c64(lldiff);
  168. }
  169. //------------[ Counter64::operator*(const Counter64 &c) ]-------------
  170. // multiply two Counter64s
  171. Counter64 Counter64::operator*(const Counter64 &c) const
  172. {
  173.   pp_uint64 llmult = c64_to_ll() * c.c64_to_ll();
  174.   return ll_to_c64(llmult);
  175. }
  176. //------------[ Counter64::operator/(const Counter64 &c) ]--------------
  177. // divide two Counter64s
  178. Counter64 Counter64::operator/(const Counter64 &c) const
  179. {
  180.   pp_uint64 lldiv = c64_to_ll() / c.c64_to_ll();
  181.   return ll_to_c64(lldiv);
  182. }
  183. //-------[ overloaded equivlence test ]----------------------------------
  184. bool operator==(const Counter64 &lhs, const Counter64 &rhs)
  185. {
  186.   return ((lhs.high() == rhs.high()) && (lhs.low() == rhs.low()));
  187. }
  188. //-------[ overloaded not equal test ]-----------------------------------
  189. bool operator!=(const Counter64 &lhs, const Counter64 &rhs)
  190. {
  191.   return ((lhs.high() != rhs.high()) || (lhs.low() != rhs.low()));
  192. }
  193. //--------[ overloaded less than ]---------------------------------------
  194. bool operator<(const Counter64 &lhs, const Counter64 &rhs)
  195. {
  196.   return ( (lhs.high() < rhs.high()) ||
  197.    ((lhs.high() == rhs.high()) && (lhs.low() < rhs.low())));
  198. }
  199. //---------[ overloaded less than or equal ]-----------------------------
  200. bool operator<=(const Counter64 &lhs, const Counter64 &rhs)
  201. {
  202.   return ( (lhs.high() < rhs.high()) ||
  203.    ((lhs.high() == rhs.high()) && (lhs.low() <= rhs.low())));
  204. }
  205. //---------[ overloaded greater than ]-----------------------------------
  206. bool operator>(const Counter64 &lhs, const Counter64 &rhs)
  207. {
  208.   return ( (lhs.high() > rhs.high()) ||
  209.    ((lhs.high() == rhs.high()) && (lhs.low() > rhs.low())));
  210. }
  211. //----------[ overloaded greater than or equal ]-------------------------
  212. bool operator>=(const Counter64 &lhs, const Counter64 &rhs)
  213. {
  214.   return ( (lhs.high() > rhs.high()) ||
  215.    ((lhs.high() == rhs.high()) && (lhs.low() >= rhs.low())));
  216. }
  217. //----------[ return ASCII format ]-------------------------
  218. // TODO:  Fix up to do real 64bit decimal value printing...
  219. //        For now, print > 32-bit values in hex
  220. // 26Nov2002 M.Evstiounin - this method is not thread safe!
  221. const char *Counter64::get_printable() const
  222. {
  223.   if (m_changed == false)
  224.     return output_buffer;
  225.   char *buf = PP_CONST_CAST(char*, output_buffer);
  226.   if ( high() != 0 )
  227.     sprintf(buf, "0x%lX%08lX", high(), low());
  228.   else
  229.     sprintf(buf, "%lu", low());
  230.   Counter64 *nc_this = PP_CONST_CAST(Counter64*, this);
  231.   nc_this->m_changed = false;
  232.   return output_buffer;
  233. }
  234. //----------------[ general Value = operator ]---------------------
  235. SnmpSyntax& Counter64::operator=(const SnmpSyntax &val)
  236. {
  237.   if (this == &val) return *this;  // protect against assignment from itself
  238.   smival.value.hNumber.lopart = 0; // pessimsitic - assume no mapping
  239.   smival.value.hNumber.hipart = 0;
  240.   // try to make assignment valid
  241.   if (val.valid())
  242.   {
  243.     switch (val.get_syntax())
  244.     {
  245.       case sNMP_SYNTAX_CNTR64:
  246. smival.value.hNumber.hipart =
  247. ((Counter64 &)val).smival.value.hNumber.hipart;
  248. smival.value.hNumber.lopart =
  249. ((Counter64 &)val).smival.value.hNumber.lopart;
  250. break;
  251.       case sNMP_SYNTAX_CNTR32:
  252.       case sNMP_SYNTAX_TIMETICKS:
  253.       case sNMP_SYNTAX_GAUGE32:
  254.    // case sNMP_SYNTAX_UINT32: .. indistinguishable from GAUGE32
  255.       case sNMP_SYNTAX_INT32:
  256. // take advantage of union...
  257. smival.value.hNumber.lopart = ((Counter64 &)val).smival.value.uNumber;
  258. smival.value.hNumber.hipart = 0;
  259. break;
  260.     }
  261.   }
  262.   m_changed = true;
  263.   return *this;
  264. }
  265. // Return the space needed for serialization
  266. int Counter64::get_asn1_length() const
  267. {
  268.   if (smival.value.hNumber.hipart == 0)
  269.   {
  270.     if (smival.value.hNumber.lopart < 0x80)
  271.       return 3;
  272.     else if (smival.value.hNumber.lopart < 0x8000)
  273.       return 4;
  274.     else if (smival.value.hNumber.lopart < 0x800000)
  275.       return 5;
  276.     else if (smival.value.hNumber.lopart < 0x80000000)
  277.       return 6;
  278.     return 7;
  279.   }
  280.   if (smival.value.hNumber.hipart < 0x80)
  281.     return 7;
  282.   else if (smival.value.hNumber.hipart < 0x8000)
  283.     return 8;
  284.   else if (smival.value.hNumber.hipart < 0x800000)
  285.     return 9;
  286.   else if (smival.value.hNumber.hipart < 0x80000000)
  287.     return 10;
  288.   return 11;
  289. }
  290. /*
  291.  * asn_build_unsigned_int64 - builds an ASN object containing a 64 bit integer.
  292.  *  On entry, datalength is input as the number of valid bytes following
  293.  *   "data".  On exit, it is returned as the number of valid bytes
  294.  *   following the end of this object.
  295.  *
  296.  *  Returns a pointer to the first byte past the end
  297.  *   of this object (i.e. the start of the next object).
  298.  *  Returns NULL on any error.
  299.  */
  300. bool Counter64::to_asn1(unsigned char *&data,
  301. int &datalength,
  302. const unsigned char type)
  303. {
  304.   /*
  305.    * ASN.1 integer ::= 0x02 asnlength byte {byte}*
  306.    */
  307.   unsigned long low = smival.value.hNumber.lopart;
  308.   unsigned long high = smival.value.hNumber.hipart;
  309.   unsigned long mask = 0xFFul << (8 * (sizeof(long) - 1));
  310.   bool add_null_byte = false;
  311.   int intsize = 8;
  312.   /* mask is 0xFF000000 on a big-endian machine */
  313.   if ((unsigned char)((high & mask) >> (8 * (sizeof(long) - 1))) & 0x80)
  314.   {
  315.     /* if MSB is set */
  316.     add_null_byte = true;
  317.     intsize++;
  318.   }
  319.   else
  320.   {
  321.     /*
  322.      * Truncate "unnecessary" bytes off of the most significant end of this 2's
  323.      * complement integer.
  324.      * There should be no sequence of 9 consecutive 1's or 0's at the most
  325.      * significant end of the integer.
  326.      */
  327.     unsigned long mask2 = 0x1FFul << ((8 * (sizeof(long) - 1)) - 1);
  328.     /* mask2 is 0xFF800000 on a big-endian machine */
  329.     while((((high & mask2) == 0) || ((high & mask2) == mask2))
  330.   && intsize > 1)
  331.     {
  332.       intsize--;
  333.       high = (high << 8) | ((low & mask) >> (8 * (sizeof(long) - 1)));
  334.       low <<= 8;
  335.     }
  336.   }
  337.   data = asn_build_header(data, &datalength, type, intsize);
  338.   if ((data == NULL) || (datalength < intsize))
  339.     return false;
  340.   datalength -= intsize;
  341.   if (add_null_byte)
  342.   {
  343.     *data++ = '';
  344.     intsize--;
  345.   }
  346.   while (intsize--)
  347.   {
  348.     *data++ = (unsigned char)((high & mask) >> (8 * (sizeof(long) - 1)));
  349.     high = (high << 8) | ((low & mask) >> (8 * (sizeof(long) - 1)));
  350.     low <<= 8;
  351.   }
  352.   return true;
  353. }
  354. /*
  355.  * asn_parse_unsigned_int64 - pulls a 64 bit unsigned long out of an ASN int
  356.  * type.
  357.  *  On entry, datalength is input as the number of valid bytes following
  358.  *   "data".  On exit, it is returned as the number of valid bytes
  359.  *   following the end of this object.
  360.  *
  361.  *  Returns a pointer to the first byte past the end
  362.  *   of this object (i.e. the start of the next object).
  363.  *  Returns NULL on any error.
  364.  */
  365. bool Counter64::from_asn1(unsigned char *&data, int &datalength,
  366.   unsigned char &type)
  367. {
  368.   /*
  369.    * ASN.1 integer ::= 0x02 asnlength byte {byte}*
  370.    */
  371.   unsigned char *bufp = data;
  372.   unsigned long     asn_length;
  373.   unsigned long low = 0, high = 0;
  374.   const int intsize = 4;
  375.   type = *bufp++;
  376.   if ((type != 0x02) && (type != 0x46))
  377.   {
  378.     ASNERROR("Wrong Type. Not an integer 64");
  379.     return false;
  380.   }
  381.   bufp = asn_parse_length(bufp, &asn_length);
  382.   if (bufp == NULL)
  383.   {
  384.     ASNERROR("bad length");
  385.     return false;
  386.   }
  387.   if ((asn_length + (bufp - data)) > (unsigned long)(datalength))
  388.   {
  389.     ASNERROR("overflow of message");
  390.     return false;
  391.   }
  392.   if (((int)asn_length > (intsize * 2 + 1)) ||
  393.       (((int)asn_length == (intsize * 2) + 1) && *bufp != 0x00))
  394.   {
  395.     ASNERROR("I don't support such large integers");
  396.     return false;
  397.   }
  398.   datalength -= (int)asn_length + SAFE_INT_CAST(bufp - data);
  399.   if (*bufp & 0x80)
  400.   {
  401.     low = (unsigned long) -1; // integer is negative
  402.     high = (unsigned long) -1;
  403.   }
  404.   while (asn_length--)
  405.   {
  406.     high = (high << 8) | ((low & 0xFF000000) >> 24);
  407.     low = (low << 8) | *bufp++;
  408.   }
  409.   smival.value.hNumber.lopart = low;
  410.   smival.value.hNumber.hipart = high;
  411.   data = bufp;
  412.   return true;
  413. }
  414. #ifdef SNMP_PP_NAMESPACE
  415. }; // end of namespace Snmp_pp
  416. #endif