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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  octet.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++ O C T E T . H
  43.   OCTETSTR CLASS DEFINITION
  44.   DESIGN + AUTHOR:  Peter E Mellquist
  45.   DESCRIPTION:
  46.   This class is fully contained and does not rely on or any other
  47.   SNMP libraries. This class is portable across any platform
  48.   which supports C++.
  49. =====================================================================*/
  50. // $Id: octet.h 1541 2009-05-29 11:29:22Z katz $
  51. #ifndef _OCTET_CLS
  52. #define _OCTET_CLS
  53. #include "snmp_pp/smival.h"
  54. #ifdef SNMP_PP_NAMESPACE
  55. namespace Snmp_pp {
  56. #endif
  57. //------------[ SNMP++ OCTETSTR CLASS DEF  ]-----------------------------
  58. class DLLOPT OctetStr: public  SnmpSyntax
  59. {
  60.  public:
  61.   /**
  62.    * Enum for setting the hex output format.
  63.    */
  64.   enum OutputType
  65.   {
  66.     OutputHexAndClear,
  67.     OutputHex,
  68.     OutputClear
  69.   };
  70.   //-----------[ Constructors and Destrucotr ]----------------------
  71.   /**
  72.    * Constructs a valid OctetStr with zero length.
  73.    */
  74.   OctetStr();
  75.   /**
  76.    * Constructs a OctetStr with the given value.
  77.    * The OctetStr will be valid unless a call to new fails.
  78.    *
  79.    * @param str - Null terminated string
  80.    */
  81.   OctetStr(const char *str);
  82.   /**
  83.    * Constructs a OctetStr with the given value.
  84.    * The OctetStr will be valid unless a call to new fails.
  85.    *
  86.    * @param str - string that may contain null bytes
  87.    * @param len - length of the string
  88.    */
  89.   OctetStr(const unsigned char *str, unsigned long len);
  90.   /**
  91.    * Construct a OctetStr from another OctetStr.
  92.    * The OctetStr will be valid unless a call to new fails.
  93.    *
  94.    * @param octet - Value for the new object
  95.    */
  96.   OctetStr(const OctetStr &octet);
  97.   /**
  98.    * Destructor, frees allocated space.
  99.    */
  100.   ~OctetStr();
  101.   //-----------[ Overloaded operators ]----------------------
  102.   /**
  103.    * Assign a char string to a OctetStr.
  104.    */
  105.   OctetStr& operator=(const char *str);
  106.   /**
  107.    * Assign a OctetStr to a OctetStr.
  108.    */
  109.   OctetStr& operator=(const OctetStr &octet);
  110.   /**
  111.    * Equal operator for two OctetStr.
  112.    */
  113.   DLLOPT friend int operator==(const OctetStr &lhs, const OctetStr &rhs);
  114.   /**
  115.    * Not equal operator for two OctetStr.
  116.    */
  117.   DLLOPT friend int operator!=(const OctetStr &lhs, const OctetStr &rhs);
  118.   /**
  119.    * Not equal operator for two OctetStr.
  120.    */
  121.   DLLOPT friend int operator<(const OctetStr &lhs, const OctetStr &rhs);
  122.   /**
  123.    * Less than operator for two OctetStr.
  124.    */
  125.   DLLOPT friend int operator<=(const OctetStr &lhs,const OctetStr &rhs);
  126.   /**
  127.    * Greater than operator for two OctetStr.
  128.    */
  129.   DLLOPT friend int operator>(const OctetStr &lhs, const OctetStr &rhs);
  130.   /**
  131.    * Greater than or equal operator for two OctetStr.
  132.    */
  133.   DLLOPT friend int operator>=(const OctetStr &lhs, const OctetStr &rhs);
  134.   /**
  135.    * Equal operator for OctetStr and char string.
  136.    */
  137.   DLLOPT friend int operator==(const OctetStr &lhs, const char *rhs);
  138.   /**
  139.    * Not equal operator for OctetStr and char string.
  140.    */
  141.   DLLOPT friend int operator!=(const OctetStr &lhs, const char *rhs);
  142.   /**
  143.    * Less than operator for OctetStr and char string.
  144.    */
  145.   DLLOPT friend int operator<(const OctetStr &lhs, const char *rhs);
  146.   /**
  147.    * Less than or equal operator for OctetStr and char string.
  148.    */
  149.   DLLOPT friend int operator<=(const OctetStr &lhs, const char *rhs);
  150.   /**
  151.    * Greater than operator for OctetStr and char string.
  152.    */
  153.   DLLOPT friend int operator>(const OctetStr &lhs, const char *rhs);
  154.   /**
  155.    * Greater than or equal operator for OctetStr and char string.
  156.    */
  157.   DLLOPT friend int operator>=(const OctetStr &lhs, const char *rhs);
  158.   /**
  159.    * Append a char string to this OctetStr.
  160.    */
  161.   OctetStr& operator+=(const char *a);
  162.   /**
  163.    * Append a single char to this OctetStr.
  164.    */
  165.   OctetStr& operator+=(const unsigned char c);
  166.   /**
  167.    * Append another OctetStr to this OctetStr.
  168.    */
  169.   OctetStr& operator+=(const OctetStr& octet);
  170.   /**
  171.    * Allow access as if it was an array.
  172.    *
  173.    * @note The given param is not checked for validity.
  174.    */
  175.   unsigned char &operator[](int i)
  176.     { m_changed = true; return smival.value.string.ptr[i]; };
  177.   /**
  178.    * Allow access as if it was an array for const OctetStr objects.
  179.    *
  180.    * @note The given param is not checked for validity.
  181.    */
  182.   unsigned char operator[](int i) const { return smival.value.string.ptr[i]; };
  183.   /**
  184.    * Return the syntax.
  185.    *
  186.    * @return This method always returns sNMP_SYNTAX_OCTETS.
  187.    */
  188.   SmiUINT32 get_syntax() const { return sNMP_SYNTAX_OCTETS; };
  189.   /**
  190.    * Return the space needed for serialization.
  191.    */
  192.   int get_asn1_length() const;
  193.   /**
  194.    * Return validity of the object.
  195.    */
  196.   bool valid() const { return validity; };
  197.   /**
  198.    * Clone this object.
  199.    *
  200.    * @return Pointer to the newly created object (allocated through new).
  201.    */
  202.   SnmpSyntax *clone() const { return (SnmpSyntax *) new OctetStr(*this); };
  203.   /**
  204.    * Map other SnmpSyntax objects to OctetStr.
  205.    */
  206.   SnmpSyntax& operator=(const SnmpSyntax &val);
  207.   /**
  208.    * Get a printable ASCII value of the string.
  209.    *
  210.    * @note Depending on the selected output format, this method will
  211.    *       return get_printable_hex() or get_printable_clear() if the
  212.    *       string contains not printable characters.
  213.    *
  214.    * @return Printable, null terminated string
  215.    */
  216.   const char *get_printable() const;
  217.   /**
  218.    * Get an ASCII formatted hex dump of the contents.
  219.    * If the output format was set to OctetStr::OutputHexAndClear,
  220.    * the produced string of this method will look like this:
  221.    *                                                                     <pre>
  222.    * 09 4F 63 74 65 74 53 74 72 3A 3A 67 65 74 5F 70    .OctetStr::get_p
  223.    * 72 69 6E 74 61 62 6C 65 5F 68 65 78 28 29          rintable_hex()
  224.    *                                                                     </pre>
  225.    * If the output format was set to OctetStr::OutputHex the
  226.    * produced string will look like this:
  227.    *                                                                     <pre>
  228.    * 09 4F 63 74 65 74 53 74 72 3A 3A 67 65 74 5F 70
  229.    * 72 69 6E 74 61 62 6C 65 5F 68 65 78 28 29
  230.    *                                                                     </pre>
  231.    * @return Printable, null terminated string.
  232.    */
  233.   const char *get_printable_hex() const;
  234.   /**
  235.    * Get the contents with all non printable characters replaced.
  236.    *
  237.    * @return Printable, null terminated string.
  238.    */
  239.   const char *get_printable_clear() const;
  240.   /**
  241.    * Set the output format for get_pritable_hex().
  242.    */
  243.   static void set_hex_output_type(const enum OutputType ot)
  244.     { hex_output_type = ot; };
  245.   /**
  246.    * Set the char get_printable_hex() and get_printable_clear()
  247.    * will use for non printable characters.
  248.    */
  249.   static void set_np_char(const char np) { nonprintable_char = np; };
  250.   /**
  251.    * Set the data on an already constructed OctetStr.
  252.    * The given string is copied to an internal member var, so the
  253.    * params can be destroyed afterwards.
  254.    *
  255.    * @param str - The new string value
  256.    * @param len - Length of the given string
  257.    */
  258.   void set_data(const unsigned char *str, unsigned long len);
  259.   /**
  260.    * Get the length of the string.
  261.    */
  262.   unsigned long len() const { return smival.value.string.len; };
  263.   /**
  264.    * Get a pointer to internal data.
  265.    */
  266.   unsigned char *data() const { return smival.value.string.ptr; };
  267.   // compare n elements of an octet
  268.   int nCompare(const unsigned long n, const OctetStr &o) const;
  269.   /**
  270.    * Build an OctetStr from a hex string.
  271.    * Called with "5465  737469 6e672074686973206D657468 6f 64 21"
  272.    * the returned value will be "Testing this method!"
  273.    *
  274.    * @param hex_string - The hex string (may contain spaces)
  275.    * @return created string
  276.    */
  277.   static OctetStr from_hex_string(const OctetStr &hex_string);
  278.   /**
  279.    * Set the character for linefeeds in get_printable() functions.
  280.    *
  281.    * The default linefeeds are n for Unix and rn on other systems.
  282.    *
  283.    * @param lf_chars - string less than 3 bytes
  284.    * @return true on success
  285.    */
  286.   static bool set_linefeed_chars(const char* lf_chars);
  287.   /**
  288.    * Null out the contents of the string. The string will be empty
  289.    * after calling this method
  290.    */
  291.   void clear();
  292.   /**
  293.    * Append or shorten the internal data buffer.
  294.    *
  295.    * The buffer will either be shortened or extended. In the second case
  296.    * zeroes are added to the end of the string.
  297.    *
  298.    * @param new_len - The new length for the string
  299.    * @return true on success
  300.    */
  301.   bool set_len(const unsigned char new_len);
  302.  protected:
  303.   enum OutputFunction
  304.   {
  305.       OutputFunctionDefault,
  306.       OutputFunctionHex,
  307.       OutputFunctionClear
  308.   };
  309.   SNMP_PP_MUTABLE char *output_buffer;  // formatted Octet value
  310.   SNMP_PP_MUTABLE unsigned int output_buffer_len; // allocated space for string
  311.   SNMP_PP_MUTABLE bool m_changed;
  312.   SNMP_PP_MUTABLE enum OutputType output_last_type;
  313.   SNMP_PP_MUTABLE char output_last_np_char;
  314.   SNMP_PP_MUTABLE enum OutputFunction output_last_function;
  315.   bool validity;          // validity boolean
  316.   static enum OutputType hex_output_type;
  317.   static char nonprintable_char;
  318.   static char linefeed_chars[3];
  319. };
  320. //-----------[ End OctetStr Class ]-------------------------------------
  321. /**
  322.  * The OpaqueStr class represents the Opaque SNMP type. It is derived from
  323.  * the SNMP++ class OctetStr and has the same interfaces and behavior,
  324.  * except that its syntax is sNMP_SYNTAX_OPAQUE.
  325.  */
  326. class OpaqueStr: public OctetStr
  327. {
  328.  public:
  329.   /**
  330.    * Constructor creating a valid zero length OpaqueStr.
  331.    */
  332.   OpaqueStr(): OctetStr()
  333.     { smival.syntax = sNMP_SYNTAX_OPAQUE; };
  334.   /**
  335.    * Constructs a OpaqueStr with the given value.
  336.    * The OpaqueStr will be valid unless a call to new fails.
  337.    *
  338.    * @param str - Null terminated string
  339.    */
  340.   OpaqueStr(const char *str) : OctetStr(str)
  341.     { smival.syntax = sNMP_SYNTAX_OPAQUE; };
  342.   /**
  343.    * Constructs a OpaqueStr with the given value.
  344.    * The OpaqueStr will be valid unless a call to new fails.
  345.    *
  346.    * @param str - string that may contain null bytes
  347.    * @param len - length of the string
  348.    */
  349.   OpaqueStr(const unsigned char *str, unsigned long length)
  350.     : OctetStr(str, length) { smival.syntax = sNMP_SYNTAX_OPAQUE; };
  351.   /**
  352.    * Construct a OpaqueStr from an OctetStr.
  353.    * The OpaqueStr will be valid unless a call to new fails.
  354.    *
  355.    * @param octet - Value for the new object
  356.    */
  357.   OpaqueStr(const OctetStr &octet) : OctetStr(octet)
  358.     { smival.syntax = sNMP_SYNTAX_OPAQUE; };
  359.   /**
  360.    * Construct a OpaqueStr from another OpaqueStr.
  361.    * The OpaqueStr will be valid unless a call to new fails.
  362.    *
  363.    * @param opaque - Value for the new object
  364.    */
  365.   OpaqueStr(const OpaqueStr& opaque) : OctetStr(opaque)
  366.     { smival.syntax = sNMP_SYNTAX_OPAQUE; };
  367.   /**
  368.    * Clone this object.
  369.    *
  370.    * @return Pointer to the newly created object (allocated through new).
  371.    */
  372.   virtual SnmpSyntax *clone() const { return new OpaqueStr(*this); }
  373.   /**
  374.    * Return the syntax.
  375.    *
  376.    * @return This method always returns sNMP_SYNTAX_OPAQUE.
  377.    */
  378.   virtual SmiUINT32 get_syntax() const { return sNMP_SYNTAX_OPAQUE; };
  379.   
  380.   /**
  381.    * Map other SnmpSyntax objects to OpaqueStr.
  382.    */
  383.   SnmpSyntax& operator=(const SnmpSyntax &val) 
  384.    { return OctetStr::operator=(val); }
  385. };
  386. #ifdef SNMP_PP_NAMESPACE
  387. } // end of namespace Snmp_pp
  388. #endif 
  389. #endif // _OCTET_CLS