2019-03-26 22:04:53 +00:00
|
|
|
#include "webfuse/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
|
|
|
|
2019-04-01 20:15:12 +00:00
|
|
|
#include "webfuse/adapter/impl/jsonrpc/proxy.h"
|
2019-03-26 22:04:53 +00:00
|
|
|
#include "webfuse/core/util.h"
|
|
|
|
#include "webfuse/core/status.h"
|
2019-01-29 22:11:46 +00:00
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
static void wf_impl_operation_open_finished(
|
2019-02-09 02:08:02 +00:00
|
|
|
void * user_data,
|
2019-03-26 22:04:53 +00:00
|
|
|
wf_status status,
|
2019-02-09 02:08:02 +00:00
|
|
|
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
|
|
|
|
{
|
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)
|
|
|
|
{
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_operations_context * user_data = fuse_req_userdata(request);
|
2019-04-17 20:51:16 +00:00
|
|
|
struct wf_impl_jsonrpc_proxy * rpc = wf_impl_operations_context_get_proxy(user_data);
|
2019-02-09 02:08:02 +00:00
|
|
|
|
2019-04-01 20:15:12 +00:00
|
|
|
if (NULL != rpc)
|
|
|
|
{
|
2019-04-17 20:51:16 +00:00
|
|
|
wf_impl_jsonrpc_proxy_invoke(rpc, &wf_impl_operation_open_finished, request, "open", "sii", user_data->name, inode, file_info->flags);
|
2019-04-01 20:15:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fuse_reply_err(request, ENOENT);
|
|
|
|
}
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|