maxRecording.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 maxRecording_cxx_Version =
  51.     "$Id: maxRecording.cxx,v 1.6 2001/05/13 08:33:20 icahoon Exp $";
  52. #include <stdlib.h>
  53. #include <unistd.h>
  54. #include <fstream>
  55. #include <stdio.h>
  56. #include "rtpTypes.h"
  57. #include "RtpSession.hxx"
  58. #include "TimeTracker.hxx"
  59. #include "support.hxx"
  60. int main (int argc, char *argv[])
  61. {
  62.     // allocate and initialize default configuration values
  63.     // note, you may need to create two executable, each with the
  64.     // others address info
  65.     char rmtHost[256] = "vvs-tennis";
  66.     int max_sessions = 100;
  67.     int rmtPort = 7000;
  68.     int lclPort = 5000;
  69.     int apSize = 160;
  70.     int npSize = 160;
  71.     int numPkts = 10000;
  72.     TimeTracker T(cerr);
  73.     if (argc == 1)
  74.     {
  75.         cout << "Usage: ./maxRtpSessions host sessions rmt_start_port lcl_start_port num_packets" << endl;
  76.         return 0;
  77.     } 
  78.     else if (argc == 6)
  79.     {
  80.         strcpy( rmtHost, argv[1] );
  81.         max_sessions = atoi( argv[2] );
  82.         rmtPort = atoi( argv[3] );
  83.         lclPort = atoi( argv[4] );
  84.         numPkts = atoi( argv[5] );
  85.     }
  86.     else
  87.     {
  88.         printf("Enter remote hostname: ");
  89.         scanf ("%s", rmtHost);
  90.         printf("Enter number of the max rtp sessions: ");
  91.         scanf ("%d", &max_sessions);
  92.         printf("Enter remote port number: ");
  93.         scanf ("%d", &rmtPort);
  94.         printf("Enter local port number: ");
  95.         scanf ("%d", &lclPort);
  96.         printf("Enter number of packets sending or receiving: ");
  97.         scanf ("%d", &numPkts);
  98.     }
  99.     pid_t pid;
  100.     int seqnum1 = 0;
  101.     int seqnum2 = 0;
  102.     for (int j=0; j < max_sessions; j++)
  103.     {
  104.         if ((pid = fork()) < 0)
  105.         {
  106.             cerr << "Fork failed." << endl;
  107.             return -1;
  108.         }
  109.         else if (pid == 0)
  110.         {
  111.             cout << "Get pid is: " << getpid() <<endl;
  112.             cout << "Creating rtp session " << j << endl;
  113.             RtpSession* stack = new RtpSession ( rmtHost, 
  114.                                      rmtPort + 2*j, lclPort + 2*j,
  115.                                      rmtPort + 2*j + 1, lclPort + 2*j + 1, 
  116.                                      rtpPayloadPCMU, rtpPayloadPCMU, 5);
  117.             RtpPacket* inPacket = NULL;
  118.         
  119.             stack->setApiFormat (rtpPayloadPCMU, apSize);
  120.             stack->setNetworkFormat (rtpPayloadPCMU, npSize);
  121.        
  122.             string filename = itos((unsigned int) j);
  123.             filename.append(".data");
  124.             ofstream file(filename.c_str(), ios::out);
  125.             if (!file)
  126.             {
  127.                 cerr << "Could not open file: " << filename << endl;
  128.                 return 3;
  129.             }
  130.             int i = 0;
  131.             while (i < (numPkts )) // assumming allowing 5 packets lost
  132.             {
  133. //                cerr << "?" << endl;
  134.                 // receive a packet
  135.                 inPacket = stack->receive ();
  136.                 if (inPacket)
  137.                 {
  138.                     seqnum2 = inPacket->getSequence();
  139.                     if (i == 0) 
  140.                     {
  141.                         T.startTime();
  142.                         seqnum1 = inPacket->getSequence();
  143.                     }
  144.                     i++;
  145. //                    cerr << "get packets: " << i << endl;
  146.                     file.write(inPacket->getPayloadLoc(), inPacket->getPayloadUsage());
  147.                     delete inPacket;
  148.                     inPacket = NULL;
  149.                 }
  150.                 else
  151.                 {
  152.                 }
  153.         
  154.                 // send and receive RTCP packet
  155.                 if (stack->checkIntervalRTCP())
  156.                 {
  157.                     stack->transmitRTCP();
  158.                 }
  159.                 if (stack->receiveRTCP() == 1)
  160.                 {
  161.                    break;
  162.                 }
  163.              
  164.                 usleep(1*1000);
  165.             }
  166.         
  167.             stack->transmitRTCPBYE();
  168.         
  169.             if (inPacket)
  170.             {
  171.                 delete inPacket;
  172.                 inPacket = NULL;
  173.             }
  174.         
  175.             delete stack;
  176.             stack = NULL;
  177.             T.endTime();
  178.             cout << "get packets: " << i << endl;
  179.             cerr << " start seq num = " << seqnum1 << endl;
  180.             cout << "   end seq num = " << seqnum2 << endl;
  181.             cout << "End rtp session " << j << endl << endl;
  182.             return 3;
  183. //            break;
  184.         }
  185.     }
  186.     return 0;
  187. }