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

流媒体/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 maxPlaying_cxx_Version =
  51.     "$Id: maxUdpPlaying.cxx,v 1.5 2001/05/13 08:33:20 icahoon Exp $";
  52. // for only sending out packets
  53. #include <stdlib.h>
  54. #include <time.h>
  55. #include <unistd.h>
  56. #include <fstream>
  57. #include <stdio.h>
  58. #include "cpLog.h"
  59. #include "rtpTypes.h"
  60. #include "RtpSession.hxx"
  61. #include "TimeTracker.hxx"
  62. #include "UdpStack.hxx"
  63. int main (int argc, char *argv[])
  64. {
  65.     //cpLogSetPriority( LOG_DEBUG_STACK );
  66.     // allocate and initialize default configuration values
  67.     // note, you may need to create two executable, each with the
  68.     // others address info
  69.     char rmtHost[256] = "vvs-tabletennis";
  70.     int max_sessions = 100;
  71.     int rmtPort = 7000;
  72.     int lclPort = 5000;
  73.     int apSize = 40;
  74.     int npSize = 40;
  75.     int numPkts = 10000;
  76.     TimeTracker T(cerr);
  77.     if (argc == 1)
  78.     {
  79.         cout << "Usage: ./maxRtpSessions host sessions rmt_start_port lcl_start_port num_packets" << endl;
  80.         return 0;
  81.     } 
  82.     else if (argc == 6)
  83.     {
  84.         strcpy( rmtHost, argv[1] );
  85.         max_sessions = atoi( argv[2] );
  86.         rmtPort = atoi( argv[3] );
  87.         lclPort = atoi( argv[4] );
  88.         numPkts = atoi( argv[5] );
  89.     }
  90.     else
  91.     {
  92.         printf("Enter remote hostname: ");
  93.         scanf ("%s", rmtHost);
  94.         printf("Enter number of the max rtp sessions: ");
  95.         scanf ("%d", &max_sessions);
  96.         printf("Enter remote port number: ");
  97.         scanf ("%d", &rmtPort);
  98.         printf("Enter local port number: ");
  99.         scanf ("%d", &lclPort);
  100.         printf("Enter number of packets sending or receiving: ");
  101.         scanf ("%d", &numPkts);
  102.     }
  103.     pid_t pid;
  104.     for (int j=0; j < max_sessions; j++)
  105.     {
  106. //        sleep(1);
  107.         if ((pid = fork()) < 0)
  108.         {
  109.             cerr << "Fork failed." << endl;
  110.             return -1;
  111.         }
  112.         else if (pid == 0)
  113.         {
  114.             cout << "Get pid is: " << getpid() <<endl;
  115.             cout << "Creating rtp session " << j << " for "<< numPkts << " packets" << endl;
  116.             //NetworkAddress* netAddressPtr = 0;
  117.             //string rHostName = rmtHost;
  118.             //NetworkAddress netAddress(rmtPort + 2*j);
  119.             //netAddressPtr = &netAddress;
  120.             //netAddressPtr->setHostName(rHostName);
  121.             string rmtHostString = rmtHost;
  122.             NetworkAddress dest( rmtHostString, rmtPort+2*j );
  123.             UdpStack* stack = new UdpStack ( &dest, lclPort+2*j, lclPort+2*j, sendrecv );
  124.             stack->connectPorts();
  125.             UdpStack* stack1 = new UdpStack ( &dest, lclPort+2*j+1, lclPort+2*j+1, sendrecv );
  126.             stack1->connectPorts();
  127.             //UdpStack* stack1 = new UdpStack ( NULL, lclPort + 2*j+1 );
  128.             //UdpStack* stack2 = new UdpStack ( netAddressPtr, rmtPort + 2*j );
  129.             //UdpStack* stack3 = new UdpStack ( netAddressPtr, rmtPort + 2*j+1 );
  130.                                      //rmtPort + 2*j, lclPort + 2*j );
  131.                                      //rmtPort + 2*j + 1, lclPort + 2*j + 1, 
  132.                                      //rtpPayloadPCMU, rtpPayloadPCMU, 5);
  133.         
  134.             char outPacketBuf[480];
  135.             struct timeval t1, t2;
  136.         
  137.             memset(outPacketBuf, 0, 480);
  138.             strncpy (outPacketBuf, "data", 5);
  139.         
  140.             //stack->setApiFormat (rtpPayloadPCMU, apSize);
  141.             //stack->setNetworkFormat (rtpPayloadPCMU, npSize);
  142.         
  143.             int i=0;
  144.             long long delta;
  145.             int sleeptime = 16;
  146.             gettimeofday(&t1, 0);
  147.             T.startTime();
  148.             while (i < numPkts)
  149.             {
  150.                 outPacketBuf[0] = i;
  151.                 stack->transmit( outPacketBuf, 480 );
  152.                 i++;
  153.         
  154. /*
  155.                 // send and receive RTCP packet
  156.                 if (stack->checkIntervalRTCP())
  157.                 {
  158.                     stack->transmitRTCP();
  159.                 }
  160.                 if (stack->receiveRTCP() == 0 )
  161.                 {
  162.                 }
  163. */
  164.                 if (sleeptime > 0)
  165.                 {
  166.                     usleep (sleeptime * 1000);  // 20 msec
  167. //                    cerr << "sleeptime = " << sleeptime << endl;
  168.                 }
  169.                 else
  170.                 {
  171. //                    cerr << "no sleep" << endl;
  172.                 }
  173.                 gettimeofday(&t2, 0);
  174.                 delta = ((t2.tv_sec - t1.tv_sec) * 1000000 +
  175.                        (t2.tv_usec - t1.tv_usec))/1000;
  176.                 sleeptime = (i+1)*20 - delta;
  177.                 if (i == (numPkts-2)) sleeptime=0;
  178.                 
  179.         
  180. /*
  181.                 gettimeofday(&t2, 0);
  182.                 delta = ((t2.tv_sec - t1.tv_sec) * 1000 +
  183.                        (t2.tv_usec/1000 - t1.tv_usec/1000));
  184.                 x = deta/20 - i;
  185.                 for (int k = 0; k < x; k++)
  186.                 {
  187.                     // to Catch up the packets sending due to usleep drifting
  188.                     stack->transmitRaw (outBufferPkt, 160);
  189.                     i++;
  190.                     cerr << "c" ;
  191.                 }
  192.                 cerr << endl;
  193. */
  194.         
  195.             }
  196.         
  197.             T.endTime();
  198.             sleep (9);
  199.             //stack->transmitRTCPBYE();
  200.             outPacketBuf[10] = 127;
  201.             stack->transmit( outPacketBuf, 480 );
  202.             cout << "End rtp session " << j << endl;
  203.             return 3;
  204.         }
  205.     }
  206.     return 0;
  207. }