ctr64.h
上传用户:uncom666
上传日期:2020-03-30
资源大小:1426k
文件大小:10k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  ctr64.h  
  4.   _##
  5.   _##  SNMP++v3.2.24
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2009 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, Fri May 29 22:35:14 CEST 2009 
  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.   SNMP++ C O U N T E R 6 4 . H
  43.   COUNTER64 CLASSES DEFINITION
  44.   DESIGN + AUTHOR:    Peter E Mellquist
  45.   DESCRIPTION:        SNMP Counter64 class definition.
  46. =====================================================================*/
  47. // $Id: ctr64.h 1541 2009-05-29 11:29:22Z katz $
  48. #ifndef _CTR64
  49. #define _CTR64
  50. #include "snmp_pp/smival.h"
  51. #ifdef SNMP_PP_NAMESPACE
  52. namespace Snmp_pp {
  53. #endif
  54. #define CTR64OUTBUF 30  //!< maximum ascii string for a 64-bit counter
  55. //---------[ 64 bit Counter Class ]--------------------------------
  56. /**
  57.  * Counter64 Class encapsulates two unsigned integers into a
  58.  * a single entity. This type has is available in SNMPv2 but
  59.  * may be used anywhere where needed.
  60.  */
  61. class DLLOPT Counter64: public  SnmpSyntax
  62. {
  63.  public:
  64.   //-----------[ Constructors and Destrucotr ]----------------------
  65.   /**
  66.    * Constructs a valid Couter64 with value 0.
  67.    */
  68.   Counter64();
  69.   /**
  70.    * Constructs a valid Counter64 with the given value as the lower 32 bits.
  71.    *
  72.    * @param lo - value (0..MAX_UINT32)
  73.    */
  74.   Counter64(unsigned long lo);
  75.   /**
  76.    * Constructs a valid Counter64 with the given values.
  77.    *
  78.    * @param hi - value for the high 32 bits (0..MAX_UINT32)
  79.    * @param lo - value for the low  32 bits (0..MAX_UINT32)
  80.    */
  81.   Counter64(unsigned long hi, unsigned long lo);
  82.   /**
  83.    * Copy constructor.
  84.    *
  85.    * @param ctr64 - value
  86.    */
  87.   Counter64(const Counter64 &ctr64);
  88.   /**
  89.    * Destructor (ensure that SnmpSyntax::~SnmpSyntax() is overridden).
  90.    */
  91.   ~Counter64() {};
  92.   //-----------[ conversion from/to long double ]----------------------
  93.   /**
  94.    * Get the value of the object as long double.
  95.    *
  96.    * @note DEPRECATED - Use conversions from/to unsigned long long
  97.    *
  98.    * @param c64 - The Counter64 object whose value should be returned
  99.    * @return value as a long double
  100.    */
  101.   static long double c64_to_ld(const Counter64 &c64);
  102.   /**
  103.    * Get the value of this object as long double.
  104.    *
  105.    * @note DEPRECATED - Use conversions from/to unsigned long long
  106.    *
  107.    * @return value as a long double
  108.    */
  109.   long double c64_to_ld() const;
  110.   /**
  111.    * Convert a long double to a Counter64.
  112.    *
  113.    * @note DEPRECATED - Use conversions from/to unsigned long long
  114.    *
  115.    * @param ld - the value to convert
  116.    * @return A Counter64 object with the value of the param ld.
  117.    */
  118.   static Counter64 ld_to_c64(const long double &ld);
  119.   //-----------[ conversion from/to unsigned long long ]----------------
  120.   /**
  121.    * Get the value of the object as 64 bit integer.
  122.    *
  123.    * @param c64 - The Counter64 object whose value should be returned
  124.    * @return value as a unsigned 64 bit integer
  125.    */
  126.   static pp_uint64 c64_to_ll(const Counter64 &c64);
  127.   /**
  128.    * Get the value of this object as 64 bit integer.
  129.    *
  130.    * @return value as a unsigned 64 bit integer
  131.    */
  132.   pp_uint64 c64_to_ll() const;
  133.   /**
  134.    * Convert a 64 bit integer to a Counter64.
  135.    *
  136.    * @param ld - the value to convert
  137.    * @return A Counter64 object with the value of the param ld.
  138.    */
  139.   static Counter64 ll_to_c64(const pp_uint64 &ll);
  140.   //-----------[ get/set using 32 bit variables ]----------------------
  141.   /**
  142.    * Get the high 32 bit part.
  143.    *
  144.    * @return The high part of the Counter64
  145.    */
  146.   unsigned long high() const { return smival.value.hNumber.hipart; };
  147.   /**
  148.    * Get the low 32 bit part.
  149.    *
  150.    * @return The low part of the Counter64
  151.    */
  152.   unsigned long low() const { return smival.value.hNumber.lopart; };
  153.   /**
  154.    * Set the high 32 bit part. The low part will stay unchanged.
  155.    *
  156.    * @param h - The new high part of the Counter64
  157.    */
  158.   void set_high(const unsigned long h)
  159.     { smival.value.hNumber.hipart = h; m_changed = true; };
  160.   /**
  161.    * Set the low 32 bit part. The high part will stay unchanged.
  162.    *
  163.    * @param l - The new low part of the Counter64
  164.    */
  165.   void set_low(const unsigned long l)
  166.     { smival.value.hNumber.lopart = l; m_changed = true; };
  167.   //-----------[ SnmpSyntax methods ]----------------------
  168.   /**
  169.    * Get a printable ASCII string representing the current value.
  170.    *
  171.    * @note The returned string is valid as long as the object is not
  172.    *       modified.
  173.    *
  174.    * @return Null terminated string.
  175.    */
  176.   const char *get_printable() const;
  177.   /**
  178.    * Get the Syntax of the object.
  179.    *
  180.    * @return This method always returns sNMP_SYNTAX_CNTR64.
  181.    */
  182.   SmiUINT32 get_syntax() const { return sNMP_SYNTAX_CNTR64; };
  183.   /**
  184.    * Clone the object.
  185.    *
  186.    * @return A cloned Counter64 object allocated through new.
  187.    */
  188.   SnmpSyntax *clone() const { return (SnmpSyntax *) new Counter64(*this); };
  189.   /**
  190.    * Overloaded assignement operator.
  191.    *
  192.    * @param val - Try to map the given value to a Counter64 and assign it
  193.    * @return Always *this with the new value.
  194.    */
  195.   SnmpSyntax& operator=(const SnmpSyntax &val);
  196.   /**
  197.    * Return validity of the object.
  198.    *
  199.    * @return Always true
  200.    */
  201.   bool valid() const { return true; };
  202.   /**
  203.    * Return the space needed for serialization.
  204.    *
  205.    * @return The needed space that depends on the current value.
  206.    */
  207.   int get_asn1_length() const;
  208.   /**
  209.    * Reset the object.
  210.    */
  211.   void clear()
  212.     { smival.value.hNumber.hipart = 0; smival.value.hNumber.lopart = 0;
  213.       m_changed = true; };
  214.   
  215.   //-----------[ overloaded operators ]----------------------
  216.   /**
  217.    * Assign a Counter64 to a Counter64.
  218.    */
  219.   Counter64& operator=(const Counter64 &ctr64);
  220.   /**
  221.    * Assign a unsigned long to a Counter64.
  222.    *
  223.    * @param i - The new low part. The high part is cleared.
  224.    */
  225.   Counter64& operator=(const unsigned long i);
  226.   /**
  227.    * Add two Counter64.
  228.    */
  229.   Counter64 operator+(const Counter64 &c) const;
  230.   /**
  231.    * Add a unsigned long and a Counter64.
  232.    */
  233.   DLLOPT friend Counter64 operator+(unsigned long ul, const Counter64 &c64)
  234.     { return Counter64(ul) + c64; };
  235.   /**
  236.    * Subtract two Counter64.
  237.    */
  238.   Counter64 operator-(const Counter64 &c) const;
  239.   /**
  240.    * Subtract a unsigned long and a Counter64.
  241.    */
  242.   DLLOPT friend Counter64 operator-(unsigned long ul, const Counter64 &c64)
  243.     { return Counter64(ul) - c64; };
  244.   /**
  245.    * Multiply two Counter64.
  246.    */
  247.   Counter64 operator*(const Counter64 &c) const;
  248.   /**
  249.    * Multiply a unsigned long and a Counter64.
  250.    */
  251.   DLLOPT friend Counter64 operator*(unsigned long ul, const Counter64 &c64)
  252.     { return Counter64(ul) * c64; };
  253.   /**
  254.    * Divide two Counter64.
  255.    */
  256.   Counter64 operator/(const Counter64 &c) const;
  257.   /**
  258.    * Divide a unsigned long and a Counter64.
  259.    */
  260.   DLLOPT friend Counter64 operator/(unsigned long ul, const Counter64 &c64)
  261.     { return Counter64(ul) / c64; };
  262.   //-------[ overloaded comparison operators ]--------------
  263.   /**
  264.    * Equal operator for two Cunter64.
  265.    */
  266.   DLLOPT friend bool operator==(const Counter64 &lhs, const Counter64 &rhs);
  267.   /**
  268.    * Not equal operator for two Cunter64.
  269.    */
  270.   DLLOPT friend bool operator!=(const Counter64 &lhs, const Counter64 &rhs);
  271.   /**
  272.    * Less than operator for two Cunter64.
  273.    */
  274.   DLLOPT friend bool operator<(const Counter64 &lhs, const Counter64 &rhs);
  275.   /**
  276.    * Less than or equal operator for two Cunter64.
  277.    */
  278.   DLLOPT friend bool operator<=(const Counter64 &lhs, const Counter64 &rhs);
  279.   /**
  280.    * Greater than operator for two Cunter64.
  281.    */
  282.   DLLOPT friend bool operator>(const Counter64 &lhs, const Counter64 &rhs);
  283.   /**
  284.    * Greater than or equal operator for two Cunter64.
  285.    */
  286.   DLLOPT friend bool operator>=(const Counter64 &lhs, const Counter64 &rhs);
  287.   bool to_asn1(unsigned char *&data,
  288.        int &datalength,
  289.        const unsigned char type);
  290.   bool from_asn1(unsigned char *&data,
  291.  int &datalength,
  292.  unsigned char &type);
  293.  private:
  294.   SNMP_PP_MUTABLE char output_buffer[CTR64OUTBUF];
  295.   SNMP_PP_MUTABLE bool m_changed;
  296. };
  297. #ifdef SNMP_PP_NAMESPACE
  298. } // end of namespace Snmp_pp
  299. #endif 
  300. #endif