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

流媒体/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 tServer_cxx_Version = 
  51. "$Id$";
  52. #include "Application.hxx"
  53. #include "Socket.hxx"
  54. #include "VLog.hxx"
  55. #include "IPAddress.hxx"
  56. #include "UDPSocket.hxx"
  57. #include "StreamClientSocket.hxx"
  58. #include "TCPServerSocket.hxx"
  59. #include "TPKTServerSocket.hxx"
  60. #include "Thread.hxx"
  61. using namespace Vocal;
  62. using namespace Vocal::Threads;
  63. using namespace Vocal::Logging;
  64. using namespace Vocal::Transport;
  65. class UDPServer : public Runnable
  66. {
  67.     public:
  68.      UDPServer(u_int16_t port) : echo_(port), udpServer_(0), count_(0)
  69. {   udpServer_ = new UDPSocket(echo_); }
  70. ~UDPServer() 
  71. {   delete udpServer_; }
  72.     
  73.      ReturnCode       run();    
  74.     
  75.     private:
  76.      IPAddress        echo_;
  77.         UDPSocket    *   udpServer_;
  78. unsigned int      count_;
  79. };
  80. class TCPServer : public Runnable
  81. {
  82.     public:
  83.      TCPServer(u_int16_t port) : echo_(port), tcpServer_(0)
  84. {   tcpServer_ = new TCPServerSocket(echo_);   }
  85.     
  86. ~TCPServer() 
  87. {   delete tcpServer_; }
  88. ReturnCode       run();
  89.     private:
  90.      IPAddress        echo_;
  91. TCPServerSocket *   tcpServer_;
  92. };
  93. class TPKTServer : public Runnable
  94. {
  95.     public:
  96.      TPKTServer(u_int16_t port) : echo_(port), tpktServer_(0)
  97. {   tpktServer_ = new TPKTServerSocket(echo_);   }
  98.     
  99. ~TPKTServer() 
  100. {   delete tpktServer_; }
  101. ReturnCode       run();
  102.     private:
  103.      IPAddress        echo_;
  104. TPKTServerSocket *  tpktServer_;
  105. };
  106. class tServer : public Application
  107. {
  108.     public:
  109.      tServer() {}
  110. ~tServer() {}
  111.      ReturnCode      init(int, char **, char **);
  112. void          uninit();
  113.      ReturnCode       run();
  114. };
  115. ReturnCode
  116. UDPServer::run()
  117. {
  118.     try
  119.     {
  120. udpServer_->setBlocking();
  121. char       recvMessage[8192];
  122.      while ( count_ < 10 )
  123. {
  124.             cout << "Receiving udp message..." << endl;
  125.          IPAddress     fromAddr;
  126.     
  127.          int bytesReceived = udpServer_->receiveFrom(recvMessage, 8192, fromAddr);
  128.     cout << "Received message: " << recvMessage
  129.  << ", size: " << bytesReceived
  130.  << ", on: " << *udpServer_
  131.  << ", from: " << fromAddr << endl;
  132.          udpServer_->sendTo(recvMessage, fromAddr);
  133.     
  134.     count_++;
  135. }
  136.     }
  137.     catch ( ... )
  138.     {
  139.      cout << "caught UDP error" << endl;
  140. return ( 1 );
  141.     }
  142.     
  143.     return ( 0 );
  144. }
  145. ReturnCode
  146. TCPServer::run()
  147. {
  148.     try
  149.     {
  150. tcpServer_->setBlocking();
  151.      Sptr<TCPClientSocket> tcpSocket = tcpServer_->accept();
  152. char       recvMessage[8192];
  153.      while ( 1 )
  154. {
  155.             cout << "Receiving tcp message..." << endl;
  156.          int bytesReceived = tcpSocket->receive(recvMessage, 8192);
  157.     cout << "Received message: " << recvMessage
  158.  << ", size: " << bytesReceived 
  159.  << ", on : " << *tcpSocket << endl;
  160.          tcpSocket->send(*recvMessage ? recvMessage : "No message received.");
  161. }
  162.     }
  163.     catch ( ... )
  164.     {
  165.      cout << "caught TCP error" << endl;
  166. return ( 1 );
  167.     }
  168.     
  169.     return ( 0 );
  170. }
  171. ReturnCode
  172. TPKTServer::run()
  173. {
  174.     try
  175.     {
  176. tpktServer_->setBlocking();
  177.      Sptr<TPKTClientSocket>    tpktSocket = tpktServer_->accept();
  178. char       recvMessage[8192];
  179.      while ( 1 )
  180. {
  181.             cout << "Receiving tpkt message..." << endl;
  182.          u_int16_t pktSize = tpktSocket->receiveTPKTHeader();
  183.          assert( pktSize < 8192 );
  184.          
  185.          int bytesReceived = tpktSocket->receive(recvMessage, 8192);
  186.     cout << "Received message: " << recvMessage
  187.  << ", size: " << bytesReceived 
  188.  << ", length reported: " << pktSize
  189.  << ", on : " << *tpktSocket << endl;
  190.          tpktSocket->send(*recvMessage ? recvMessage : "No message received.");
  191. }
  192.     }
  193.     catch ( ... )
  194.     {
  195.      cout << "caught TPKT error" << endl;
  196. return ( 1 );
  197.     }
  198.     
  199.     return ( 0 );
  200. }
  201. Application * Application::create()
  202. {
  203.     return ( new tServer );
  204. }
  205. ReturnCode
  206. tServer::init(int argc, char ** argv, char ** arge)
  207. {
  208.     if ( argc > 1 )
  209.     {
  210.         VLog::init(LOG_DEBUG, argv[1]);
  211.     }
  212.     else
  213.     {
  214.      VLog::init(LOG_DEBUG);
  215.     }
  216. //    VLog::on(LOG_DEBUG);
  217. //    VLog::on(LOG_INFO);
  218.     if ( argc > 2 )
  219.     {
  220. //        VLog::on(LOG_TRACE);
  221.     }
  222.     return ( SUCCESS );
  223. }
  224. void
  225. tServer::uninit()
  226. {
  227.     VLog::uninit();
  228. }
  229. ReturnCode
  230. tServer::run()
  231. {
  232.      UDPServer udpServer(7777);
  233.      Thread   udpServerThread(udpServer, "udpServerThread");
  234.      
  235.      TCPServer tcpServer(7778);
  236.      Thread   tcpServerThread(tcpServer, "tcpServerThread");
  237.     TPKTServer  tpktServer(7779);
  238.     Thread   tpktServerThread(tpktServer, "tpktServerThread");
  239.     
  240.     ReturnCode rc = SUCCESS;
  241.     
  242.     if  (   (rc = udpServerThread.join())   != SUCCESS 
  243.      ||  (rc = tcpServerThread.join())   != SUCCESS 
  244.      ||  (rc = tpktServerThread.join())  != SUCCESS 
  245. )
  246.     {
  247.      return ( rc );
  248.     }
  249.     
  250.     return ( SUCCESS );
  251. }
  252. int main(int argc, char ** argv, char ** arge)
  253. {
  254.     return ( Application::main(argc, argv, arge) );
  255. }