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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  smival.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++ S M I V A L . H
  43.   SMIVALUE CLASS DEFINITION
  44.   DESIGN + AUTHOR: Jeff Meyer
  45.   DESCRIPTION:
  46.   SMIValue class definition. Superclass for the various types
  47.   of SNMP values (Address, Oid, Octet, etc.).  Provides
  48.   only a few functions, most info is in subclass.
  49. =====================================================================*/
  50. // $Id: smival.h 1541 2009-05-29 11:29:22Z katz $
  51. #ifndef _SMIVALUE
  52. #define _SMIVALUE
  53. //----[ includes ]-----------------------------------------------------
  54. #include "snmp_pp/smi.h"
  55. #ifdef SNMP_PP_NAMESPACE
  56. namespace Snmp_pp {
  57. #endif
  58. //----[ macros ]-------------------------------------------------------
  59. #if defined(USE_CPP_CASTS)
  60. #define PP_CONST_CAST(___type, ___ptr)    const_cast< ___type >(___ptr)
  61. #else
  62. #define PP_CONST_CAST(___type, ___ptr)    ((___type)(___ptr))
  63. #endif
  64. //======================================================================
  65. // SMI value structure conforming with SMI RFC
  66. //
  67. typedef struct { /* smiVALUE portion of VarBind */
  68.   SmiUINT32 syntax; /* Insert SNMP_SYNTAX_<type> */
  69.         union {
  70.           SmiINT    sNumber;    /* SNMP_SYNTAX_INT
  71.                                    SNMP_SYNTAX_INT32 */
  72.           SmiUINT32 uNumber;    /* SNMP_SYNTAX_UINT32
  73.                                    SNMP_SYNTAX_CNTR32
  74.                                    SNMP_SYNTAX_GAUGE32
  75.                                    SNMP_SYNTAX_TIMETICKS */
  76.           SmiCNTR64 hNumber;    /* SNMP_SYNTAX_CNTR64 */
  77.           SmiOCTETS string;     /* SNMP_SYNTAX_OCTETS
  78.                                    SNMP_SYNTAX_BITS
  79.                                    SNMP_SYNTAX_OPAQUE
  80.                                    SNMP_SYNTAX_IPADDR
  81.                                    SNMP_SYNTAX_NSAPADDR */
  82.           SmiOID    oid;        /* SNMP_SYNTAX_OID */
  83.           SmiBYTE   empty;      /* SNMP_SYNTAX_NULL
  84.                                    SNMP_SYNTAX_NOSUCHOBJECT
  85.                                    SNMP_SYNTAX_NOSUCHINSTANCE
  86.                                    SNMP_SYNTAX_ENDOFMIBVIEW */
  87.   }   value;
  88.                }    SmiVALUE, *SmiLPVALUE;
  89. //=================================================================
  90. //--------------------------------------------------------------------
  91. //----[ SnmpSyntax class ]--------------------------------------------
  92. //--------------------------------------------------------------------
  93. /**
  94.  * An "abstract" (pure virtual) class that serves as the base class
  95.  * for all specific SNMP syntax types.
  96.  */
  97. class DLLOPT SnmpSyntax {
  98. public:
  99.   /**
  100.    * Virtual function for getting a printable ASCII value for any SNMP
  101.    * value. 
  102.    *
  103.    * @note The returned string is valid as long as the object is not
  104.    *       modified.
  105.    * @note This function is NOT thread safe.
  106.    */
  107.   virtual const char *get_printable() const = 0;
  108.   /**
  109.    * Return the current syntax.
  110.    */
  111.   virtual SmiUINT32 get_syntax() const = 0;
  112.   /**
  113.    * Virtual clone operation for creating a new Value from an existing
  114.    * value. 
  115.    * 
  116.    * @note The caller MUST use the delete operation on the return
  117.    *       value when done.
  118.    */
  119.   virtual  SnmpSyntax * clone() const = 0;
  120.   /**
  121.    * Virtual destructor to ensure deletion of derived classes...
  122.    */
  123.   virtual ~SnmpSyntax() {};
  124.   /**
  125.    * Overloaded assignment operator.
  126.    *
  127.    * @note This should be pure virtual, but buggy VC++ compiler
  128.    *       complains about unresolved reference at link time.
  129.    */
  130.   virtual SnmpSyntax& operator=(const SnmpSyntax &/*val*/) { return *this; };
  131.   /**
  132.    * Return validity of the object.
  133.    */
  134.   virtual bool valid() const = 0;
  135.   /**
  136.    * Return the space needed for serialization.
  137.    */
  138.   virtual int get_asn1_length() const = 0;
  139.   /**
  140.    * Reset the object.
  141.    */
  142.   virtual void clear() = 0;
  143. protected:
  144.   SmiVALUE smival;
  145. };
  146. #ifdef SNMP_PP_NAMESPACE
  147. } // end of namespace Snmp_pp
  148. #endif 
  149. #endif  // _SMIVALUE