1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 13:30:45 +00:00
falk-werner_webfuse-provider/lib/wsfs/adapter/impl/operation/open.c

54 lines
1.2 KiB
C
Raw Normal View History

#include "wsfs/adapter/impl/operations.h"
2019-01-29 22:11:46 +00:00
2019-02-09 02:08:02 +00:00
#include <string.h>
2019-02-03 18:10:05 +00:00
#include <errno.h>
2019-01-29 22:11:46 +00:00
#include <jansson.h>
2019-02-03 18:10:05 +00:00
#include "wsfs/adapter/impl/jsonrpc/server.h"
#include "wsfs/core/util.h"
#include "wsfs/core/status.h"
2019-01-29 22:11:46 +00:00
static void wsfs_impl_operation_open_finished(
2019-02-09 02:08:02 +00:00
void * user_data,
wsfs_status status,
json_t const * result)
2019-01-29 22:11:46 +00:00
{
2019-02-09 02:08:02 +00:00
fuse_req_t request = user_data;
struct fuse_file_info file_info;
memset(&file_info, 0, sizeof(struct fuse_file_info));
2019-01-29 22:11:46 +00:00
if (NULL != result)
{
2019-01-29 22:47:08 +00:00
json_t * handle_holder = json_object_get(result, "handle");
if ((NULL != handle_holder) && (json_is_integer(handle_holder)))
{
2019-02-09 02:08:02 +00:00
file_info.fh = json_integer_value(handle_holder);
2019-01-29 22:47:08 +00:00
}
else
{
status = WSFS_BAD_FORMAT;
}
2019-01-29 22:11:46 +00:00
}
2019-02-03 18:10:05 +00:00
if (WSFS_GOOD == status)
{
2019-02-09 02:08:02 +00:00
fuse_reply_open(request, &file_info);
2019-02-03 18:10:05 +00:00
}
else
{
fuse_reply_err(request, ENOENT);
}
2019-02-09 02:08:02 +00:00
}
void wsfs_impl_operation_open(
2019-02-09 02:08:02 +00:00
fuse_req_t request,
fuse_ino_t inode,
struct fuse_file_info * file_info)
{
struct wsfs_impl_operations_context * user_data = fuse_req_userdata(request);
struct wsfs_impl_jsonrpc_server * rpc = user_data->rpc;
2019-02-09 02:08:02 +00:00
wsfs_impl_jsonrpc_server_invoke(rpc, &wsfs_impl_operation_open_finished, request, "open", "ii", inode, file_info->flags);
2019-01-29 22:11:46 +00:00
}