369 lines
13 KiB
C
369 lines
13 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1_persistent_volume_claim_status.h"
|
|
|
|
|
|
|
|
v1_persistent_volume_claim_status_t *v1_persistent_volume_claim_status_create(
|
|
list_t *access_modes,
|
|
list_t* allocated_resources,
|
|
list_t* capacity,
|
|
list_t *conditions,
|
|
char *phase,
|
|
char *resize_status
|
|
) {
|
|
v1_persistent_volume_claim_status_t *v1_persistent_volume_claim_status_local_var = malloc(sizeof(v1_persistent_volume_claim_status_t));
|
|
if (!v1_persistent_volume_claim_status_local_var) {
|
|
return NULL;
|
|
}
|
|
v1_persistent_volume_claim_status_local_var->access_modes = access_modes;
|
|
v1_persistent_volume_claim_status_local_var->allocated_resources = allocated_resources;
|
|
v1_persistent_volume_claim_status_local_var->capacity = capacity;
|
|
v1_persistent_volume_claim_status_local_var->conditions = conditions;
|
|
v1_persistent_volume_claim_status_local_var->phase = phase;
|
|
v1_persistent_volume_claim_status_local_var->resize_status = resize_status;
|
|
|
|
return v1_persistent_volume_claim_status_local_var;
|
|
}
|
|
|
|
|
|
void v1_persistent_volume_claim_status_free(v1_persistent_volume_claim_status_t *v1_persistent_volume_claim_status) {
|
|
if(NULL == v1_persistent_volume_claim_status){
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1_persistent_volume_claim_status->access_modes) {
|
|
list_ForEach(listEntry, v1_persistent_volume_claim_status->access_modes) {
|
|
free(listEntry->data);
|
|
}
|
|
list_freeList(v1_persistent_volume_claim_status->access_modes);
|
|
v1_persistent_volume_claim_status->access_modes = NULL;
|
|
}
|
|
if (v1_persistent_volume_claim_status->allocated_resources) {
|
|
list_ForEach(listEntry, v1_persistent_volume_claim_status->allocated_resources) {
|
|
keyValuePair_t *localKeyValue = (keyValuePair_t*) listEntry->data;
|
|
free (localKeyValue->key);
|
|
free (localKeyValue->value);
|
|
keyValuePair_free(localKeyValue);
|
|
}
|
|
list_freeList(v1_persistent_volume_claim_status->allocated_resources);
|
|
v1_persistent_volume_claim_status->allocated_resources = NULL;
|
|
}
|
|
if (v1_persistent_volume_claim_status->capacity) {
|
|
list_ForEach(listEntry, v1_persistent_volume_claim_status->capacity) {
|
|
keyValuePair_t *localKeyValue = (keyValuePair_t*) listEntry->data;
|
|
free (localKeyValue->key);
|
|
free (localKeyValue->value);
|
|
keyValuePair_free(localKeyValue);
|
|
}
|
|
list_freeList(v1_persistent_volume_claim_status->capacity);
|
|
v1_persistent_volume_claim_status->capacity = NULL;
|
|
}
|
|
if (v1_persistent_volume_claim_status->conditions) {
|
|
list_ForEach(listEntry, v1_persistent_volume_claim_status->conditions) {
|
|
v1_persistent_volume_claim_condition_free(listEntry->data);
|
|
}
|
|
list_freeList(v1_persistent_volume_claim_status->conditions);
|
|
v1_persistent_volume_claim_status->conditions = NULL;
|
|
}
|
|
if (v1_persistent_volume_claim_status->phase) {
|
|
free(v1_persistent_volume_claim_status->phase);
|
|
v1_persistent_volume_claim_status->phase = NULL;
|
|
}
|
|
if (v1_persistent_volume_claim_status->resize_status) {
|
|
free(v1_persistent_volume_claim_status->resize_status);
|
|
v1_persistent_volume_claim_status->resize_status = NULL;
|
|
}
|
|
free(v1_persistent_volume_claim_status);
|
|
}
|
|
|
|
cJSON *v1_persistent_volume_claim_status_convertToJSON(v1_persistent_volume_claim_status_t *v1_persistent_volume_claim_status) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1_persistent_volume_claim_status->access_modes
|
|
if(v1_persistent_volume_claim_status->access_modes) {
|
|
cJSON *access_modes = cJSON_AddArrayToObject(item, "accessModes");
|
|
if(access_modes == NULL) {
|
|
goto fail; //primitive container
|
|
}
|
|
|
|
listEntry_t *access_modesListEntry;
|
|
list_ForEach(access_modesListEntry, v1_persistent_volume_claim_status->access_modes) {
|
|
if(cJSON_AddStringToObject(access_modes, "", (char*)access_modesListEntry->data) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_persistent_volume_claim_status->allocated_resources
|
|
if(v1_persistent_volume_claim_status->allocated_resources) {
|
|
cJSON *allocated_resources = cJSON_AddObjectToObject(item, "allocatedResources");
|
|
if(allocated_resources == NULL) {
|
|
goto fail; //primitive map container
|
|
}
|
|
cJSON *localMapObject = allocated_resources;
|
|
listEntry_t *allocated_resourcesListEntry;
|
|
if (v1_persistent_volume_claim_status->allocated_resources) {
|
|
list_ForEach(allocated_resourcesListEntry, v1_persistent_volume_claim_status->allocated_resources) {
|
|
keyValuePair_t *localKeyValue = (keyValuePair_t*)allocated_resourcesListEntry->data;
|
|
if(cJSON_AddStringToObject(localMapObject, localKeyValue->key, (char*)localKeyValue->value) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_persistent_volume_claim_status->capacity
|
|
if(v1_persistent_volume_claim_status->capacity) {
|
|
cJSON *capacity = cJSON_AddObjectToObject(item, "capacity");
|
|
if(capacity == NULL) {
|
|
goto fail; //primitive map container
|
|
}
|
|
cJSON *localMapObject = capacity;
|
|
listEntry_t *capacityListEntry;
|
|
if (v1_persistent_volume_claim_status->capacity) {
|
|
list_ForEach(capacityListEntry, v1_persistent_volume_claim_status->capacity) {
|
|
keyValuePair_t *localKeyValue = (keyValuePair_t*)capacityListEntry->data;
|
|
if(cJSON_AddStringToObject(localMapObject, localKeyValue->key, (char*)localKeyValue->value) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_persistent_volume_claim_status->conditions
|
|
if(v1_persistent_volume_claim_status->conditions) {
|
|
cJSON *conditions = cJSON_AddArrayToObject(item, "conditions");
|
|
if(conditions == NULL) {
|
|
goto fail; //nonprimitive container
|
|
}
|
|
|
|
listEntry_t *conditionsListEntry;
|
|
if (v1_persistent_volume_claim_status->conditions) {
|
|
list_ForEach(conditionsListEntry, v1_persistent_volume_claim_status->conditions) {
|
|
cJSON *itemLocal = v1_persistent_volume_claim_condition_convertToJSON(conditionsListEntry->data);
|
|
if(itemLocal == NULL) {
|
|
goto fail;
|
|
}
|
|
cJSON_AddItemToArray(conditions, itemLocal);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_persistent_volume_claim_status->phase
|
|
if(v1_persistent_volume_claim_status->phase) {
|
|
if(cJSON_AddStringToObject(item, "phase", v1_persistent_volume_claim_status->phase) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_persistent_volume_claim_status->resize_status
|
|
if(v1_persistent_volume_claim_status->resize_status) {
|
|
if(cJSON_AddStringToObject(item, "resizeStatus", v1_persistent_volume_claim_status->resize_status) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1_persistent_volume_claim_status_t *v1_persistent_volume_claim_status_parseFromJSON(cJSON *v1_persistent_volume_claim_statusJSON){
|
|
|
|
v1_persistent_volume_claim_status_t *v1_persistent_volume_claim_status_local_var = NULL;
|
|
|
|
// define the local list for v1_persistent_volume_claim_status->access_modes
|
|
list_t *access_modesList = NULL;
|
|
|
|
// define the local map for v1_persistent_volume_claim_status->allocated_resources
|
|
list_t *allocated_resourcesList = NULL;
|
|
|
|
// define the local map for v1_persistent_volume_claim_status->capacity
|
|
list_t *capacityList = NULL;
|
|
|
|
// define the local list for v1_persistent_volume_claim_status->conditions
|
|
list_t *conditionsList = NULL;
|
|
|
|
// v1_persistent_volume_claim_status->access_modes
|
|
cJSON *access_modes = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_statusJSON, "accessModes");
|
|
if (access_modes) {
|
|
cJSON *access_modes_local = NULL;
|
|
if(!cJSON_IsArray(access_modes)) {
|
|
goto end;//primitive container
|
|
}
|
|
access_modesList = list_createList();
|
|
|
|
cJSON_ArrayForEach(access_modes_local, access_modes)
|
|
{
|
|
if(!cJSON_IsString(access_modes_local))
|
|
{
|
|
goto end;
|
|
}
|
|
list_addElement(access_modesList , strdup(access_modes_local->valuestring));
|
|
}
|
|
}
|
|
|
|
// v1_persistent_volume_claim_status->allocated_resources
|
|
cJSON *allocated_resources = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_statusJSON, "allocatedResources");
|
|
if (allocated_resources) {
|
|
cJSON *allocated_resources_local_map = NULL;
|
|
if(!cJSON_IsObject(allocated_resources) && !cJSON_IsNull(allocated_resources))
|
|
{
|
|
goto end;//primitive map container
|
|
}
|
|
if(cJSON_IsObject(allocated_resources))
|
|
{
|
|
allocated_resourcesList = list_createList();
|
|
keyValuePair_t *localMapKeyPair;
|
|
cJSON_ArrayForEach(allocated_resources_local_map, allocated_resources)
|
|
{
|
|
cJSON *localMapObject = allocated_resources_local_map;
|
|
if(!cJSON_IsString(localMapObject))
|
|
{
|
|
goto end;
|
|
}
|
|
localMapKeyPair = keyValuePair_create(strdup(localMapObject->string),strdup(localMapObject->valuestring));
|
|
list_addElement(allocated_resourcesList , localMapKeyPair);
|
|
}
|
|
}
|
|
}
|
|
|
|
// v1_persistent_volume_claim_status->capacity
|
|
cJSON *capacity = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_statusJSON, "capacity");
|
|
if (capacity) {
|
|
cJSON *capacity_local_map = NULL;
|
|
if(!cJSON_IsObject(capacity) && !cJSON_IsNull(capacity))
|
|
{
|
|
goto end;//primitive map container
|
|
}
|
|
if(cJSON_IsObject(capacity))
|
|
{
|
|
capacityList = list_createList();
|
|
keyValuePair_t *localMapKeyPair;
|
|
cJSON_ArrayForEach(capacity_local_map, capacity)
|
|
{
|
|
cJSON *localMapObject = capacity_local_map;
|
|
if(!cJSON_IsString(localMapObject))
|
|
{
|
|
goto end;
|
|
}
|
|
localMapKeyPair = keyValuePair_create(strdup(localMapObject->string),strdup(localMapObject->valuestring));
|
|
list_addElement(capacityList , localMapKeyPair);
|
|
}
|
|
}
|
|
}
|
|
|
|
// v1_persistent_volume_claim_status->conditions
|
|
cJSON *conditions = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_statusJSON, "conditions");
|
|
if (conditions) {
|
|
cJSON *conditions_local_nonprimitive = NULL;
|
|
if(!cJSON_IsArray(conditions)){
|
|
goto end; //nonprimitive container
|
|
}
|
|
|
|
conditionsList = list_createList();
|
|
|
|
cJSON_ArrayForEach(conditions_local_nonprimitive,conditions )
|
|
{
|
|
if(!cJSON_IsObject(conditions_local_nonprimitive)){
|
|
goto end;
|
|
}
|
|
v1_persistent_volume_claim_condition_t *conditionsItem = v1_persistent_volume_claim_condition_parseFromJSON(conditions_local_nonprimitive);
|
|
|
|
list_addElement(conditionsList, conditionsItem);
|
|
}
|
|
}
|
|
|
|
// v1_persistent_volume_claim_status->phase
|
|
cJSON *phase = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_statusJSON, "phase");
|
|
if (phase) {
|
|
if(!cJSON_IsString(phase))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_persistent_volume_claim_status->resize_status
|
|
cJSON *resize_status = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_statusJSON, "resizeStatus");
|
|
if (resize_status) {
|
|
if(!cJSON_IsString(resize_status))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
|
|
v1_persistent_volume_claim_status_local_var = v1_persistent_volume_claim_status_create (
|
|
access_modes ? access_modesList : NULL,
|
|
allocated_resources ? allocated_resourcesList : NULL,
|
|
capacity ? capacityList : NULL,
|
|
conditions ? conditionsList : NULL,
|
|
phase ? strdup(phase->valuestring) : NULL,
|
|
resize_status ? strdup(resize_status->valuestring) : NULL
|
|
);
|
|
|
|
return v1_persistent_volume_claim_status_local_var;
|
|
end:
|
|
if (access_modesList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, access_modesList) {
|
|
free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(access_modesList);
|
|
access_modesList = NULL;
|
|
}
|
|
if (allocated_resourcesList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, allocated_resourcesList) {
|
|
keyValuePair_t *localKeyValue = (keyValuePair_t*) listEntry->data;
|
|
free(localKeyValue->key);
|
|
localKeyValue->key = NULL;
|
|
free(localKeyValue->value);
|
|
localKeyValue->value = NULL;
|
|
keyValuePair_free(localKeyValue);
|
|
localKeyValue = NULL;
|
|
}
|
|
list_freeList(allocated_resourcesList);
|
|
allocated_resourcesList = NULL;
|
|
}
|
|
if (capacityList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, capacityList) {
|
|
keyValuePair_t *localKeyValue = (keyValuePair_t*) listEntry->data;
|
|
free(localKeyValue->key);
|
|
localKeyValue->key = NULL;
|
|
free(localKeyValue->value);
|
|
localKeyValue->value = NULL;
|
|
keyValuePair_free(localKeyValue);
|
|
localKeyValue = NULL;
|
|
}
|
|
list_freeList(capacityList);
|
|
capacityList = NULL;
|
|
}
|
|
if (conditionsList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, conditionsList) {
|
|
v1_persistent_volume_claim_condition_free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(conditionsList);
|
|
conditionsList = NULL;
|
|
}
|
|
return NULL;
|
|
|
|
}
|