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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  msgqueue.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.       M S G Q U E U E . H
  43.       CSNMPMessageQueue CLASS DEFINITION
  44.       COPYRIGHT HEWLETT PACKARD COMPANY 1999
  45.       INFORMATION NETWORKS DIVISION
  46.       NETWORK MANAGEMENT SECTION
  47.       DESIGN + AUTHOR:
  48. Tom Murray
  49.       LANGUAGE:
  50. ANSI C++
  51.       OPERATING SYSTEMS:
  52. DOS/WINDOWS 3.1
  53. BSD UNIX
  54.       DESCRIPTION:
  55. Queue for holing SNMP event sources (outstanding snmp messages)
  56.       COMPILER DIRECTIVES:
  57. UNIX - For UNIX build
  58. =====================================================================*/
  59. // $Id: msgqueue.h 287 2007-03-22 22:37:09Z katz $
  60. #ifndef _MSGQUEUE
  61. #define _MSGQUEUE
  62. //----[ includes ]-----------------------------------------------------
  63. #include <sys/types.h> // NOTE:  due to 10.10 bug, order is important
  64. //   in that all routines must include types.h
  65. //   and time.h in same order otherwise you
  66. //   will get conflicting definitions of
  67. //   "fd_set" resulting in link time errors.
  68. // CK Ng    added #ifdef WIN32
  69. #ifdef WIN32
  70. #include <winsock.h>
  71. #else
  72. #if !(defined CPU && CPU == PPC603)
  73. #include <sys/time.h> // time stuff and fd_set
  74. #endif
  75. #endif
  76. //----[ snmp++ includes ]----------------------------------------------
  77. #include "snmp_pp/address.h"   // class def for addresses
  78. #include "snmp_pp/target.h"    // class def for targets
  79. #include "snmp_pp/pdu.h"
  80. #include "snmp_pp/msec.h"
  81. #include "snmp_pp/uxsnmp.h"      // class def for snmp
  82. #include "snmp_pp/eventlist.h"
  83. #ifdef SNMP_PP_NAMESPACE
  84. namespace Snmp_pp {
  85. #endif
  86. //----[ defines ]------------------------------------------------------
  87. //----[ CSNMPMessage class ]-------------------------------------------
  88.   /*-----------------------------------------------------------*/
  89.   /* CSNMPMessage        */
  90.   /*   a description of a single MIB access operation.        */
  91.   /*-----------------------------------------------------------*/
  92. class DLLOPT CSNMPMessage
  93. {
  94.  public:
  95.   CSNMPMessage(unsigned long id,
  96.        Snmp * snmp,
  97.        SnmpSocket socket,
  98.        const SnmpTarget &target,
  99.        Pdu &pdu,
  100.        unsigned char * rawPdu,
  101.        size_t rawPduLen,
  102.        const Address & address,
  103.        snmp_callback callBack,
  104.        void * callData);
  105.   virtual ~CSNMPMessage();
  106.   unsigned long GetId() const { return m_uniqueId; };
  107.   void ResetId(const unsigned long newId) { m_uniqueId = newId; };
  108.   void SetSendTime();
  109.   void GetSendTime(msec &sendTime) const { sendTime = m_sendTime; };
  110.   SnmpSocket GetSocket() const { return m_socket; };
  111.   int SetPdu(const int reason, const Pdu &pdu, const UdpAddress &fromaddress);
  112.   int GetPdu(int &reason, Pdu &pdu)
  113.                                  { pdu = m_pdu; reason = m_reason; return 0; };
  114.   int GetReceived() const { return m_received; };
  115.   int ResendMessage();
  116.   int Callback(const int reason);
  117.   SnmpTarget *GetTarget() { return m_target; };
  118.  protected:
  119.   unsigned long   m_uniqueId;
  120.   msec   m_sendTime;
  121.   Snmp *   m_snmp;
  122.   SnmpSocket   m_socket;
  123.   SnmpTarget *   m_target;
  124.   Pdu   m_pdu;
  125.   unsigned char * m_rawPdu;
  126.   size_t   m_rawPduLen;
  127.   Address *   m_address;
  128.   snmp_callback   m_callBack;
  129.   void *   m_callData;
  130.   int   m_reason;
  131.   int   m_received;
  132. };
  133.   /*-----------------------------------------------------------*/
  134.   /* CSNMPMessageQueue        */
  135.   /*   class describing a collection of outstanding SNMP msgs. */
  136.   /*-----------------------------------------------------------*/
  137. class DLLOPT CSNMPMessageQueue: public CEvents
  138. {
  139.  public:
  140.     CSNMPMessageQueue(EventListHolder *holder, Snmp *session);
  141.     virtual ~CSNMPMessageQueue();
  142.     CSNMPMessage *AddEntry(unsigned long id, Snmp *snmp, SnmpSocket socket,
  143.    const SnmpTarget &target, Pdu &pdu, unsigned char * rawPdu,
  144.    size_t rawPduLen, const Address & address,
  145.    snmp_callback callBack, void * callData);
  146.     CSNMPMessage *GetEntry(const unsigned long uniqueId);
  147.     int DeleteEntry(const unsigned long uniqueId);
  148.     void DeleteSocketEntry(const SnmpSocket socket);
  149.   // find the next msg that will timeout
  150.     CSNMPMessage *GetNextTimeoutEntry();
  151.   // find the next timeout
  152.     int GetNextTimeout(msec &sendTime);
  153.   // set up parameters for select
  154.     void GetFdSets(int &maxfds, fd_set &readfds, fd_set &writefds,
  155.   fd_set &exceptfds);
  156.   // return number of outstanding messages
  157.     int GetCount() { return m_msgCount; };
  158.   // tell the queue we are looking for an id
  159.     void PushId(const unsigned long id);
  160.     unsigned long PeekId();
  161.     int HandleEvents(const int maxfds,
  162.      const fd_set &readfds,
  163.      const fd_set &writefds,
  164.      const fd_set &exceptfds);
  165.     int DoRetries(const msec &sendtime);
  166.     int Done();
  167.     int Done(unsigned long);
  168.  protected:
  169.     /*---------------------------------------------------------*/
  170.     /* CSNMPMessageQueueElt        */
  171.     /*   a container for a single item on a linked lists of    */
  172.     /*  CSNMPMessages.        */
  173.     /*---------------------------------------------------------*/
  174.     class DLLOPT CSNMPMessageQueueElt
  175.     {
  176.      public:
  177.       CSNMPMessageQueueElt(CSNMPMessage *message,
  178.    CSNMPMessageQueueElt *next,
  179.    CSNMPMessageQueueElt *previous);
  180.       ~CSNMPMessageQueueElt();
  181.       CSNMPMessageQueueElt *GetNext() { return m_Next; }
  182.       CSNMPMessage *GetMessage() { return m_message; }
  183.       CSNMPMessage *TestId(const unsigned long uniqueId);
  184.      private:
  185.       CSNMPMessage *m_message;
  186.       class CSNMPMessageQueueElt *m_Next;
  187.       class CSNMPMessageQueueElt *m_previous;
  188.     };
  189.     CSNMPMessageQueueElt m_head;
  190.     int m_msgCount;
  191.     unsigned long *m_idStack;
  192.     int m_stackTop;
  193.     int m_stackSize;
  194.     EventListHolder *my_holder;
  195.     Snmp *m_snmpSession;
  196. };
  197. #ifdef SNMP_PP_NAMESPACE
  198. } // end of namespace Snmp_pp
  199. #endif 
  200. #endif