2002-10-29 06:49:57 +03:00
|
|
|
/*
|
|
|
|
** Copyright 2002, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _FD_H
|
|
|
|
#define _FD_H
|
2002-07-09 16:24:59 +04:00
|
|
|
|
|
|
|
#include <sem.h>
|
|
|
|
#include <lock.h>
|
|
|
|
#include <memheap.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
|
2003-10-17 18:42:45 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2003-01-20 03:58:13 +03:00
|
|
|
struct select_sync;
|
|
|
|
|
2002-07-09 16:24:59 +04:00
|
|
|
struct fd_ops {
|
2003-10-17 18:42:45 +04:00
|
|
|
ssize_t (*fd_read)(struct file_descriptor *, off_t pos, void *buffer, size_t *length);
|
2002-08-09 20:57:25 +04:00
|
|
|
ssize_t (*fd_write)(struct file_descriptor *, off_t pos, const void *buffer, size_t *length);
|
2002-07-17 12:01:40 +04:00
|
|
|
off_t (*fd_seek)(struct file_descriptor *, off_t pos, int seekType);
|
2002-10-08 07:19:57 +04:00
|
|
|
status_t (*fd_ioctl)(struct file_descriptor *, ulong op, void *buffer, size_t length);
|
2002-10-29 06:49:57 +03:00
|
|
|
status_t (*fd_select)(struct file_descriptor *, uint8 event, uint32 ref, struct select_sync *sync);
|
|
|
|
status_t (*fd_deselect)(struct file_descriptor *, uint8 event, struct select_sync *sync);
|
|
|
|
status_t (*fd_read_dir)(struct file_descriptor *, struct dirent *buffer, size_t bufferSize, uint32 *_count);
|
2002-07-09 16:24:59 +04:00
|
|
|
status_t (*fd_rewind_dir)(struct file_descriptor *);
|
2002-10-17 07:04:19 +04:00
|
|
|
status_t (*fd_read_stat)(struct file_descriptor *, struct stat *);
|
|
|
|
status_t (*fd_write_stat)(struct file_descriptor *, const struct stat *, int statMask);
|
2002-10-08 07:19:57 +04:00
|
|
|
status_t (*fd_close)(struct file_descriptor *);
|
2002-07-09 16:24:59 +04:00
|
|
|
void (*fd_free)(struct file_descriptor *);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct file_descriptor {
|
|
|
|
int32 type; /* descriptor type */
|
|
|
|
int32 ref_count;
|
|
|
|
struct fd_ops *ops;
|
2002-09-26 07:36:04 +04:00
|
|
|
union {
|
|
|
|
struct vnode *vnode;
|
|
|
|
struct fs_mount *mount;
|
|
|
|
} u;
|
2002-07-09 16:24:59 +04:00
|
|
|
void *cookie;
|
2002-08-05 09:31:32 +04:00
|
|
|
int32 open_mode;
|
2002-10-08 04:11:10 +04:00
|
|
|
off_t pos;
|
2002-07-09 16:24:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Types of file descriptors we can create */
|
|
|
|
|
|
|
|
enum fd_types {
|
|
|
|
FDTYPE_FILE = 1,
|
|
|
|
FDTYPE_ATTR,
|
|
|
|
FDTYPE_DIR,
|
2002-09-26 07:36:04 +04:00
|
|
|
FDTYPE_ATTR_DIR,
|
2002-07-09 16:24:59 +04:00
|
|
|
FDTYPE_INDEX,
|
2002-09-26 07:36:04 +04:00
|
|
|
FDTYPE_INDEX_DIR,
|
2002-07-09 16:24:59 +04:00
|
|
|
FDTYPE_QUERY,
|
|
|
|
FDTYPE_SOCKET
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Prototypes */
|
|
|
|
|
2002-10-29 06:49:57 +03:00
|
|
|
extern struct file_descriptor *alloc_fd(void);
|
|
|
|
extern int new_fd(struct io_context *, struct file_descriptor *);
|
|
|
|
extern struct file_descriptor *get_fd(struct io_context *, int);
|
|
|
|
extern void put_fd(struct file_descriptor *);
|
|
|
|
extern void free_fd(struct file_descriptor *);
|
|
|
|
extern status_t select_fd(int fd, uint8 event, uint32 ref, struct select_sync *sync, bool kernel);
|
|
|
|
extern status_t deselect_fd(int fd, uint8 event, struct select_sync *sync, bool kernel);
|
|
|
|
extern bool fd_is_valid(int fd, bool kernel);
|
|
|
|
|
2002-07-09 16:24:59 +04:00
|
|
|
static struct io_context *get_current_io_context(bool kernel);
|
|
|
|
|
2002-07-11 01:46:34 +04:00
|
|
|
/* The prototypes of the (sys|user)_ functions are currently defined in vfs.h */
|
|
|
|
|
2002-07-09 16:24:59 +04:00
|
|
|
|
|
|
|
/* Inlines */
|
|
|
|
|
2003-05-13 04:27:29 +04:00
|
|
|
static inline struct io_context *
|
|
|
|
get_current_io_context(bool kernel)
|
2002-07-09 16:24:59 +04:00
|
|
|
{
|
|
|
|
if (kernel)
|
2003-05-13 04:27:29 +04:00
|
|
|
return (struct io_context *)team_get_kernel_team()->io_context;
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2003-05-13 04:27:29 +04:00
|
|
|
return (struct io_context *)thread_get_current_thread()->team->io_context;
|
2002-07-09 16:24:59 +04:00
|
|
|
}
|
|
|
|
|
2003-10-17 18:42:45 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-10-29 06:49:57 +03:00
|
|
|
#endif /* _FD_H */
|