mirror of
https://github.com/falk-werner/webfuse-provider
synced 2026-03-02 04:09:18 +00:00
makes wsfs_status public (usable in provider example)
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#endif
|
||||
|
||||
#include <jansson.h>
|
||||
#include "wsfs/adapter/status.h"
|
||||
#include "wsfs/status.h"
|
||||
|
||||
|
||||
typedef bool wsfs_jsonrpc_method_invoke_fn(
|
||||
|
||||
@@ -9,7 +9,7 @@ using std::size_t;
|
||||
#endif
|
||||
|
||||
#include <jansson.h>
|
||||
#include "wsfs/adapter/status.h"
|
||||
#include "wsfs/status.h"
|
||||
|
||||
struct wsfs_jsonrpc_response
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
#include "wsfs/adapter/jsonrpc/server.h"
|
||||
#include "wsfs/util.h"
|
||||
#include "wsfs/adapter/status.h"
|
||||
#include "wsfs/status.h"
|
||||
|
||||
static void wsfs_operation_open_finished(
|
||||
void * user_data,
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
#include "wsfs/adapter/status.h"
|
||||
|
||||
#include <errno.h>
|
||||
|
||||
int wsfs_status_to_rc(wsfs_status status)
|
||||
{
|
||||
switch(status)
|
||||
{
|
||||
case WSFS_GOOD: return 0;
|
||||
case WSFS_BAD_NOTIMPLEMENTED: return -ENOSYS;
|
||||
case WSFS_BAD_TIMEOUT: return -ETIMEDOUT;
|
||||
case WSFS_BAD_BUSY: return -ENOENT;
|
||||
case WSFS_BAD_FORMAT: return -ENOENT;
|
||||
case WSFS_BAD_NOENTRY: return -ENOENT;
|
||||
case WSFS_BAD_NOACCESS: return -EACCES;
|
||||
default: return -ENOENT;
|
||||
}
|
||||
}
|
||||
|
||||
char const * wsfs_status_tostring(wsfs_status status)
|
||||
{
|
||||
switch(status)
|
||||
{
|
||||
case WSFS_GOOD: return "Good";
|
||||
case WSFS_BAD: return "Bad";
|
||||
case WSFS_BAD_NOTIMPLEMENTED: return "Bad (not implelemted)";
|
||||
case WSFS_BAD_TIMEOUT: return "Bad (timeout)";
|
||||
case WSFS_BAD_BUSY: return "Bad (busy)";
|
||||
case WSFS_BAD_FORMAT: return "Bad (format)";
|
||||
case WSFS_BAD_NOENTRY: return "Bad (no entry)";
|
||||
case WSFS_BAD_NOACCESS: return "Bad (no access)";
|
||||
default: return "Bad (unknown)";
|
||||
}
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
#ifndef WSFS_ADAPTER_STATUS_H
|
||||
#define WSFS_ADAPTER_STATUS_H
|
||||
|
||||
#define WSFS_GOOD 0
|
||||
#define WSFS_BAD 1
|
||||
|
||||
#define WSFS_BAD_NOTIMPLEMENTED 2
|
||||
#define WSFS_BAD_TIMEOUT 3
|
||||
#define WSFS_BAD_BUSY 4
|
||||
#define WSFS_BAD_FORMAT 5
|
||||
|
||||
#define WSFS_BAD_NOENTRY 101
|
||||
#define WSFS_BAD_NOACCESS 102
|
||||
|
||||
typedef int wsfs_status;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
extern int wsfs_status_to_rc(wsfs_status status);
|
||||
|
||||
extern char const * wsfs_status_tostring(wsfs_status status);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
@@ -62,6 +62,6 @@ void wsfsp_lookup_default(
|
||||
char const * WSFS_UNUSED_PARAM(name),
|
||||
void * WSFS_UNUSED_PARAM(user_data))
|
||||
{
|
||||
wsfsp_respond_error(request, -1);
|
||||
wsfsp_respond_error(request, WSFS_BAD_NOENTRY);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ void wsfsp_open_default(
|
||||
int WSFS_UNUSED_PARAM(flags),
|
||||
void * WSFS_UNUSED_PARAM(user_data))
|
||||
{
|
||||
wsfsp_respond_error(request, -1);
|
||||
wsfsp_respond_error(request, WSFS_BAD_NOENTRY);
|
||||
}
|
||||
|
||||
void wsfsp_respond_open(
|
||||
|
||||
@@ -43,7 +43,7 @@ void wsfsp_read_default(
|
||||
size_t WSFS_UNUSED_PARAM(length),
|
||||
void * WSFS_UNUSED_PARAM(user_data))
|
||||
{
|
||||
wsfsp_respond_error(request, -1);
|
||||
wsfsp_respond_error(request, WSFS_BAD_NOENTRY);
|
||||
}
|
||||
|
||||
void wsfsp_respond_read(
|
||||
@@ -69,7 +69,7 @@ void wsfsp_respond_read(
|
||||
}
|
||||
else
|
||||
{
|
||||
wsfsp_respond_error(request, -1);
|
||||
wsfsp_respond_error(request, WSFS_BAD);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
@@ -29,7 +29,7 @@ void wsfsp_readdir_default(
|
||||
ino_t WSFS_UNUSED_PARAM(directory),
|
||||
void * WSFS_UNUSED_PARAM(user_data))
|
||||
{
|
||||
wsfsp_respond_error(request, -1);
|
||||
wsfsp_respond_error(request, WSFS_BAD_NOENTRY);
|
||||
}
|
||||
|
||||
void wsfsp_respond_readdir(
|
||||
|
||||
@@ -40,7 +40,7 @@ extern void wsfsp_respond(
|
||||
|
||||
void wsfsp_respond_error(
|
||||
struct wsfsp_request * request,
|
||||
int status)
|
||||
wsfs_status status)
|
||||
{
|
||||
json_t * response = json_object();
|
||||
json_t * error = json_object();
|
||||
|
||||
Reference in New Issue
Block a user