1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 12:20:45 +00:00
falk-werner_webfuse-provider/lib/wsfs/adapter/operations.h

56 lines
1007 B
C
Raw Normal View History

2019-02-25 20:35:38 +00:00
#ifndef WSFS_ADAPTER_OPERATIONS
#define WSFS_ADAPTER_OPERATIONS
2019-01-27 02:45:03 +00:00
#include "wsfs/adapter/fuse_wrapper.h"
2019-01-27 02:45:03 +00:00
2019-02-09 02:08:02 +00:00
struct wsfs_jsonrpc_server;
2019-02-02 08:37:18 +00:00
struct wsfs_operations_context
{
2019-02-09 02:08:02 +00:00
struct wsfs_jsonrpc_server * rpc;
double timeout;
};
#ifdef __cplusplus
extern "C" {
#endif
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_lookup (
2019-02-02 10:45:38 +00:00
fuse_req_t req,
fuse_ino_t parent,
char const * name);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_getattr (
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t inode,
struct fuse_file_info *file_info);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_readdir (
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t inode,
size_t size,
off_t offset,
struct fuse_file_info *file_info);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_open(
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t inode,
struct fuse_file_info * file_info);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_close(
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t inode,
struct fuse_file_info * file_info);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_read(
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t ino, size_t size, off_t off,
struct fuse_file_info *fi);
#ifdef __cplusplus
}
#endif
2019-01-29 22:11:46 +00:00
2019-01-27 02:45:03 +00:00
#endif