]> git.proxmox.com Git - mirror_qemu.git/blame - qemu-aio.h
aio: add Win32 implementation
[mirror_qemu.git] / qemu-aio.h
CommitLineData
a76bab49
AL
1/*
2 * QEMU aio implementation
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14#ifndef QEMU_AIO_H
15#define QEMU_AIO_H
16
17#include "qemu-common.h"
a915f4bc 18#include "qemu-queue.h"
9958c351 19#include "event_notifier.h"
a76bab49 20
85e8dab1
PB
21typedef struct BlockDriverAIOCB BlockDriverAIOCB;
22typedef void BlockDriverCompletionFunc(void *opaque, int ret);
23
24typedef struct AIOPool {
25 void (*cancel)(BlockDriverAIOCB *acb);
26 int aiocb_size;
27 BlockDriverAIOCB *free_aiocb;
28} AIOPool;
29
30struct BlockDriverAIOCB {
31 AIOPool *pool;
32 BlockDriverState *bs;
33 BlockDriverCompletionFunc *cb;
34 void *opaque;
35 BlockDriverAIOCB *next;
36};
37
38void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
39 BlockDriverCompletionFunc *cb, void *opaque);
40void qemu_aio_release(void *p);
41
f627aab1
PB
42typedef struct AioHandler AioHandler;
43typedef void QEMUBHFunc(void *opaque);
44typedef void IOHandler(void *opaque);
45
46typedef struct AioContext {
a915f4bc
PB
47 /* The list of registered AIO handlers */
48 QLIST_HEAD(, AioHandler) aio_handlers;
49
50 /* This is a simple lock used to protect the aio_handlers list.
51 * Specifically, it's used to ensure that no callbacks are removed while
52 * we're walking and dispatching callbacks.
53 */
54 int walking_handlers;
55
f627aab1
PB
56 /* Anchor of the list of Bottom Halves belonging to the context */
57 struct QEMUBH *first_bh;
58
59 /* A simple lock used to protect the first_bh list, and ensure that
60 * no callbacks are removed while we're walking and dispatching callbacks.
61 */
62 int walking_bh;
63} AioContext;
64
a76bab49 65/* Returns 1 if there are still outstanding AIO requests; 0 otherwise */
9958c351 66typedef int (AioFlushEventNotifierHandler)(EventNotifier *e);
a76bab49 67
f627aab1
PB
68/**
69 * aio_context_new: Allocate a new AioContext.
70 *
71 * AioContext provide a mini event-loop that can be waited on synchronously.
72 * They also provide bottom halves, a service to execute a piece of code
73 * as soon as possible.
74 */
75AioContext *aio_context_new(void);
76
77/**
78 * aio_bh_new: Allocate a new bottom half structure.
79 *
80 * Bottom halves are lightweight callbacks whose invocation is guaranteed
81 * to be wait-free, thread-safe and signal-safe. The #QEMUBH structure
82 * is opaque and must be allocated prior to its use.
83 */
84QEMUBH *aio_bh_new(AioContext *ctx, QEMUBHFunc *cb, void *opaque);
85
86/**
87 * aio_bh_poll: Poll bottom halves for an AioContext.
88 *
89 * These are internal functions used by the QEMU main loop.
90 */
91int aio_bh_poll(AioContext *ctx);
92void aio_bh_update_timeout(AioContext *ctx, uint32_t *timeout);
93
94/**
95 * qemu_bh_schedule: Schedule a bottom half.
96 *
97 * Scheduling a bottom half interrupts the main loop and causes the
98 * execution of the callback that was passed to qemu_bh_new.
99 *
100 * Bottom halves that are scheduled from a bottom half handler are instantly
101 * invoked. This can create an infinite loop if a bottom half handler
102 * schedules itself.
103 *
104 * @bh: The bottom half to be scheduled.
105 */
106void qemu_bh_schedule(QEMUBH *bh);
107
108/**
109 * qemu_bh_cancel: Cancel execution of a bottom half.
110 *
111 * Canceling execution of a bottom half undoes the effect of calls to
112 * qemu_bh_schedule without freeing its resources yet. While cancellation
113 * itself is also wait-free and thread-safe, it can of course race with the
114 * loop that executes bottom halves unless you are holding the iothread
115 * mutex. This makes it mostly useless if you are not holding the mutex.
116 *
117 * @bh: The bottom half to be canceled.
118 */
119void qemu_bh_cancel(QEMUBH *bh);
120
121/**
122 *qemu_bh_delete: Cancel execution of a bottom half and free its resources.
123 *
124 * Deleting a bottom half frees the memory that was allocated for it by
125 * qemu_bh_new. It also implies canceling the bottom half if it was
126 * scheduled.
127 *
128 * @bh: The bottom half to be deleted.
129 */
130void qemu_bh_delete(QEMUBH *bh);
131
a76bab49
AL
132/* Flush any pending AIO operation. This function will block until all
133 * outstanding AIO operations have been completed or cancelled. */
a915f4bc 134void aio_flush(AioContext *ctx);
a76bab49 135
cd9ba1eb
PB
136/* Return whether there are any pending callbacks from the GSource
137 * attached to the AioContext.
138 *
139 * This is used internally in the implementation of the GSource.
140 */
141bool aio_pending(AioContext *ctx);
142
7c0628b2
PB
143/* Progress in completing AIO work to occur. This can issue new pending
144 * aio as a result of executing I/O completion or bh callbacks.
bcdc1857 145 *
7c0628b2
PB
146 * If there is no pending AIO operation or completion (bottom half),
147 * return false. If there are pending bottom halves, return true.
148 *
149 * If there are no pending bottom halves, but there are pending AIO
150 * operations, it may not be possible to make any progress without
151 * blocking. If @blocking is true, this function will wait until one
152 * or more AIO events have completed, to ensure something has moved
153 * before returning.
154 *
155 * If @blocking is false, this function will also return false if the
156 * function cannot make any progress without blocking.
157 */
158bool aio_poll(AioContext *ctx, bool blocking);
a76bab49 159
9958c351
PB
160#ifdef CONFIG_POSIX
161/* Returns 1 if there are still outstanding AIO requests; 0 otherwise */
162typedef int (AioFlushHandler)(void *opaque);
163
a76bab49
AL
164/* Register a file descriptor and associated callbacks. Behaves very similarly
165 * to qemu_set_fd_handler2. Unlike qemu_set_fd_handler2, these callbacks will
166 * be invoked when using either qemu_aio_wait() or qemu_aio_flush().
167 *
168 * Code that invokes AIO completion functions should rely on this function
169 * instead of qemu_set_fd_handler[2].
170 */
a915f4bc
PB
171void aio_set_fd_handler(AioContext *ctx,
172 int fd,
173 IOHandler *io_read,
174 IOHandler *io_write,
175 AioFlushHandler *io_flush,
176 void *opaque);
9958c351
PB
177#endif
178
179/* Register an event notifier and associated callbacks. Behaves very similarly
180 * to event_notifier_set_handler. Unlike event_notifier_set_handler, these callbacks
181 * will be invoked when using either qemu_aio_wait() or qemu_aio_flush().
182 *
183 * Code that invokes AIO completion functions should rely on this function
184 * instead of event_notifier_set_handler.
185 */
a915f4bc
PB
186void aio_set_event_notifier(AioContext *ctx,
187 EventNotifier *notifier,
188 EventNotifierHandler *io_read,
189 AioFlushEventNotifierHandler *io_flush);
190
191/* Functions to operate on the main QEMU AioContext. */
192
193void qemu_aio_flush(void);
194bool qemu_aio_wait(void);
9958c351
PB
195void qemu_aio_set_event_notifier(EventNotifier *notifier,
196 EventNotifierHandler *io_read,
197 AioFlushEventNotifierHandler *io_flush);
a76bab49 198
a915f4bc
PB
199#ifdef CONFIG_POSIX
200void qemu_aio_set_fd_handler(int fd,
201 IOHandler *io_read,
202 IOHandler *io_write,
203 AioFlushHandler *io_flush,
204 void *opaque);
205#endif
206
a76bab49 207#endif