Files
c/kubernetes/model/discovery_v1_endpoint_port.c

142 lines
4.2 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "discovery_v1_endpoint_port.h"
discovery_v1_endpoint_port_t *discovery_v1_endpoint_port_create(
char *app_protocol,
char *name,
int port,
char *protocol
) {
discovery_v1_endpoint_port_t *discovery_v1_endpoint_port_local_var = malloc(sizeof(discovery_v1_endpoint_port_t));
if (!discovery_v1_endpoint_port_local_var) {
return NULL;
}
discovery_v1_endpoint_port_local_var->app_protocol = app_protocol;
discovery_v1_endpoint_port_local_var->name = name;
discovery_v1_endpoint_port_local_var->port = port;
discovery_v1_endpoint_port_local_var->protocol = protocol;
return discovery_v1_endpoint_port_local_var;
}
void discovery_v1_endpoint_port_free(discovery_v1_endpoint_port_t *discovery_v1_endpoint_port) {
if(NULL == discovery_v1_endpoint_port){
return ;
}
listEntry_t *listEntry;
if (discovery_v1_endpoint_port->app_protocol) {
free(discovery_v1_endpoint_port->app_protocol);
discovery_v1_endpoint_port->app_protocol = NULL;
}
if (discovery_v1_endpoint_port->name) {
free(discovery_v1_endpoint_port->name);
discovery_v1_endpoint_port->name = NULL;
}
if (discovery_v1_endpoint_port->protocol) {
free(discovery_v1_endpoint_port->protocol);
discovery_v1_endpoint_port->protocol = NULL;
}
free(discovery_v1_endpoint_port);
}
cJSON *discovery_v1_endpoint_port_convertToJSON(discovery_v1_endpoint_port_t *discovery_v1_endpoint_port) {
cJSON *item = cJSON_CreateObject();
// discovery_v1_endpoint_port->app_protocol
if(discovery_v1_endpoint_port->app_protocol) {
if(cJSON_AddStringToObject(item, "appProtocol", discovery_v1_endpoint_port->app_protocol) == NULL) {
goto fail; //String
}
}
// discovery_v1_endpoint_port->name
if(discovery_v1_endpoint_port->name) {
if(cJSON_AddStringToObject(item, "name", discovery_v1_endpoint_port->name) == NULL) {
goto fail; //String
}
}
// discovery_v1_endpoint_port->port
if(discovery_v1_endpoint_port->port) {
if(cJSON_AddNumberToObject(item, "port", discovery_v1_endpoint_port->port) == NULL) {
goto fail; //Numeric
}
}
// discovery_v1_endpoint_port->protocol
if(discovery_v1_endpoint_port->protocol) {
if(cJSON_AddStringToObject(item, "protocol", discovery_v1_endpoint_port->protocol) == NULL) {
goto fail; //String
}
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
discovery_v1_endpoint_port_t *discovery_v1_endpoint_port_parseFromJSON(cJSON *discovery_v1_endpoint_portJSON){
discovery_v1_endpoint_port_t *discovery_v1_endpoint_port_local_var = NULL;
// discovery_v1_endpoint_port->app_protocol
cJSON *app_protocol = cJSON_GetObjectItemCaseSensitive(discovery_v1_endpoint_portJSON, "appProtocol");
if (app_protocol) {
if(!cJSON_IsString(app_protocol) && !cJSON_IsNull(app_protocol))
{
goto end; //String
}
}
// discovery_v1_endpoint_port->name
cJSON *name = cJSON_GetObjectItemCaseSensitive(discovery_v1_endpoint_portJSON, "name");
if (name) {
if(!cJSON_IsString(name) && !cJSON_IsNull(name))
{
goto end; //String
}
}
// discovery_v1_endpoint_port->port
cJSON *port = cJSON_GetObjectItemCaseSensitive(discovery_v1_endpoint_portJSON, "port");
if (port) {
if(!cJSON_IsNumber(port))
{
goto end; //Numeric
}
}
// discovery_v1_endpoint_port->protocol
cJSON *protocol = cJSON_GetObjectItemCaseSensitive(discovery_v1_endpoint_portJSON, "protocol");
if (protocol) {
if(!cJSON_IsString(protocol) && !cJSON_IsNull(protocol))
{
goto end; //String
}
}
discovery_v1_endpoint_port_local_var = discovery_v1_endpoint_port_create (
app_protocol && !cJSON_IsNull(app_protocol) ? strdup(app_protocol->valuestring) : NULL,
name && !cJSON_IsNull(name) ? strdup(name->valuestring) : NULL,
port ? port->valuedouble : 0,
protocol && !cJSON_IsNull(protocol) ? strdup(protocol->valuestring) : NULL
);
return discovery_v1_endpoint_port_local_var;
end:
return NULL;
}