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

111 lines
3.3 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v1_custom_resource_conversion.h"
v1_custom_resource_conversion_t *v1_custom_resource_conversion_create(
char *strategy,
v1_webhook_conversion_t *webhook
) {
v1_custom_resource_conversion_t *v1_custom_resource_conversion_local_var = malloc(sizeof(v1_custom_resource_conversion_t));
if (!v1_custom_resource_conversion_local_var) {
return NULL;
}
v1_custom_resource_conversion_local_var->strategy = strategy;
v1_custom_resource_conversion_local_var->webhook = webhook;
return v1_custom_resource_conversion_local_var;
}
void v1_custom_resource_conversion_free(v1_custom_resource_conversion_t *v1_custom_resource_conversion) {
if(NULL == v1_custom_resource_conversion){
return ;
}
listEntry_t *listEntry;
if (v1_custom_resource_conversion->strategy) {
free(v1_custom_resource_conversion->strategy);
v1_custom_resource_conversion->strategy = NULL;
}
if (v1_custom_resource_conversion->webhook) {
v1_webhook_conversion_free(v1_custom_resource_conversion->webhook);
v1_custom_resource_conversion->webhook = NULL;
}
free(v1_custom_resource_conversion);
}
cJSON *v1_custom_resource_conversion_convertToJSON(v1_custom_resource_conversion_t *v1_custom_resource_conversion) {
cJSON *item = cJSON_CreateObject();
// v1_custom_resource_conversion->strategy
if (!v1_custom_resource_conversion->strategy) {
goto fail;
}
if(cJSON_AddStringToObject(item, "strategy", v1_custom_resource_conversion->strategy) == NULL) {
goto fail; //String
}
// v1_custom_resource_conversion->webhook
if(v1_custom_resource_conversion->webhook) {
cJSON *webhook_local_JSON = v1_webhook_conversion_convertToJSON(v1_custom_resource_conversion->webhook);
if(webhook_local_JSON == NULL) {
goto fail; //model
}
cJSON_AddItemToObject(item, "webhook", webhook_local_JSON);
if(item->child == NULL) {
goto fail;
}
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
v1_custom_resource_conversion_t *v1_custom_resource_conversion_parseFromJSON(cJSON *v1_custom_resource_conversionJSON){
v1_custom_resource_conversion_t *v1_custom_resource_conversion_local_var = NULL;
// define the local variable for v1_custom_resource_conversion->webhook
v1_webhook_conversion_t *webhook_local_nonprim = NULL;
// v1_custom_resource_conversion->strategy
cJSON *strategy = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_conversionJSON, "strategy");
if (!strategy) {
goto end;
}
if(!cJSON_IsString(strategy))
{
goto end; //String
}
// v1_custom_resource_conversion->webhook
cJSON *webhook = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_conversionJSON, "webhook");
if (webhook) {
webhook_local_nonprim = v1_webhook_conversion_parseFromJSON(webhook); //nonprimitive
}
v1_custom_resource_conversion_local_var = v1_custom_resource_conversion_create (
strdup(strategy->valuestring),
webhook ? webhook_local_nonprim : NULL
);
return v1_custom_resource_conversion_local_var;
end:
if (webhook_local_nonprim) {
v1_webhook_conversion_free(webhook_local_nonprim);
webhook_local_nonprim = NULL;
}
return NULL;
}