LCOV - code coverage report
Current view: top level - include/osl - pipe.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 52 63 82.5 %
Date: 2014-04-11 Functions: 17 20 85.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 INCLUDED_OSL_PIPE_HXX
      20             : #define INCLUDED_OSL_PIPE_HXX
      21             : 
      22             : #include <osl/pipe_decl.hxx>
      23             : 
      24             : namespace osl
      25             : {
      26             : 
      27         463 :     inline Pipe::Pipe()
      28         463 :         : m_handle( 0 )
      29         463 :     {}
      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         141 :     inline Pipe::Pipe(const ::rtl::OUString& strName, oslPipeOptions Options,const Security & rSecurity)
      38         141 :         : m_handle( osl_createPipe( strName.pData, Options , rSecurity.getHandle() ) )
      39         141 :     {}
      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         177 :     inline Pipe::Pipe( oslPipe pipe, __sal_NoAcquire )
      51         177 :         : m_handle ( pipe )
      52         177 :     {}
      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         777 :     inline Pipe::~Pipe()
      64             :     {
      65         777 :         if( m_handle )
      66         453 :             osl_releasePipe( m_handle );
      67         777 :     }
      68             : 
      69             : 
      70          92 :     inline bool Pipe::create( const ::rtl::OUString & strName,
      71             :                                   oslPipeOptions Options, const Security &rSec )
      72             :     {
      73          92 :         *this = Pipe( strName, Options, rSec );
      74          92 :         return is();
      75             :     }
      76             : 
      77             : 
      78             :     inline bool Pipe::create( const ::rtl::OUString & strName, oslPipeOptions Options  )
      79             :     {
      80             :         *this = Pipe( strName, Options );
      81             :         return is();
      82             :     }
      83             : 
      84         463 :     inline Pipe& SAL_CALL Pipe::operator= (const Pipe& pipe)
      85             :     {
      86         463 :         *this = pipe.getHandle();
      87         463 :         return *this;
      88             :     }
      89             : 
      90             : 
      91         463 :     inline Pipe & SAL_CALL Pipe::operator=( oslPipe pipe)
      92             :     {
      93         463 :         if( pipe )
      94         325 :             osl_acquirePipe( pipe );
      95         463 :         if( m_handle )
      96           0 :             osl_releasePipe( m_handle );
      97         463 :         m_handle = pipe;
      98         463 :         return *this;
      99             :     }
     100             : 
     101             : 
     102         463 :     inline bool SAL_CALL Pipe::is() const
     103             :     {
     104         463 :         return m_handle != 0;
     105             :     }
     106             : 
     107             : 
     108             :     inline bool SAL_CALL Pipe::operator==( const Pipe& rPipe ) const
     109             :     {
     110             :         return m_handle == rPipe.m_handle;
     111             :     }
     112             : 
     113             : 
     114         258 :     inline void SAL_CALL Pipe::close()
     115             :     {
     116         258 :         osl_closePipe( m_handle );
     117         258 :     }
     118             : 
     119             : 
     120          48 :     inline void SAL_CALL Pipe::clear()
     121             :     {
     122          48 :         if( m_handle )
     123             :         {
     124          48 :             osl_releasePipe( m_handle );
     125          48 :             m_handle = 0;
     126             :         }
     127          48 :     }
     128             : 
     129             : 
     130         177 :     inline oslPipeError SAL_CALL Pipe::accept(StreamPipe& Connection)
     131             :     {
     132         177 :         Connection = StreamPipe( osl_acceptPipe( m_handle ), SAL_NO_ACQUIRE);
     133         177 :         if( Connection.is() )
     134          49 :             return osl_Pipe_E_None;
     135             :         else
     136         128 :             return getError();
     137             :     }
     138             : 
     139             : 
     140         138 :     inline oslPipeError SAL_CALL Pipe::getError() const
     141             :     {
     142         138 :         return osl_getLastPipeError( 0 );
     143             :     }
     144             : 
     145             : 
     146         463 :     inline oslPipe SAL_CALL Pipe::getHandle() const
     147             :     {
     148         463 :         return m_handle;
     149             :     }
     150             : 
     151             : 
     152         189 :     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         177 :     inline StreamPipe::StreamPipe( oslPipe pipe, __sal_NoAcquire noacquire )
     176         177 :         : Pipe( pipe , noacquire )
     177         177 :     {}
     178             : 
     179             : 
     180      514599 :     inline sal_Int32 SAL_CALL StreamPipe::read(void* pBuffer, sal_Int32 n) const
     181             :     {
     182      514599 :         return osl_readPipe( m_handle, pBuffer, n );
     183             :     }
     184             : 
     185             : 
     186      207597 :     inline sal_Int32 SAL_CALL StreamPipe::write(const void* pBuffer, sal_Int32 n) const
     187             :     {
     188      207597 :         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             :     inline sal_Int32 SAL_CALL StreamPipe::send(const void* pBuffer, sal_Int32 BytesToSend) const
     199             :     {
     200             :         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