VirtualBox

source: vbox/trunk/include/iprt/localipc.h@ 58293

Last change on this file since 58293 was 58293, checked in by vboxsync, 9 years ago

localipc.h: Correct read/write parameter names.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.8 KB
Line 
1/** @file
2 * IPRT - Local IPC Server & Client.
3 */
4
5/*
6 * Copyright (C) 2006-2015 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_localipc_h
27#define ___iprt_localipc_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/thread.h>
32
33#ifdef IN_RING0
34# error "There are no RTLocalIpc APIs available Ring-0 Host Context!"
35#endif
36
37
38RT_C_DECLS_BEGIN
39
40/** @defgroup grp_rt_localipc RTLocalIpc - Local IPC
41 * @ingroup grp_rt
42 * @{
43 */
44
45/** Handle to a local IPC server instance. */
46typedef struct RTLOCALIPCSERVERINT *RTLOCALIPCSERVER;
47/** Pointer to a local IPC server handle. */
48typedef RTLOCALIPCSERVER *PRTLOCALIPCSERVER;
49/** Local IPC server handle nil value. */
50#define NIL_RTLOCALIPCSERVER ((RTLOCALIPCSERVER)0)
51
52/** Handle to a local ICP session instance. */
53typedef struct RTLOCALIPCSESSIONINT *RTLOCALIPCSESSION;
54/** Pointer to a local ICP session handle. */
55typedef RTLOCALIPCSESSION *PRTLOCALIPCSESSION;
56/** Local ICP session handle nil value. */
57#define NIL_RTLOCALIPCSESSION ((RTLOCALIPCSESSION)0)
58
59
60
61/**
62 * Create a local IPC server.
63 *
64 * @returns IPRT status code.
65 * @retval VINF_SUCCESS on success and *phServer containing the instance handle.
66 *
67 * @param phServer Where to put the server instance handle.
68 * @param pszName The server name. This must be unique and not include
69 * any special chars or slashes. It will be morphed into a
70 * unique platform specific identifier.
71 * @param fFlags Flags, see RTLOCALIPC_FLAGS_*.
72 */
73RTDECL(int) RTLocalIpcServerCreate(PRTLOCALIPCSERVER phServer, const char *pszName, uint32_t fFlags);
74
75/** @name RTLocalIpcServerCreate flags
76 * @{ */
77/** The server can handle multiple sessions. */
78#define RTLOCALIPC_FLAGS_MULTI_SESSION RT_BIT_32(0)
79/** The mask of valid flags. */
80#define RTLOCALIPC_FLAGS_VALID_MASK UINT32_C(0x00000001)
81/** @} */
82
83/**
84 * Destroys a local IPC server.
85 *
86 * @returns IPRT status code.
87 * @retval VINF_SUCCESS if still other references or NIL.
88 * @retval VINF_OBJECT_DESTROYED if actually destroyed.
89 *
90 * @param hServer The server handle. The nil value is quietly ignored (VINF_SUCCESS).
91 */
92RTDECL(int) RTLocalIpcServerDestroy(RTLOCALIPCSERVER hServer);
93
94/**
95 * Listen for clients.
96 *
97 * @returns IPRT status code.
98 * @retval VINF_SUCCESS on success and *phClientSession containing the session handle.
99 * @retval VERR_CANCELLED if the listening was interrupted by RTLocalIpcServerCancel().
100 *
101 * @param hServer The server handle.
102 * @param phClientSession Where to store the client session handle on success.
103 *
104 */
105RTDECL(int) RTLocalIpcServerListen(RTLOCALIPCSERVER hServer, PRTLOCALIPCSESSION phClientSession);
106
107/**
108 * Cancel the current or subsequent RTLocalIpcServerListen call.
109 *
110 * @returns IPRT status code.
111 * @param hServer The server handle. The nil value is quietly ignored (VINF_SUCCESS).
112 */
113RTDECL(int) RTLocalIpcServerCancel(RTLOCALIPCSERVER hServer);
114
115
116/**
117 * Connects to a local IPC server.
118 *
119 * This is used a client process (or thread).
120 *
121 * @returns IPRT status code.
122 * @retval VINF_SUCCESS on success and *phSession holding the session handle.
123 *
124 * @param phSession Where to store the sesson handle on success.
125 * @param pszName The server name (see RTLocalIpcServerCreate for details).
126 * @param fFlags Flags. Current undefined, pass 0.
127 */
128RTDECL(int) RTLocalIpcSessionConnect(PRTLOCALIPCSESSION phSession, const char *pszName, uint32_t fFlags);
129
130
131/**
132 * Closes the local IPC session.
133 *
134 * This can be used with sessions created by both RTLocalIpcSessionConnect
135 * and RTLocalIpcServerListen.
136 *
137 * @returns IPRT status code.
138 * @retval VINF_SUCCESS if still other references or NIL.
139 * @retval VINF_OBJECT_DESTROYED if session destroyed.
140 *
141 * @param hSession The session handle. The nil value is quietly ignored (VINF_SUCCESS).
142 */
143RTDECL(int) RTLocalIpcSessionClose(RTLOCALIPCSESSION hSession);
144
145/**
146 * Receive data from the other end of an local IPC session.
147 *
148 * This will block if there isn't any data.
149 *
150 * @returns IPRT status code.
151 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
152 *
153 * @param hSession The session handle.
154 * @param pvBuf Where to store the data.
155 * @param cbToRead How much to read. This is exact request if
156 * pcbRead is NULL, otherwise it's an upper limit.
157 * @param pcbRead Optional argument for indicating a partial read
158 * and returning the number of bytes actually read.
159 */
160RTDECL(int) RTLocalIpcSessionRead(RTLOCALIPCSESSION hSession, void *pvBuf, size_t cbToRead, size_t *pcbRead);
161
162/**
163 * Send data to the other end of an local IPC session.
164 *
165 * This may or may not block until the data is received by the other party,
166 * this is an implementation detail. If you want to make sure that the data
167 * has been received you should always call RTLocalIpcSessionFlush().
168 *
169 * @returns IPRT status code.
170 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
171 *
172 * @param hSession The session handle.
173 * @param pvBuf The data to write.
174 * @param cbToWrite How much to write.
175 */
176RTDECL(int) RTLocalIpcSessionWrite(RTLOCALIPCSESSION hSession, const void *pvBuf, size_t cbToWrite);
177
178/**
179 * Flush any buffered data and (perhaps) wait for the other party to receive it.
180 *
181 * The waiting for the other party to receive the data is
182 * implementation dependent.
183 *
184 * @returns IPRT status code.
185 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
186 *
187 * @param hSession The session handle.
188 */
189RTDECL(int) RTLocalIpcSessionFlush(RTLOCALIPCSESSION hSession);
190
191/**
192 * Wait for data to become ready for reading or for the
193 * session to be disconnected.
194 *
195 * @returns IPRT status code.
196 * @retval VINF_SUCCESS when there is data to read.
197 * @retval VERR_TIMEOUT if no data became available within the specified period (@a cMillies)
198 * @retval VERR_BROKEN_PIPE if the session was disconnected.
199 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
200 *
201 * @param hSession The session handle.
202 * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT
203 * to wait forever.
204 *
205 * @remark VERR_INTERRUPTED will not be returned. If this is desired at some later point
206 * add a RTLocalIpcSessionWaitForDataNoResume() variant like we're using elsewhere.
207 */
208RTDECL(int) RTLocalIpcSessionWaitForData(RTLOCALIPCSESSION hSession, uint32_t cMillies);
209
210/**
211 * Cancells a pending or subsequent operation.
212 *
213 * Not all methods are cancellable, only those which are specfied
214 * returning VERR_CANCELLED. The others are assumed to not be blocking
215 * for ever and ever.
216 *
217 * @returns IPRT status code.
218 *
219 * @param hSession The session handle.
220 */
221RTDECL(int) RTLocalIpcSessionCancel(RTLOCALIPCSESSION hSession);
222
223/**
224 * Query the process ID of the other party.
225 *
226 * This is an optional feature which may not be implemented, so don't
227 * depend on it and check for VERR_NOT_SUPPORTED.
228 *
229 * @returns IPRT status code.
230 * @retval VINF_SUCCESS and *pProcess on success.
231 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
232 * @retval VERR_NOT_SUPPORTED and *pProcess = NIL_RTPROCESS if not supported.
233 *
234 * @param hSession The session handle.
235 * @param pProcess Where to store the process ID.
236 */
237RTDECL(int) RTLocalIpcSessionQueryProcess(RTLOCALIPCSESSION hSession, PRTPROCESS pProcess);
238
239/**
240 * Query the user ID of the other party.
241 *
242 * This is an optional feature which may not be implemented, so don't
243 * depend on it and check for VERR_NOT_SUPPORTED.
244 *
245 * @returns IPRT status code.
246 * @retval VINF_SUCCESS and *pUid on success.
247 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
248 * @retval VERR_NOT_SUPPORTED and *pUid = NIL_RTUID if not supported.
249 *
250 * @param hSession The session handle.
251 * @param pUid Where to store the user ID on success.
252 */
253RTDECL(int) RTLocalIpcSessionQueryUserId(RTLOCALIPCSESSION hSession, PRTUID pUid);
254
255/**
256 * Query the group ID of the other party.
257 *
258 * This is an optional feature which may not be implemented, so don't
259 * depend on it and check for VERR_NOT_SUPPORTED.
260 *
261 * @returns IPRT status code.
262 * @retval VINF_SUCCESS and *pUid on success.
263 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
264 * @retval VERR_NOT_SUPPORTED and *pGid = NIL_RTUID if not supported.
265 *
266 * @param hSession The session handle.
267 * @param pGid Where to store the group ID on success.
268 */
269RTDECL(int) RTLocalIpcSessionQueryGroupId(RTLOCALIPCSESSION hSession, PRTGID pGid);
270
271/** @} */
272RT_C_DECLS_END
273
274#endif
275
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette