LCOV - code coverage report
Current view: top level - libreoffice/solver/unxlngi6.pro/inc/osl - pipe.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 52 65 80.0 %
Date: 2012-12-17 Functions: 17 21 81.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : #ifndef _OSL_PIPE_HXX_
      20             : #define _OSL_PIPE_HXX_
      21             : 
      22             : #include <osl/pipe_decl.hxx>
      23             : 
      24             : namespace osl
      25             : {
      26             :     //______________________________________________________________________________
      27         105 :     inline Pipe::Pipe()
      28         105 :         : m_handle( 0 )
      29         105 :     {}
      30             : 
      31             :     //______________________________________________________________________________
      32             :     inline Pipe::Pipe(const ::rtl::OUString& strName, oslPipeOptions Options )
      33             :         : m_handle( osl_createPipe( strName.pData, Options , 0 ) )
      34             :     {}
      35             : 
      36             :     //______________________________________________________________________________
      37          57 :     inline Pipe::Pipe(const ::rtl::OUString& strName, oslPipeOptions Options,const Security & rSecurity)
      38          57 :         : m_handle( osl_createPipe( strName.pData, Options , rSecurity.getHandle() ) )
      39          57 :     {}
      40             : 
      41             :     //______________________________________________________________________________
      42             :     inline Pipe::Pipe(const Pipe& pipe )
      43             :         : m_handle( pipe.m_handle )
      44             :     {
      45             :         if( m_handle )
      46             :             osl_acquirePipe( m_handle );
      47             :     }
      48             : 
      49             :     //______________________________________________________________________________
      50          24 :     inline Pipe::Pipe( oslPipe pipe, __sal_NoAcquire )
      51          24 :         : m_handle ( pipe )
      52          24 :     {}
      53             : 
      54             :     //______________________________________________________________________________
      55           0 :     inline Pipe::Pipe(oslPipe pipe)
      56           0 :         : m_handle( pipe )
      57             :     {
      58           0 :         if( m_handle )
      59           0 :             osl_acquirePipe( m_handle );
      60           0 :     }
      61             : 
      62             :     //______________________________________________________________________________
      63         186 :     inline Pipe::~Pipe()
      64             :     {
      65         186 :         if( m_handle )
      66          64 :             osl_releasePipe( m_handle );
      67         186 :     }
      68             : 
      69             :     //______________________________________________________________________________
      70          49 :     inline sal_Bool Pipe::create( const ::rtl::OUString & strName,
      71             :                                   oslPipeOptions Options, const Security &rSec )
      72             :     {
      73          49 :         *this = Pipe( strName, Options, rSec );
      74          49 :         return is();
      75             :     }
      76             : 
      77             :     //______________________________________________________________________________
      78             :     inline sal_Bool Pipe::create( const ::rtl::OUString & strName, oslPipeOptions Options  )
      79             :     {
      80             :         *this = Pipe( strName, Options );
      81             :         return is();
      82             :     }
      83             :     //______________________________________________________________________________
      84         105 :     inline Pipe& SAL_CALL Pipe::operator= (const Pipe& pipe)
      85             :     {
      86         105 :         *this = pipe.getHandle();
      87         105 :         return *this;
      88             :     }
      89             : 
      90             :     //______________________________________________________________________________
      91         105 :     inline Pipe & SAL_CALL Pipe::operator=( oslPipe pipe)
      92             :     {
      93         105 :         if( pipe )
      94          48 :             osl_acquirePipe( pipe );
      95         105 :         if( m_handle )
      96           0 :             osl_releasePipe( m_handle );
      97         105 :         m_handle = pipe;
      98         105 :         return *this;
      99             :     }
     100             : 
     101             :     //______________________________________________________________________________
     102         105 :     inline sal_Bool SAL_CALL Pipe::is() const
     103             :     {
     104         105 :         return m_handle != 0;
     105             :     }
     106             : 
     107             :     //______________________________________________________________________________
     108             :     inline sal_Bool SAL_CALL Pipe::operator==( const Pipe& rPipe ) const
     109             :     {
     110             :         return m_handle == rPipe.m_handle;
     111             :     }
     112             : 
     113             :     //______________________________________________________________________________
     114          32 :     inline void SAL_CALL Pipe::close()
     115             :     {
     116          32 :         osl_closePipe( m_handle );
     117          32 :     }
     118             : 
     119             :     //______________________________________________________________________________
     120           8 :     inline void SAL_CALL Pipe::clear()
     121             :     {
     122           8 :         if( m_handle )
     123             :         {
     124           8 :             osl_releasePipe( m_handle );
     125           8 :             m_handle = 0;
     126             :         }
     127           8 :     }
     128             : 
     129             :     //______________________________________________________________________________
     130          24 :     inline oslPipeError SAL_CALL Pipe::accept(StreamPipe& Connection)
     131             :     {
     132          24 :         Connection = StreamPipe( osl_acceptPipe( m_handle ), SAL_NO_ACQUIRE);
     133          24 :         if( Connection.is() )
     134           8 :             return osl_Pipe_E_None;
     135             :         else
     136          16 :             return getError();
     137             :     }
     138             : 
     139             :     //______________________________________________________________________________
     140          57 :     inline oslPipeError SAL_CALL Pipe::getError() const
     141             :     {
     142          57 :         return osl_getLastPipeError( 0 );
     143             :     }
     144             : 
     145             :     //______________________________________________________________________________
     146         105 :     inline oslPipe SAL_CALL Pipe::getHandle() const
     147             :     {
     148         105 :         return m_handle;
     149             :     }
     150             : 
     151             :     //______________________________________________________________________________
     152          65 :     inline StreamPipe::StreamPipe(){}
     153             : 
     154             :     //______________________________________________________________________________
     155           0 :     inline StreamPipe::StreamPipe(oslPipe hPipe)
     156           0 :         : Pipe( hPipe )
     157             :     {
     158           0 :     }
     159             : 
     160             :     //______________________________________________________________________________
     161             :     inline StreamPipe::StreamPipe(const ::rtl::OUString& strName, oslPipeOptions Options, const Security &rSec )
     162             :         : Pipe( strName, Options , rSec )
     163             :     {}
     164             : 
     165             :     //______________________________________________________________________________
     166             :     inline StreamPipe::StreamPipe(const ::rtl::OUString& strName, oslPipeOptions Options  )
     167             :         : Pipe( strName, Options )
     168             :     {}
     169             : 
     170             :     //______________________________________________________________________________
     171             :     inline StreamPipe::StreamPipe(const StreamPipe& aPipe)
     172             :         : Pipe( aPipe )
     173             :     {}
     174             :     //______________________________________________________________________________
     175          24 :     inline StreamPipe::StreamPipe( oslPipe pipe, __sal_NoAcquire noacquire )
     176          24 :         : Pipe( pipe , noacquire )
     177          24 :     {}
     178             : 
     179             :     //______________________________________________________________________________
     180        4010 :     inline sal_Int32 SAL_CALL StreamPipe::read(void* pBuffer, sal_Int32 n) const
     181             :     {
     182        4010 :         return osl_readPipe( m_handle, pBuffer, n );
     183             :     }
     184             : 
     185             :     //______________________________________________________________________________
     186        1882 :     inline sal_Int32 SAL_CALL StreamPipe::write(const void* pBuffer, sal_Int32 n) const
     187             :     {
     188        1882 :         return osl_writePipe( m_handle, pBuffer , n );
     189             :     }
     190             : 
     191             :     //______________________________________________________________________________
     192           0 :     inline sal_Int32 SAL_CALL StreamPipe::recv(void* pBuffer, sal_Int32 BytesToRead) const
     193             :     {
     194           0 :         return osl_receivePipe( m_handle, pBuffer , BytesToRead );
     195             :     }
     196             : 
     197             :     //______________________________________________________________________________
     198           0 :     inline sal_Int32 SAL_CALL StreamPipe::send(const void* pBuffer, sal_Int32 BytesToSend) const
     199             :     {
     200           0 :         return osl_sendPipe( m_handle, pBuffer , BytesToSend );
     201             :     }
     202             : 
     203             : }
     204             : #endif
     205             : 
     206             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10