102 lines
2.5 KiB
C
102 lines
2.5 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1_resource_health.h"
|
|
|
|
|
|
|
|
v1_resource_health_t *v1_resource_health_create(
|
|
char *health,
|
|
char *resource_id
|
|
) {
|
|
v1_resource_health_t *v1_resource_health_local_var = malloc(sizeof(v1_resource_health_t));
|
|
if (!v1_resource_health_local_var) {
|
|
return NULL;
|
|
}
|
|
v1_resource_health_local_var->health = health;
|
|
v1_resource_health_local_var->resource_id = resource_id;
|
|
|
|
return v1_resource_health_local_var;
|
|
}
|
|
|
|
|
|
void v1_resource_health_free(v1_resource_health_t *v1_resource_health) {
|
|
if(NULL == v1_resource_health){
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1_resource_health->health) {
|
|
free(v1_resource_health->health);
|
|
v1_resource_health->health = NULL;
|
|
}
|
|
if (v1_resource_health->resource_id) {
|
|
free(v1_resource_health->resource_id);
|
|
v1_resource_health->resource_id = NULL;
|
|
}
|
|
free(v1_resource_health);
|
|
}
|
|
|
|
cJSON *v1_resource_health_convertToJSON(v1_resource_health_t *v1_resource_health) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1_resource_health->health
|
|
if(v1_resource_health->health) {
|
|
if(cJSON_AddStringToObject(item, "health", v1_resource_health->health) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_resource_health->resource_id
|
|
if (!v1_resource_health->resource_id) {
|
|
goto fail;
|
|
}
|
|
if(cJSON_AddStringToObject(item, "resourceID", v1_resource_health->resource_id) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1_resource_health_t *v1_resource_health_parseFromJSON(cJSON *v1_resource_healthJSON){
|
|
|
|
v1_resource_health_t *v1_resource_health_local_var = NULL;
|
|
|
|
// v1_resource_health->health
|
|
cJSON *health = cJSON_GetObjectItemCaseSensitive(v1_resource_healthJSON, "health");
|
|
if (health) {
|
|
if(!cJSON_IsString(health) && !cJSON_IsNull(health))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_resource_health->resource_id
|
|
cJSON *resource_id = cJSON_GetObjectItemCaseSensitive(v1_resource_healthJSON, "resourceID");
|
|
if (!resource_id) {
|
|
goto end;
|
|
}
|
|
|
|
|
|
if(!cJSON_IsString(resource_id))
|
|
{
|
|
goto end; //String
|
|
}
|
|
|
|
|
|
v1_resource_health_local_var = v1_resource_health_create (
|
|
health && !cJSON_IsNull(health) ? strdup(health->valuestring) : NULL,
|
|
strdup(resource_id->valuestring)
|
|
);
|
|
|
|
return v1_resource_health_local_var;
|
|
end:
|
|
return NULL;
|
|
|
|
}
|