VirtualBox

source: vbox/trunk/include/iprt/aiomgr.h@ 58802

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

include: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.5 KB
Line 
1/** @file
2 * IPRT - Async I/O manager.
3 */
4
5/*
6 * Copyright (C) 2013-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_aiomgr_h
27#define ___iprt_aiomgr_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/sg.h>
32
33/**
34 * Completion callback.
35 *
36 * @returns nothing.
37 * @param hAioMgrFile File handle the completed request was for.
38 * @param rcReq Status code of the completed request.
39 * @param pvUser Opaque user data given when the request was initiated.
40 */
41typedef DECLCALLBACK(void) FNRTAIOMGRREQCOMPLETE(RTAIOMGRFILE hAioMgrFile, int rcReq, void *pvUser);
42/** Pointer to a completion callback. */
43typedef FNRTAIOMGRREQCOMPLETE *PFNRTAIOMGRREQCOMPLETE;
44
45RT_C_DECLS_BEGIN
46
47/**
48 * Create a new async I/O manager.
49 *
50 * @returns IPRT statuse code.
51 * @param phAioMgr Where to store the new async I/O manager handle on success.
52 * @param cReqsMax Maximum number of async I/O requests expected.
53 * Use UINT32_MAX to make it grow dynamically when required.
54 */
55RTDECL(int) RTAioMgrCreate(PRTAIOMGR phAioMgr, uint32_t cReqsMax);
56
57/**
58 * Retain a async I/O manager handle.
59 *
60 * @returns New reference count on success, UINT32_MAX on failure.
61 * @param hAioMgr The async I/O manager to retain.
62 */
63RTDECL(uint32_t) RTAioMgrRetain(RTAIOMGR hAioMgr);
64
65/**
66 * Releases a async I/O manager handle.
67 *
68 * @returns New reference count on success (0 if closed), UINT32_MAX on failure.
69 * @param hAioMgr The async I/O manager to release.
70 */
71RTDECL(uint32_t) RTAioMgrRelease(RTAIOMGR hAioMgr);
72
73/**
74 * Assign a given file handle to the given async I/O manager.
75 *
76 * @returns IPRT status code.
77 * @param hAioMgr Async I/O manager handle.
78 * @param hFile File handle to assign.
79 * @param pfnReqComplete Callback to execute whenever a request for the
80 * file completed.
81 * @param phAioMgrFile Where to store the newly created async I/O manager
82 * handle on success.
83 * @param pvUser Opaque user data for this file handle.
84 *
85 * @note This function increases the reference count of the given async I/O manager
86 * by 1.
87 */
88RTDECL(int) RTAioMgrFileCreate(RTAIOMGR hAioMgr, RTFILE hFile, PFNRTAIOMGRREQCOMPLETE pfnReqComplete,
89 void *pvUser, PRTAIOMGRFILE phAioMgrFile);
90
91/**
92 * Retain a async I/O manager file handle.
93 *
94 * @returns New reference count on success, UINT32_MAX on failure.
95 * @param hAioMgrFile The file handle to retain.
96 */
97RTDECL(uint32_t) RTAioMgrFileRetain(RTAIOMGRFILE hAioMgrFile);
98
99/**
100 * Releases a async I/O manager file handle.
101 *
102 * @returns New reference count on success (0 if closed), UINT32_MAX on failure.
103 * @param hAioMgrFile The file handle to release.
104 */
105RTDECL(uint32_t) RTAioMgrFileRelease(RTAIOMGRFILE hAioMgrFile);
106
107/**
108 * Return opaque user data passed on creation.
109 *
110 * @returns Opaque user data or NULL if the handle is invalid.
111 * @param hAioMgrFile The file handle.
112 */
113RTDECL(void *) RTAioMgrFileGetUser(RTAIOMGRFILE hAioMgrFile);
114
115/**
116 * Initiate a read request from the given file handle.
117 *
118 * @returns IPRT status code.
119 * @param hAioMgrFile The file handle to read from.
120 * @param off Start offset to read from.
121 * @param pSgBuf S/G buffer to read into. The buffer is advanced
122 * by the amount of data to read.
123 * @param cbRead Number of bytes to read.
124 * @param pvUser Opaque user data given in the completion callback.
125 */
126RTDECL(int) RTAioMgrFileRead(RTAIOMGRFILE hAioMgrFile, RTFOFF off,
127 PRTSGBUF pSgBuf, size_t cbRead, void *pvUser);
128
129/**
130 * Initiate a write request to the given file handle.
131 *
132 * @returns IPRT status code.
133 * @param hAioMgrFile The file handle to write to.
134 * @param off Start offset to write to.
135 * @param pSgBuf S/G buffer to read from. The buffer is advanced
136 * by the amount of data to write.
137 * @param cbWrite Number of bytes to write.
138 * @param pvUser Opaque user data given in the completion callback.
139 */
140RTDECL(int) RTAioMgrFileWrite(RTAIOMGRFILE hAioMgrFile, RTFOFF off,
141 PRTSGBUF pSgBuf, size_t cbWrite, void *pvUser);
142
143/**
144 * Initiates a flush request for the given file handle.
145 *
146 * @returns IPRT statuse code.
147 * @param hAioMgrFile The file handle to write to.
148 * @param pvUser Opaque user data given in the completion callback.
149 */
150RTDECL(int) RTAioMgrFileFlush(RTAIOMGRFILE hAioMgrFile, void *pvUser);
151
152RT_C_DECLS_END
153
154#endif
155
Note: See TracBrowser for help on using the repository browser.

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