19 #ifndef INCLUDED_OSL_PIPE_HXX 20 #define INCLUDED_OSL_PIPE_HXX 42 : m_handle(
osl_createPipe( strName.pData, Options , rSecurity.getHandle() ) )
47 : m_handle( pipe.m_handle )
53 #if defined LIBO_INTERNAL_ONLY 55 other.m_handle =
nullptr;
82 *
this =
Pipe( strName, Options, rSec );
89 *
this =
Pipe( strName, Options );
99 #if defined LIBO_INTERNAL_ONLY 105 other.m_handle =
nullptr;
152 if( Connection.
is() )
181 :
Pipe( strName, Options , rSec )
186 :
Pipe( strName, Options )
190 :
Pipe( pipe , noacquire )
212 inline sal_Int32 SAL_CALL
StreamPipe::send(
const void* pBuffer, sal_Int32 BytesToSend)
const SAL_DLLPUBLIC void osl_acquirePipe(oslPipe Pipe)
Increases the refcount of the pipe.
void close()
Closes the pipe.
Definition: pipe.hxx:133
Pipe & operator=(const Pipe &pipe)
Assignment operator.
Definition: pipe.hxx:93
void clear()
releases the underlying handle
Definition: pipe.hxx:139
oslPipeError accept(StreamPipe &Connection)
Accept connection on an existing pipe.
Definition: pipe.hxx:149
SAL_DLLPUBLIC sal_Int32 osl_sendPipe(oslPipe Pipe, const void *pBuffer, sal_Int32 BufferSize)
SAL_DLLPUBLIC sal_Int32 osl_receivePipe(oslPipe Pipe, void *pBuffer, sal_Int32 BufferSize)
sal_Int32 read(void *pBuffer, sal_Int32 n) const
Retrieves n bytes from the stream and copies them into pBuffer.
Definition: pipe.hxx:194
bool operator==(const Pipe &rPipe) const
Definition: pipe.hxx:127
SAL_DLLPUBLIC oslPipe osl_acceptPipe(oslPipe Pipe)
oslPipe getHandle() const
Definition: pipe.hxx:165
SAL_DLLPUBLIC void osl_releasePipe(oslPipe Pipe)
Decreases the refcount of the pipe.
bool create(const ::rtl::OUString &strName, oslPipeOptions Options, const Security &rSec)
Creates an insecure pipe that is accessible for all users with the given attributes.
Definition: pipe.hxx:79
__sal_NoAcquire
Definition: types.h:370
sal_Int32 recv(void *pBuffer, sal_Int32 BytesToRead) const
Tries to receives BytesToRead data from the connected pipe,.
Definition: pipe.hxx:206
bool is() const
Definition: pipe.hxx:121
sal_uInt32 oslPipeOptions
Pipe creation options.
Definition: pipe.h:53
definition of a no acquire enum for ctors
Definition: types.h:374
Pipe()
Does not create a pipe.
Definition: pipe.hxx:31
SAL_DLLPUBLIC oslPipeError osl_getLastPipeError(oslPipe Pipe)
Encapsulate security information for one user.
Definition: security_decl.hxx:34
A pipe to send or receive a stream of data.
Definition: pipe_decl.hxx:147
SAL_DLLPUBLIC sal_Int32 osl_writePipe(oslPipe Pipe, const void *pBuffer, sal_Int32 BufferSize)
Writes blocking onto the pipe.
SAL_DLLPUBLIC sal_Int32 osl_readPipe(oslPipe Pipe, void *pBuffer, sal_Int32 BufferSize)
Reads blocking from the pipe.
Definition: condition.hxx:28
sal_Int32 send(const void *pBuffer, sal_Int32 BytesToSend) const
Tries to sends BytesToSend data from the connected pipe.
Definition: pipe.hxx:212
~Pipe()
Destructor.
Definition: pipe.hxx:72
oslPipe m_handle
Definition: pipe_decl.hxx:35
oslPipeError getError() const
Delivers a constant describing the last error for the pipe system.
Definition: pipe.hxx:159
StreamPipe()
Creates an unattached pipe.
Definition: pipe.hxx:171
Represents a pipe.
Definition: pipe_decl.hxx:32
oslPipeError
Definition: pipe.h:34
SAL_DLLPUBLIC oslPipe osl_createPipe(rtl_uString *strPipeName, oslPipeOptions Options, oslSecurity Security)
Create or open a pipe.
sal_Int32 write(const void *pBuffer, sal_Int32 n) const
Writes n bytes from pBuffer to the stream.
Definition: pipe.hxx:200
struct oslPipeImpl * oslPipe
Definition: pipe.h:57
SAL_DLLPUBLIC void osl_closePipe(oslPipe Pipe)
Close the pipe.