mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
65 lines
1.2 KiB
C++
65 lines
1.2 KiB
C++
#ifndef JSONRPC_PROXY_H
|
|
#define JSONRPC_PROXY_H
|
|
|
|
#ifndef __cplusplus
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#else
|
|
#include <cstdarg>
|
|
#include <cstddef>
|
|
using std::size_t;
|
|
#endif
|
|
|
|
#include <jansson.h>
|
|
#include <jsonrpc/api.h>
|
|
#include <jsonrpc/send_fn.h>
|
|
#include <jsonrpc/proxy_finished_fn.h>
|
|
|
|
#include "webfuse/adapter/impl/time/timeout_manager.h"
|
|
#include "webfuse/adapter/impl/time/timer.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct jsonrpc_proxy;
|
|
|
|
extern JSONRPC_API struct jsonrpc_proxy *
|
|
jsonrpc_proxy_create(
|
|
struct wf_impl_timeout_manager * manager,
|
|
int timeout,
|
|
jsonrpc_send_fn * send,
|
|
void * user_data);
|
|
|
|
extern JSONRPC_API void jsonrpc_proxy_dispose(
|
|
struct jsonrpc_proxy * proxy);
|
|
|
|
|
|
extern JSONRPC_API void jsonrpc_proxy_invoke(
|
|
struct jsonrpc_proxy * proxy,
|
|
jsonrpc_proxy_finished_fn * finished,
|
|
void * user_data,
|
|
char const * method_name,
|
|
char const * param_info,
|
|
...
|
|
);
|
|
|
|
extern JSONRPC_API void jsonrpc_proxy_notify(
|
|
struct jsonrpc_proxy * proxy,
|
|
char const * method_name,
|
|
char const * param_info,
|
|
...
|
|
);
|
|
|
|
extern JSONRPC_API void jsonrpc_proxy_onresult(
|
|
struct jsonrpc_proxy * proxy,
|
|
json_t * message);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|