Files
c/kubernetes/model/v1_endpoints.c
Brendan Burns d72a1c8566 Automated openapi generation from release-1.32
Signed-off-by: Kubernetes Prow Robot <k8s.ci.robot@gmail.com>
2025-02-11 19:36:46 +00:00

224 lines
5.9 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v1_endpoints.h"
static v1_endpoints_t *v1_endpoints_create_internal(
char *api_version,
char *kind,
v1_object_meta_t *metadata,
list_t *subsets
) {
v1_endpoints_t *v1_endpoints_local_var = malloc(sizeof(v1_endpoints_t));
if (!v1_endpoints_local_var) {
return NULL;
}
v1_endpoints_local_var->api_version = api_version;
v1_endpoints_local_var->kind = kind;
v1_endpoints_local_var->metadata = metadata;
v1_endpoints_local_var->subsets = subsets;
v1_endpoints_local_var->_library_owned = 1;
return v1_endpoints_local_var;
}
__attribute__((deprecated)) v1_endpoints_t *v1_endpoints_create(
char *api_version,
char *kind,
v1_object_meta_t *metadata,
list_t *subsets
) {
return v1_endpoints_create_internal (
api_version,
kind,
metadata,
subsets
);
}
void v1_endpoints_free(v1_endpoints_t *v1_endpoints) {
if(NULL == v1_endpoints){
return ;
}
if(v1_endpoints->_library_owned != 1){
fprintf(stderr, "WARNING: %s() does NOT free objects allocated by the user\n", "v1_endpoints_free");
return ;
}
listEntry_t *listEntry;
if (v1_endpoints->api_version) {
free(v1_endpoints->api_version);
v1_endpoints->api_version = NULL;
}
if (v1_endpoints->kind) {
free(v1_endpoints->kind);
v1_endpoints->kind = NULL;
}
if (v1_endpoints->metadata) {
v1_object_meta_free(v1_endpoints->metadata);
v1_endpoints->metadata = NULL;
}
if (v1_endpoints->subsets) {
list_ForEach(listEntry, v1_endpoints->subsets) {
v1_endpoint_subset_free(listEntry->data);
}
list_freeList(v1_endpoints->subsets);
v1_endpoints->subsets = NULL;
}
free(v1_endpoints);
}
cJSON *v1_endpoints_convertToJSON(v1_endpoints_t *v1_endpoints) {
cJSON *item = cJSON_CreateObject();
// v1_endpoints->api_version
if(v1_endpoints->api_version) {
if(cJSON_AddStringToObject(item, "apiVersion", v1_endpoints->api_version) == NULL) {
goto fail; //String
}
}
// v1_endpoints->kind
if(v1_endpoints->kind) {
if(cJSON_AddStringToObject(item, "kind", v1_endpoints->kind) == NULL) {
goto fail; //String
}
}
// v1_endpoints->metadata
if(v1_endpoints->metadata) {
cJSON *metadata_local_JSON = v1_object_meta_convertToJSON(v1_endpoints->metadata);
if(metadata_local_JSON == NULL) {
goto fail; //model
}
cJSON_AddItemToObject(item, "metadata", metadata_local_JSON);
if(item->child == NULL) {
goto fail;
}
}
// v1_endpoints->subsets
if(v1_endpoints->subsets) {
cJSON *subsets = cJSON_AddArrayToObject(item, "subsets");
if(subsets == NULL) {
goto fail; //nonprimitive container
}
listEntry_t *subsetsListEntry;
if (v1_endpoints->subsets) {
list_ForEach(subsetsListEntry, v1_endpoints->subsets) {
cJSON *itemLocal = v1_endpoint_subset_convertToJSON(subsetsListEntry->data);
if(itemLocal == NULL) {
goto fail;
}
cJSON_AddItemToArray(subsets, itemLocal);
}
}
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
v1_endpoints_t *v1_endpoints_parseFromJSON(cJSON *v1_endpointsJSON){
v1_endpoints_t *v1_endpoints_local_var = NULL;
// define the local variable for v1_endpoints->metadata
v1_object_meta_t *metadata_local_nonprim = NULL;
// define the local list for v1_endpoints->subsets
list_t *subsetsList = NULL;
// v1_endpoints->api_version
cJSON *api_version = cJSON_GetObjectItemCaseSensitive(v1_endpointsJSON, "apiVersion");
if (cJSON_IsNull(api_version)) {
api_version = NULL;
}
if (api_version) {
if(!cJSON_IsString(api_version) && !cJSON_IsNull(api_version))
{
goto end; //String
}
}
// v1_endpoints->kind
cJSON *kind = cJSON_GetObjectItemCaseSensitive(v1_endpointsJSON, "kind");
if (cJSON_IsNull(kind)) {
kind = NULL;
}
if (kind) {
if(!cJSON_IsString(kind) && !cJSON_IsNull(kind))
{
goto end; //String
}
}
// v1_endpoints->metadata
cJSON *metadata = cJSON_GetObjectItemCaseSensitive(v1_endpointsJSON, "metadata");
if (cJSON_IsNull(metadata)) {
metadata = NULL;
}
if (metadata) {
metadata_local_nonprim = v1_object_meta_parseFromJSON(metadata); //nonprimitive
}
// v1_endpoints->subsets
cJSON *subsets = cJSON_GetObjectItemCaseSensitive(v1_endpointsJSON, "subsets");
if (cJSON_IsNull(subsets)) {
subsets = NULL;
}
if (subsets) {
cJSON *subsets_local_nonprimitive = NULL;
if(!cJSON_IsArray(subsets)){
goto end; //nonprimitive container
}
subsetsList = list_createList();
cJSON_ArrayForEach(subsets_local_nonprimitive,subsets )
{
if(!cJSON_IsObject(subsets_local_nonprimitive)){
goto end;
}
v1_endpoint_subset_t *subsetsItem = v1_endpoint_subset_parseFromJSON(subsets_local_nonprimitive);
list_addElement(subsetsList, subsetsItem);
}
}
v1_endpoints_local_var = v1_endpoints_create_internal (
api_version && !cJSON_IsNull(api_version) ? strdup(api_version->valuestring) : NULL,
kind && !cJSON_IsNull(kind) ? strdup(kind->valuestring) : NULL,
metadata ? metadata_local_nonprim : NULL,
subsets ? subsetsList : NULL
);
return v1_endpoints_local_var;
end:
if (metadata_local_nonprim) {
v1_object_meta_free(metadata_local_nonprim);
metadata_local_nonprim = NULL;
}
if (subsetsList) {
listEntry_t *listEntry = NULL;
list_ForEach(listEntry, subsetsList) {
v1_endpoint_subset_free(listEntry->data);
listEntry->data = NULL;
}
list_freeList(subsetsList);
subsetsList = NULL;
}
return NULL;
}