Merge branch 'maint'
[paraslash.git] / fd.h
1 /*
2  * Copyright (C) 2006 Andre Noll <maan@tuebingen.mpg.de>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file fd.h exported symbols from fd.c */
8
9 int xrename(const char *oldpath, const char *newpath);
10 int write_all(int fd, const char *buf, size_t len);
11 __printf_2_3 int write_va_buffer(int fd, const char *fmt, ...);
12 int file_exists(const char *);
13 int para_select(int n, fd_set *readfds, fd_set *writefds,
14                 struct timeval *timeout_tv);
15 __must_check int mark_fd_nonblocking(int fd);
16 __must_check int mark_fd_blocking(int fd);
17 void para_fd_set(int fd, fd_set *fds, int *max_fileno);
18 __must_check int para_fgets(char *line, int size, FILE *f);
19 int para_mmap(size_t length, int prot, int flags, int fd, off_t offset,
20                 void *map);
21 int para_open(const char *path, int flags, mode_t mode);
22 int para_mkdir(const char *path, mode_t mode);
23 int para_chdir(const char *path);
24 int mmap_full_file(const char *filename, int open_mode, void **map,
25         size_t *size, int *fd_ptr);
26 int para_munmap(void *start, size_t length);
27 int write_ok(int fd);
28 void valid_fd_012(void);
29 int readv_nonblock(int fd, struct iovec *iov, int iovcnt, fd_set *rfds,
30                 size_t *num_bytes);
31 int read_nonblock(int fd, void *buf, size_t sz, fd_set *rfds, size_t *num_bytes);
32 int read_pattern(int fd, const char *pattern, size_t bufsize, fd_set *rfds);
33 int xwrite(int fd, const char *buf, size_t len);
34 int xwritev(int fd, struct iovec *iov, int iovcnt);
35 int for_each_file_in_dir(const char *dirname,
36                 int (*func)(const char *, void *), void *private_data);
37 /**
38  * Write a \p NULL-terminated buffer.
39  *
40  * \param fd The file descriptor.
41  * \param buf The null-terminated buffer to be send.
42  *
43  * This is equivalent to write_all(fd, buf, strlen(buf)).
44  *
45  * \return Standard.
46  */
47 _static_inline_ int write_buffer(int fd, const char *buf)
48 {
49         return write_all(fd, buf, strlen(buf));
50 }