Files
c/kubernetes/model/v1_sysctl.c
Hui Yu 08845310b8 Merge OpenAPITools/openapi-generator #12133
Do not put the invalid value of the enum to a JSON structure
2022-04-18 09:29:02 +08:00

106 lines
2.0 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v1_sysctl.h"
v1_sysctl_t *v1_sysctl_create(
char *name,
char *value
) {
v1_sysctl_t *v1_sysctl_local_var = malloc(sizeof(v1_sysctl_t));
if (!v1_sysctl_local_var) {
return NULL;
}
v1_sysctl_local_var->name = name;
v1_sysctl_local_var->value = value;
return v1_sysctl_local_var;
}
void v1_sysctl_free(v1_sysctl_t *v1_sysctl) {
if(NULL == v1_sysctl){
return ;
}
listEntry_t *listEntry;
if (v1_sysctl->name) {
free(v1_sysctl->name);
v1_sysctl->name = NULL;
}
if (v1_sysctl->value) {
free(v1_sysctl->value);
v1_sysctl->value = NULL;
}
free(v1_sysctl);
}
cJSON *v1_sysctl_convertToJSON(v1_sysctl_t *v1_sysctl) {
cJSON *item = cJSON_CreateObject();
// v1_sysctl->name
if (!v1_sysctl->name) {
goto fail;
}
if(cJSON_AddStringToObject(item, "name", v1_sysctl->name) == NULL) {
goto fail; //String
}
// v1_sysctl->value
if (!v1_sysctl->value) {
goto fail;
}
if(cJSON_AddStringToObject(item, "value", v1_sysctl->value) == NULL) {
goto fail; //String
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
v1_sysctl_t *v1_sysctl_parseFromJSON(cJSON *v1_sysctlJSON){
v1_sysctl_t *v1_sysctl_local_var = NULL;
// v1_sysctl->name
cJSON *name = cJSON_GetObjectItemCaseSensitive(v1_sysctlJSON, "name");
if (!name) {
goto end;
}
if(!cJSON_IsString(name))
{
goto end; //String
}
// v1_sysctl->value
cJSON *value = cJSON_GetObjectItemCaseSensitive(v1_sysctlJSON, "value");
if (!value) {
goto end;
}
if(!cJSON_IsString(value))
{
goto end; //String
}
v1_sysctl_local_var = v1_sysctl_create (
strdup(name->valuestring),
strdup(value->valuestring)
);
return v1_sysctl_local_var;
end:
return NULL;
}