2020-06-16 21:39:45 +00:00
|
|
|
#include "webfuse_provider/impl/operation/getattr.h"
|
2019-03-03 11:48:58 +00:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
2019-02-24 17:03:22 +00:00
|
|
|
|
2020-06-16 21:39:45 +00:00
|
|
|
#include "webfuse_provider/impl/operation/error.h"
|
|
|
|
#include "webfuse_provider/impl/request.h"
|
|
|
|
#include "webfuse_provider/impl/util.h"
|
2019-02-24 18:16:29 +00:00
|
|
|
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
void wfp_impl_getattr(
|
|
|
|
struct wfp_impl_invokation_context * context,
|
2019-02-24 17:03:22 +00:00
|
|
|
json_t * params,
|
|
|
|
int id)
|
|
|
|
{
|
2019-02-24 19:06:16 +00:00
|
|
|
size_t const count = json_array_size(params);
|
2019-04-17 20:51:16 +00:00
|
|
|
if (2 == count)
|
2019-02-24 19:06:16 +00:00
|
|
|
{
|
2019-04-17 20:51:16 +00:00
|
|
|
json_t * inode_holder = json_array_get(params, 1);
|
2019-02-24 19:06:16 +00:00
|
|
|
|
2019-03-03 11:48:58 +00:00
|
|
|
if (json_is_integer(inode_holder))
|
2019-02-24 19:06:16 +00:00
|
|
|
{
|
|
|
|
ino_t inode = (ino_t) json_integer_value(inode_holder);
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wfp_request * request = wfp_impl_request_create(context->request, id);
|
2019-02-24 19:06:16 +00:00
|
|
|
|
|
|
|
context->provider->getattr(request, inode, context->user_data);
|
|
|
|
}
|
|
|
|
}
|
2019-02-24 17:03:22 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
void wfp_impl_getattr_default(
|
|
|
|
struct wfp_request * request,
|
2020-06-16 21:57:41 +00:00
|
|
|
ino_t WFP_UNUSED_PARAM(inode),
|
|
|
|
void * WFP_UNUSED_PARAM(user_data))
|
2019-02-24 18:16:29 +00:00
|
|
|
{
|
2020-06-16 21:57:41 +00:00
|
|
|
wfp_impl_respond_error(request, WFP_BAD_NOENTRY);
|
2019-02-24 18:16:29 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
void wfp_impl_respond_getattr(
|
|
|
|
struct wfp_request * request,
|
2019-02-24 17:03:22 +00:00
|
|
|
struct stat const * stat)
|
|
|
|
{
|
2019-03-03 11:48:58 +00:00
|
|
|
bool const is_file = (0 != (stat->st_mode & S_IFREG));
|
|
|
|
bool const is_dir = (0 != (stat->st_mode & S_IFDIR));
|
|
|
|
|
|
|
|
json_t * result = json_object();
|
|
|
|
json_object_set_new(result, "inode", json_integer(stat->st_ino));
|
|
|
|
json_object_set_new(result, "mode", json_integer(stat->st_mode & 0777));
|
|
|
|
json_object_set_new(result, "atime", json_integer(stat->st_atime));
|
|
|
|
json_object_set_new(result, "mtime", json_integer(stat->st_mtime));
|
|
|
|
json_object_set_new(result, "ctime", json_integer(stat->st_ctime));
|
|
|
|
|
|
|
|
if (is_file)
|
|
|
|
{
|
|
|
|
json_object_set_new(result, "type", json_string("file"));
|
|
|
|
json_object_set_new(result, "size", json_integer(stat->st_size));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_dir)
|
|
|
|
{
|
|
|
|
json_object_set_new(result, "type", json_string("dir"));
|
|
|
|
}
|
2019-02-24 17:03:22 +00:00
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
wfp_impl_respond(request, result);
|
2019-02-24 17:03:22 +00:00
|
|
|
}
|