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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
|
/**
* D header file to interface with the
* $(HTTP pubs.opengroup.org/onlinepubs/9699919799/basedefs/aio.h.html, Posix AIO API).
*
* Copyright: Copyright D Language Foundation 2018.
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Authors: $(HTTPS github.com/darredevil, Alexandru Razvan Caciulescu)
*/
module core.sys.posix.aio;
import core.sys.posix.signal;
import core.sys.posix.sys.types;
version (OSX)
version = Darwin;
else version (iOS)
version = Darwin;
else version (TVOS)
version = Darwin;
else version (WatchOS)
version = Darwin;
version (Posix):
extern (C):
@system:
@nogc:
nothrow:
version (CRuntime_Glibc)
{
import core.sys.posix.config;
struct aiocb
{
int aio_fildes;
int aio_lio_opcode;
int aio_reqprio;
void* aio_buf; //volatile
size_t aio_nbytes;
sigevent aio_sigevent;
aiocb* __next_prio;
int __abs_prio;
int __policy;
int __error_code;
ssize_t __return_value;
off_t aio_offset;
ubyte[32] __glibc_reserved;
}
static if (__USE_LARGEFILE64)
{
struct aiocb64
{
int aio_fildes;
int aio_lio_opcode;
int aio_reqprio;
void* aio_buf; //volatile
size_t aio_nbytes;
sigevent aio_sigevent;
aiocb* __next_prio;
int __abs_prio;
int __policy;
int __error_code;
ssize_t __return_value;
off_t aio_offset;
ubyte[32] __glibc_reserved;
}
}
}
else version (CRuntime_Bionic)
{
// Bionic does not define aiocb.
}
else version (CRuntime_Musl)
{
// https://git.musl-libc.org/cgit/musl/tree/include/aio.h
struct aiocb
{
int aio_fildes;
int aio_lio_opcode;
int aio_reqprio;
void* aio_buf; //volatile
size_t aio_nbytes;
sigevent aio_sigevent;
void* __td;
int[2] __lock;
int __err; //volatile
ssize_t __ret;
off_t aio_offset;
void* __next;
void* __prev;
ubyte[32-2*(void*).sizeof] __dummy4;
}
}
else version (CRuntime_UClibc)
{
// UClibc does not implement aiocb.
}
else version (Darwin)
{
struct aiocb
{
int aio_filedes;
off_t aio_offset;
void* aio_buf; // volatile
size_t aio_nbytes;
int reqprio;
sigevent aio_sigevent;
int aio_lio_opcode;
}
}
else version (FreeBSD)
{
struct __aiocb_private
{
long status;
long error;
void* kernelinfo;
}
struct aiocb
{
int aio_fildes;
off_t aio_offset;
void* aio_buf; // volatile
size_t aio_nbytes;
private int[2] __spare;
private void* _spare2__;
int aio_lio_opcode;
int aio_reqprio;
private __aiocb_private _aiocb_private;
sigevent aio_sigevent;
}
version = BSD_Posix;
}
else version (NetBSD)
{
struct aiocb
{
off_t aio_offset;
void* aio_buf; // volatile
size_t aio_nbytes;
int aio_fildes;
int aio_lio_opcode;
int aio_reqprio;
sigevent aio_sigevent;
private int _state;
private int _errno;
private ssize_t _retval;
}
version = BSD_Posix;
}
else version (OpenBSD)
{
// OpenBSD does not define aiocb.
}
else version (DragonFlyBSD)
{
struct aiocb
{
int aio_fildes;
off_t aio_offset;
void* aio_buf; // volatile
size_t aio_nbytes;
sigevent aio_sigevent;
int aio_lio_opcode;
int aio_reqprio;
private int _aio_val;
private int _aio_err;
}
version = BSD_Posix;
}
else version (Solaris)
{
struct aio_result_t
{
ssize_t aio_return;
int aio_errno;
}
struct aiocb
{
int aio_fildes;
void* aio_buf; // volatile
size_t aio_nbytes;
off_t aio_offset;
int aio_reqprio;
sigevent aio_sigevent;
int aio_lio_opcode;
aio_result_t aio_resultp;
int aio_state;
int[1] aio__pad;
}
}
else
static assert(false, "Unsupported platform");
/* Return values of cancelation function. */
version (CRuntime_Glibc)
{
enum
{
AIO_CANCELED,
AIO_NOTCANCELED,
AIO_ALLDONE
}
}
else version (CRuntime_Musl)
{
enum
{
AIO_CANCELED,
AIO_NOTCANCELED,
AIO_ALLDONE
}
}
else version (Darwin)
{
enum
{
AIO_ALLDONE = 0x1,
AIO_CANCELED = 0x2,
AIO_NOTCANCELED = 0x4,
}
}
else version (Solaris)
{
enum
{
AIO_CANCELED,
AIO_ALLDONE,
AIO_NOTCANCELED
}
}
else version (BSD_Posix)
{
enum
{
AIO_CANCELED,
AIO_NOTCANCELED,
AIO_ALLDONE
}
}
/* Operation codes for `aio_lio_opcode'. */
version (CRuntime_Glibc)
{
enum
{
LIO_READ,
LIO_WRITE,
LIO_NOP
}
}
else version (CRuntime_Musl)
{
enum
{
LIO_READ,
LIO_WRITE,
LIO_NOP
}
}
else version (Darwin)
{
enum
{
LIO_NOP = 0x0,
LIO_READ = 0x1,
LIO_WRITE = 0x2,
}
}
else version (Solaris)
{
enum
{
LIO_NOP,
LIO_READ,
LIO_WRITE,
}
}
else version (BSD_Posix)
{
enum
{
LIO_NOP,
LIO_WRITE,
LIO_READ
}
}
/* Synchronization options for `lio_listio' function. */
version (CRuntime_Glibc)
{
enum
{
LIO_WAIT,
LIO_NOWAIT
}
}
else version (CRuntime_Musl)
{
enum
{
LIO_WAIT,
LIO_NOWAIT
}
}
else version (Darwin)
{
enum
{
LIO_NOWAIT = 0x1,
LIO_WAIT = 0x2,
}
}
else version (Solaris)
{
enum
{
LIO_NOWAIT,
LIO_WAIT
}
}
else version (BSD_Posix)
{
enum
{
LIO_NOWAIT,
LIO_WAIT
}
}
/* Functions implementing POSIX AIO. */
version (CRuntime_Glibc)
{
static if (__USE_LARGEFILE64)
{
int aio_read64(aiocb64* aiocbp);
int aio_write64(aiocb64* aiocbp);
int aio_fsync64(int op, aiocb64* aiocbp);
int aio_error64(const(aiocb64)* aiocbp);
ssize_t aio_return64(aiocb64* aiocbp);
int aio_suspend64(const(aiocb64*)* aiocb_list, int nitems, const(timespec)* timeout);
int aio_cancel64(int fd, aiocb64* aiocbp);
int lio_listio64(int mode, const(aiocb64*)* aiocb_list, int nitems, sigevent* sevp);
alias aio_read = aio_read64;
alias aio_write = aio_write64;
alias aio_fsync = aio_fsync64;
alias aio_error = aio_error64;
alias aio_return = aio_return64;
alias aio_suspend = aio_suspend64;
alias aio_cancel = aio_cancel64;
alias lio_listio = lio_listio64;
}
else
{
int aio_read(aiocb* aiocbp);
int aio_write(aiocb* aiocbp);
int aio_fsync(int op, aiocb* aiocbp);
int aio_error(const(aiocb)* aiocbp);
ssize_t aio_return(aiocb* aiocbp);
int aio_suspend(const(aiocb*)* aiocb_list, int nitems, const(timespec)* timeout);
int aio_cancel(int fd, aiocb* aiocbp);
int lio_listio(int mode, const(aiocb*)* aiocb_list, int nitems, sigevent* sevp);
}
}
else version (CRuntime_Bionic)
{
// Bionic does not implement aio.h
}
else version (CRuntime_UClibc)
{
// UClibc does not implement aio.h
}
else version (OpenBSD)
{
// OpenBSD does not implement aio.h
}
else
{
int aio_read(aiocb* aiocbp);
int aio_write(aiocb* aiocbp);
int aio_fsync(int op, aiocb* aiocbp);
int aio_error(const(aiocb)* aiocbp);
ssize_t aio_return(aiocb* aiocbp);
int aio_suspend(const(aiocb*)* aiocb_list, int nitems, const(timespec)* timeout);
int aio_cancel(int fd, aiocb* aiocbp);
int lio_listio(int mode, const(aiocb*)* aiocb_list, int nitems, sigevent* sevp);
}
/* Functions outside/extending POSIX requirement. */
version (CRuntime_Glibc)
{
static if (_GNU_SOURCE)
{
/* To customize the implementation one can use the following struct. */
struct aioinit
{
int aio_threads;
int aio_num;
int aio_locks;
int aio_usedba;
int aio_debug;
int aio_numusers;
int aio_idle_time;
int aio_reserved;
}
void aio_init(const(aioinit)* init);
}
}
else version (FreeBSD)
{
int aio_waitcomplete(aiocb** aiocb_list, const(timespec)* timeout);
int aio_mlock(aiocb* aiocbp);
}
else version (DragonFlyBSD)
{
int aio_waitcomplete(aiocb** aiocb_list, const(timespec)* timeout);
}
|