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

63 lines
1.4 KiB
C
Raw Normal View History

2020-04-04 06:32:26 +00:00
#include "webfuse/adapter/impl/operation/open.h"
#include "webfuse/adapter/impl/operation/context.h"
2019-01-29 22:11:46 +00:00
#include "webfuse/core/jsonrpc/proxy.h"
2019-03-26 22:04:53 +00:00
#include "webfuse/core/util.h"
#include "webfuse/core/status.h"
#include "webfuse/core/json_util.h"
2019-01-29 22:11:46 +00:00
2020-04-04 06:32:26 +00:00
#include <string.h>
#include <errno.h>
void wf_impl_operation_open_finished(
2019-02-09 02:08:02 +00:00
void * user_data,
json_t const * result,
json_t const * error)
2019-01-29 22:11:46 +00:00
{
wf_status status = wf_impl_jsonrpc_get_status(error);
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");
2020-04-03 20:46:47 +00:00
if (json_is_integer(handle_holder))
2019-01-29 22:47:08 +00:00
{
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
{
2019-03-26 22:04:53 +00:00
status = WF_BAD_FORMAT;
2019-01-29 22:47:08 +00:00
}
2019-01-29 22:11:46 +00:00
}
2019-03-26 22:04:53 +00:00
if (WF_GOOD == status)
2019-02-03 18:10:05 +00:00
{
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
}
2019-03-26 22:04:53 +00:00
void wf_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)
{
2020-04-04 21:27:34 +00:00
struct wf_impl_operation_context * user_data = fuse_req_userdata(request);
struct wf_jsonrpc_proxy * rpc = wf_impl_operation_context_get_proxy(user_data);
2019-02-09 02:08:02 +00:00
if (NULL != rpc)
{
2020-03-01 15:55:58 +00:00
wf_jsonrpc_proxy_invoke(rpc, &wf_impl_operation_open_finished, request, "open", "sii", user_data->name, inode, file_info->flags);
}
else
{
fuse_reply_err(request, ENOENT);
}
2019-01-29 22:11:46 +00:00
}