2019-03-26 22:04:53 +00:00
|
|
|
#include "webfuse/adapter/impl/jsonrpc/response.h"
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-04-01 20:15:12 +00:00
|
|
|
extern bool wf_impl_jsonrpc_is_response(
|
|
|
|
json_t * message)
|
|
|
|
{
|
|
|
|
json_t * id = json_object_get(message, "id");
|
|
|
|
json_t * err = json_object_get(message, "error");
|
|
|
|
json_t * result = json_object_get(message, "result");
|
|
|
|
|
|
|
|
return (json_is_integer(id) &&
|
|
|
|
(json_is_object(err) || (NULL != result)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
void wf_impl_jsonrpc_response_init(
|
|
|
|
struct wf_impl_jsonrpc_response * result,
|
2019-04-01 20:15:12 +00:00
|
|
|
json_t * response)
|
2019-01-27 02:45:03 +00:00
|
|
|
{
|
2019-03-26 22:04:53 +00:00
|
|
|
result->status = WF_BAD;
|
2019-01-27 02:45:03 +00:00
|
|
|
result->id = -1;
|
|
|
|
result->result = NULL;
|
|
|
|
|
|
|
|
json_t * id_holder = json_object_get(response, "id");
|
|
|
|
if ((NULL == id_holder) || (!json_is_integer(id_holder)))
|
|
|
|
{
|
2019-03-26 22:04:53 +00:00
|
|
|
result->status = WF_BAD_FORMAT;
|
2019-01-27 02:45:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
result->status = WF_GOOD;
|
2019-01-27 02:45:03 +00:00
|
|
|
result->id = json_integer_value(id_holder);
|
|
|
|
result->result = json_object_get(response, "result");
|
|
|
|
if (NULL != result->result)
|
|
|
|
{
|
|
|
|
json_incref(result->result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-03-26 22:04:53 +00:00
|
|
|
result->status = WF_BAD_FORMAT;
|
2019-01-27 02:45:03 +00:00
|
|
|
|
|
|
|
json_t * error = json_object_get(response, "error");
|
|
|
|
if (NULL != error)
|
|
|
|
{
|
|
|
|
json_t * error_code = json_object_get(error, "code");
|
|
|
|
if ((NULL != error_code) && (json_is_integer(error_code)))
|
|
|
|
{
|
|
|
|
result->status = json_integer_value(error_code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
void wf_impl_jsonrpc_response_cleanup(
|
|
|
|
struct wf_impl_jsonrpc_response * response)
|
2019-02-09 02:08:02 +00:00
|
|
|
{
|
|
|
|
if (NULL != response->result)
|
|
|
|
{
|
|
|
|
json_decref(response->result);
|
|
|
|
}
|
|
|
|
}
|