160 lines
4.3 KiB
C
160 lines
4.3 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1_endpoint_address.h"
|
|
|
|
|
|
|
|
v1_endpoint_address_t *v1_endpoint_address_create(
|
|
char *hostname,
|
|
char *ip,
|
|
char *node_name,
|
|
v1_object_reference_t *target_ref
|
|
) {
|
|
v1_endpoint_address_t *v1_endpoint_address_local_var = malloc(sizeof(v1_endpoint_address_t));
|
|
if (!v1_endpoint_address_local_var) {
|
|
return NULL;
|
|
}
|
|
v1_endpoint_address_local_var->hostname = hostname;
|
|
v1_endpoint_address_local_var->ip = ip;
|
|
v1_endpoint_address_local_var->node_name = node_name;
|
|
v1_endpoint_address_local_var->target_ref = target_ref;
|
|
|
|
return v1_endpoint_address_local_var;
|
|
}
|
|
|
|
|
|
void v1_endpoint_address_free(v1_endpoint_address_t *v1_endpoint_address) {
|
|
if(NULL == v1_endpoint_address){
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1_endpoint_address->hostname) {
|
|
free(v1_endpoint_address->hostname);
|
|
v1_endpoint_address->hostname = NULL;
|
|
}
|
|
if (v1_endpoint_address->ip) {
|
|
free(v1_endpoint_address->ip);
|
|
v1_endpoint_address->ip = NULL;
|
|
}
|
|
if (v1_endpoint_address->node_name) {
|
|
free(v1_endpoint_address->node_name);
|
|
v1_endpoint_address->node_name = NULL;
|
|
}
|
|
if (v1_endpoint_address->target_ref) {
|
|
v1_object_reference_free(v1_endpoint_address->target_ref);
|
|
v1_endpoint_address->target_ref = NULL;
|
|
}
|
|
free(v1_endpoint_address);
|
|
}
|
|
|
|
cJSON *v1_endpoint_address_convertToJSON(v1_endpoint_address_t *v1_endpoint_address) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1_endpoint_address->hostname
|
|
if(v1_endpoint_address->hostname) {
|
|
if(cJSON_AddStringToObject(item, "hostname", v1_endpoint_address->hostname) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_endpoint_address->ip
|
|
if (!v1_endpoint_address->ip) {
|
|
goto fail;
|
|
}
|
|
|
|
if(cJSON_AddStringToObject(item, "ip", v1_endpoint_address->ip) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
|
|
|
|
// v1_endpoint_address->node_name
|
|
if(v1_endpoint_address->node_name) {
|
|
if(cJSON_AddStringToObject(item, "nodeName", v1_endpoint_address->node_name) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_endpoint_address->target_ref
|
|
if(v1_endpoint_address->target_ref) {
|
|
cJSON *target_ref_local_JSON = v1_object_reference_convertToJSON(v1_endpoint_address->target_ref);
|
|
if(target_ref_local_JSON == NULL) {
|
|
goto fail; //model
|
|
}
|
|
cJSON_AddItemToObject(item, "targetRef", target_ref_local_JSON);
|
|
if(item->child == NULL) {
|
|
goto fail;
|
|
}
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1_endpoint_address_t *v1_endpoint_address_parseFromJSON(cJSON *v1_endpoint_addressJSON){
|
|
|
|
v1_endpoint_address_t *v1_endpoint_address_local_var = NULL;
|
|
|
|
// define the local variable for v1_endpoint_address->target_ref
|
|
v1_object_reference_t *target_ref_local_nonprim = NULL;
|
|
|
|
// v1_endpoint_address->hostname
|
|
cJSON *hostname = cJSON_GetObjectItemCaseSensitive(v1_endpoint_addressJSON, "hostname");
|
|
if (hostname) {
|
|
if(!cJSON_IsString(hostname))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_endpoint_address->ip
|
|
cJSON *ip = cJSON_GetObjectItemCaseSensitive(v1_endpoint_addressJSON, "ip");
|
|
if (!ip) {
|
|
goto end;
|
|
}
|
|
|
|
|
|
if(!cJSON_IsString(ip))
|
|
{
|
|
goto end; //String
|
|
}
|
|
|
|
// v1_endpoint_address->node_name
|
|
cJSON *node_name = cJSON_GetObjectItemCaseSensitive(v1_endpoint_addressJSON, "nodeName");
|
|
if (node_name) {
|
|
if(!cJSON_IsString(node_name))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_endpoint_address->target_ref
|
|
cJSON *target_ref = cJSON_GetObjectItemCaseSensitive(v1_endpoint_addressJSON, "targetRef");
|
|
if (target_ref) {
|
|
target_ref_local_nonprim = v1_object_reference_parseFromJSON(target_ref); //nonprimitive
|
|
}
|
|
|
|
|
|
v1_endpoint_address_local_var = v1_endpoint_address_create (
|
|
hostname ? strdup(hostname->valuestring) : NULL,
|
|
strdup(ip->valuestring),
|
|
node_name ? strdup(node_name->valuestring) : NULL,
|
|
target_ref ? target_ref_local_nonprim : NULL
|
|
);
|
|
|
|
return v1_endpoint_address_local_var;
|
|
end:
|
|
if (target_ref_local_nonprim) {
|
|
v1_object_reference_free(target_ref_local_nonprim);
|
|
target_ref_local_nonprim = NULL;
|
|
}
|
|
return NULL;
|
|
|
|
}
|