Files
c/kubernetes/model/v1_role_ref.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

134 lines
2.7 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v1_role_ref.h"
v1_role_ref_t *v1_role_ref_create(
char *api_group,
char *kind,
char *name
) {
v1_role_ref_t *v1_role_ref_local_var = malloc(sizeof(v1_role_ref_t));
if (!v1_role_ref_local_var) {
return NULL;
}
v1_role_ref_local_var->api_group = api_group;
v1_role_ref_local_var->kind = kind;
v1_role_ref_local_var->name = name;
return v1_role_ref_local_var;
}
void v1_role_ref_free(v1_role_ref_t *v1_role_ref) {
if(NULL == v1_role_ref){
return ;
}
listEntry_t *listEntry;
if (v1_role_ref->api_group) {
free(v1_role_ref->api_group);
v1_role_ref->api_group = NULL;
}
if (v1_role_ref->kind) {
free(v1_role_ref->kind);
v1_role_ref->kind = NULL;
}
if (v1_role_ref->name) {
free(v1_role_ref->name);
v1_role_ref->name = NULL;
}
free(v1_role_ref);
}
cJSON *v1_role_ref_convertToJSON(v1_role_ref_t *v1_role_ref) {
cJSON *item = cJSON_CreateObject();
// v1_role_ref->api_group
if (!v1_role_ref->api_group) {
goto fail;
}
if(cJSON_AddStringToObject(item, "apiGroup", v1_role_ref->api_group) == NULL) {
goto fail; //String
}
// v1_role_ref->kind
if (!v1_role_ref->kind) {
goto fail;
}
if(cJSON_AddStringToObject(item, "kind", v1_role_ref->kind) == NULL) {
goto fail; //String
}
// v1_role_ref->name
if (!v1_role_ref->name) {
goto fail;
}
if(cJSON_AddStringToObject(item, "name", v1_role_ref->name) == NULL) {
goto fail; //String
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
v1_role_ref_t *v1_role_ref_parseFromJSON(cJSON *v1_role_refJSON){
v1_role_ref_t *v1_role_ref_local_var = NULL;
// v1_role_ref->api_group
cJSON *api_group = cJSON_GetObjectItemCaseSensitive(v1_role_refJSON, "apiGroup");
if (!api_group) {
goto end;
}
if(!cJSON_IsString(api_group))
{
goto end; //String
}
// v1_role_ref->kind
cJSON *kind = cJSON_GetObjectItemCaseSensitive(v1_role_refJSON, "kind");
if (!kind) {
goto end;
}
if(!cJSON_IsString(kind))
{
goto end; //String
}
// v1_role_ref->name
cJSON *name = cJSON_GetObjectItemCaseSensitive(v1_role_refJSON, "name");
if (!name) {
goto end;
}
if(!cJSON_IsString(name))
{
goto end; //String
}
v1_role_ref_local_var = v1_role_ref_create (
strdup(api_group->valuestring),
strdup(kind->valuestring),
strdup(name->valuestring)
);
return v1_role_ref_local_var;
end:
return NULL;
}