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

SNMP编程

开发平台:

Visual C++

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