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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  integer.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++ I N T E G E R. H
  43.   INTEGER CLASS DEFINITION
  44.   DESIGN + AUTHOR:  Jeff Meyer
  45.   DESCRIPTION:
  46.   Class definition for Integer classes.
  47. =====================================================================*/
  48. // $Id: integer.h 1541 2009-05-29 11:29:22Z katz $
  49. #ifndef _SNMPINTEGER
  50. #define _SNMPINTEGER
  51. #include "snmp_pp/smival.h"
  52. #ifdef SNMP_PP_NAMESPACE
  53. namespace Snmp_pp {
  54. #endif
  55. #define INTOUTBUF 15  // largest ASCII formatted integer
  56. //------------[ Integer Classes ]------------------------------------------
  57. /**
  58.  * 32 bit unsigned integer class.
  59.  *
  60.  * The integer class allows all the functionality of the various
  61.  * integers but is contained in a Value object for consistency
  62.  * among the various types.
  63.  * class objects may be set or get into Vb objects.
  64.  */
  65. class DLLOPT SnmpUInt32 : public SnmpSyntax
  66. {
  67.  public:
  68.   /**
  69.    * Constructor, sets value to zero.
  70.    */
  71.   SnmpUInt32();
  72.   /**
  73.    * Constructor with value.
  74.    *
  75.    * @param i - initial value
  76.    */
  77.   SnmpUInt32(const unsigned long i);
  78.   /**
  79.    * Copy constructor.
  80.    *
  81.    * @param c - initial value
  82.    */
  83.   SnmpUInt32(const SnmpUInt32 &c);
  84.   /**
  85.    * Destructor (ensure that SnmpSyntax::~SnmpSyntax() is overridden).
  86.    */
  87.   virtual ~SnmpUInt32() {};
  88.   /**
  89.    * Return the syntax.
  90.    *
  91.    * @return This method always returns sNMP_SYNTAX_UINT32.
  92.    */
  93.   virtual SmiUINT32 get_syntax() const { return sNMP_SYNTAX_UINT32; };
  94.   /**
  95.    * Overloaded assignment for unsigned longs.
  96.    *
  97.    * @param i - new value
  98.    * @return self reference
  99.    */
  100.   SnmpUInt32& operator=(const unsigned long i);
  101.   /**
  102.    * Overloaded assignment for SnmpUInt32.
  103.    *
  104.    * @param uli - new value
  105.    * @return self reference
  106.    */
  107.   SnmpUInt32& operator=(const SnmpUInt32 &uli);
  108.   /**
  109.    * Map other SnmpSyntax objects to SnmpUInt32.
  110.    */
  111.   SnmpSyntax& operator=(const SnmpSyntax &val);
  112.   /**
  113.    * Behave like an unsigned long.
  114.    *
  115.    * @return value as unsigned long
  116.    */
  117.   operator unsigned long() const { return smival.value.uNumber; };
  118.   /**
  119.    * Get a printable ASCII value.
  120.    */
  121.   virtual const char *get_printable() const;
  122.   /**
  123.    * Clone operator.
  124.    *
  125.    * @return Pointer to a newly created copy of the object.
  126.    */
  127.   virtual SnmpSyntax *clone() const
  128.     { return (SnmpSyntax *)new SnmpUInt32(*this); };
  129.   /**
  130.    * Return validity of the object.
  131.    * An SnmpUInt32 will only be invalid after a failed asignment
  132.    * of another SnmpSyntax object.
  133.    */
  134.   bool valid() const { return valid_flag; };
  135.   /**
  136.    * Return the space needed for serialization.
  137.    */
  138.   int get_asn1_length() const;
  139.   /**
  140.    * Reset the object.
  141.    */
  142.   void clear()
  143.     { smival.value.uNumber = 0; valid_flag = true; m_changed = true; };
  144.  protected:
  145.   bool valid_flag;
  146.   SNMP_PP_MUTABLE char output_buffer[INTOUTBUF];
  147.   SNMP_PP_MUTABLE bool m_changed;
  148. };
  149. /**
  150.  * 32 bit signed integer class.
  151.  */
  152. class DLLOPT SnmpInt32 : public SnmpSyntax
  153. {
  154.  public:
  155.   /**
  156.    * Constructor, sets value to zero.
  157.    */
  158.   SnmpInt32();
  159.   /**
  160.    * Constructor with value.
  161.    *
  162.    * @param i - initial value
  163.    */
  164.   SnmpInt32 (const long i);
  165.   /**
  166.    * Copy constructor.
  167.    *
  168.    * @param c - initial value
  169.    */
  170.   SnmpInt32 (const SnmpInt32 &c);
  171.   /**
  172.    * Destructor (ensure that SnmpSyntax::~SnmpSyntax() is overridden).
  173.    */
  174.   virtual ~SnmpInt32() {};
  175.   /**
  176.    * Return the syntax.
  177.    *
  178.    * @return This method always returns sNMP_SYNTAX_INT32.
  179.    */
  180.   virtual SmiUINT32 get_syntax() const { return sNMP_SYNTAX_INT32; };
  181.   /**
  182.    * Overloaded assignment for longs.
  183.    *
  184.    * @param i - new value
  185.    * @return self reference
  186.    */
  187.   SnmpInt32& operator=(const long i);
  188.   /**
  189.    * Overloaded assignment for SnmpInt32.
  190.    *
  191.    * @param li - new value
  192.    * @return self reference
  193.    */
  194.   SnmpInt32& operator=(const SnmpInt32 &li);
  195.   /**
  196.    * Map other SnmpSyntax objects to SnmpInt32.
  197.    */
  198.   SnmpSyntax& operator=(const SnmpSyntax &val);
  199.   /**
  200.    * Behave like an long.
  201.    *
  202.    * @return value as long
  203.    */
  204.   operator long() const { return (long) smival.value.sNumber; };
  205.   /**
  206.    * Get a printable ASCII value.
  207.    */
  208.   const char *get_printable() const;
  209.   /**
  210.    * Clone operator.
  211.    *
  212.    * @return Pointer to a newly created copy of the object.
  213.    */
  214.   SnmpSyntax *clone() const { return (SnmpSyntax *)new SnmpInt32(*this); };
  215.   /**
  216.    * Return validity of the object.
  217.    * An SnmpUInt32 will only be invalid after a failed asignment
  218.    * of another SnmpSyntax object.
  219.    */
  220.   bool valid() const { return valid_flag; };
  221.   /**
  222.    * Return the space needed for serialization.
  223.    */
  224.   int get_asn1_length() const;
  225.   /**
  226.    * Reset the object.
  227.    */
  228.   void clear()
  229.     { smival.value.sNumber = 0; valid_flag = true; m_changed = true; };
  230.  protected:
  231.   bool valid_flag;
  232.   SNMP_PP_MUTABLE char output_buffer[INTOUTBUF];
  233.   SNMP_PP_MUTABLE bool m_changed;
  234. };
  235. #ifdef SNMP_PP_NAMESPACE
  236. } // end of namespace Snmp_pp
  237. #endif 
  238. #endif