1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 00:20:45 +00:00
falk-werner_webfuse-provider/src/wsfs/operation/close.c

33 lines
804 B
C
Raw Normal View History

2019-01-29 22:47:08 +00:00
#include "wsfs/operations.h"
#include <limits.h>
2019-02-03 18:10:05 +00:00
#include <errno.h>
2019-01-29 22:47:08 +00:00
#include <jansson.h>
2019-02-03 18:10:05 +00:00
2019-02-09 02:08:02 +00:00
#include "wsfs/jsonrpc/server.h"
2019-02-03 18:10:05 +00:00
#include "wsfs/util.h"
2019-01-29 22:47:08 +00:00
2019-02-03 18:10:05 +00:00
2019-02-09 02:08:02 +00:00
static void wsfs_operation_close_finished(
void * user_data,
wsfs_status status,
json_t const * WSFS_UNUSED_PARAM(result))
{
fuse_req_t request = (fuse_req_t) user_data;
fuse_reply_err(request, (WSFS_GOOD == status) ? 0 : ENOENT);
}
2019-02-03 18:10:05 +00:00
void wsfs_operation_close(
fuse_req_t request,
fuse_ino_t inode,
2019-01-29 22:47:08 +00:00
struct fuse_file_info * file_info)
{
2019-02-03 18:10:05 +00:00
struct wsfs_operations_context * user_data = fuse_req_userdata(request);
2019-02-09 02:08:02 +00:00
struct wsfs_jsonrpc_server * rpc = user_data->rpc;
2019-01-29 22:47:08 +00:00
int handle = (int) (file_info->fh & INT_MAX);
2019-02-09 02:08:02 +00:00
wsfs_jsonrpc_server_invoke(
rpc, &wsfs_operation_close_finished, request,
"close", "iii", inode, handle, file_info->flags);
2019-01-29 22:47:08 +00:00
}