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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  collect.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++ C O L L E C T . H
  43.   COLLECTION CLASS DEFINITION
  44.   DESIGN + AUTHOR:  Peter E Mellquist
  45.   DESCRIPTION: Simple Collection classes for SNMP++ classes.
  46. =====================================================================*/
  47. // $Id: collect.h 349 2008-11-17 23:23:35Z katz $
  48. #ifndef _COLLECTION_H_
  49. #define _COLLECTION_H_
  50. #include "snmp_pp/config_snmp_pp.h"
  51. #ifdef SNMP_PP_NAMESPACE
  52. namespace Snmp_pp {
  53. #endif
  54. #ifndef TRUE
  55. #define TRUE 1
  56. #endif
  57. #ifndef FALSE
  58. #define FALSE 0
  59. #endif
  60. #define MAXT 25     // elements per block
  61. template <class T> class SnmpCollection
  62. {
  63.   class cBlock
  64.   {
  65.     public:
  66.      cBlock(cBlock *p, cBlock *n) : prev(p), next(n) {};
  67.      T *item[MAXT];
  68.      cBlock *prev;
  69.      cBlock *next;
  70.   };
  71.  public:
  72.   /**
  73.    * Create an empty collection.
  74.    */
  75.   SnmpCollection()
  76.     : count(0), data(0,0) {};
  77.   /**
  78.    * Create a collection using a single template object.
  79.    */
  80.   SnmpCollection(const T &t)
  81.     : count(1), data(0, 0)
  82.   {
  83.     data.item[0] = (T*) (t.clone());
  84.   };
  85.   /**
  86.    * Create a collection with another collection (copy constructor).
  87.    */
  88.   SnmpCollection(const SnmpCollection<T> &c)
  89.     : count(0), data(0, 0)
  90.   {
  91.     if (c.count == 0) return;
  92.     // load up the new collection
  93.     cBlock *current = &data;
  94.     cBlock *nextBlock;
  95.     int cn = 0;
  96.     while (count < c.count)
  97.     {
  98.       if (cn >= MAXT)
  99.       {
  100. nextBlock = new cBlock(current, 0);
  101. current->next = nextBlock;
  102. current = nextBlock;
  103. cn=0;
  104.       }
  105.       T *tmp = 0;
  106.       c.get_element(tmp, count);
  107.       current->item[cn] = (T*) (tmp->clone());
  108.       count++;
  109.       cn++;
  110.     }
  111.   };
  112.   /**
  113.    * Destroy the collection.
  114.    */
  115.   ~SnmpCollection()
  116.   {
  117.     clear();  // just delete the data
  118.   };
  119.   /**
  120.    * Get the size of the collection.
  121.    */
  122.   int size() const
  123.   {
  124.     return count;
  125.   };
  126.   /**
  127.    * Append an item to the collection.
  128.    */
  129.   SnmpCollection& operator +=(const T &i)
  130.   {
  131.     cBlock *current = &data;
  132.     int cn = (int) count % MAXT;
  133.     while (current->next)
  134.       current = current->next;
  135.     if ((count > 0) && ((count % MAXT) == 0))
  136.     {
  137.       cBlock *add = new cBlock(current, 0);
  138.       if (!add) return *this;
  139.       current->next = add;
  140.       add->item[0] = (T*) (i.clone());
  141.     }
  142.     else
  143.     {
  144.       current->item[cn] = (T*) (i.clone());
  145.     }
  146.     count++;
  147.     return *this;
  148.   };
  149.   /**
  150.    * Assign one collection to another.
  151.    */
  152.   SnmpCollection &operator =(const SnmpCollection<T> &c)
  153.   {
  154.     if (this == &c) return *this;  // check for self assignment
  155.     clear(); // delete the data
  156.     if (c.count == 0) return *this;
  157.     // load up the new collection
  158.     cBlock *current = &data;
  159.     cBlock *nextBlock;
  160.     int cn = 0;
  161.     count = 0;
  162.     while (count < c.count)
  163.     {
  164.       if (cn >= MAXT)
  165.       {
  166. nextBlock = new cBlock(current, 0);
  167. current->next = nextBlock;
  168. current = nextBlock;
  169. cn=0;
  170.       }
  171.       T *tmp = 0;
  172.       c.get_element(tmp, count);
  173.       current->item[cn] = (T*) (tmp->clone());
  174.       count++;
  175.       cn++;
  176.     }
  177.     return *this;
  178.   };
  179.   /**
  180.    * Access an element in the collection.
  181.    *
  182.    * @return The requestet element or an empty element if out of bounds.
  183.    */
  184.   T operator[](const int p) const
  185.   {
  186.     if ((p < count) && (p >= 0))
  187.     {
  188.       cBlock const *current = &data;
  189.       int bn = (int) (p / MAXT);
  190.       int cn = (int) p % MAXT;
  191.       for (int z=0; z<bn; z++)
  192. current = current->next;
  193.       return *(current->item[cn]);
  194.     }
  195.     else
  196.     {
  197.       // return an instance of nothing!!
  198.       T t;
  199.       return t;
  200.     }
  201.   };
  202.   /**
  203.    * Set an element in the collection.
  204.    *
  205.    * @return 0 on success and -1 on failure.
  206.    */
  207.   int set_element( const T& i, const int p)
  208.   {
  209.     if ((p < 0) || (p > count)) return -1; // not found!
  210.     cBlock *current = &data;
  211.     int bn = (int) p / MAXT;
  212.     int cn = (int) p % MAXT;
  213.     for (int z=0; z<bn; z++)
  214.       current = current->next;
  215.     delete current->item[cn];
  216.     current->item[cn] = (T*) (i.clone());
  217.     return 0;
  218.   };
  219.   /**
  220.    * Get an element in the collection.
  221.    *
  222.    * @return 0 on success and -1 on failure.
  223.    */
  224.   int get_element(T &t, const int p) const
  225.   {
  226.     if ((p < 0) || (p > count)) return -1; // not found!
  227.     cBlock const *current = &data;
  228.     int bn = (int) p / MAXT;
  229.     int cn = (int) p % MAXT;
  230.     for (int z=0; z<bn; z++)
  231.       current = current->next;
  232.     t = *(current->item[cn]);
  233.     return 0;
  234.   };
  235.   /**
  236.    * Get a pointer to an element in the collection.
  237.    *
  238.    * @return 0 on success and -1 on failure.
  239.    */
  240.   int get_element(T *&t, const int p) const
  241.   {
  242.     if ((p < 0) || (p > count)) return -1; // not found!
  243.     cBlock const *current = &data;
  244.     int bn = (int) p / MAXT;
  245.     int cn = (int) p % MAXT;
  246.     for (int z=0; z<bn; z++)
  247.       current = current->next;
  248.     t = current->item[cn];
  249.     return 0;
  250.   };
  251.   /**
  252.    * Apply an function to the entire collection, iterator.
  253.    */
  254.   void apply(void f(T&))
  255.   {
  256.     T temp;
  257.     for ( int z=0; z<count; z++)
  258.     {
  259.       this->get_element(temp, z);
  260.       f(temp);
  261.     }
  262.   };
  263.   /**
  264.    * Looks for an element in the collection.
  265.    *
  266.    * @return TRUE if found.
  267.    */
  268.   int find(const T& i, int &pos) const
  269.   {
  270.     T temp;
  271.     for (int z=0; z<count; z++)
  272.     {
  273.       this->get_element(temp, z);
  274.       if ( temp == i) {
  275. pos = z;
  276. return TRUE;
  277.       }
  278.     }
  279.     return FALSE;
  280.   };
  281.   /**
  282.    * Delete an element in the collection.
  283.    */
  284.   int remove(const T& i)
  285.   {
  286.     // first see if we have it
  287.     int pos;
  288.     if (find(i, pos))
  289.     {
  290.       SnmpCollection<T> newCollection;
  291.       for (int z=0; z<count; z++)
  292.       {
  293. if (z != pos)
  294. {
  295.   T item;
  296.   get_element(item, z);
  297.   newCollection += item;
  298. }
  299.       }
  300.       // assign new collection to 'this'
  301.       operator =(newCollection);
  302.       return TRUE;
  303.     }
  304.     return FALSE;   // not found thus not removed
  305.   };
  306.   /**
  307.    * Delete all elements within the collection.
  308.    */
  309.   void clear()
  310.   {
  311.     if (count == 0) return;
  312.     cBlock *current = &data;
  313.     int z=0;
  314.     int cn=0;
  315.     while ( z< count)
  316.     {
  317.       if (cn >= MAXT)
  318.       {
  319. cn =0;
  320. current = current->next;
  321.       }
  322.       delete current->item[cn];
  323.       cn++;
  324.       z++;
  325.     }
  326.     // delete the blocks
  327.     while (current->next)
  328.       current = current->next;
  329.     while (current->prev)
  330.     {
  331.       current = current->prev;
  332.       delete current->next;
  333.     }
  334.     count = 0;
  335.     data.next=0;
  336.     data.prev=0;
  337.   };
  338.  private:
  339.   int count;
  340.   cBlock data;
  341. };
  342. #ifdef SNMP_PP_NAMESPACE
  343. } // end of namespace Snmp_pp
  344. #endif 
  345. #endif  // _COLLECTION_H_