HomePort
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Data Structures | Macros | Typedefs | Enumerations | Functions | Variables
rest.c File Reference
Include dependency graph for rest.c:

Go to the source code of this file.

Data Structures

struct  hpd_rest
 
struct  hpd_rest_req
 

Macros

#define XX(NUM, STR)   case HPD_S_##NUM: break;
 
#define XX(NUM, STR)   case HPD_S_##NUM: rc = hpd_httpd_response_sendf(res, #STR); break;
 

Typedefs

typedef struct hpd_rest_req hpd_rest_req_t
 
typedef enum rest_content_type rest_content_type_t
 

Enumerations

enum  rest_content_type {
  CONTENT_UNKNOWN = -1, CONTENT_NONE, CONTENT_XML, CONTENT_JSON,
  CONTENT_WILDCARD
}
 

Functions

hpd_error_t hpd_rest_get_timestamp (const hpd_module_t *context, char *str)
 
hpd_error_t hpd_rest_url_create (hpd_rest_t *rest, hpd_service_id_t *service, char **url)
 
static rest_content_type_t rest_media_type_to_enum (const char *haystack)
 
static hpd_method_t rest_method_to_method (hpd_httpd_method_t method)
 
static hpd_error_t rest_on_create (void **data, const hpd_module_t *context)
 
static hpd_error_t rest_on_destroy (void *data)
 
static void rest_on_free (void *data)
 
static hpd_error_t rest_on_parse_opt (void *data, const char *name, const char *arg)
 
static hpd_httpd_return_t rest_on_req_begin (hpd_httpd_t *httpd, hpd_httpd_request_t *req, void *httpd_ctx, void **req_data)
 
static hpd_httpd_return_t rest_on_req_body (hpd_httpd_t *ins, hpd_httpd_request_t *req, void *httpd_ctx, void **req_data, const char *chunk, size_t len)
 
static hpd_httpd_return_t rest_on_req_cmpl (hpd_httpd_t *ins, hpd_httpd_request_t *req, void *httpd_ctx, void **req_data)
 
static hpd_httpd_return_t rest_on_req_destroy (hpd_httpd_t *ins, hpd_httpd_request_t *req, void *ws_ctx, void **req_data)
 
static hpd_httpd_return_t rest_on_req_hdr_cmpl (hpd_httpd_t *ins, hpd_httpd_request_t *req, void *httpd_ctx, void **req_data)
 
static hpd_httpd_return_t rest_on_req_url_cmpl (hpd_httpd_t *ins, hpd_httpd_request_t *req, void *httpd_ctx, void **req_data)
 
static void rest_on_response (void *data, const hpd_response_t *res)
 
static hpd_error_t rest_on_start (void *data, hpd_t *hpd)
 
static hpd_error_t rest_on_stop (void *data, hpd_t *hpd)
 
static hpd_error_t rest_reply (hpd_httpd_request_t *req, enum hpd_status status, hpd_rest_req_t *rest_req, const hpd_module_t *context)
 
static hpd_error_t rest_reply_bad_request (hpd_httpd_request_t *req, hpd_rest_req_t *rest_req, const hpd_module_t *context)
 
static hpd_error_t rest_reply_devices (hpd_rest_req_t *rest_req)
 
static hpd_error_t rest_reply_internal_server_error (hpd_httpd_request_t *req, hpd_rest_req_t *rest_req, const hpd_module_t *context)
 
static hpd_error_t rest_reply_method_not_allowed (hpd_httpd_request_t *req, hpd_rest_req_t *rest_req, const hpd_module_t *context)
 
static hpd_error_t rest_reply_not_found (hpd_httpd_request_t *req, hpd_rest_req_t *rest_req, const hpd_module_t *context)
 
static hpd_error_t rest_reply_unsupported_media_type (hpd_httpd_request_t *req, hpd_rest_req_t *rest_req, const hpd_module_t *context)
 
static hpd_error_t rest_url_decode (hpd_rest_t *rest, const char *encoded, char **decoded)
 
static hpd_error_t rest_url_encode (hpd_rest_t *rest, const char *decoded, char **encoded)
 
static hpd_error_t rest_url_extract (hpd_rest_t *rest, const char *url, char **aid, char **did, char **sid)
 

Variables

hpd_module_def_t hpd_rest = { rest_on_create, rest_on_destroy, rest_on_start, rest_on_stop, rest_on_parse_opt }
 

Data Structure Documentation

struct hpd_rest

Definition at line 53 of file rest.c.

Collaboration diagram for hpd_rest:
Data Fields
const hpd_module_t * context
CURL * curl
hpd_t * hpd
hpd_httpd_t * ws
hpd_httpd_settings_t ws_set
struct hpd_rest_req

Definition at line 61 of file rest.c.

Collaboration diagram for hpd_rest_req:
Data Fields
char * body
hpd_map_t * headers
hpd_method_t hpd_method
hpd_request_t * hpd_request
hpd_httpd_method_t http_method
hpd_httpd_request_t * http_req
hpd_httpd_response_t * http_res
size_t len
hpd_rest_t * rest
hpd_service_id_t * service
const char * url

Macro Definition Documentation

