open5gs/lib/sbi/openapi/model/hfc_node_id.c
Sukchan Lee 039b9d0aaa SBI updated
- openapi-generator version 5.2.0
- add priority/capacity/load in NFProfile/NFService
- add AllowedNfTypes in NFProfile/NFService
2021-07-16 17:02:33 +09:00

105 lines
2.5 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "hfc_node_id.h"
OpenAPI_hfc_node_id_t *OpenAPI_hfc_node_id_create(
char *hfc_nid
)
{
OpenAPI_hfc_node_id_t *hfc_node_id_local_var = OpenAPI_malloc(sizeof(OpenAPI_hfc_node_id_t));
if (!hfc_node_id_local_var) {
return NULL;
}
hfc_node_id_local_var->hfc_nid = hfc_nid;
return hfc_node_id_local_var;
}
void OpenAPI_hfc_node_id_free(OpenAPI_hfc_node_id_t *hfc_node_id)
{
if (NULL == hfc_node_id) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(hfc_node_id->hfc_nid);
ogs_free(hfc_node_id);
}
cJSON *OpenAPI_hfc_node_id_convertToJSON(OpenAPI_hfc_node_id_t *hfc_node_id)
{
cJSON *item = NULL;
if (hfc_node_id == NULL) {
ogs_error("OpenAPI_hfc_node_id_convertToJSON() failed [HfcNodeId]");
return NULL;
}
item = cJSON_CreateObject();
if (cJSON_AddStringToObject(item, "hfcNId", hfc_node_id->hfc_nid) == NULL) {
ogs_error("OpenAPI_hfc_node_id_convertToJSON() failed [hfc_nid]");
goto end;
}
end:
return item;
}
OpenAPI_hfc_node_id_t *OpenAPI_hfc_node_id_parseFromJSON(cJSON *hfc_node_idJSON)
{
OpenAPI_hfc_node_id_t *hfc_node_id_local_var = NULL;
cJSON *hfc_nid = cJSON_GetObjectItemCaseSensitive(hfc_node_idJSON, "hfcNId");
if (!hfc_nid) {
ogs_error("OpenAPI_hfc_node_id_parseFromJSON() failed [hfc_nid]");
goto end;
}
if (!cJSON_IsString(hfc_nid)) {
ogs_error("OpenAPI_hfc_node_id_parseFromJSON() failed [hfc_nid]");
goto end;
}
hfc_node_id_local_var = OpenAPI_hfc_node_id_create (
ogs_strdup_or_assert(hfc_nid->valuestring)
);
return hfc_node_id_local_var;
end:
return NULL;
}
OpenAPI_hfc_node_id_t *OpenAPI_hfc_node_id_copy(OpenAPI_hfc_node_id_t *dst, OpenAPI_hfc_node_id_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_hfc_node_id_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_hfc_node_id_convertToJSON() failed");
return NULL;
}
content = cJSON_Print(item);
cJSON_Delete(item);
if (!content) {
ogs_error("cJSON_Print() failed");
return NULL;
}
item = cJSON_Parse(content);
ogs_free(content);
if (!item) {
ogs_error("cJSON_Parse() failed");
return NULL;
}
OpenAPI_hfc_node_id_free(dst);
dst = OpenAPI_hfc_node_id_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}