1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
// Copyright © Tavian Barnes <tavianator@tavianator.com>
// SPDX-License-Identifier: 0BSD
/**
* Asynchronous I/O queues.
*/
#ifndef BFS_IOQ_H
#define BFS_IOQ_H
#include "bfs.h"
#include "dir.h"
#include "stat.h"
#include <stddef.h>
/**
* An queue of asynchronous I/O operations.
*/
struct ioq;
/**
* I/O queue operations.
*/
enum ioq_op {
/** ioq_nop(). */
IOQ_NOP,
/** ioq_close(). */
IOQ_CLOSE,
/** ioq_opendir(). */
IOQ_OPENDIR,
/** ioq_closedir(). */
IOQ_CLOSEDIR,
/** ioq_stat(). */
IOQ_STAT,
};
/**
* ioq_nop() types.
*/
enum ioq_nop_type {
/** A lightweight nop that avoids syscalls. */
IOQ_NOP_LIGHT,
/** A heavyweight nop that involves a syscall. */
IOQ_NOP_HEAVY,
};
/**
* An I/O queue entry.
*/
struct ioq_ent {
/** The I/O operation. */
cache_align enum ioq_op op;
/** The return value (on success) or negative error code (on failure). */
int result;
/** Arbitrary user data. */
void *ptr;
/** Operation-specific arguments. */
union {
/** ioq_nop() args. */
struct ioq_nop {
enum ioq_nop_type type;
} nop;
/** ioq_close() args. */
struct ioq_close {
int fd;
} close;
/** ioq_opendir() args. */
struct ioq_opendir {
struct bfs_dir *dir;
const char *path;
int dfd;
enum bfs_dir_flags flags;
} opendir;
/** ioq_closedir() args. */
struct ioq_closedir {
struct bfs_dir *dir;
} closedir;
/** ioq_stat() args. */
struct ioq_stat {
const char *path;
struct bfs_stat *buf;
void *xbuf;
int dfd;
enum bfs_stat_flags flags;
} stat;
};
};
/**
* Create an I/O queue.
*
* @depth
* The maximum depth of the queue.
* @nthreads
* The maximum number of background threads.
* @return
* The new I/O queue, or NULL on failure.
*/
struct ioq *ioq_create(size_t depth, size_t nthreads);
/**
* Check the remaining capacity of a queue.
*/
size_t ioq_capacity(const struct ioq *ioq);
/**
* A no-op, for benchmarking.
*
* @ioq
* The I/O queue.
* @type
* The type of operation to perform.
* @ptr
* An arbitrary pointer to associate with the request.
* @return
* 0 on success, or -1 on failure.
*/
int ioq_nop(struct ioq *ioq, enum ioq_nop_type type, void *ptr);
/**
* Asynchronous close().
*
* @ioq
* The I/O queue.
* @fd
* The fd to close.
* @ptr
* An arbitrary pointer to associate with the request.
* @return
* 0 on success, or -1 on failure.
*/
int ioq_close(struct ioq *ioq, int fd, void *ptr);
/**
* Asynchronous bfs_opendir().
*
* @ioq
* The I/O queue.
* @dir
* The allocated directory.
* @dfd
* The base file descriptor.
* @path
* The path to open, relative to dfd.
* @flags
* Flags that control which directory entries are listed.
* @ptr
* An arbitrary pointer to associate with the request.
* @return
* 0 on success, or -1 on failure.
*/
int ioq_opendir(struct ioq *ioq, struct bfs_dir *dir, int dfd, const char *path, enum bfs_dir_flags flags, void *ptr);
/**
* Asynchronous bfs_closedir().
*
* @ioq
* The I/O queue.
* @dir
* The directory to close.
* @ptr
* An arbitrary pointer to associate with the request.
* @return
* 0 on success, or -1 on failure.
*/
int ioq_closedir(struct ioq *ioq, struct bfs_dir *dir, void *ptr);
/**
* Asynchronous bfs_stat().
*
* @ioq
* The I/O queue.
* @dfd
* The base file descriptor.
* @path
* The path to stat, relative to dfd.
* @flags
* Flags that affect the lookup.
* @buf
* A place to store the stat buffer, if successful.
* @ptr
* An arbitrary pointer to associate with the request.
* @return
* 0 on success, or -1 on failure.
*/
int ioq_stat(struct ioq *ioq, int dfd, const char *path, enum bfs_stat_flags flags, struct bfs_stat *buf, void *ptr);
/**
* Submit any buffered requests.
*/
void ioq_submit(struct ioq *ioq);
/**
* Pop a response from the queue.
*
* @ioq
* The I/O queue.
* @return
* The next response, or NULL.
*/
struct ioq_ent *ioq_pop(struct ioq *ioq, bool block);
/**
* Free a queue entry.
*
* @ioq
* The I/O queue.
* @ent
* The entry to free.
*/
void ioq_free(struct ioq *ioq, struct ioq_ent *ent);
/**
* Cancel any pending I/O operations.
*/
void ioq_cancel(struct ioq *ioq);
/**
* Stop and destroy an I/O queue.
*/
void ioq_destroy(struct ioq *ioq);
#endif // BFS_IOQ_H
|