557 lines
17 KiB
C
557 lines
17 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1_pod_status.h"
|
|
|
|
|
|
|
|
v1_pod_status_t *v1_pod_status_create(
|
|
list_t *conditions,
|
|
list_t *container_statuses,
|
|
list_t *ephemeral_container_statuses,
|
|
char *host_ip,
|
|
list_t *init_container_statuses,
|
|
char *message,
|
|
char *nominated_node_name,
|
|
char *phase,
|
|
char *pod_ip,
|
|
list_t *pod_ips,
|
|
char *qos_class,
|
|
char *reason,
|
|
char *start_time
|
|
) {
|
|
v1_pod_status_t *v1_pod_status_local_var = malloc(sizeof(v1_pod_status_t));
|
|
if (!v1_pod_status_local_var) {
|
|
return NULL;
|
|
}
|
|
v1_pod_status_local_var->conditions = conditions;
|
|
v1_pod_status_local_var->container_statuses = container_statuses;
|
|
v1_pod_status_local_var->ephemeral_container_statuses = ephemeral_container_statuses;
|
|
v1_pod_status_local_var->host_ip = host_ip;
|
|
v1_pod_status_local_var->init_container_statuses = init_container_statuses;
|
|
v1_pod_status_local_var->message = message;
|
|
v1_pod_status_local_var->nominated_node_name = nominated_node_name;
|
|
v1_pod_status_local_var->phase = phase;
|
|
v1_pod_status_local_var->pod_ip = pod_ip;
|
|
v1_pod_status_local_var->pod_ips = pod_ips;
|
|
v1_pod_status_local_var->qos_class = qos_class;
|
|
v1_pod_status_local_var->reason = reason;
|
|
v1_pod_status_local_var->start_time = start_time;
|
|
|
|
return v1_pod_status_local_var;
|
|
}
|
|
|
|
|
|
void v1_pod_status_free(v1_pod_status_t *v1_pod_status) {
|
|
if(NULL == v1_pod_status){
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1_pod_status->conditions) {
|
|
list_ForEach(listEntry, v1_pod_status->conditions) {
|
|
v1_pod_condition_free(listEntry->data);
|
|
}
|
|
list_freeList(v1_pod_status->conditions);
|
|
v1_pod_status->conditions = NULL;
|
|
}
|
|
if (v1_pod_status->container_statuses) {
|
|
list_ForEach(listEntry, v1_pod_status->container_statuses) {
|
|
v1_container_status_free(listEntry->data);
|
|
}
|
|
list_freeList(v1_pod_status->container_statuses);
|
|
v1_pod_status->container_statuses = NULL;
|
|
}
|
|
if (v1_pod_status->ephemeral_container_statuses) {
|
|
list_ForEach(listEntry, v1_pod_status->ephemeral_container_statuses) {
|
|
v1_container_status_free(listEntry->data);
|
|
}
|
|
list_freeList(v1_pod_status->ephemeral_container_statuses);
|
|
v1_pod_status->ephemeral_container_statuses = NULL;
|
|
}
|
|
if (v1_pod_status->host_ip) {
|
|
free(v1_pod_status->host_ip);
|
|
v1_pod_status->host_ip = NULL;
|
|
}
|
|
if (v1_pod_status->init_container_statuses) {
|
|
list_ForEach(listEntry, v1_pod_status->init_container_statuses) {
|
|
v1_container_status_free(listEntry->data);
|
|
}
|
|
list_freeList(v1_pod_status->init_container_statuses);
|
|
v1_pod_status->init_container_statuses = NULL;
|
|
}
|
|
if (v1_pod_status->message) {
|
|
free(v1_pod_status->message);
|
|
v1_pod_status->message = NULL;
|
|
}
|
|
if (v1_pod_status->nominated_node_name) {
|
|
free(v1_pod_status->nominated_node_name);
|
|
v1_pod_status->nominated_node_name = NULL;
|
|
}
|
|
if (v1_pod_status->phase) {
|
|
free(v1_pod_status->phase);
|
|
v1_pod_status->phase = NULL;
|
|
}
|
|
if (v1_pod_status->pod_ip) {
|
|
free(v1_pod_status->pod_ip);
|
|
v1_pod_status->pod_ip = NULL;
|
|
}
|
|
if (v1_pod_status->pod_ips) {
|
|
list_ForEach(listEntry, v1_pod_status->pod_ips) {
|
|
v1_pod_ip_free(listEntry->data);
|
|
}
|
|
list_freeList(v1_pod_status->pod_ips);
|
|
v1_pod_status->pod_ips = NULL;
|
|
}
|
|
if (v1_pod_status->qos_class) {
|
|
free(v1_pod_status->qos_class);
|
|
v1_pod_status->qos_class = NULL;
|
|
}
|
|
if (v1_pod_status->reason) {
|
|
free(v1_pod_status->reason);
|
|
v1_pod_status->reason = NULL;
|
|
}
|
|
if (v1_pod_status->start_time) {
|
|
free(v1_pod_status->start_time);
|
|
v1_pod_status->start_time = NULL;
|
|
}
|
|
free(v1_pod_status);
|
|
}
|
|
|
|
cJSON *v1_pod_status_convertToJSON(v1_pod_status_t *v1_pod_status) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1_pod_status->conditions
|
|
if(v1_pod_status->conditions) {
|
|
cJSON *conditions = cJSON_AddArrayToObject(item, "conditions");
|
|
if(conditions == NULL) {
|
|
goto fail; //nonprimitive container
|
|
}
|
|
|
|
listEntry_t *conditionsListEntry;
|
|
if (v1_pod_status->conditions) {
|
|
list_ForEach(conditionsListEntry, v1_pod_status->conditions) {
|
|
cJSON *itemLocal = v1_pod_condition_convertToJSON(conditionsListEntry->data);
|
|
if(itemLocal == NULL) {
|
|
goto fail;
|
|
}
|
|
cJSON_AddItemToArray(conditions, itemLocal);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->container_statuses
|
|
if(v1_pod_status->container_statuses) {
|
|
cJSON *container_statuses = cJSON_AddArrayToObject(item, "containerStatuses");
|
|
if(container_statuses == NULL) {
|
|
goto fail; //nonprimitive container
|
|
}
|
|
|
|
listEntry_t *container_statusesListEntry;
|
|
if (v1_pod_status->container_statuses) {
|
|
list_ForEach(container_statusesListEntry, v1_pod_status->container_statuses) {
|
|
cJSON *itemLocal = v1_container_status_convertToJSON(container_statusesListEntry->data);
|
|
if(itemLocal == NULL) {
|
|
goto fail;
|
|
}
|
|
cJSON_AddItemToArray(container_statuses, itemLocal);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->ephemeral_container_statuses
|
|
if(v1_pod_status->ephemeral_container_statuses) {
|
|
cJSON *ephemeral_container_statuses = cJSON_AddArrayToObject(item, "ephemeralContainerStatuses");
|
|
if(ephemeral_container_statuses == NULL) {
|
|
goto fail; //nonprimitive container
|
|
}
|
|
|
|
listEntry_t *ephemeral_container_statusesListEntry;
|
|
if (v1_pod_status->ephemeral_container_statuses) {
|
|
list_ForEach(ephemeral_container_statusesListEntry, v1_pod_status->ephemeral_container_statuses) {
|
|
cJSON *itemLocal = v1_container_status_convertToJSON(ephemeral_container_statusesListEntry->data);
|
|
if(itemLocal == NULL) {
|
|
goto fail;
|
|
}
|
|
cJSON_AddItemToArray(ephemeral_container_statuses, itemLocal);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->host_ip
|
|
if(v1_pod_status->host_ip) {
|
|
if(cJSON_AddStringToObject(item, "hostIP", v1_pod_status->host_ip) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->init_container_statuses
|
|
if(v1_pod_status->init_container_statuses) {
|
|
cJSON *init_container_statuses = cJSON_AddArrayToObject(item, "initContainerStatuses");
|
|
if(init_container_statuses == NULL) {
|
|
goto fail; //nonprimitive container
|
|
}
|
|
|
|
listEntry_t *init_container_statusesListEntry;
|
|
if (v1_pod_status->init_container_statuses) {
|
|
list_ForEach(init_container_statusesListEntry, v1_pod_status->init_container_statuses) {
|
|
cJSON *itemLocal = v1_container_status_convertToJSON(init_container_statusesListEntry->data);
|
|
if(itemLocal == NULL) {
|
|
goto fail;
|
|
}
|
|
cJSON_AddItemToArray(init_container_statuses, itemLocal);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->message
|
|
if(v1_pod_status->message) {
|
|
if(cJSON_AddStringToObject(item, "message", v1_pod_status->message) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->nominated_node_name
|
|
if(v1_pod_status->nominated_node_name) {
|
|
if(cJSON_AddStringToObject(item, "nominatedNodeName", v1_pod_status->nominated_node_name) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->phase
|
|
if(v1_pod_status->phase) {
|
|
if(cJSON_AddStringToObject(item, "phase", v1_pod_status->phase) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->pod_ip
|
|
if(v1_pod_status->pod_ip) {
|
|
if(cJSON_AddStringToObject(item, "podIP", v1_pod_status->pod_ip) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->pod_ips
|
|
if(v1_pod_status->pod_ips) {
|
|
cJSON *pod_ips = cJSON_AddArrayToObject(item, "podIPs");
|
|
if(pod_ips == NULL) {
|
|
goto fail; //nonprimitive container
|
|
}
|
|
|
|
listEntry_t *pod_ipsListEntry;
|
|
if (v1_pod_status->pod_ips) {
|
|
list_ForEach(pod_ipsListEntry, v1_pod_status->pod_ips) {
|
|
cJSON *itemLocal = v1_pod_ip_convertToJSON(pod_ipsListEntry->data);
|
|
if(itemLocal == NULL) {
|
|
goto fail;
|
|
}
|
|
cJSON_AddItemToArray(pod_ips, itemLocal);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->qos_class
|
|
if(v1_pod_status->qos_class) {
|
|
if(cJSON_AddStringToObject(item, "qosClass", v1_pod_status->qos_class) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->reason
|
|
if(v1_pod_status->reason) {
|
|
if(cJSON_AddStringToObject(item, "reason", v1_pod_status->reason) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_pod_status->start_time
|
|
if(v1_pod_status->start_time) {
|
|
if(cJSON_AddStringToObject(item, "startTime", v1_pod_status->start_time) == NULL) {
|
|
goto fail; //Date-Time
|
|
}
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1_pod_status_t *v1_pod_status_parseFromJSON(cJSON *v1_pod_statusJSON){
|
|
|
|
v1_pod_status_t *v1_pod_status_local_var = NULL;
|
|
|
|
// define the local list for v1_pod_status->conditions
|
|
list_t *conditionsList = NULL;
|
|
|
|
// define the local list for v1_pod_status->container_statuses
|
|
list_t *container_statusesList = NULL;
|
|
|
|
// define the local list for v1_pod_status->ephemeral_container_statuses
|
|
list_t *ephemeral_container_statusesList = NULL;
|
|
|
|
// define the local list for v1_pod_status->init_container_statuses
|
|
list_t *init_container_statusesList = NULL;
|
|
|
|
// define the local list for v1_pod_status->pod_ips
|
|
list_t *pod_ipsList = NULL;
|
|
|
|
// v1_pod_status->conditions
|
|
cJSON *conditions = cJSON_GetObjectItemCaseSensitive(v1_pod_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_pod_condition_t *conditionsItem = v1_pod_condition_parseFromJSON(conditions_local_nonprimitive);
|
|
|
|
list_addElement(conditionsList, conditionsItem);
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->container_statuses
|
|
cJSON *container_statuses = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "containerStatuses");
|
|
if (container_statuses) {
|
|
cJSON *container_statuses_local_nonprimitive = NULL;
|
|
if(!cJSON_IsArray(container_statuses)){
|
|
goto end; //nonprimitive container
|
|
}
|
|
|
|
container_statusesList = list_createList();
|
|
|
|
cJSON_ArrayForEach(container_statuses_local_nonprimitive,container_statuses )
|
|
{
|
|
if(!cJSON_IsObject(container_statuses_local_nonprimitive)){
|
|
goto end;
|
|
}
|
|
v1_container_status_t *container_statusesItem = v1_container_status_parseFromJSON(container_statuses_local_nonprimitive);
|
|
|
|
list_addElement(container_statusesList, container_statusesItem);
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->ephemeral_container_statuses
|
|
cJSON *ephemeral_container_statuses = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "ephemeralContainerStatuses");
|
|
if (ephemeral_container_statuses) {
|
|
cJSON *ephemeral_container_statuses_local_nonprimitive = NULL;
|
|
if(!cJSON_IsArray(ephemeral_container_statuses)){
|
|
goto end; //nonprimitive container
|
|
}
|
|
|
|
ephemeral_container_statusesList = list_createList();
|
|
|
|
cJSON_ArrayForEach(ephemeral_container_statuses_local_nonprimitive,ephemeral_container_statuses )
|
|
{
|
|
if(!cJSON_IsObject(ephemeral_container_statuses_local_nonprimitive)){
|
|
goto end;
|
|
}
|
|
v1_container_status_t *ephemeral_container_statusesItem = v1_container_status_parseFromJSON(ephemeral_container_statuses_local_nonprimitive);
|
|
|
|
list_addElement(ephemeral_container_statusesList, ephemeral_container_statusesItem);
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->host_ip
|
|
cJSON *host_ip = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "hostIP");
|
|
if (host_ip) {
|
|
if(!cJSON_IsString(host_ip))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->init_container_statuses
|
|
cJSON *init_container_statuses = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "initContainerStatuses");
|
|
if (init_container_statuses) {
|
|
cJSON *init_container_statuses_local_nonprimitive = NULL;
|
|
if(!cJSON_IsArray(init_container_statuses)){
|
|
goto end; //nonprimitive container
|
|
}
|
|
|
|
init_container_statusesList = list_createList();
|
|
|
|
cJSON_ArrayForEach(init_container_statuses_local_nonprimitive,init_container_statuses )
|
|
{
|
|
if(!cJSON_IsObject(init_container_statuses_local_nonprimitive)){
|
|
goto end;
|
|
}
|
|
v1_container_status_t *init_container_statusesItem = v1_container_status_parseFromJSON(init_container_statuses_local_nonprimitive);
|
|
|
|
list_addElement(init_container_statusesList, init_container_statusesItem);
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->message
|
|
cJSON *message = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "message");
|
|
if (message) {
|
|
if(!cJSON_IsString(message))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->nominated_node_name
|
|
cJSON *nominated_node_name = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "nominatedNodeName");
|
|
if (nominated_node_name) {
|
|
if(!cJSON_IsString(nominated_node_name))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->phase
|
|
cJSON *phase = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "phase");
|
|
if (phase) {
|
|
if(!cJSON_IsString(phase))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->pod_ip
|
|
cJSON *pod_ip = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "podIP");
|
|
if (pod_ip) {
|
|
if(!cJSON_IsString(pod_ip))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->pod_ips
|
|
cJSON *pod_ips = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "podIPs");
|
|
if (pod_ips) {
|
|
cJSON *pod_ips_local_nonprimitive = NULL;
|
|
if(!cJSON_IsArray(pod_ips)){
|
|
goto end; //nonprimitive container
|
|
}
|
|
|
|
pod_ipsList = list_createList();
|
|
|
|
cJSON_ArrayForEach(pod_ips_local_nonprimitive,pod_ips )
|
|
{
|
|
if(!cJSON_IsObject(pod_ips_local_nonprimitive)){
|
|
goto end;
|
|
}
|
|
v1_pod_ip_t *pod_ipsItem = v1_pod_ip_parseFromJSON(pod_ips_local_nonprimitive);
|
|
|
|
list_addElement(pod_ipsList, pod_ipsItem);
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->qos_class
|
|
cJSON *qos_class = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "qosClass");
|
|
if (qos_class) {
|
|
if(!cJSON_IsString(qos_class))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->reason
|
|
cJSON *reason = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "reason");
|
|
if (reason) {
|
|
if(!cJSON_IsString(reason))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_pod_status->start_time
|
|
cJSON *start_time = cJSON_GetObjectItemCaseSensitive(v1_pod_statusJSON, "startTime");
|
|
if (start_time) {
|
|
if(!cJSON_IsString(start_time) && !cJSON_IsNull(start_time))
|
|
{
|
|
goto end; //DateTime
|
|
}
|
|
}
|
|
|
|
|
|
v1_pod_status_local_var = v1_pod_status_create (
|
|
conditions ? conditionsList : NULL,
|
|
container_statuses ? container_statusesList : NULL,
|
|
ephemeral_container_statuses ? ephemeral_container_statusesList : NULL,
|
|
host_ip ? strdup(host_ip->valuestring) : NULL,
|
|
init_container_statuses ? init_container_statusesList : NULL,
|
|
message ? strdup(message->valuestring) : NULL,
|
|
nominated_node_name ? strdup(nominated_node_name->valuestring) : NULL,
|
|
phase ? strdup(phase->valuestring) : NULL,
|
|
pod_ip ? strdup(pod_ip->valuestring) : NULL,
|
|
pod_ips ? pod_ipsList : NULL,
|
|
qos_class ? strdup(qos_class->valuestring) : NULL,
|
|
reason ? strdup(reason->valuestring) : NULL,
|
|
start_time && !cJSON_IsNull(start_time) ? strdup(start_time->valuestring) : NULL
|
|
);
|
|
|
|
return v1_pod_status_local_var;
|
|
end:
|
|
if (conditionsList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, conditionsList) {
|
|
v1_pod_condition_free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(conditionsList);
|
|
conditionsList = NULL;
|
|
}
|
|
if (container_statusesList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, container_statusesList) {
|
|
v1_container_status_free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(container_statusesList);
|
|
container_statusesList = NULL;
|
|
}
|
|
if (ephemeral_container_statusesList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, ephemeral_container_statusesList) {
|
|
v1_container_status_free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(ephemeral_container_statusesList);
|
|
ephemeral_container_statusesList = NULL;
|
|
}
|
|
if (init_container_statusesList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, init_container_statusesList) {
|
|
v1_container_status_free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(init_container_statusesList);
|
|
init_container_statusesList = NULL;
|
|
}
|
|
if (pod_ipsList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, pod_ipsList) {
|
|
v1_pod_ip_free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(pod_ipsList);
|
|
pod_ipsList = NULL;
|
|
}
|
|
return NULL;
|
|
|
|
}
|