/* ** Copyright 2002, Axel Dörfler, axeld@pinc-software.de. All rights reserved. ** Distributed under the terms of the OpenBeOS License. */ #include #include #include #include #include "syscalls.h" #define RETURN_AND_SET_ERRNO(status) \ { \ if (status < 0) { \ errno = status; \ return -1; \ } \ return status; \ } // for the DIR structure #define BUFFER_SIZE 2048 ssize_t fs_read_attr(int fd, const char *attribute, uint32 type, off_t pos, void *buffer, size_t readBytes) { ssize_t bytes; int attr = sys_open_attr(fd, attribute, O_RDONLY); if (attr < 0) RETURN_AND_SET_ERRNO(attr); // type is not used at all in this function (void)type; bytes = sys_read(fd, pos, buffer, readBytes); sys_close(attr); RETURN_AND_SET_ERRNO(bytes); } ssize_t fs_write_attr(int fd, const char *attribute, uint32 type, off_t pos, const void *buffer, size_t readBytes) { ssize_t bytes; int attr = sys_create_attr(fd, attribute, type, O_WRONLY); if (attr < 0) RETURN_AND_SET_ERRNO(attr); bytes = sys_write(fd, pos, buffer, readBytes); sys_close(attr); RETURN_AND_SET_ERRNO(bytes); } int fs_remove_attr(int fd, const char *attribute) { status_t status = sys_remove_attr(fd, attribute); RETURN_AND_SET_ERRNO(status); } int fs_stat_attr(int fd, const char *attribute, struct attr_info *attrInfo) { struct stat stat; status_t status; int attr = sys_open_attr(fd, attribute, O_RDONLY); if (attr < 0) RETURN_AND_SET_ERRNO(attr); status = _kern_read_stat(attr, &stat, sizeof(struct stat)); if (status == B_OK) { attrInfo->type = stat.st_type; attrInfo->size = stat.st_size; } sys_close(attr); RETURN_AND_SET_ERRNO(status); } /* int fs_open_attr(const char *path, const char *attribute, uint32 type, int openMode) { // ToDo: implement fs_open_attr() - or remove it completely // if it will be implemented, rename the current fs_open_attr() to fs_fopen_attr() return B_ERROR; } */ int fs_open_attr(int fd, const char *attribute, uint32 type, int openMode) { status_t status; if (openMode & O_CREAT) status = sys_create_attr(fd, attribute, type, openMode); else status = sys_open_attr(fd, attribute, openMode); RETURN_AND_SET_ERRNO(status); } int fs_close_attr(int fd) { status_t status = sys_close(fd); RETURN_AND_SET_ERRNO(status); } static DIR * open_attr_dir(int file, const char *path) { DIR *dir; int fd = sys_open_attr_dir(file, path); if (fd < 0) { errno = fd; return NULL; } /* allocate the memory for the DIR structure */ if ((dir = (DIR *)malloc(sizeof(DIR) + BUFFER_SIZE)) == NULL) { errno = B_NO_MEMORY; sys_close(fd); return NULL; } dir->fd = fd; return dir; } DIR * fs_open_attr_dir(const char *path) { return open_attr_dir(-1, path); } DIR * fs_fopen_attr_dir(int fd) { return open_attr_dir(fd, NULL); } int fs_close_attr_dir(DIR *dir) { int status = sys_close(dir->fd); free(dir); RETURN_AND_SET_ERRNO(status); } struct dirent * fs_read_attr_dir(DIR *dir) { ssize_t count = sys_read_dir(dir->fd, &dir->ent, BUFFER_SIZE, 1); if (count <= 0) { if (count < 0) errno = count; return NULL; } return &dir->ent; } void fs_rewind_attr_dir(DIR *dir) { int status = sys_rewind_dir(dir->fd); if (status < 0) errno = status; }