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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const AgentApi_cxx_Version =
  51.     "$Id: AgentApi.cxx,v 1.35 2001/06/29 20:26:54 bko Exp $";
  52. #include <unistd.h>
  53. #include <sys/param.h>
  54. #include <netinet/in.h>
  55. #include "AgentApi.hxx"
  56. #include "UdpStack.hxx"
  57. #include "cpLog.h"
  58. AgentApi::AgentApi(ServerType serType /*Default Argument*/, string appName /*Default Argument*/ ) : ThreadIf()
  59. {
  60.     char hostname[MAXHOSTNAMELEN];
  61.     myServerType = serType;
  62.     myApplName = appName;
  63.     memset(hostname, 0, sizeof(hostname));
  64.     if (gethostname(hostname, MAXHOSTNAMELEN) < 0)
  65.     {
  66.         agentIpStr.assign("");
  67.     }
  68.     else
  69.     {
  70.         agentIpStr.assign(hostname);
  71.     }
  72. }
  73. ///
  74. AgentApi::~AgentApi()
  75. {
  76.     // close ports, deallocate memory
  77.     cpLog( LOG_DEBUG, "entered agentApi destructor");
  78.     shutdown();
  79.     join();
  80. }
  81. /**
  82.  * send a trap message to the trap agentTrapPort on the local machine
  83.  * @param trapType enum representing trap type defined in mib
  84.  * @param parameter text string to include in message
  85.  * @return voReturnStatus
  86.  */
  87. voReturnStatus
  88. AgentApi::sendTrap(int trapType, string parameter)
  89. {
  90.     try
  91.     {
  92.         NetworkAddress dest(agentIpStr, agentTrapPort);
  93.         memset(&trapMessage, 0, sizeof(trapMessage));
  94.         trapMessage.action = (actionT)Trap;
  95.         trapMessage.mibVariable = (AgentApiMibVarT)trapType;
  96.         if (parameter.length() < PARM1SIZE )
  97.         {
  98.             strcpy(trapMessage.parm1, parameter.c_str());
  99.         }
  100.         else
  101.         {
  102.             return voFailure;
  103.         }
  104.         udpStack->transmitTo((char *)&trapMessage, sizeof(trapMessage), &dest);
  105.         return voSuccess;
  106.     }
  107. #ifdef PtW32CatchAll
  108.     PtW32CatchAll
  109. #else
  110.     catch ( ... ) 
  111. #endif
  112.     {
  113.         return voFailure;
  114.     }
  115. }
  116. /**
  117.  * send an integer reaponse to another agentapi 
  118.  * @param val integer value
  119.  * @param sender destination of message
  120.  */
  121. voReturnStatus
  122. AgentApi::sendResponse(int val, NetworkAddress *sender)
  123. {
  124.     try
  125.     {
  126.         message.action = (actionT)Response;
  127. memset(message.parm2, 0, sizeof(message.parm2));
  128. memcpy(message.parm2, &val,  sizeof(val));
  129. if (sender) 
  130.     cpLog( LOG_DEBUG, "send integer response: %d to %s:%d",
  131.    val, sender->getHostName().c_str(), sender->getPort());
  132.         udpStack->transmitTo((char *)&message, sizeof(message), sender);
  133.         return voSuccess;
  134.     }
  135. #ifdef PtW32CatchAll
  136.     PtW32CatchAll
  137. #else
  138.     catch ( ... ) 
  139. #endif
  140.     {
  141.         return voFailure;
  142.     }
  143.     return voSuccess;
  144. }
  145. /**
  146.  * send a ulong reaponse to another agentapi 
  147.  * @param val ulong value
  148.  * @param sender destination of message
  149.  */
  150. voReturnStatus
  151. AgentApi::sendResponse(unsigned long val, NetworkAddress *sender)
  152. {
  153.     try
  154.     {
  155.         message.action = (actionT)Response;
  156. memset(message.parm2, 0, sizeof(message.parm2));
  157. memcpy(message.parm2, &val, sizeof(val));
  158.         cpLog( LOG_DEBUG, "send ulong response: %d to %s:%d",
  159.                val, sender->getHostName().c_str(), sender->getPort());
  160.         udpStack->transmitTo((char *)&message, sizeof(message), sender);
  161.         return voSuccess;
  162.     }
  163. #ifdef PtW32CatchAll
  164.     PtW32CatchAll
  165. #else
  166.     catch ( ... ) 
  167. #endif
  168.     {
  169.         return voFailure;
  170.     }
  171.     return voSuccess;
  172. }
  173. /**
  174.  * send a string reaponse to another agentapi 
  175.  * @param parameter string value
  176.  * @param sender destination of message
  177.  */
  178. voReturnStatus
  179. AgentApi::sendResponse(string parameter, NetworkAddress *sender)
  180. {
  181.     try
  182.     {
  183.         message.action = (actionT)Response;
  184.         if (parameter.length() < PARM2SIZE )
  185.         {
  186.             strcpy(message.parm2, parameter.c_str());
  187.         }
  188.         else
  189.         {
  190.             return voFailure;
  191.         }
  192.         cpLog( LOG_DEBUG, "send string response: %s to %s:%d",
  193.                parameter.c_str(), sender->getHostName().c_str(), sender->getPort());
  194.         udpStack->transmitTo((char *)&message, sizeof(message), sender);
  195.         return voSuccess;
  196.     }
  197. #ifdef PtW32CatchAll
  198.     PtW32CatchAll
  199. #else
  200.     catch ( ... ) 
  201. #endif
  202.     {
  203.         return voFailure;
  204.     }
  205. }
  206. /**
  207.  * send a reaponse to another agentapi 
  208.  * @param inData data to send in parameter.  must be smaller than PARM2SIZE
  209.  * @param sender destination of message
  210.  */
  211. voReturnStatus
  212. AgentApi::sendResponse(void *inData, NetworkAddress *sender)
  213. {
  214.     try
  215.     {
  216.         message.action = (actionT)Response;
  217. memset(message.parm2, 0, sizeof(message.parm2));
  218.         memcpy(message.parm2, inData, sizeof(message.parm2));
  219.         cpLog( LOG_DEBUG, "send generic response to %s:%d",
  220.                sender->getHostName().c_str(), sender->getPort());
  221.         udpStack->transmitTo((char *)&message, sizeof(message), sender);
  222.         return voSuccess;
  223.     }
  224. #ifdef PtW32CatchAll
  225.     PtW32CatchAll
  226. #else
  227.     catch ( ... ) 
  228. #endif
  229.     {
  230.         return voFailure;
  231.     }
  232. }
  233. voReturnStatus
  234. sendRequest(string indexName, ServerType serType)
  235. {
  236.     cpLog( LOG_ERR, "Using function not yet implemented 2" );
  237.     return voFailure;
  238. }
  239. voReturnStatus
  240. sendRequest(string indexName, int setValue)
  241. {
  242.     cpLog( LOG_ERR, "Using function not yet implemented 2" );
  243.     return voFailure;
  244. }
  245. /**
  246.  * first it registers on ports based on the type of agent it is, then 
  247.  * infinate loop that waits for messages from other agentApi's and processes them.
  248.  */
  249. void
  250. AgentApi::thread()
  251. {
  252.     int bytesRead = 0;
  253.     NetworkAddress sender;
  254.     NetworkAddress dest(registerMulticastIP, registerMulticastPort);
  255.     memset(&message1, 0, sizeof(message1));
  256.     myLock.lock();
  257.     switch (myServerType)
  258.     {
  259.         case SERVER_Agent:
  260.         // register to receive the messages on the well known agent port
  261.         // then send out the multicast message.
  262. #ifdef __linux__
  263.     udpStack = new UdpStack(0, agentTrapPort, agentTrapPort, sendrecv, false);
  264. #else
  265.     udpStack = new UdpStack(0, -1 , -1 , sendrecv, false);
  266. #endif
  267.     message1.action = (actionT)Register_Req;
  268.     udpStack->transmitTo((char *)&message1, sizeof(message1), &dest);
  269.     break;
  270.         case SERVER_NetMgnt:
  271.     udpStack = new UdpStack(0, MANAGERTRAPPORT , MANAGERTRAPPORT, sendrecv, false);
  272.     break;
  273.         default :
  274.     udpStack = new UdpStack(0, -1 , -1 , sendrecv, false);
  275.     memset(&message, 0, sizeof(message));
  276.     message1.action = (actionT)Register;
  277.     int *pi = (int *)message1.parm1;
  278.     int tmpPort = udpStack->getRxPort();
  279.     memcpy(&pi[0], &myServerType, sizeof(int));
  280.     memcpy(&pi[1], &tmpPort, sizeof(int));
  281.     if (sizeof(message1.parm2) < myApplName.length()) 
  282.     {
  283. memcpy(message1.parm2, (char*)myApplName.c_str(), 
  284.        sizeof(message1.parm2));
  285.     } 
  286.     else 
  287.     {
  288. memcpy(message1.parm2, (char*)myApplName.c_str(), 
  289.        myApplName.length());
  290.     }
  291.     agentRegister = new AgentRegister((void *) & message1, 
  292.       sizeof(message1));
  293.     agentRegister->run();
  294.     break;
  295.     }
  296.     myLock.unlock();
  297.     while (true)
  298.     {
  299.         try
  300.         {
  301.             // Poll every fifteen seconds
  302.             //
  303.             memset((void *)&message, 0, sizeof(ipcMessage));
  304.             bytesRead = udpStack->receiveTimeout((char *) & message, 
  305.  sizeof(ipcMessage), 
  306.  &sender, 
  307.  15);
  308.             if ( bytesRead )
  309.             {
  310.                 cpLog( LOG_DEBUG, "bytes read=%d", bytesRead);
  311.                 processMessage(&message, &sender);
  312.             }
  313.         }
  314. #ifdef PtW32CatchAll
  315.     PtW32CatchAll
  316. #else
  317.     catch ( ... ) 
  318. #endif
  319.         {
  320.             cpLog( LOG_ERR, "Exception from udpstack for AgentApiRx" );
  321.         }
  322.         if ( isShutdown() == true )
  323.         {
  324.             return ;
  325.         }
  326.     }
  327. }