2019-01-29 22:11:46 +00:00
|
|
|
#include "wsfs/operations.h"
|
|
|
|
|
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-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-02-09 11:01:58 +00:00
|
|
|
#include "wsfs/status.h"
|
2019-01-29 22:11:46 +00:00
|
|
|
|
2019-02-09 02:08:02 +00:00
|
|
|
static void wsfs_operation_open_finished(
|
|
|
|
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_operation_open(
|
|
|
|
fuse_req_t request,
|
|
|
|
fuse_ino_t inode,
|
|
|
|
struct fuse_file_info * file_info)
|
|
|
|
{
|
|
|
|
struct wsfs_operations_context * user_data = fuse_req_userdata(request);
|
|
|
|
struct wsfs_jsonrpc_server * rpc = user_data->rpc;
|
|
|
|
|
|
|
|
wsfs_jsonrpc_server_invoke(rpc, &wsfs_operation_open_finished, request, "open", "ii", inode, file_info->flags);
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|