smival.h
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*===================================================================
  2.   Copyright (c) 1999
  3.   Hewlett-Packard Company
  4.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  5.   Permission to use, copy, modify, distribute and/or sell this software 
  6.   and/or its documentation is hereby granted without fee. User agrees 
  7.   to display the above copyright notice and this license notice in all 
  8.   copies of the software and any documentation of the software. User 
  9.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  10.   makes no representations about the suitability of this software for any 
  11.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  12.   or implied. User hereby grants a royalty-free license to any and all 
  13.   derivatives based upon this software code base. 
  14.   SNMP++ S M I V A L . H   
  15.       
  16.   SMIVALUE CLASS DEFINITION
  17.        
  18.   VERSION: 2.8
  19.   RCS INFO:
  20.   $Header: smival.h,v 1.20 96/09/11 14:01:34 hmgr Exp $
  21.        
  22.   DESIGN: Jeff Meyer
  23.                 
  24.   AUTHOR: Jeff Meyer
  25.               
  26.   LANGUAGE:
  27.   ANSI C++ 
  28.       
  29.   OPERATING SYSTEMS:
  30.   MS-Windows Win32
  31.   BSD UNIX
  32.       
  33.   DESCRIPTION:
  34.   SMIValue class definition. Superclass for the various types
  35.   of SNMP values (Address, Oid, Octet, etc.).  Provides
  36.   only a few functions, most info is in subclass.
  37. =====================================================================*/ 
  38. #ifndef _SMIVALUE
  39. #define _SMIVALUE
  40. //----[ includes ]-----------------------------------------------------
  41. #include "smi.h"
  42. #include <iostream.h>  // for debugging only
  43. //----[ macros ]-------------------------------------------------------
  44. //======================================================================
  45. // SMI value structure conforming with SMI RFC
  46. //  
  47. typedef struct { /* smiVALUE portion of VarBind */
  48.   SmiUINT32 syntax; /* Insert SNMP_SYNTAX_<type> */
  49.         union {
  50.           SmiINT    sNumber;    /* SNMP_SYNTAX_INT
  51.                                    SNMP_SYNTAX_INT32 */
  52.           SmiUINT32 uNumber;    /* SNMP_SYNTAX_UINT32
  53.                                    SNMP_SYNTAX_CNTR32
  54.                                    SNMP_SYNTAX_GAUGE32
  55.                                    SNMP_SYNTAX_TIMETICKS */
  56.           SmiCNTR64 hNumber;    /* SNMP_SYNTAX_CNTR64 */
  57.           SmiOCTETS string;     /* SNMP_SYNTAX_OCTETS
  58.                                    SNMP_SYNTAX_BITS
  59.                                    SNMP_SYNTAX_OPAQUE
  60.                                    SNMP_SYNTAX_IPADDR
  61.                                    SNMP_SYNTAX_NSAPADDR */
  62.           SmiOID    oid;        /* SNMP_SYNTAX_OID */
  63.           SmiBYTE   empty;      /* SNMP_SYNTAX_NULL
  64.                                    SNMP_SYNTAX_NOSUCHOBJECT
  65.                                    SNMP_SYNTAX_NOSUCHINSTANCE
  66.                                    SNMP_SYNTAX_ENDOFMIBVIEW */
  67.   }   value;
  68.                }    SmiVALUE, *SmiLPVALUE;
  69. //=================================================================               
  70.  
  71. //--------------------------------------------------------------------
  72. //----[ SnmpSyntax class ]--------------------------------------------
  73. //--------------------------------------------------------------------
  74. // An "abstract" (pure virtual) class that serves as the base class
  75. // for all specific SNMP syntax types.
  76. //
  77. class DLLOPT SnmpSyntax {
  78. public:
  79.      
  80.   // virtual function for getting a printable ASCII value for any SNMP Value
  81.   virtual char * get_printable() = 0;
  82.   // return the current syntax    
  83.   virtual SmiUINT32 get_syntax() = 0;
  84.   // virtual clone operation for creating a new Value from an existing
  85.   // value.  The caller MUST use the delete operation on the return
  86.   // value when done.
  87.   virtual  SnmpSyntax * clone() const = 0;
  88.   // virtual destructor to ensure deletion of derived classes...
  89.   virtual ~SnmpSyntax() {};
  90.   // overloaded assignment operator
  91.   // This should be pure virtual, but WinNT compiler
  92.   // complains about unresolved reference at link time.
  93.   virtual SnmpSyntax& operator=( SnmpSyntax &/*val*/)
  94.   { return *this; };
  95.   // return validity of value object.
  96.   virtual int valid() const = 0;
  97. protected:
  98.   SmiVALUE smival;
  99. };
  100. #endif  // _SMIVALUE