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

流媒体/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 tClient_cxx_Version = 
  51. "$Id$";
  52. #include "Application.hxx"
  53. #include "UDPSocket.hxx"
  54. #include "TCPClientSocket.hxx"
  55. #include "TPKTClientSocket.hxx"
  56. #include "IPAddress.hxx"
  57. #include "VLog.hxx"
  58. #include <unistd.h>
  59. using namespace Vocal;
  60. using namespace Vocal::Threads;
  61. using namespace Vocal::Transport;
  62. using namespace Vocal::Logging;
  63. class tClient : public Application
  64. {
  65.     public:
  66.      tClient() {}
  67. ~tClient() {}
  68.      ReturnCode       init(int, char **, char **);
  69. void          uninit();
  70.      ReturnCode       run();
  71. };
  72. Application * Application::create()
  73. {
  74.     return ( new tClient );
  75. }
  76. ReturnCode
  77. tClient::init(int argc, char ** argv, char ** arge)
  78. {
  79.     if ( argc > 1 )
  80.     {
  81.         VLog::init(LOG_DEBUG, argv[1]);
  82.     }
  83.     else
  84.     {
  85.      VLog::init(LOG_DEBUG);
  86.     }
  87. //    VLog::on(LOG_DEBUG);
  88. //    VLog::on(LOG_INFO);
  89.     if ( argc > 2 )
  90.     {
  91. //        VLog::on(LOG_TRACE);
  92.     }
  93.     return ( SUCCESS );
  94. }
  95. void
  96. tClient::uninit()
  97. {
  98.     VLog::uninit();
  99. }
  100. ReturnCode
  101. tClient::run()
  102. {
  103.     try
  104.     {
  105.      IPAddress           udpEcho("192.168.5.23", 7777),
  106.                    tcpEcho("192.168.5.23", 7778),
  107.                    tpktEcho("192.168.5.23", 7779);
  108. cout << "udpEcho address: " << udpEcho << endl;
  109. cout << "tcpEcho address: " << tcpEcho << endl;
  110. cout << "tpktEcho address: " << tpktEcho << endl;
  111.    UDPSocket           udpSock;
  112. TCPClientSocket     tcpSock;
  113. TPKTClientSocket    tpktSock;
  114. udpSock.setBlocking();
  115. tcpSock.setBlocking();
  116.      tpktSock.setBlocking();
  117. udpSock.connect(udpEcho);
  118. tcpSock.connect(tcpEcho);
  119. tpktSock.connect(tpktEcho);
  120.      char     * sendMessage[10] =
  121. {
  122.     "message 0",
  123.     "message 1",
  124.     "message 2",
  125.     "message 3",
  126.     "message 4",
  127.     "message 5",
  128.     "message 6",
  129.     "message 7",
  130.     "message 8",
  131.     "message 9"
  132. };
  133. for ( int i = 0; i < 10; i ++ )
  134. {
  135.          size_t messageLength = strlen(sendMessage[i]);
  136.     
  137.     cout << "Sending message: " << sendMessage[i]
  138.  << ", size: " << messageLength
  139.  << ", to: " << udpEcho << endl;
  140.          
  141.          udpSock.send(sendMessage[i]);
  142.     cout << "Sending message: " << sendMessage[i]
  143.  << ", size: " << messageLength
  144.  << ", to: " << tcpEcho << endl;
  145.          
  146.          tcpSock.send(sendMessage[i]);
  147.     cout << "Sending message: " << sendMessage[i]
  148.  << ", size: " << messageLength
  149.  << ", to: " << tpktEcho << endl;
  150.          
  151.          tpktSock.send(sendMessage[i]);
  152.          string   * recvMessage = new string(8191, ' ');
  153.     
  154.     int bytesReceived = udpSock.receive(*recvMessage);
  155.     cout << "Received message: " << recvMessage->c_str()
  156.  << ", size: " << recvMessage->size() << endl;
  157.          delete recvMessage;
  158.          recvMessage = new string(8191, ' ');
  159.     
  160.     bytesReceived = tcpSock.receive(*recvMessage);
  161.     cout << "Received message: " << recvMessage->c_str()
  162.  << ", size: " << recvMessage->size() << endl;
  163.          delete recvMessage;
  164.     
  165.          u_int16_t msgSize = tpktSock.receiveTPKTHeader();
  166.          recvMessage = new string(msgSize, ' ');
  167.          bytesReceived = tpktSock.receive(*recvMessage);
  168.          assert(msgSize == bytesReceived);
  169.     
  170.     cout << "Received message: " << recvMessage->c_str()
  171.  << ", size: " << recvMessage->size() << endl;
  172.          delete recvMessage;
  173.          sleep(1);
  174. }
  175.     }
  176.     catch ( ... )
  177.     {
  178.      cout << "caught error" << endl;
  179.     }
  180.     
  181.     return ( 0 );
  182. }
  183. int main(int argc, char ** argv, char ** arge)
  184. {
  185.     return ( Application::main(argc, argv, arge) );
  186. }