#ifndef WFP_JSONRPC_PROXY_H #define WFP_JSONRPC_PROXY_H #ifndef __cplusplus #include #include #include #else #include #include using std::size_t; #endif #include #include "webfuse_provider/impl/jsonrpc/send_fn.h" #include "webfuse_provider/impl/jsonrpc/proxy_finished_fn.h" #ifdef __cplusplus extern "C" { #endif struct wfp_jsonrpc_proxy; struct wfp_timer_manager; extern struct wfp_jsonrpc_proxy * wfp_jsonrpc_proxy_create( struct wfp_timer_manager * manager, int timeout, wfp_jsonrpc_send_fn * send, void * user_data); extern void wfp_jsonrpc_proxy_dispose( struct wfp_jsonrpc_proxy * proxy); //------------------------------------------------------------------------------ /// \brief Invokes a method. /// /// Creates a method an sends it using the send function. /// Proxy keeps track of method invokation. If no response is returned within /// timeout, an error is propagated. /// /// \param proxy pointer to proxy instance /// \param finished function which is called exactly once, either on success or /// on failure. /// \param method_name name of the method to invoke /// \param param_info types of the param (s = string, i = integer, j = json) /// \param ... params //------------------------------------------------------------------------------ extern void wfp_jsonrpc_proxy_invoke( struct wfp_jsonrpc_proxy * proxy, wfp_jsonrpc_proxy_finished_fn * finished, void * user_data, char const * method_name, char const * param_info, ... ); extern void wfp_jsonrpc_proxy_notify( struct wfp_jsonrpc_proxy * proxy, char const * method_name, char const * param_info, ... ); extern void wfp_jsonrpc_proxy_onresult( struct wfp_jsonrpc_proxy * proxy, json_t * message); #ifdef __cplusplus } #endif #endif