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

流媒体/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 tpjack_cxx_Version =
  51.     "$Id: tpjack.cxx,v 1.5 2000/12/18 23:44:52 bko Exp $";
  52. /*----------------------------< Defines >-------------------------------*/
  53. /* stdlib */
  54. #include <stdio.h>
  55. //#include <varargs.h>
  56. #include <sys/socket.h>
  57. #include <sys/ioctl.h>
  58. #include <sys/time.h>
  59. #include <sys/types.h>
  60. #include <fcntl.h>
  61. #include <netinet/in.h>
  62. #include <arpa/inet.h>
  63. #include <netdb.h>
  64. #include <unistd.h>
  65. #include <errno.h>
  66. #include <syslog.h>
  67. #include <fstream>
  68. /* other */
  69. #include "ixjuser.h"
  70. #include "RtpSession.hxx"
  71. /*----------------------------< Includes >------------------------------*/
  72. /*---------------------------< Definitions >----------------------------*/
  73. #define LINELEN 128
  74. #define BUFSIZE 256
  75. /*--------------------------< Declarations >----------------------------*/
  76. /*------------------------< Global Variables >--------------------------*/
  77. static char szDevice[32];
  78. /*-------------------------< Local Variables >--------------------------*/
  79. int RTPjack(char *host, int nPort);
  80. int connectTCP(char *host, char *service);
  81. int connectsock(char *host, char *service, char *protocol);
  82. /*----------------------------------------------------------------------*/
  83. /*----------------------------------------------------------------------*/
  84. int
  85. main(int argc, char *argv[])
  86. {
  87.     char *host = "localhost";
  88.     int nPort = 7000;
  89.     switch (argc)
  90.     {
  91.         //    case 2:
  92.         //      strncpy(szDevice,argv[1],sizeof(szDevice));
  93.         //      break;
  94.         case 3:
  95.         // strncpy(szDevice,"/dev/ixj0",sizeof(szDevice));
  96.         strncpy(szDevice, "/dev/phone0", sizeof(szDevice));
  97.         host = argv[1];
  98.         nPort = atoi(argv[2]);
  99.         break;
  100.         //    case 4:
  101.         //      strncpy(szDevice,argv[1],sizeof(szDevice));
  102.         //      host=argv[2];
  103.         //      nPort=atoi(argv[3]);
  104.         break;
  105.         default:
  106.         //      fprintf(stderr,"usage: tpjack dev [host [port]]n");
  107.         //      fprintf(stderr," - dev is probably /dev/ixj0n");
  108.         fprintf(stderr, "usage: tpjack host portn");
  109.         exit(1);
  110.     }
  111.     RTPjack(host, nPort);
  112.     exit(0);
  113. }
  114. /*----------------------------------------------------------------------*/
  115. int
  116. RTPjack(char *host, int nPort)
  117. {
  118.     char serv[16];
  119.     int fd, read_fd, send_fd, readc_fd, sendc_fd, cc, ixj, hook, retval, nMax;
  120.     fd_set rfds;
  121.     struct timeval tv;
  122.     printf("Opening Phone Jack (%s)n", szDevice);
  123.     ixj = open(szDevice, O_RDWR);
  124.     if (ixj < 0)
  125.     {
  126.         printf("Error opening voice card, exitingn");
  127.         return -1;
  128.     }
  129.     printf("Waiting for hookswitchn");
  130.     hook = ioctl(ixj, IXJCTL_HOOKSTATE);
  131.     while (hook != 1)
  132.     {
  133.         hook = ioctl(ixj, IXJCTL_HOOKSTATE);
  134.     }
  135.     /* connect the signalling port */
  136.     sprintf(serv, "%d", nPort);
  137.     fd = connectTCP(host, serv);
  138.     printf("connecting to %sn", host);
  139.     printf(" - signalling on port %d with tcp socket %dn", nPort, fd);
  140.     /* connect the data ports */
  141.     RtpSession dataStack (host, nPort + 1, nPort + 1, nPort + 2, nPort + 2);
  142.     RtpPacket* outPacket = dataStack.createPacket (BUFSIZE);
  143.     RtpPacket* inPacket = NULL;
  144.     /* setting SDES information */
  145.     //RtcpTransmitter* rtcpTran = dataStack.getRtcpTran();
  146.     //rtcpTran->setSDES_LOC("Left computer");
  147.     read_fd = (dataStack.getRtpRecv())->getSocketFD();
  148.     send_fd = (dataStack.getRtpTran())->getSocketFD();
  149.     readc_fd = (dataStack.getRtcpRecv())->getSocketFD();
  150.     sendc_fd = (dataStack.getRtcpTran())->getSocketFD();
  151.     if ((read_fd < 0) || (send_fd < 0) || (readc_fd < 0) || (sendc_fd < 0))
  152.         printf("failure on RTP socketn");
  153.     printf(" - incoming voice on port %d using RTP sockets %d and %dn",
  154.            nPort, read_fd, send_fd);
  155.     tv.tv_sec = 0;
  156.     tv.tv_usec = 300;
  157.     if (nMax < ixj) nMax = ixj;
  158.     if (nMax < fd) nMax = fd;
  159.     if (nMax < read_fd) nMax = read_fd;
  160.     if (nMax < send_fd) nMax = send_fd;
  161.     if (nMax < readc_fd) nMax = readc_fd;
  162.     if (nMax < sendc_fd) nMax = sendc_fd;
  163.     nMax++;
  164.     /* do the loop */
  165.     if (read_fd != 0)
  166.     {
  167.         ioctl(ixj, IXJCTL_AEC_START);
  168.         ioctl(ixj, IXJCTL_PLAY_CODEC, ULAW);
  169.         ioctl(ixj, IXJCTL_REC_CODEC, ULAW);
  170.         ioctl(ixj, IXJCTL_REC_START);
  171.         ioctl(ixj, IXJCTL_PLAY_START);
  172.         while (hook = ioctl(ixj, IXJCTL_HOOKSTATE))
  173.         {
  174.             FD_ZERO(&rfds);
  175.             FD_SET(read_fd, &rfds);
  176.             FD_SET(readc_fd, &rfds);
  177.             FD_SET(ixj, &rfds);
  178.             tv.tv_sec = 0;
  179.             tv.tv_usec = 300;
  180.             retval = select(nMax, &rfds, NULL, NULL, &tv);
  181.             if (FD_ISSET(ixj, &rfds))                    // read data from phone
  182.             {
  183.                 cc = read(ixj, outPacket->getPayloadLoc(), 240);
  184.                 if (cc > 0)
  185.                 {
  186.                     assert (cc == 240);
  187.                     outPacket->setPayloadUsage(cc);
  188.                     outPacket->setRtpTime(dataStack.getPrevRtpTime() + 240);
  189.                     dataStack.transmit(outPacket);
  190.                 }
  191.             }
  192.             if (FD_ISSET(read_fd, &rfds))                // read data from network
  193.             {
  194.                 inPacket = dataStack.receive();
  195.                 if (inPacket)
  196.                 {
  197.                     assert (inPacket->getPayloadUsage() == 240);
  198.                     write(ixj, inPacket->getPayloadLoc(), inPacket->getPayloadUsage());
  199.                 }
  200.                 else
  201.                 {
  202.                     /* if(errno!=EAGAIN)
  203.                        {
  204.                          ioctl(ixj, IXJCTL_REC_STOP);
  205.                          ioctl(ixj, IXJCTL_PLAY_STOP);
  206.                          ioctl(ixj, IXJCTL_AEC_STOP);
  207.                          printf("echo read: %sn",sys_errlist[errno]);
  208.                        }  */
  209.                 }
  210.             }
  211.             dataStack.processRTCP();
  212.         } /* end while() */
  213.     }
  214.     dataStack.transmitRTCPBYE();
  215.     close(read_fd);
  216.     close(send_fd);
  217.     close(readc_fd);
  218.     close(sendc_fd);
  219.     close(fd);
  220.     close(ixj);
  221.     return 0;
  222. }
  223. /*----------------------------------------------------------------------*/
  224. int
  225. connectTCP(char *host, char *service)
  226. {
  227.     return connectsock(host, service, "tcp");
  228. }
  229. /*----------------------------------------------------------------------*/
  230. int
  231. connectsock(char *host, char *service, char *protocol)
  232. {
  233.     struct hostent *phe;
  234.     struct servent *pse;
  235.     struct protoent *ppe;
  236.     struct sockaddr_in sin;
  237.     int s, type;
  238.     bzero((char *)&sin, sizeof(sin));
  239.     sin.sin_family = AF_INET;
  240.     if (pse = getservbyname(service, protocol))
  241.         sin.sin_port = pse->s_port;
  242.     else if ((sin.sin_port = htons((u_short)atoi(service))) == 0)
  243.         printf("can't get "%s" service entryn", service);
  244.     if (phe = gethostbyname(host))
  245.         bcopy(phe->h_addr, (char *) & sin.sin_addr, phe->h_length);
  246.     else if ((sin.sin_addr.s_addr = inet_addr(host)) == INADDR_NONE)
  247.         printf("can't get "%s" host entryn", host);
  248.     if ((ppe = getprotobyname(protocol)) == 0)
  249.         printf("can't get "%s" protocol entryn", protocol);
  250.     if (strcmp(protocol, "udp") == 0)
  251.         type = SOCK_DGRAM;
  252.     else
  253.         type = SOCK_STREAM;
  254.     s = socket(PF_INET, type, ppe->p_proto);
  255.     if (s < 0)
  256.         printf("can't create socket: %sn", sys_errlist[errno]);
  257.     if (connect(s, (struct sockaddr *)&sin, sizeof(sin)) < 0)
  258.         printf("can't connect to %s.%s: %sn", host, service, sys_errlist[errno]);
  259.     return s;
  260. }
  261. /*----------------------------------------------------------------------*/