Files
c/kubernetes/model/v1_custom_resource_definition_names.c

270 lines
8.7 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v1_custom_resource_definition_names.h"
v1_custom_resource_definition_names_t *v1_custom_resource_definition_names_create(
list_t *categories,
char *kind,
char *list_kind,
char *plural,
list_t *short_names,
char *singular
) {
v1_custom_resource_definition_names_t *v1_custom_resource_definition_names_local_var = malloc(sizeof(v1_custom_resource_definition_names_t));
if (!v1_custom_resource_definition_names_local_var) {
return NULL;
}
v1_custom_resource_definition_names_local_var->categories = categories;
v1_custom_resource_definition_names_local_var->kind = kind;
v1_custom_resource_definition_names_local_var->list_kind = list_kind;
v1_custom_resource_definition_names_local_var->plural = plural;
v1_custom_resource_definition_names_local_var->short_names = short_names;
v1_custom_resource_definition_names_local_var->singular = singular;
return v1_custom_resource_definition_names_local_var;
}
void v1_custom_resource_definition_names_free(v1_custom_resource_definition_names_t *v1_custom_resource_definition_names) {
if(NULL == v1_custom_resource_definition_names){
return ;
}
listEntry_t *listEntry;
if (v1_custom_resource_definition_names->categories) {
list_ForEach(listEntry, v1_custom_resource_definition_names->categories) {
free(listEntry->data);
}
list_freeList(v1_custom_resource_definition_names->categories);
v1_custom_resource_definition_names->categories = NULL;
}
if (v1_custom_resource_definition_names->kind) {
free(v1_custom_resource_definition_names->kind);
v1_custom_resource_definition_names->kind = NULL;
}
if (v1_custom_resource_definition_names->list_kind) {
free(v1_custom_resource_definition_names->list_kind);
v1_custom_resource_definition_names->list_kind = NULL;
}
if (v1_custom_resource_definition_names->plural) {
free(v1_custom_resource_definition_names->plural);
v1_custom_resource_definition_names->plural = NULL;
}
if (v1_custom_resource_definition_names->short_names) {
list_ForEach(listEntry, v1_custom_resource_definition_names->short_names) {
free(listEntry->data);
}
list_freeList(v1_custom_resource_definition_names->short_names);
v1_custom_resource_definition_names->short_names = NULL;
}
if (v1_custom_resource_definition_names->singular) {
free(v1_custom_resource_definition_names->singular);
v1_custom_resource_definition_names->singular = NULL;
}
free(v1_custom_resource_definition_names);
}
cJSON *v1_custom_resource_definition_names_convertToJSON(v1_custom_resource_definition_names_t *v1_custom_resource_definition_names) {
cJSON *item = cJSON_CreateObject();
// v1_custom_resource_definition_names->categories
if(v1_custom_resource_definition_names->categories) {
cJSON *categories = cJSON_AddArrayToObject(item, "categories");
if(categories == NULL) {
goto fail; //primitive container
}
listEntry_t *categoriesListEntry;
list_ForEach(categoriesListEntry, v1_custom_resource_definition_names->categories) {
if(cJSON_AddStringToObject(categories, "", (char*)categoriesListEntry->data) == NULL)
{
goto fail;
}
}
}
// v1_custom_resource_definition_names->kind
if (!v1_custom_resource_definition_names->kind) {
goto fail;
}
if(cJSON_AddStringToObject(item, "kind", v1_custom_resource_definition_names->kind) == NULL) {
goto fail; //String
}
// v1_custom_resource_definition_names->list_kind
if(v1_custom_resource_definition_names->list_kind) {
if(cJSON_AddStringToObject(item, "listKind", v1_custom_resource_definition_names->list_kind) == NULL) {
goto fail; //String
}
}
// v1_custom_resource_definition_names->plural
if (!v1_custom_resource_definition_names->plural) {
goto fail;
}
if(cJSON_AddStringToObject(item, "plural", v1_custom_resource_definition_names->plural) == NULL) {
goto fail; //String
}
// v1_custom_resource_definition_names->short_names
if(v1_custom_resource_definition_names->short_names) {
cJSON *short_names = cJSON_AddArrayToObject(item, "shortNames");
if(short_names == NULL) {
goto fail; //primitive container
}
listEntry_t *short_namesListEntry;
list_ForEach(short_namesListEntry, v1_custom_resource_definition_names->short_names) {
if(cJSON_AddStringToObject(short_names, "", (char*)short_namesListEntry->data) == NULL)
{
goto fail;
}
}
}
// v1_custom_resource_definition_names->singular
if(v1_custom_resource_definition_names->singular) {
if(cJSON_AddStringToObject(item, "singular", v1_custom_resource_definition_names->singular) == NULL) {
goto fail; //String
}
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
v1_custom_resource_definition_names_t *v1_custom_resource_definition_names_parseFromJSON(cJSON *v1_custom_resource_definition_namesJSON){
v1_custom_resource_definition_names_t *v1_custom_resource_definition_names_local_var = NULL;
// define the local list for v1_custom_resource_definition_names->categories
list_t *categoriesList = NULL;
// define the local list for v1_custom_resource_definition_names->short_names
list_t *short_namesList = NULL;
// v1_custom_resource_definition_names->categories
cJSON *categories = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definition_namesJSON, "categories");
if (categories) {
cJSON *categories_local = NULL;
if(!cJSON_IsArray(categories)) {
goto end;//primitive container
}
categoriesList = list_createList();
cJSON_ArrayForEach(categories_local, categories)
{
if(!cJSON_IsString(categories_local))
{
goto end;
}
list_addElement(categoriesList , strdup(categories_local->valuestring));
}
}
// v1_custom_resource_definition_names->kind
cJSON *kind = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definition_namesJSON, "kind");
if (!kind) {
goto end;
}
if(!cJSON_IsString(kind))
{
goto end; //String
}
// v1_custom_resource_definition_names->list_kind
cJSON *list_kind = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definition_namesJSON, "listKind");
if (list_kind) {
if(!cJSON_IsString(list_kind) && !cJSON_IsNull(list_kind))
{
goto end; //String
}
}
// v1_custom_resource_definition_names->plural
cJSON *plural = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definition_namesJSON, "plural");
if (!plural) {
goto end;
}
if(!cJSON_IsString(plural))
{
goto end; //String
}
// v1_custom_resource_definition_names->short_names
cJSON *short_names = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definition_namesJSON, "shortNames");
if (short_names) {
cJSON *short_names_local = NULL;
if(!cJSON_IsArray(short_names)) {
goto end;//primitive container
}
short_namesList = list_createList();
cJSON_ArrayForEach(short_names_local, short_names)
{
if(!cJSON_IsString(short_names_local))
{
goto end;
}
list_addElement(short_namesList , strdup(short_names_local->valuestring));
}
}
// v1_custom_resource_definition_names->singular
cJSON *singular = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definition_namesJSON, "singular");
if (singular) {
if(!cJSON_IsString(singular) && !cJSON_IsNull(singular))
{
goto end; //String
}
}
v1_custom_resource_definition_names_local_var = v1_custom_resource_definition_names_create (
categories ? categoriesList : NULL,
strdup(kind->valuestring),
list_kind && !cJSON_IsNull(list_kind) ? strdup(list_kind->valuestring) : NULL,
strdup(plural->valuestring),
short_names ? short_namesList : NULL,
singular && !cJSON_IsNull(singular) ? strdup(singular->valuestring) : NULL
);
return v1_custom_resource_definition_names_local_var;
end:
if (categoriesList) {
listEntry_t *listEntry = NULL;
list_ForEach(listEntry, categoriesList) {
free(listEntry->data);
listEntry->data = NULL;
}
list_freeList(categoriesList);
categoriesList = NULL;
}
if (short_namesList) {
listEntry_t *listEntry = NULL;
list_ForEach(listEntry, short_namesList) {
free(listEntry->data);
listEntry->data = NULL;
}
list_freeList(short_namesList);
short_namesList = NULL;
}
return NULL;
}