2020-03-18 17:24:33 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include "v1_custom_resource_definition.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
v1_custom_resource_definition_t *v1_custom_resource_definition_create(
|
|
|
|
|
char *api_version,
|
|
|
|
|
char *kind,
|
|
|
|
|
v1_object_meta_t *metadata,
|
|
|
|
|
v1_custom_resource_definition_spec_t *spec,
|
|
|
|
|
v1_custom_resource_definition_status_t *status
|
|
|
|
|
) {
|
|
|
|
|
v1_custom_resource_definition_t *v1_custom_resource_definition_local_var = malloc(sizeof(v1_custom_resource_definition_t));
|
|
|
|
|
if (!v1_custom_resource_definition_local_var) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
v1_custom_resource_definition_local_var->api_version = api_version;
|
|
|
|
|
v1_custom_resource_definition_local_var->kind = kind;
|
|
|
|
|
v1_custom_resource_definition_local_var->metadata = metadata;
|
|
|
|
|
v1_custom_resource_definition_local_var->spec = spec;
|
|
|
|
|
v1_custom_resource_definition_local_var->status = status;
|
|
|
|
|
|
|
|
|
|
return v1_custom_resource_definition_local_var;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void v1_custom_resource_definition_free(v1_custom_resource_definition_t *v1_custom_resource_definition) {
|
|
|
|
|
if(NULL == v1_custom_resource_definition){
|
|
|
|
|
return ;
|
|
|
|
|
}
|
|
|
|
|
listEntry_t *listEntry;
|
2021-01-05 15:42:34 +08:00
|
|
|
if (v1_custom_resource_definition->api_version) {
|
|
|
|
|
free(v1_custom_resource_definition->api_version);
|
|
|
|
|
v1_custom_resource_definition->api_version = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_custom_resource_definition->kind) {
|
|
|
|
|
free(v1_custom_resource_definition->kind);
|
|
|
|
|
v1_custom_resource_definition->kind = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_custom_resource_definition->metadata) {
|
|
|
|
|
v1_object_meta_free(v1_custom_resource_definition->metadata);
|
|
|
|
|
v1_custom_resource_definition->metadata = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_custom_resource_definition->spec) {
|
|
|
|
|
v1_custom_resource_definition_spec_free(v1_custom_resource_definition->spec);
|
|
|
|
|
v1_custom_resource_definition->spec = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_custom_resource_definition->status) {
|
|
|
|
|
v1_custom_resource_definition_status_free(v1_custom_resource_definition->status);
|
|
|
|
|
v1_custom_resource_definition->status = NULL;
|
|
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
free(v1_custom_resource_definition);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cJSON *v1_custom_resource_definition_convertToJSON(v1_custom_resource_definition_t *v1_custom_resource_definition) {
|
|
|
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->api_version
|
|
|
|
|
if(v1_custom_resource_definition->api_version) {
|
|
|
|
|
if(cJSON_AddStringToObject(item, "apiVersion", v1_custom_resource_definition->api_version) == NULL) {
|
|
|
|
|
goto fail; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->kind
|
|
|
|
|
if(v1_custom_resource_definition->kind) {
|
|
|
|
|
if(cJSON_AddStringToObject(item, "kind", v1_custom_resource_definition->kind) == NULL) {
|
|
|
|
|
goto fail; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->metadata
|
|
|
|
|
if(v1_custom_resource_definition->metadata) {
|
|
|
|
|
cJSON *metadata_local_JSON = v1_object_meta_convertToJSON(v1_custom_resource_definition->metadata);
|
|
|
|
|
if(metadata_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "metadata", metadata_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->spec
|
|
|
|
|
if (!v1_custom_resource_definition->spec) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cJSON *spec_local_JSON = v1_custom_resource_definition_spec_convertToJSON(v1_custom_resource_definition->spec);
|
|
|
|
|
if(spec_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "spec", spec_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->status
|
|
|
|
|
if(v1_custom_resource_definition->status) {
|
|
|
|
|
cJSON *status_local_JSON = v1_custom_resource_definition_status_convertToJSON(v1_custom_resource_definition->status);
|
|
|
|
|
if(status_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "status", status_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return item;
|
|
|
|
|
fail:
|
|
|
|
|
if (item) {
|
|
|
|
|
cJSON_Delete(item);
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
v1_custom_resource_definition_t *v1_custom_resource_definition_parseFromJSON(cJSON *v1_custom_resource_definitionJSON){
|
|
|
|
|
|
|
|
|
|
v1_custom_resource_definition_t *v1_custom_resource_definition_local_var = NULL;
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->api_version
|
|
|
|
|
cJSON *api_version = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definitionJSON, "apiVersion");
|
|
|
|
|
if (api_version) {
|
|
|
|
|
if(!cJSON_IsString(api_version))
|
|
|
|
|
{
|
|
|
|
|
goto end; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->kind
|
|
|
|
|
cJSON *kind = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definitionJSON, "kind");
|
|
|
|
|
if (kind) {
|
|
|
|
|
if(!cJSON_IsString(kind))
|
|
|
|
|
{
|
|
|
|
|
goto end; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->metadata
|
|
|
|
|
cJSON *metadata = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definitionJSON, "metadata");
|
|
|
|
|
v1_object_meta_t *metadata_local_nonprim = NULL;
|
|
|
|
|
if (metadata) {
|
|
|
|
|
metadata_local_nonprim = v1_object_meta_parseFromJSON(metadata); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->spec
|
|
|
|
|
cJSON *spec = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definitionJSON, "spec");
|
|
|
|
|
if (!spec) {
|
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
v1_custom_resource_definition_spec_t *spec_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
spec_local_nonprim = v1_custom_resource_definition_spec_parseFromJSON(spec); //nonprimitive
|
|
|
|
|
|
|
|
|
|
// v1_custom_resource_definition->status
|
|
|
|
|
cJSON *status = cJSON_GetObjectItemCaseSensitive(v1_custom_resource_definitionJSON, "status");
|
|
|
|
|
v1_custom_resource_definition_status_t *status_local_nonprim = NULL;
|
|
|
|
|
if (status) {
|
|
|
|
|
status_local_nonprim = v1_custom_resource_definition_status_parseFromJSON(status); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
v1_custom_resource_definition_local_var = v1_custom_resource_definition_create (
|
|
|
|
|
api_version ? strdup(api_version->valuestring) : NULL,
|
|
|
|
|
kind ? strdup(kind->valuestring) : NULL,
|
|
|
|
|
metadata ? metadata_local_nonprim : NULL,
|
|
|
|
|
spec_local_nonprim,
|
|
|
|
|
status ? status_local_nonprim : NULL
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return v1_custom_resource_definition_local_var;
|
|
|
|
|
end:
|
2021-01-11 12:15:24 +08:00
|
|
|
if (metadata_local_nonprim) {
|
|
|
|
|
v1_object_meta_free(metadata_local_nonprim);
|
|
|
|
|
metadata_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (spec_local_nonprim) {
|
|
|
|
|
v1_custom_resource_definition_spec_free(spec_local_nonprim);
|
|
|
|
|
spec_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (status_local_nonprim) {
|
|
|
|
|
v1_custom_resource_definition_status_free(status_local_nonprim);
|
|
|
|
|
status_local_nonprim = NULL;
|
|
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
}
|