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,101 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "updated_item.h"
OpenAPI_updated_item_t *OpenAPI_updated_item_create(
char *item,
char *value
)
{
OpenAPI_updated_item_t *updated_item_local_var = OpenAPI_malloc(sizeof(OpenAPI_updated_item_t));
if (!updated_item_local_var) {
return NULL;
}
updated_item_local_var->item = item;
updated_item_local_var->value = value;
return updated_item_local_var;
}
void OpenAPI_updated_item_free(OpenAPI_updated_item_t *updated_item)
{
if (NULL == updated_item) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(updated_item->item);
ogs_free(updated_item->value);
ogs_free(updated_item);
}
cJSON *OpenAPI_updated_item_convertToJSON(OpenAPI_updated_item_t *updated_item)
{
cJSON *item = NULL;
if (updated_item == NULL) {
ogs_error("OpenAPI_updated_item_convertToJSON() failed [UpdatedItem]");
return NULL;
}
item = cJSON_CreateObject();
if (!updated_item->item) {
ogs_error("OpenAPI_updated_item_convertToJSON() failed [item]");
goto end;
}
if (cJSON_AddStringToObject(item, "item", updated_item->item) == NULL) {
ogs_error("OpenAPI_updated_item_convertToJSON() failed [item]");
goto end;
}
if (!updated_item->value) {
ogs_error("OpenAPI_updated_item_convertToJSON() failed [value]");
goto end;
}
if (cJSON_AddStringToObject(item, "value", updated_item->value) == NULL) {
ogs_error("OpenAPI_updated_item_convertToJSON() failed [value]");
goto end;
}
end:
return item;
}
OpenAPI_updated_item_t *OpenAPI_updated_item_parseFromJSON(cJSON *updated_itemJSON)
{
OpenAPI_updated_item_t *updated_item_local_var = NULL;
cJSON *item = cJSON_GetObjectItemCaseSensitive(updated_itemJSON, "item");
if (!item) {
ogs_error("OpenAPI_updated_item_parseFromJSON() failed [item]");
goto end;
}
if (!cJSON_IsString(item)) {
ogs_error("OpenAPI_updated_item_parseFromJSON() failed [item]");
goto end;
}
cJSON *value = cJSON_GetObjectItemCaseSensitive(updated_itemJSON, "value");
if (!value) {
ogs_error("OpenAPI_updated_item_parseFromJSON() failed [value]");
goto end;
}
if (!cJSON_IsString(value)) {
ogs_error("OpenAPI_updated_item_parseFromJSON() failed [value]");
goto end;
}
updated_item_local_var = OpenAPI_updated_item_create (
ogs_strdup(item->valuestring),
ogs_strdup(value->valuestring)
);
return updated_item_local_var;
end:
return NULL;
}