VirtualBox

source: vbox/trunk/include/VBox/pdmasynccompletion.h@ 21217

Last change on this file since 21217 was 21217, checked in by vboxsync, 15 years ago

include/VBox/*.h: Mark which components the header files relate to.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 12.8 KB
Line 
1/* $Id: pdmasynccompletion.h 21217 2009-07-04 14:26:39Z vboxsync $ */
2/** @file
3 * PDM - Pluggable Device Manager, Async I/O Completion. (VMM)
4 */
5
6/*
7 * Copyright (C) 2007-2009 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31#ifndef ___VBox_pdmasynccompletion_h
32#define ___VBox_pdmasynccompletion_h
33
34#include <VBox/types.h>
35#include <VBox/err.h>
36#include <iprt/assert.h>
37
38RT_C_DECLS_BEGIN
39
40/** @defgroup grp_pdm_async_completion The PDM Async I/O Completion API
41 * @ingroup grp_pdm
42 * @{
43 */
44
45/** Pointer to a PDM async completion template handle. */
46typedef struct PDMASYNCCOMPLETIONTEMPLATE *PPDMASYNCCOMPLETIONTEMPLATE;
47/** Pointer to a PDM async completion template handle pointer. */
48typedef PPDMASYNCCOMPLETIONTEMPLATE *PPPDMASYNCCOMPLETIONTEMPLATE;
49
50/** Pointer to a PDM async completion task handle. */
51typedef struct PDMASYNCCOMPLETIONTASK *PPDMASYNCCOMPLETIONTASK;
52/** Pointer to a PDM async completion task handle pointer. */
53typedef PPDMASYNCCOMPLETIONTASK *PPPDMASYNCCOMPLETIONTASK;
54
55/** Pointer to a PDM async completion endpoint handle. */
56typedef struct PDMASYNCCOMPLETIONENDPOINT *PPDMASYNCCOMPLETIONENDPOINT;
57/** Pointer to a PDM async completion endpoint handle pointer. */
58typedef PPDMASYNCCOMPLETIONENDPOINT *PPPDMASYNCCOMPLETIONENDPOINT;
59
60
61/**
62 * Completion callback for devices.
63 *
64 * @param pDevIns The device instance.
65 * @param pvUser User argument.
66 */
67typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEDEV(PPDMDEVINS pDevIns, void *pvUser);
68/** Pointer to a FNPDMASYNCCOMPLETEDEV(). */
69typedef FNPDMASYNCCOMPLETEDEV *PFNPDMASYNCCOMPLETEDEV;
70
71
72/**
73 * Completion callback for drivers.
74 *
75 * @param pDrvIns The driver instance.
76 * @param pvTemplateUser User argument given when creating the template.
77 * @param pvUser User argument given during request initiation.
78 */
79typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEDRV(PPDMDRVINS pDrvIns, void *pvTemplateUser, void *pvUser);
80/** Pointer to a FNPDMASYNCCOMPLETEDRV(). */
81typedef FNPDMASYNCCOMPLETEDRV *PFNPDMASYNCCOMPLETEDRV;
82
83
84/**
85 * Completion callback for USB devices.
86 *
87 * @param pUsbIns The USB device instance.
88 * @param pvUser User argument.
89 */
90typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEUSB(PPDMUSBINS pUsbIns, void *pvUser);
91/** Pointer to a FNPDMASYNCCOMPLETEUSB(). */
92typedef FNPDMASYNCCOMPLETEUSB *PFNPDMASYNCCOMPLETEUSB;
93
94
95/**
96 * Completion callback for internal.
97 *
98 * @param pVM Pointer to the shared VM structure.
99 * @param pvUser User argument for the task.
100 * @param pvUser2 User argument for the template.
101 */
102typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEINT(PVM pVM, void *pvUser, void *pvUser2);
103/** Pointer to a FNPDMASYNCCOMPLETEINT(). */
104typedef FNPDMASYNCCOMPLETEINT *PFNPDMASYNCCOMPLETEINT;
105
106
107/**
108 * Creates a async completion template for a device instance.
109 *
110 * The template is used when creating new completion tasks.
111 *
112 * @returns VBox status code.
113 * @param pVM Pointer to the shared VM structure.
114 * @param pDevIns The device instance.
115 * @param ppTemplate Where to store the template pointer on success.
116 * @param pfnCompleted The completion callback routine.
117 * @param pszDesc Description.
118 */
119VMMR3DECL(int) PDMR3AsyncCompletionTemplateCreateDevice(PVM pVM, PPDMDEVINS pDevIns, PPPDMASYNCCOMPLETIONTEMPLATE ppTemplate, PFNPDMASYNCCOMPLETEDEV pfnCompleted, const char *pszDesc);
120
121/**
122 * Creates a async completion template for a driver instance.
123 *
124 * The template is used when creating new completion tasks.
125 *
126 * @returns VBox status code.
127 * @param pVM Pointer to the shared VM structure.
128 * @param pDrvIns The driver instance.
129 * @param ppTemplate Where to store the template pointer on success.
130 * @param pfnCompleted The completion callback routine.
131 * @param pvTemplateUser Template user argument.
132 * @param pszDesc Description.
133 */
134VMMR3DECL(int) PDMR3AsyncCompletionTemplateCreateDriver(PVM pVM, PPDMDRVINS pDrvIns, PPPDMASYNCCOMPLETIONTEMPLATE ppTemplate, PFNPDMASYNCCOMPLETEDRV pfnCompleted, void *pvTemplateUser, const char *pszDesc);
135
136/**
137 * Creates a async completion template for a USB device instance.
138 *
139 * The template is used when creating new completion tasks.
140 *
141 * @returns VBox status code.
142 * @param pVM Pointer to the shared VM structure.
143 * @param pUsbIns The USB device instance.
144 * @param ppTemplate Where to store the template pointer on success.
145 * @param pfnCompleted The completion callback routine.
146 * @param pszDesc Description.
147 */
148VMMR3DECL(int) PDMR3AsyncCompletionTemplateCreateUsb(PVM pVM, PPDMUSBINS pUsbIns, PPPDMASYNCCOMPLETIONTEMPLATE ppTemplate, PFNPDMASYNCCOMPLETEUSB pfnCompleted, const char *pszDesc);
149
150/**
151 * Creates a async completion template for internally by the VMM.
152 *
153 * The template is used when creating new completion tasks.
154 *
155 * @returns VBox status code.
156 * @param pVM Pointer to the shared VM structure.
157 * @param ppTemplate Where to store the template pointer on success.
158 * @param pfnCompleted The completion callback routine.
159 * @param pvUser2 The 2nd user argument for the callback.
160 * @param pszDesc Description.
161 */
162VMMR3DECL(int) PDMR3AsyncCompletionTemplateCreateInternal(PVM pVM, PPPDMASYNCCOMPLETIONTEMPLATE ppTemplate, PFNPDMASYNCCOMPLETEINT pfnCompleted, void *pvUser2, const char *pszDesc);
163
164/**
165 * Destroys the specified async completion template.
166 *
167 * @returns VBox status codes:
168 * @retval VINF_SUCCESS on success.
169 * @retval VERR_PDM_ASYNC_TEMPLATE_BUSY if the template is still in use.
170 *
171 * @param pTemplate The template in question.
172 */
173VMMR3DECL(int) PDMR3AsyncCompletionTemplateDestroy(PPDMASYNCCOMPLETIONTEMPLATE pTemplate);
174
175/**
176 * Destroys all the specified async completion templates for the given device instance.
177 *
178 * @returns VBox status codes:
179 * @retval VINF_SUCCESS on success.
180 * @retval VERR_PDM_ASYNC_TEMPLATE_BUSY if one or more of the templates are still in use.
181 *
182 * @param pVM Pointer to the shared VM structure.
183 * @param pDevIns The device instance.
184 */
185VMMR3DECL(int) PDMR3AsyncCompletionTemplateDestroyDevice(PVM pVM, PPDMDEVINS pDevIns);
186
187/**
188 * Destroys all the specified async completion templates for the given driver instance.
189 *
190 * @returns VBox status codes:
191 * @retval VINF_SUCCESS on success.
192 * @retval VERR_PDM_ASYNC_TEMPLATE_BUSY if one or more of the templates are still in use.
193 *
194 * @param pVM Pointer to the shared VM structure.
195 * @param pDrvIns The driver instance.
196 */
197VMMR3DECL(int) PDMR3AsyncCompletionTemplateDestroyDriver(PVM pVM, PPDMDRVINS pDrvIns);
198
199/**
200 * Destroys all the specified async completion templates for the given USB device instance.
201 *
202 * @returns VBox status codes:
203 * @retval VINF_SUCCESS on success.
204 * @retval VERR_PDM_ASYNC_TEMPLATE_BUSY if one or more of the templates are still in use.
205 *
206 * @param pVM Pointer to the shared VM structure.
207 * @param pUsbIns The USB device instance.
208 */
209VMMR3DECL(int) PDMR3AsyncCompletionTemplateDestroyUsb(PVM pVM, PPDMUSBINS pUsbIns);
210
211
212/**
213 * Opens a file as a async completion endpoint.
214 *
215 * @returns VBox status code.
216 * @param ppEndpoint Where to store the opaque endpoint handle on success.
217 * @param pszFilename Path to the file which is to be opened. (UTF-8)
218 * @param fFlags Open flags, see grp_pdmacep_file_flags.
219 * @param pTemplate Handle to the completion callback template to use
220 * for this end point.
221 */
222VMMR3DECL(int) PDMR3AsyncCompletionEpCreateForFile(PPPDMASYNCCOMPLETIONENDPOINT ppEndpoint,
223 const char *pszFilename, uint32_t fFlags,
224 PPDMASYNCCOMPLETIONTEMPLATE pTemplate);
225
226/** @defgroup grp_pdmacep_file_flags Flags for PDMR3AsyncCompletionEpCreateForFile
227 * @{ */
228/** Open the file in read-only mode. */
229#define PDMACEP_FILE_FLAGS_READ_ONLY RT_BIT_32(0)
230/** whether file content should be cached by the endpoint. */
231#define PDMACEP_FILE_FLAGS_CACHING RT_BIT_32(1)
232/** @} */
233
234/**
235 * Closes a endpoint waiting for any pending tasks to finish.
236 *
237 * @returns nothing.
238 * @param pEndpoint Handle of the endpoint.
239 */
240VMMR3DECL(void) PDMR3AsyncCompletionEpClose(PPDMASYNCCOMPLETIONENDPOINT pEndpoint);
241
242/**
243 * Creates a read task on the given endpoint.
244 *
245 * @returns VBox status code.
246 * @param pEndpoint The file endpoint to read from.
247 * @param off Where to start reading from.
248 * @param paSegments Scatter gather list to store the data in.
249 * @param cSegments Number of segments in the list.
250 * @param cbRead The overall number of bytes to read.
251 * @param pvUser Opaque user data returned in the completion callback
252 * upon completion of the task.
253 * @param ppTask Where to store the task handle on success.
254 */
255VMMR3DECL(int) PDMR3AsyncCompletionEpRead(PPDMASYNCCOMPLETIONENDPOINT pEndpoint, RTFOFF off,
256 PCPDMDATASEG paSegments, size_t cSegments,
257 size_t cbRead, void *pvUser,
258 PPPDMASYNCCOMPLETIONTASK ppTask);
259
260/**
261 * Creates a write task on the given endpoint.
262 *
263 * @returns VBox status code.
264 * @param pEndpoint The file endpoint to write to.
265 * @param off Where to start writing at.
266 * @param paSegments Scatter gather list of the data to write.
267 * @param cSegments Number of segments in the list.
268 * @param cbWrite The overall number of bytes to write.
269 * @param pvUser Opaque user data returned in the completion callback
270 * upon completion of the task.
271 * @param ppTask Where to store the task handle on success.
272 */
273VMMR3DECL(int) PDMR3AsyncCompletionEpWrite(PPDMASYNCCOMPLETIONENDPOINT pEndpoint, RTFOFF off,
274 PCPDMDATASEG paSegments, size_t cSegments,
275 size_t cbWrite, void *pvUser,
276 PPPDMASYNCCOMPLETIONTASK ppTask);
277
278/**
279 * Creates a flush task on the given endpoint.
280 *
281 * Every read and write task initiated before the flush task is
282 * finished upon completion of this task.
283 *
284 * @returns VBox status code.
285 * @param pEndpoint The file endpoint to flush.
286 * @param pvUser Opaque user data returned in the completion callback
287 * upon completion of the task.
288 * @param ppTask Where to store the task handle on success.
289 */
290VMMR3DECL(int) PDMR3AsyncCompletionEpFlush(PPDMASYNCCOMPLETIONENDPOINT pEndpoint,
291 void *pvUser,
292 PPPDMASYNCCOMPLETIONTASK ppTask);
293
294/**
295 * Queries the size of an endpoint.
296 * Not that some endpoints may not support this and will return an error
297 * (sockets for example).
298 *
299 * @returns VBox status code.
300 * @retval VERR_NOT_SUPPORTED if the endpoint does not support this operation.
301 * @param pEndpoint The file endpoint.
302 * @param pcbSize Where to store the size of the endpoint.
303 */
304VMMR3DECL(int) PDMR3AsyncCompletionEpGetSize(PPDMASYNCCOMPLETIONENDPOINT pEndpoint,
305 uint64_t *pcbSize);
306
307/**
308 * Cancels a async completion task.
309 *
310 * If you want to use this method, you have to take great create to make sure
311 * you will never attempt cancel a task which has been completed. Since there is
312 * no reference counting or anything on the task it self, you have to serialize
313 * the cancelation and completion paths such that the aren't racing one another.
314 *
315 * @returns VBox status code
316 * @param pTask The Task to cancel.
317 */
318VMMR3DECL(int) PDMR3AsyncCompletionTaskCancel(PPDMASYNCCOMPLETIONTASK pTask);
319
320/** @} */
321
322RT_C_DECLS_END
323
324#endif
325
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use