AgentApi.hxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef AgentApi_H
  2. #define AgentApi_H
  3. /* ====================================================================
  4.  * The Vovida Software License, Version 1.0 
  5.  * 
  6.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7.  * 
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  * 
  20.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  21.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  22.  *    not be used to endorse or promote products derived from this
  23.  *    software without prior written permission. For written
  24.  *    permission, please contact vocal@vovida.org.
  25.  *
  26.  * 4. Products derived from this software may not be called "VOCAL", nor
  27.  *    may "VOCAL" appear in their name, without prior written
  28.  *    permission of Vovida Networks, Inc.
  29.  * 
  30.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  31.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  33.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  34.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  35.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  36.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  37.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  38.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  39.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  41.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  42.  * DAMAGE.
  43.  * 
  44.  * ====================================================================
  45.  * 
  46.  * This software consists of voluntary contributions made by Vovida
  47.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  48.  * Inc.  For more information on Vovida Networks, Inc., please see
  49.  * <http://www.vovida.org/>.
  50.  *
  51.  */
  52. static const char* const AgentApiHeaderVersion =
  53.     "$Id: AgentApi.hxx,v 1.28 2001/06/29 20:26:54 bko Exp $";
  54. /*
  55.   This file is used by both the server (RS/FS...) C++ code and the snmp agent process
  56.   (snmpd ) C code.  The snmpd uses only the type definitions.
  57. */
  58. #if defined(__sparc)|| defined(__SUNPRO_CC)
  59. #if !defined(MAXHOSTNAMELEN)
  60. #include <netdb.h>
  61. #if !defined(MAXHOSTNAMELEN)
  62. #define MAXHOSTNAMELEN 64
  63. #endif /* !defined(MAXHOSTNAMELEN) */
  64. #endif /* !defined(MAXHOSTNAMELEN) */
  65. #endif /* defined(__sparc) */
  66. #ifdef __cplusplus
  67. #include "Sptr.hxx"
  68. #include "Common.h"
  69. #include "UdpStack.hxx"
  70. #include "ThreadIf.hxx"
  71. #include "cpLog.h"
  72. #include "VMutex.h"
  73. #endif /* __cplusplus */
  74. #include "AgentRegister.hxx"
  75. #include "AgentApiMibVars.hxx"
  76. #define MANAGERTRAPPORT 33603
  77. #define NWMUISOCKET 33606
  78. /* global inter process communications timeouts in uSec */
  79. /* put in file later */
  80. #define RSAGENTIPCTIMEOUT 1000000
  81. /* return value for statistics not yet implemented */
  82. #define VO_NA_INT -1
  83. #define VO_NA_STRING "Not Implemented"
  84. typedef enum
  85. {
  86.     Get = 1,
  87.     Set,
  88.     Trap,
  89.     Response,
  90.     Register,
  91.     Register_Req
  92. } actionT;
  93. #define PARM1SIZE 128
  94. #define PARM2SIZE 1024
  95. typedef struct
  96. {
  97.     actionT action;
  98.     AgentApiMibVarT mibVariable;
  99.     unsigned long transactionNumber;
  100.     char parm1[PARM1SIZE];
  101.     char parm2[PARM2SIZE];
  102. }
  103. ipcMessage;
  104. #ifdef __cplusplus
  105. static VMutex myLock;
  106. class AgentApi: public ThreadIf
  107.     {
  108.         public:
  109.             AgentApi(ServerType inSrvType = SERVER_Unknown, string appName = "unknown");
  110.             virtual ~AgentApi();
  111.             virtual voReturnStatus processMessage(ipcMessage *message, NetworkAddress *sender) = 0;
  112.             // The following are generally used by the server processes
  113.             voReturnStatus sendTrap(int trapType, string parameter);
  114.             ///
  115.             voReturnStatus sendResponse(int val, NetworkAddress *sender);
  116.             voReturnStatus sendResponse(unsigned long val, NetworkAddress *sender);
  117.             voReturnStatus sendResponse(string parameter, NetworkAddress *sender);
  118.             voReturnStatus sendResponse(void *inData, NetworkAddress *sender);
  119.             //  The following are generally used by the agent processes
  120.             voReturnStatus sendRequest(string indexName, string setValue);
  121.             voReturnStatus sendRequest(string indexName, int setValue);
  122.         protected:
  123.             ///
  124.             virtual void thread();
  125.         private:
  126.             ///
  127.             Sptr < AgentRegister > agentRegister;
  128.             Sptr < UdpStack > udpStack;
  129.             int SockNum, MaxSockNum;
  130.             ipcMessage trapMessage;
  131.             ipcMessage message;
  132.             ipcMessage message1;
  133.             string agentIpStr;
  134.             ServerType myServerType;
  135.             string myApplName;
  136.     };
  137. #endif /* __cplusplus */
  138. #endif /* AgentApi_H */