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

流媒体/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 Pipe_cxx_Version = 
  51.     "$Id: Pipe.cxx,v 1.2 2001/06/29 05:36:28 bko Exp $";
  52. #if !defined(WIN32)
  53. #include "Pipe.hxx"
  54. #include "VLog.hxx"
  55. #include "SystemException.hxx"
  56. #include "VocalCommon.hxx"
  57. #include <string>
  58. #include <unistd.h>
  59. #include <cerrno>
  60. using Vocal::IO::Pipe;
  61. using Vocal::IO::FileDescriptor;
  62. using Vocal::IO::file_descriptor_t;
  63. using Vocal::Logging::VLog;
  64. using Vocal::ReturnCode;
  65. using Vocal::SUCCESS;
  66. Pipe::Pipe(
  67.     const file_descriptor_t  *   descriptors
  68. )
  69. throw ( Vocal::SystemException )
  70.     : readFD_(FileDescriptor::INVALID),
  71.      writeFD_(FileDescriptor::INVALID)
  72. {
  73.     const string    fn("Pipe::Pipe");
  74.     VLog         log(fn);
  75.     
  76.     VVERBOSE(log) << fn << ": this = 0x" << this << VVERBOSE_END(log);
  77.     
  78.     if ( descriptors != 0 )
  79.     {
  80.      readFD_.setFD(descriptors[0]);
  81. writeFD_.setFD(descriptors[1]);
  82.     }
  83.     else
  84.     {
  85.      int filedes[2];
  86. filedes[0] = filedes[1] = FileDescriptor::INVALID;
  87.      ReturnCode  rc = ::pipe(filedes);
  88. if ( rc != SUCCESS )
  89. {
  90.     throw Vocal::SystemException(fn + "on pipe(): " + strerror(errno),
  91.               __FILE__, __LINE__, errno);
  92. }
  93. readFD_.setFD(filedes[0]);
  94. writeFD_.setFD(filedes[1]);
  95.     }
  96.     VDEBUG(log) << fn << ": " << *this << VDEBUG_END(log);
  97. }
  98. Pipe::Pipe(
  99.     const FileDescriptor    &  readFd,
  100.     const FileDescriptor    & writeFd
  101. )
  102.     : readFD_(FileDescriptor::INVALID),
  103.      writeFD_(FileDescriptor::INVALID)
  104. {
  105.     const string    fn("Pipe::Pipe");
  106.     VLog         log(fn);
  107.     
  108.     VVERBOSE(log) << fn << ": this = 0x" << this << VVERBOSE_END(log);
  109.     
  110.     readFD_.setFD(readFd.getFD());
  111.     writeFD_.setFD(writeFd.getFD());
  112.     VDEBUG(log) << fn << ": " << *this << VDEBUG_END(log);
  113. }
  114. Pipe::~Pipe()
  115. throw ( Vocal::SystemException )
  116. {
  117.     const string    fn("Pipe::~Pipe");
  118.     VLog         log(fn);
  119.     
  120.     VVERBOSE(log) << fn << ": this = 0x" << this << VVERBOSE_END(log);
  121. }    
  122. FileDescriptor &    
  123. Pipe::operator[](size_t index)
  124. {
  125.     if ( index == 0 )
  126.     {
  127.      return ( readFD() );
  128.     }
  129.     
  130.     return ( writeFD() );
  131. }
  132. FileDescriptor &    
  133. Pipe::readFD()
  134. {
  135.     return ( readFD_ );
  136. }
  137. const FileDescriptor &    
  138. Pipe::readFD() const
  139. {
  140.     return ( readFD_ );
  141. }
  142. FileDescriptor &    
  143. Pipe::writeFD()
  144. {
  145.     return ( writeFD_ );
  146. }
  147. const FileDescriptor &    
  148. Pipe::writeFD() const
  149. {
  150.     return ( writeFD_ );
  151. }
  152. bool
  153. Pipe::operator==(const Pipe & src) const
  154. {
  155.     return ( readFD_ == src.readFD_ && writeFD_ == src.writeFD_ );
  156. }
  157. bool
  158. Pipe::operator<(const Pipe & src) const
  159. {
  160.     return  (  readFD_ < src.readFD_ 
  161.          || (   readFD_ == src.readFD_ && writeFD_ < src.writeFD_ )
  162.     );
  163. }
  164. ostream &       
  165. Pipe::writeTo(ostream & out) const
  166. {
  167.     return  (  out <<"pipe = { read_" << readFD_
  168.          << ", write_" << writeFD_ << " }"
  169.     );
  170. }
  171. #endif