Add AUSF, UDM, and UDR

This commit is contained in:
Sukchan Lee 2020-06-04 14:12:05 -04:00
parent 0c0241d5e5
commit 72370ff0b2
1151 changed files with 140173 additions and 24799 deletions

View file

@ -0,0 +1,91 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "temporal_validity.h"
OpenAPI_temporal_validity_t *OpenAPI_temporal_validity_create(
char *start_time,
char *stop_time
)
{
OpenAPI_temporal_validity_t *temporal_validity_local_var = OpenAPI_malloc(sizeof(OpenAPI_temporal_validity_t));
if (!temporal_validity_local_var) {
return NULL;
}
temporal_validity_local_var->start_time = start_time;
temporal_validity_local_var->stop_time = stop_time;
return temporal_validity_local_var;
}
void OpenAPI_temporal_validity_free(OpenAPI_temporal_validity_t *temporal_validity)
{
if (NULL == temporal_validity) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(temporal_validity->start_time);
ogs_free(temporal_validity->stop_time);
ogs_free(temporal_validity);
}
cJSON *OpenAPI_temporal_validity_convertToJSON(OpenAPI_temporal_validity_t *temporal_validity)
{
cJSON *item = NULL;
if (temporal_validity == NULL) {
ogs_error("OpenAPI_temporal_validity_convertToJSON() failed [TemporalValidity]");
return NULL;
}
item = cJSON_CreateObject();
if (temporal_validity->start_time) {
if (cJSON_AddStringToObject(item, "startTime", temporal_validity->start_time) == NULL) {
ogs_error("OpenAPI_temporal_validity_convertToJSON() failed [start_time]");
goto end;
}
}
if (temporal_validity->stop_time) {
if (cJSON_AddStringToObject(item, "stopTime", temporal_validity->stop_time) == NULL) {
ogs_error("OpenAPI_temporal_validity_convertToJSON() failed [stop_time]");
goto end;
}
}
end:
return item;
}
OpenAPI_temporal_validity_t *OpenAPI_temporal_validity_parseFromJSON(cJSON *temporal_validityJSON)
{
OpenAPI_temporal_validity_t *temporal_validity_local_var = NULL;
cJSON *start_time = cJSON_GetObjectItemCaseSensitive(temporal_validityJSON, "startTime");
if (start_time) {
if (!cJSON_IsString(start_time)) {
ogs_error("OpenAPI_temporal_validity_parseFromJSON() failed [start_time]");
goto end;
}
}
cJSON *stop_time = cJSON_GetObjectItemCaseSensitive(temporal_validityJSON, "stopTime");
if (stop_time) {
if (!cJSON_IsString(stop_time)) {
ogs_error("OpenAPI_temporal_validity_parseFromJSON() failed [stop_time]");
goto end;
}
}
temporal_validity_local_var = OpenAPI_temporal_validity_create (
start_time ? ogs_strdup(start_time->valuestring) : NULL,
stop_time ? ogs_strdup(stop_time->valuestring) : NULL
);
return temporal_validity_local_var;
end:
return NULL;
}