tUDPClientServer.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 tUDPSocket_cxx_Version = 
  51.     "$Id: tUDPClientServer.cxx,v 1.2 2001/03/22 06:14:40 icahoon Exp $";
  52. #include "Application.hxx"
  53. #include "UDPSocket.hxx"
  54. #include "IPAddress.hxx"
  55. #include "Poll.hxx"
  56. #include "SocketOptions.hxx"
  57. #include "VCondition.h"
  58. #include <string>
  59. using Vocal::Process::Application;
  60. using Vocal::Transport::IPAddress;
  61. using Vocal::Transport::UDPSocket;
  62. using Vocal::Transport::Poll;
  63. using Vocal::Transport::SocketOptions;
  64. using Vocal::ReturnCode;
  65. using Vocal::SUCCESS;
  66. class TestApplication : public Application
  67. {
  68.     public:
  69.         TestApplication();
  70.         
  71.      ReturnCode   init(int argc, char ** argv, char ** arge);
  72. void      uninit();
  73.      ReturnCode   run();
  74.     private:
  75.         ReturnCode      runServer();
  76.         ReturnCode      runClient();
  77.         
  78.         bool            server;
  79.         string          remoteIPAddress;
  80.         
  81. };
  82. Application * Application::create()
  83. {
  84.     return ( new TestApplication );
  85. }
  86. TestApplication::TestApplication()
  87.     :   server(true),
  88.         remoteIPAddress("127.0.0.1")
  89. {
  90. }
  91. ReturnCode  
  92. TestApplication::init(int argc, char ** argv, char ** arge)
  93. {
  94.     
  95.     if ( argc > 1 )
  96.     {
  97.         server = false;
  98.         remoteIPAddress.assign(argv[1]);
  99.     }
  100.         
  101.     return ( SUCCESS );
  102. }
  103. void
  104. TestApplication::uninit()
  105. {
  106. }
  107. int main(int argc, char ** argv, char ** arge)
  108. {
  109.     return ( Application::main(argc, argv, arge) );
  110. }
  111. ReturnCode TestApplication::run()
  112. {
  113.     if ( server )
  114.     {
  115.         return ( runServer() );
  116.     }
  117.     return ( runClient() );
  118. }
  119. ReturnCode TestApplication::runServer()
  120. {
  121.     IPAddress   serverAddr(1813);
  122.     UDPSocket   serverSocket(serverAddr);
  123.                 
  124.     cout << "Server Address:t" << serverAddr << endl;
  125.     cout << "Server Socket:t" << serverSocket << endl;
  126.     bool    done = false;
  127.     
  128.     while ( !done )
  129.     {
  130.         char        buffer[32];
  131.         IPAddress   remoteAddr;
  132.         int received = serverSocket.receiveFrom(buffer, 
  133.                                                 32, 
  134.                                                 remoteAddr);
  135.         buffer[received] = '';
  136.         cout    << "Server received buffer: " << buffer
  137.                 << ", Size: " << received << ", From: " << remoteAddr
  138.                 << endl;
  139.         int sent = serverSocket.sendTo(buffer, remoteAddr);
  140.         cout    << "Server sent buffer:t" << buffer 
  141.                 << ", Size: " << sent
  142.                 << ", To: " << remoteAddr
  143.                 << endl;
  144.         cout << "Server Socket:t" << serverSocket << endl;
  145.     
  146.         if ( *buffer == 'q' )
  147.         {
  148.             done = true;
  149.         }
  150.     }
  151.     
  152.     return ( SUCCESS );
  153. }
  154. ReturnCode TestApplication::runClient()
  155. {
  156.     IPAddress   localAddr(1812),
  157.                 remoteAddr;
  158.     remoteAddr.setIP(remoteIPAddress.c_str());
  159.     UDPSocket   clientSocket(localAddr, remoteAddr);
  160.     SocketOptions   clientSockOptions(clientSocket);
  161.     
  162.     clientSockOptions.bsdCompatible();
  163.         
  164.     cout << "Local Address:t" << localAddr << endl;
  165.     cout << "Remote Address:t" << remoteAddr << endl;
  166.     cout << "Client Socket:t" << clientSocket << endl;
  167.     
  168.     char    buffer[6][11] = 
  169.     {
  170.         "testing123",
  171.         "testing456",
  172.         "testing789",
  173.         "testingABC",
  174.         "testingDEF",
  175.         "quit"
  176.     };
  177.     Poll    poll;
  178.     poll.registerFD(clientSocket, Poll::Incoming | Poll::Priority);
  179.     
  180.     for ( int i = 0; i < 6; i++ )
  181.     {
  182.         int sent = clientSocket.send(buffer[i]);
  183.         cout    << "Client sent buffer:t" << buffer[i]
  184.                 << ", Size: " << sent 
  185.                 << ", To: " << remoteAddr
  186.                 << endl;
  187.         u_int8_t    receive_buffer[32];
  188.         int fdsActive = poll.poll();
  189.         
  190.         assert( fdsActive == 1 );
  191.         int received = clientSocket.receive(receive_buffer, 32);
  192.         receive_buffer[received] = '';
  193.     
  194.         cout    << "Client received buffer:t" << (char *)receive_buffer
  195.                 << ", Size: " << received << ", From: " << remoteAddr
  196.                 << endl;
  197.         cout << "Client Socket:t" << clientSocket << endl;
  198.     }
  199.     
  200.     try 
  201.     {
  202.         while ( true )
  203.         {
  204.             clientSocket.send("testing123");
  205.             cout << "Sending..." << endl;
  206.             vusleep(250);
  207.         }
  208.     }
  209.     catch ( VException & )
  210.     {
  211.         cout << "Other side is gone. This is a good thing." << endl;
  212.     }
  213.     
  214.     return ( SUCCESS );
  215. }