Files
c/kubernetes/model/v1_http_get_action.c

212 lines
5.7 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v1_http_get_action.h"
v1_http_get_action_t *v1_http_get_action_create(
char *host,
list_t *http_headers,
char *path,
int_or_string_t *port,
char *scheme
) {
v1_http_get_action_t *v1_http_get_action_local_var = malloc(sizeof(v1_http_get_action_t));
if (!v1_http_get_action_local_var) {
return NULL;
}
v1_http_get_action_local_var->host = host;
v1_http_get_action_local_var->http_headers = http_headers;
v1_http_get_action_local_var->path = path;
v1_http_get_action_local_var->port = port;
v1_http_get_action_local_var->scheme = scheme;
return v1_http_get_action_local_var;
}
void v1_http_get_action_free(v1_http_get_action_t *v1_http_get_action) {
if(NULL == v1_http_get_action){
return ;
}
listEntry_t *listEntry;
if (v1_http_get_action->host) {
free(v1_http_get_action->host);
v1_http_get_action->host = NULL;
}
if (v1_http_get_action->http_headers) {
list_ForEach(listEntry, v1_http_get_action->http_headers) {
v1_http_header_free(listEntry->data);
}
list_free(v1_http_get_action->http_headers);
v1_http_get_action->http_headers = NULL;
}
if (v1_http_get_action->path) {
free(v1_http_get_action->path);
v1_http_get_action->path = NULL;
}
if (v1_http_get_action->port) {
int_or_string_free(v1_http_get_action->port);
v1_http_get_action->port = NULL;
}
if (v1_http_get_action->scheme) {
free(v1_http_get_action->scheme);
v1_http_get_action->scheme = NULL;
}
free(v1_http_get_action);
}
cJSON *v1_http_get_action_convertToJSON(v1_http_get_action_t *v1_http_get_action) {
cJSON *item = cJSON_CreateObject();
// v1_http_get_action->host
if(v1_http_get_action->host) {
if(cJSON_AddStringToObject(item, "host", v1_http_get_action->host) == NULL) {
goto fail; //String
}
}
// v1_http_get_action->http_headers
if(v1_http_get_action->http_headers) {
cJSON *http_headers = cJSON_AddArrayToObject(item, "httpHeaders");
if(http_headers == NULL) {
goto fail; //nonprimitive container
}
listEntry_t *http_headersListEntry;
if (v1_http_get_action->http_headers) {
list_ForEach(http_headersListEntry, v1_http_get_action->http_headers) {
cJSON *itemLocal = v1_http_header_convertToJSON(http_headersListEntry->data);
if(itemLocal == NULL) {
goto fail;
}
cJSON_AddItemToArray(http_headers, itemLocal);
}
}
}
// v1_http_get_action->path
if(v1_http_get_action->path) {
if(cJSON_AddStringToObject(item, "path", v1_http_get_action->path) == NULL) {
goto fail; //String
}
}
// v1_http_get_action->port
if (!v1_http_get_action->port) {
goto fail;
}
cJSON *port_local_JSON = int_or_string_convertToJSON(v1_http_get_action->port);
if(port_local_JSON == NULL) {
goto fail; // custom
}
cJSON_AddItemToObject(item, "port", port_local_JSON);
if(item->child == NULL) {
goto fail;
}
// v1_http_get_action->scheme
if(v1_http_get_action->scheme) {
if(cJSON_AddStringToObject(item, "scheme", v1_http_get_action->scheme) == NULL) {
goto fail; //String
}
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
v1_http_get_action_t *v1_http_get_action_parseFromJSON(cJSON *v1_http_get_actionJSON){
v1_http_get_action_t *v1_http_get_action_local_var = NULL;
// define the local variable for v1_http_get_action->port
int_or_string_t *port_local_nonprim = NULL;
// v1_http_get_action->host
cJSON *host = cJSON_GetObjectItemCaseSensitive(v1_http_get_actionJSON, "host");
if (host) {
if(!cJSON_IsString(host))
{
goto end; //String
}
}
// v1_http_get_action->http_headers
cJSON *http_headers = cJSON_GetObjectItemCaseSensitive(v1_http_get_actionJSON, "httpHeaders");
list_t *http_headersList;
if (http_headers) {
cJSON *http_headers_local_nonprimitive;
if(!cJSON_IsArray(http_headers)){
goto end; //nonprimitive container
}
http_headersList = list_create();
cJSON_ArrayForEach(http_headers_local_nonprimitive,http_headers )
{
if(!cJSON_IsObject(http_headers_local_nonprimitive)){
goto end;
}
v1_http_header_t *http_headersItem = v1_http_header_parseFromJSON(http_headers_local_nonprimitive);
list_addElement(http_headersList, http_headersItem);
}
}
// v1_http_get_action->path
cJSON *path = cJSON_GetObjectItemCaseSensitive(v1_http_get_actionJSON, "path");
if (path) {
if(!cJSON_IsString(path))
{
goto end; //String
}
}
// v1_http_get_action->port
cJSON *port = cJSON_GetObjectItemCaseSensitive(v1_http_get_actionJSON, "port");
if (!port) {
goto end;
}
port_local_nonprim = int_or_string_parseFromJSON(port); //custom
// v1_http_get_action->scheme
cJSON *scheme = cJSON_GetObjectItemCaseSensitive(v1_http_get_actionJSON, "scheme");
if (scheme) {
if(!cJSON_IsString(scheme))
{
goto end; //String
}
}
v1_http_get_action_local_var = v1_http_get_action_create (
host ? strdup(host->valuestring) : NULL,
http_headers ? http_headersList : NULL,
path ? strdup(path->valuestring) : NULL,
port_local_nonprim,
scheme ? strdup(scheme->valuestring) : NULL
);
return v1_http_get_action_local_var;
end:
if (port_local_nonprim) {
int_or_string_free(port_local_nonprim);
port_local_nonprim = NULL;
}
return NULL;
}