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 1 : inline Pipe::Pipe()
28 1 : : m_handle( 0 )
29 1 : {}
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 2 : inline Pipe::Pipe(const ::rtl::OUString& strName, oslPipeOptions Options,const Security & rSecurity)
38 2 : : m_handle( osl_createPipe( strName.pData, Options , rSecurity.getHandle() ) )
39 2 : {}
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 0 : inline Pipe::Pipe( oslPipe pipe, __sal_NoAcquire )
51 0 : : m_handle ( pipe )
52 0 : {}
53 :
54 :
55 2 : inline Pipe::Pipe(oslPipe pipe)
56 2 : : m_handle( pipe )
57 : {
58 2 : if( m_handle )
59 2 : osl_acquirePipe( m_handle );
60 2 : }
61 :
62 :
63 5 : inline Pipe::~Pipe()
64 : {
65 5 : if( m_handle )
66 4 : osl_releasePipe( m_handle );
67 5 : }
68 :
69 :
70 2 : inline bool Pipe::create( const ::rtl::OUString & strName,
71 : oslPipeOptions Options, const Security &rSec )
72 : {
73 2 : *this = Pipe( strName, Options, rSec );
74 2 : 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 2 : inline Pipe& SAL_CALL Pipe::operator= (const Pipe& pipe)
85 : {
86 2 : *this = pipe.getHandle();
87 2 : return *this;
88 : }
89 :
90 :
91 2 : inline Pipe & SAL_CALL Pipe::operator=( oslPipe pipe)
92 : {
93 2 : if( pipe )
94 1 : osl_acquirePipe( pipe );
95 2 : if( m_handle )
96 0 : osl_releasePipe( m_handle );
97 2 : m_handle = pipe;
98 2 : return *this;
99 : }
100 :
101 :
102 2 : inline bool SAL_CALL Pipe::is() const
103 : {
104 2 : 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 1 : inline void SAL_CALL Pipe::close()
115 : {
116 1 : osl_closePipe( m_handle );
117 1 : }
118 :
119 :
120 0 : inline void SAL_CALL Pipe::clear()
121 : {
122 0 : if( m_handle )
123 : {
124 0 : osl_releasePipe( m_handle );
125 0 : m_handle = 0;
126 : }
127 0 : }
128 :
129 :
130 0 : inline oslPipeError SAL_CALL Pipe::accept(StreamPipe& Connection)
131 : {
132 0 : Connection = StreamPipe( osl_acceptPipe( m_handle ), SAL_NO_ACQUIRE);
133 0 : if( Connection.is() )
134 0 : return osl_Pipe_E_None;
135 : else
136 0 : return getError();
137 : }
138 :
139 :
140 0 : inline oslPipeError SAL_CALL Pipe::getError() const
141 : {
142 0 : return osl_getLastPipeError( 0 );
143 : }
144 :
145 :
146 4 : inline oslPipe SAL_CALL Pipe::getHandle() const
147 : {
148 4 : return m_handle;
149 : }
150 :
151 :
152 0 : inline StreamPipe::StreamPipe(){}
153 :
154 :
155 2 : inline StreamPipe::StreamPipe(oslPipe hPipe)
156 2 : : Pipe( hPipe )
157 : {
158 2 : }
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 0 : inline StreamPipe::StreamPipe( oslPipe pipe, __sal_NoAcquire noacquire )
176 0 : : Pipe( pipe , noacquire )
177 0 : {}
178 :
179 :
180 0 : inline sal_Int32 SAL_CALL StreamPipe::read(void* pBuffer, sal_Int32 n) const
181 : {
182 0 : return osl_readPipe( m_handle, pBuffer, n );
183 : }
184 :
185 :
186 1 : inline sal_Int32 SAL_CALL StreamPipe::write(const void* pBuffer, sal_Int32 n) const
187 : {
188 1 : return osl_writePipe( m_handle, pBuffer , n );
189 : }
190 :
191 :
192 2 : inline sal_Int32 SAL_CALL StreamPipe::recv(void* pBuffer, sal_Int32 BytesToRead) const
193 : {
194 2 : 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: */
|