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

SNMP编程

开发平台:

Visual C++

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