00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef _core_file_object_h_
00027 #define _core_file_object_h_
00028
00029 #include "common.h"
00030
00031 void file_object_init(void);
00032 void file_object_close(void);
00033
00034 struct file_object *file_object_new(int fd, const char *pathname, int accmode);
00035 struct file_object *file_object_open(const char *pathname, int accmode);
00036
00037 ssize_t file_object_pwrite(const struct file_object *fo,
00038 const void *data, size_t buf, filesize_t offset);
00039 ssize_t file_object_pwritev(const struct file_object *fo,
00040 const struct iovec *iov, int iov_cnt, filesize_t offset);
00041 ssize_t file_object_pread(const struct file_object *fo,
00042 void *data, size_t size, filesize_t pos);
00043 ssize_t file_object_preadv(const struct file_object *fo,
00044 struct iovec *iov, int iov_cnt, filesize_t offset);
00045
00046 int file_object_get_fd(const struct file_object *fo);
00047 const char *file_object_get_pathname(const struct file_object *fo);
00048
00049 void file_object_release(struct file_object **fo_ptr);
00050 void file_object_revoke(const char *pathname);
00051
00052 #endif
00053