tun2socks 0.0.1

High performance tun2socks
Documentation
/*
 ============================================================================
 Name        : hev-task-io.h
 Author      : Heiher <r@hev.cc>
 Copyright   : Copyright (c) 2018 everyone.
 Description : Task I/O operations
 ============================================================================
 */

#ifndef __HEV_TASK_IO_H__
#define __HEV_TASK_IO_H__

#include <sys/uio.h>
#include <sys/types.h>

#ifdef __cplusplus
extern "C" {
#endif

typedef int (*HevTaskIOYielder) (HevTaskYieldType type, void *data);

/**
 * hev_task_io_open:
 * @pathname: file path name
 * @flags: flags
 *
 * The open function opens the file specified by @pathname. If the specified
 * file does not exist, it may optionally (if O_CREAT is specified in @flags) be
 * created by open.
 *
 * Returns: the new file descriptor, or -1 if an error occurred.
 *
 * Since: 3.3.5
 */
int hev_task_io_open (const char *pathname, int flags, ...);

/**
 * hev_task_io_creat:
 * @pathname: file path name
 * @mode: mode
 *
 * A call to creat is equivalent to calling open with flags equal to O_CREAT |
 * O_WRONLY | O_TRUNC.
 *
 * Returns: the new file descriptor, or -1 if an error occurred.
 *
 * Since: 3.3.5
 */
int hev_task_io_creat (const char *pathname, mode_t mode);

/**
 * hev_task_io_openat:
 * @dirfd: file descriptor
 * @pathname: file path name
 * @flags: flags
 *
 * The openat function operates in exactly the same way as open, except for the
 * differences described openat(2).
 *
 * Returns: the new file descriptor, or -1 if an error occurred.
 *
 * Since: 3.3.5
 */
int hev_task_io_openat (int dirfd, const char *pathname, int flags, ...);

/**
 * hev_task_io_dup:
 * @oldfd: old file descriptor
 *
 * The dup function creates a copy of the file descriptor @oldfd, using the
 * lowest-numbered unused file descriptor for the new descriptor.
 *
 * Returns: the new file descriptor, or -1 if an error occurred.
 *
 * Since: 4.6.1
 */
int hev_task_io_dup (int oldfd);

/**
 * hev_task_io_dup2:
 * @oldfd: old file descriptor
 * @newfd: new file descriptor
 *
 * The dup2 function performs the same task as dup, but instead of using the
 * lowest-numbered unused file descriptor, it uses the file descriptor number
 * specified in @newfd. If the file descriptor @newfd was previously open, it is
 * silently closed before being reused.
 *
 * Returns: the new file descriptor, or -1 if an error occurred.
 *
 * Since: 4.6.1
 */
int hev_task_io_dup2 (int oldfd, int newfd);

/**
 * hev_task_io_read:
 * @fd: a file descriptor
 * @buf: buffer
 * @count: buffer length
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The read function shall attempt to read @count bytes from the file associated
 * with the open file descriptor, @fd, into the buffer pointed to by @buf.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 3.2
 */
ssize_t hev_task_io_read (int fd, void *buf, size_t count,
                          HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_io_readv:
 * @fd: a file descriptor
 * @iov: io vector
 * @iovcnt: io vector count
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The readv function shall be equivalent to read, except as described below.
 * The readv function shall place the input data into the iovcnt buffers
 * specified by the members of the iov array: iov[0], iov[1], ...,
 * iov[iov-cnt-1]. The iovcnt argument is valid if greater than 0 and less than
 * or equal to {IOV_MAX}.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 3.3.3
 */
ssize_t hev_task_io_readv (int fd, const struct iovec *iov, int iovcnt,
                           HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_io_write:
 * @fd: a file descriptor
 * @buf: buffer
 * @count: buffer length
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The write function shall attempt to write @count bytes from the buffer
 * pointed to by @buf to the file associated with the open file descriptor, @fd.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 3.2
 */
ssize_t hev_task_io_write (int fd, const void *buf, size_t count,
                           HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_io_writev:
 * @fd: a file descriptor
 * @iov: io vector
 * @iovcnt: io vector count
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The writev function shall be equaivalent to write, except as decribed below.
 * The writev function shall gather output data from the iovcnt buffers
 * specified by the members of the iov array: iov[0], iov[1], ...,
 * iov[iovcnt-1]. The iovcnt argument is valid if greater than 0 and less than
 * or equal to {IOV_MAX}, as defined in <limits.h>.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 3.3.3
 */
ssize_t hev_task_io_writev (int fd, const struct iovec *iov, int iovcnt,
                            HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_io_splice:
 * @fd_a_i: a file descriptor for input
 * @fd_a_o: a file descriptor for output
 * @fd_b_i: another file descriptor for input
 * @fd_b_o: another file destriptor for output
 * @buf_size: buffer length
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The splice moves data between two file descriptors until one error or closed.
 *
 * Since: 3.2
 */
void hev_task_io_splice (int fd_a_i, int fd_a_o, int fd_b_i, int fd_b_o,
                         size_t buf_size, HevTaskIOYielder yielder,
                         void *yielder_data);

#ifdef __cplusplus
}
#endif

#endif /* __HEV_TASK_IO_H__ */