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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  vb.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++ V B . H
  43.   VARIABLE BINDING CLASS DEFINITION
  44.   DESCRIPTION:
  45.   This module contains the class definition for the variable binding
  46.   class. The VB class is an encapsulation of a SNMP VB. A VB object is
  47.   composed of an SNMP++ Oid and an SMI value. The Vb class utilizes Oid
  48.   objects and thus requires the Oid class. The Vb class may be used
  49.   stand alone and does not require use of any other snmp library.
  50.   DESIGN + AUTHOR:
  51.   Peter E. Mellquist
  52.   LANGAUGE:
  53.   ANSI C++
  54. =====================================================================*/
  55. // $Id: vb.h 287 2007-03-22 22:37:09Z katz $
  56. #ifndef _VB_CLS
  57. #define _VB_CLS
  58. #include "snmp_pp/oid.h"                 // oid class def
  59. #include "snmp_pp/timetick.h"            // time ticks
  60. #include "snmp_pp/counter.h"             // counter
  61. #include "snmp_pp/gauge.h"               // gauge class
  62. #include "snmp_pp/ctr64.h"               // 64 bit counters
  63. #include "snmp_pp/octet.h"               // octet class
  64. #include "snmp_pp/address.h"             // address class def
  65. #include "snmp_pp/integer.h"             // integer class
  66. #include "snmp_pp/snmperrs.h"
  67. #ifdef SNMP_PP_NAMESPACE
  68. namespace Snmp_pp {
  69. #endif
  70. //------------[ VB Class Def ]-------------------------------------
  71. /**
  72.  * The Vb class is the encapsulation of the SNMP variable binding.
  73.  *
  74.  * Variable binding lists in SNMP++ are represented as arrays of Vb
  75.  * objects. Vb objects are passed to and from SNMP objects to provide
  76.  * getting or setting MIB values.  The vb class keeps its own memory
  77.  * for objects and does not utilize pointers to external data
  78.  * structures.
  79.  */
  80. class DLLOPT Vb
  81. {
  82.  //-----[ public members ]
  83.  public:
  84.   //-----[ constructors / destructors ]-------------------------------
  85.   /**
  86.    * Constructor with no arguments.
  87.    *
  88.    * This constructor creates an unitialized vb.
  89.    */
  90.   Vb() : iv_vb_value(0), exception_status(SNMP_CLASS_SUCCESS) {};
  91.   /**
  92.    * Constructor to initialize the oid.
  93.    *
  94.    * This constructor creates a vb with oid portion initialized.
  95.    */
  96.   Vb(const Oid &oid)
  97.     : iv_vb_oid(oid), iv_vb_value(0), exception_status(SNMP_CLASS_SUCCESS) {};
  98.   /**
  99.    * Copy constructor.
  100.    */
  101.   Vb(const Vb &vb) : iv_vb_value(0) { *this = vb; };
  102.   /**
  103.    * Destructor that frees all allocated memory.
  104.    */
  105.   ~Vb() { free_vb(); };
  106.   /**
  107.    * Overloaded assignment operator.
  108.    */
  109.   Vb& operator=(const Vb &vb);
  110.   /**
  111.    * Clone operator.
  112.    */
  113.   Vb *clone( ) const { return new Vb(*this); };
  114.   //-----[ set oid / get oid ]------------------------------------------
  115.   /**
  116.    * Set the oid from another oid.
  117.    */
  118.   void set_oid(const Oid &oid) { iv_vb_oid = oid; };
  119.   /**
  120.    * Get the oid portion.
  121.    *
  122.    * @note Check the validity of the object through Vb::valid() before
  123.    *       calling this method.
  124.    */
  125.   void get_oid(Oid &oid) const { oid = iv_vb_oid; };
  126.   /**
  127.    * Get the oid portion as a const.
  128.    *
  129.    * @note Check the validity of the object through Vb::valid() before
  130.    *       calling this method.
  131.    */
  132.   const Oid &get_oid() const { return iv_vb_oid; };
  133.   //-----[ set value ]--------------------------------------------------
  134.   /**
  135.    * Set the value using any SnmpSyntax object.
  136.    */
  137.   void set_value(const SnmpSyntax &val)
  138.     { free_vb(); iv_vb_value = val.clone(); };
  139.   /**
  140.    * Set the value with an int.
  141.    *
  142.    * The syntax of the Vb will be set to SMI INT32.
  143.    */
  144.   void set_value(const int i) { free_vb(); iv_vb_value = new SnmpInt32(i); };
  145.   /**
  146.    * Set the value with an int.
  147.    *
  148.    * The syntax of the Vb will be set to SMI INT32.
  149.    */
  150.   void set_value(const long i)
  151.     { free_vb(); iv_vb_value = new SnmpInt32(i); };
  152.   /**
  153.    * Set the value with an unsigned long int.
  154.    *
  155.    * The syntax of the Vb will be set to SMI UINT32.
  156.    */
  157.   void set_value(const unsigned long i)
  158.     { free_vb(); iv_vb_value = new SnmpUInt32(i); };
  159.   /**
  160.    * Set value using a null terminated string.
  161.    *
  162.    * The syntax of the Vb will be set to SMI octet.
  163.    */
  164.   void set_value(const char *ptr)
  165.     { free_vb(); iv_vb_value = new OctetStr(ptr); };
  166.   /**
  167.    * Set value using a string and length.
  168.    *
  169.    * The syntax of the Vb will be set to SMI octet.
  170.    */
  171.   void set_value(const unsigned char *ptr, const unsigned int len)
  172.     { free_vb(); iv_vb_value = new OctetStr(ptr, len); };
  173.   /**
  174.    * Set the value portion of the vb to null, if its not already.
  175.    */
  176.   void set_null() { free_vb(); };
  177.   //----[ get value ]------------------------------------------------
  178.   /**
  179.    * Get the value using a SnmpSyntax object.
  180.    *
  181.    * @param val - An object of a subclass of SnmpSyntax that will be
  182.    *              assigned the value of the vb.
  183.    *
  184.    * @return SNMP_CLASS_SUCCESS if the vb value could be assigned to
  185.    *         the passed SnmpSyntax object, else SNMP_CLASS_INVALID.
  186.    */
  187.   int get_value(SnmpSyntax &val) const;
  188.   /**
  189.    * Get the value.
  190.    *
  191.    * This method will only return success if the value of the vb is SMI INT32.
  192.    *
  193.    * @param i - returned value
  194.    *
  195.    * @return SNMP_CLASS_SUCCESS on success, else SNMP_CLASS_INVALID.
  196.    */
  197.   int get_value(int &i) const;
  198.   /**
  199.    * Get the value.
  200.    *
  201.    * This method will only return success if the value of the vb is SMI INT32.
  202.    *
  203.    * @param i - returned value
  204.    *
  205.    * @return SNMP_CLASS_SUCCESS on success, else SNMP_CLASS_INVALID.
  206.    */
  207.   int get_value(long &i) const;
  208.   /**
  209.    * Get the value.
  210.    *
  211.    * This method will only return success if the value of the vb can
  212.    * be mapped to an unsigned long (SMI types uint32, counter32, gauge
  213.    * and timeticks).
  214.    *
  215.    * @param i - returned value
  216.    *
  217.    * @return SNMP_CLASS_SUCCESS on success, else SNMP_CLASS_INVALID.
  218.    */
  219.   int get_value(unsigned long &i) const;
  220.   /**
  221.    * Get the value.
  222.    *
  223.    * This method will only return success if the value of the vb is SMI OCTET.
  224.    *
  225.    * @note The caller must provide a target string big enough to
  226.    *       handle the vb string. No length checks are done within
  227.    *       this method. The returned string will be null terminated.
  228.    *
  229.    * @param ptr - Pointer to already allocated space to hold the vb
  230.    *              value. The first char will be set to zero on failure.
  231.    * @param len - Returned length of the string. Will be set to 0 on failure.
  232.    *
  233.    * @return SNMP_CLASS_SUCCESS on success, else SNMP_CLASS_INVALID.
  234.    */
  235.   int get_value(unsigned char *ptr, unsigned long &len) const;
  236.   /**
  237.    * Get the value.
  238.    *
  239.    * This method will only return success if the value of the vb is SMI OCTET.
  240.    *
  241.    * @note If the target space is not big enough to hold the complete
  242.    *       string only part of the string is copied.
  243.    *
  244.    * @param ptr    - Pointer to already allocated space to hold the vb
  245.    *                 value. The first char will be set to zero on failure.
  246.    * @param len    - Returned length of the string. Will be set to 0
  247.    *                 on failure.
  248.    * @param maxlen - Maximum length of the space that ptr points to.
  249.    * @param add_null_byte - Add a null byte at end of output string.
  250.    *
  251.    *
  252.    * @return SNMP_CLASS_SUCCESS on success, else SNMP_CLASS_INVALID.
  253.    */
  254.   int get_value(unsigned char *ptr,
  255. unsigned long &len,
  256. const unsigned long maxlen,
  257. const bool add_null_byte = false) const;
  258.   /**
  259.    * Get the value.
  260.    *
  261.    * This method will only return success if the value of the vb is SMI OCTET.
  262.    *
  263.    * @note The caller must provide a target string big enough to
  264.    *       handle the vb string. No length checks are done within
  265.    *       this method. The returned string will be null terminated.
  266.    *
  267.    * @param ptr - Pointer to already allocated space to hold the vb
  268.    *              value. The first char will be set to zero on failure.
  269.    *
  270.    * @return SNMP_CLASS_SUCCESS on success, else SNMP_CLASS_INVALID.
  271.    */
  272.   int get_value(char *ptr) const;
  273.   /**
  274.    * Clone the value portion of the variable binding.
  275.    *
  276.    * The returned pointer must be deleted by the caller.
  277.    *
  278.    * @return
  279.    *    a pointer to a clone of the value of the receiver.
  280.    */
  281.   SnmpSyntax* clone_value() const
  282.       { return ((iv_vb_value) ? iv_vb_value->clone() : 0); };
  283.   //-----[ misc]--------------------------------------------------------
  284.   /**
  285.    * Return the syntax or the exception status.
  286.    *
  287.    * @return If the SNMPv2 exception status is set, it is returned.
  288.    *         otherwise the syntax of the value object is returned.
  289.    */
  290.   SmiUINT32 get_syntax() const;
  291.   /**
  292.    * Set the syntax.
  293.    *
  294.    * The Value portion of the Vb will be deleted and a new value portion
  295.    * is allocated with it's default value (zero).
  296.    *
  297.    * @param syntax - The new syntax.
  298.    */
  299.   void set_syntax(const SmiUINT32 syntax);
  300.   /**
  301.    * Set the exception status.
  302.    *
  303.    * @param status - the new SNMPv2 exception status.
  304.    */
  305.   void set_exception_status(const SmiUINT32 status)
  306.     { exception_status = status; };
  307.   /**
  308.    * Get the exception status.
  309.    */
  310.   SmiUINT32 get_exception_status() const { return exception_status; };
  311.   /**
  312.    * Return a formatted version of the value.
  313.    *
  314.    * @return A null terminated string (empty if no value).
  315.    */ 
  316.   const char *get_printable_value() const;
  317.   /**
  318.    * Return a formatted version of the Oid.
  319.    *
  320.    * @return A null terminated string (may be empty if no Oid has been set).
  321.    */
  322.   const char *get_printable_oid() const
  323.     { return iv_vb_oid.get_printable(); };
  324.   /**
  325.    * Return the validity of a Vb object.
  326.    *
  327.    * @return TRUE if oid and value have been set.
  328.    */
  329.   bool valid() const;
  330.   /**
  331.    * Return the space needed for serialization.
  332.    *
  333.    * @return the length of the BER encoding of this Vb.
  334.    */
  335.   int get_asn1_length() const;
  336.   /**
  337.    * Reset the object.
  338.    */
  339.   void clear() { free_vb(); iv_vb_oid.clear(); };
  340.  //-----[ protected members ]
  341.  protected:
  342.   Oid iv_vb_oid;               // a vb is made up of a oid
  343.   SnmpSyntax *iv_vb_value;     // and a value...
  344.   SmiUINT32 exception_status;  // are there any vb exceptions??
  345.   /**
  346.    * Free the value portion.
  347.    */
  348.   void free_vb();
  349. };
  350. #ifdef SNMP_PP_NAMESPACE
  351. } // end of namespace Snmp_pp
  352. #endif 
  353. #endif