mirror of https://github.com/postgres/postgres
Provide synchronous vectored file I/O routines. These map to preadv() and pwritev(), with fallback implementations for systems that don't have them. Also provide a wrapper pg_pwritev_with_retry() that automatically retries on short writes. Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us> Reviewed-by: Andres Freund <andres@anarazel.de> Discussion: https://postgr.es/m/CA%2BhUKGJA%2Bu-220VONeoREBXJ9P3S94Y7J%2BkqCnTYmahvZJwM%3Dg%40mail.gmail.compull/59/head
parent
01334c92fa
commit
13a021f3e8
@ -0,0 +1,59 @@ |
||||
/*-------------------------------------------------------------------------
|
||||
* |
||||
* pg_iovec.h |
||||
* Header for the vectored I/O functions in src/port/p{read,write}.c. |
||||
* |
||||
* Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group |
||||
* Portions Copyright (c) 1994, Regents of the University of California |
||||
* |
||||
* src/include/port/pg_iovec.h |
||||
* |
||||
*------------------------------------------------------------------------- |
||||
*/ |
||||
#ifndef PG_IOVEC_H |
||||
#define PG_IOVEC_H |
||||
|
||||
#include <limits.h> |
||||
|
||||
#ifdef HAVE_SYS_UIO_H |
||||
#include <sys/uio.h> |
||||
#endif |
||||
|
||||
/* If <sys/uio.h> is missing, define our own POSIX-compatible iovec struct. */ |
||||
#ifndef HAVE_SYS_UIO_H |
||||
struct iovec |
||||
{ |
||||
void *iov_base; |
||||
size_t iov_len; |
||||
}; |
||||
#endif |
||||
|
||||
/*
|
||||
* If <limits.h> didn't define IOV_MAX, define our own. POSIX requires at |
||||
* least 16. |
||||
*/ |
||||
#ifndef IOV_MAX |
||||
#define IOV_MAX 16 |
||||
#endif |
||||
|
||||
/* Define a reasonable maximum that is safe to use on the stack. */ |
||||
#define PG_IOV_MAX Min(IOV_MAX, 32) |
||||
|
||||
#ifdef HAVE_PREADV |
||||
#define pg_preadv preadv |
||||
#else |
||||
extern ssize_t pg_preadv(int fd, const struct iovec *iov, int iovcnt, off_t offset); |
||||
#endif |
||||
|
||||
#ifdef HAVE_PWRITEV |
||||
#define pg_pwritev pwritev |
||||
#else |
||||
extern ssize_t pg_pwritev(int fd, const struct iovec *iov, int iovcnt, off_t offset); |
||||
#endif |
||||
|
||||
extern ssize_t pg_pwritev_with_retry(int fd, |
||||
const struct iovec *iov, |
||||
int iovcnt, |
||||
off_t offset); |
||||
|
||||
#endif /* PG_IOVEC_H */ |
Loading…
Reference in new issue