#define XX (   NUM,
  STR 
)    case HPD_S_##NUM: break;
#define XX (   NUM,
  STR 
)    case HPD_S_##NUM: rc = hpd_httpd_response_sendf(res, #STR); break;

Typedef Documentation

typedef struct hpd_rest_req hpd_rest_req_t

Enumeration Type Documentation

Enumerator
CONTENT_UNKNOWN 
CONTENT_NONE 
CONTENT_XML 
CONTENT_JSON 
CONTENT_WILDCARD 

Definition at line 45 of file rest.c.

Function Documentation

hpd_error_t hpd_rest_get_timestamp ( const hpd_module_t context,
char *  str 
)

Definition at line 115 of file rest.c.

Here is the caller graph for this function:

hpd_error_t hpd_rest_url_create ( hpd_rest_t rest,
hpd_service_id_t service,
char **  url 
)

Definition at line 124 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static rest_content_type_t rest_media_type_to_enum ( const char *  haystack)
static

Definition at line 81 of file rest.c.

Here is the caller graph for this function:

static hpd_method_t rest_method_to_method ( hpd_httpd_method_t  method)
static

Definition at line 721 of file rest.c.

Here is the caller graph for this function:

static hpd_error_t rest_on_create ( void **  data,
const hpd_module_t context 
)
static

Definition at line 967 of file rest.c.

Here is the call graph for this function:

static hpd_error_t rest_on_destroy ( void *  data)
static

Definition at line 1000 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static void rest_on_free ( void *  data)
static

Definition at line 434 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_error_t rest_on_parse_opt ( void *  data,
const char *  name,
const char *  arg 
)
static

Definition at line 1054 of file rest.c.

static hpd_httpd_return_t rest_on_req_begin ( hpd_httpd_t httpd,
hpd_httpd_request_t req,
void *  httpd_ctx,
void **  req_data 
)
static

Definition at line 609 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_httpd_return_t rest_on_req_body ( hpd_httpd_t ins,
hpd_httpd_request_t req,
void *  httpd_ctx,
void **  req_data,
const char *  chunk,
size_t  len 
)
static

Definition at line 819 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_httpd_return_t rest_on_req_cmpl ( hpd_httpd_t ins,
hpd_httpd_request_t req,
void *  httpd_ctx,
void **  req_data 
)
static

Definition at line 838 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_httpd_return_t rest_on_req_destroy ( hpd_httpd_t ins,
hpd_httpd_request_t req,
void *  ws_ctx,
void **  req_data 
)
static

Definition at line 453 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_httpd_return_t rest_on_req_hdr_cmpl ( hpd_httpd_t ins,
hpd_httpd_request_t req,
void *  httpd_ctx,
void **  req_data 
)
static

Definition at line 736 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_httpd_return_t rest_on_req_url_cmpl ( hpd_httpd_t ins,
hpd_httpd_request_t req,
void *  httpd_ctx,
void **  req_data 
)
static

Definition at line 630 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static void rest_on_response ( void *  data,
const hpd_response_t res 
)
static

Definition at line 472 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_error_t rest_on_start ( void *  data,
hpd_t hpd 
)
static

Definition at line 1010 of file rest.c.

Here is the call graph for this function:

static hpd_error_t rest_on_stop ( void *  data,
hpd_t hpd 
)
static

Definition at line 1034 of file rest.c.

Here is the call graph for this function:

static hpd_error_t rest_reply ( hpd_httpd_request_t req,
enum hpd_status  status,
hpd_rest_req_t rest_req,
const hpd_module_t context 
)
static

Definition at line 234 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_error_t rest_reply_bad_request ( hpd_httpd_request_t req,
hpd_rest_req_t rest_req,
const hpd_module_t context 
)
static

Definition at line 285 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_error_t rest_reply_devices ( hpd_rest_req_t rest_req)
static

Definition at line 295 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_error_t rest_reply_internal_server_error ( hpd_httpd_request_t req,
hpd_rest_req_t rest_req,
const hpd_module_t context 
)
static

Definition at line 270 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_error_t rest_reply_method_not_allowed ( hpd_httpd_request_t req,
hpd_rest_req_t rest_req,
const hpd_module_t context 
)
static

Definition at line 290 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_error_t rest_reply_not_found ( hpd_httpd_request_t req,
hpd_rest_req_t rest_req,
const hpd_module_t context 
)
static

Definition at line 275 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_error_t rest_reply_unsupported_media_type ( hpd_httpd_request_t req,
hpd_rest_req_t rest_req,
const hpd_module_t context 
)
static

Definition at line 280 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

static hpd_error_t rest_url_decode ( hpd_rest_t rest,
const char *  encoded,
char **  decoded 
)
static

Definition at line 107 of file rest.c.

Here is the caller graph for this function:

static hpd_error_t rest_url_encode ( hpd_rest_t rest,
const char *  decoded,
char **  encoded 
)
static

Definition at line 100 of file rest.c.

Here is the caller graph for this function:

static hpd_error_t rest_url_extract ( hpd_rest_t rest,
const char *  url,
char **  aid,
char **  did,
char **  sid 
)
static

Definition at line 186 of file rest.c.

Here is the call graph for this function:

Here is the caller graph for this function:

Variable Documentation

Definition at line 43 of file rest.c.