open5gs/lib/sbi/openapi/model/operator_managed.c
2020-06-17 01:22:28 -04:00

86 lines
2 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "operator_managed.h"
OpenAPI_operator_managed_t *OpenAPI_operator_managed_create(
)
{
OpenAPI_operator_managed_t *operator_managed_local_var = OpenAPI_malloc(sizeof(OpenAPI_operator_managed_t));
if (!operator_managed_local_var) {
return NULL;
}
return operator_managed_local_var;
}
void OpenAPI_operator_managed_free(OpenAPI_operator_managed_t *operator_managed)
{
if (NULL == operator_managed) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(operator_managed);
}
cJSON *OpenAPI_operator_managed_convertToJSON(OpenAPI_operator_managed_t *operator_managed)
{
cJSON *item = NULL;
if (operator_managed == NULL) {
ogs_error("OpenAPI_operator_managed_convertToJSON() failed [OperatorManaged]");
return NULL;
}
item = cJSON_CreateObject();
end:
return item;
}
OpenAPI_operator_managed_t *OpenAPI_operator_managed_parseFromJSON(cJSON *operator_managedJSON)
{
OpenAPI_operator_managed_t *operator_managed_local_var = NULL;
operator_managed_local_var = OpenAPI_operator_managed_create (
);
return operator_managed_local_var;
end:
return NULL;
}
OpenAPI_operator_managed_t *OpenAPI_operator_managed_copy(OpenAPI_operator_managed_t *dst, OpenAPI_operator_managed_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_operator_managed_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_operator_managed_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_operator_managed_free(dst);
dst = OpenAPI_operator_managed_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}