open5gs/lib/sbi/openapi/model/policy_data_subscription.c

413 lines
16 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "policy_data_subscription.h"
OpenAPI_policy_data_subscription_t *OpenAPI_policy_data_subscription_create(
char *notification_uri,
char *notif_id,
OpenAPI_list_t *monitored_resource_uris,
OpenAPI_list_t *mon_res_items,
OpenAPI_list_t *excluded_res_items,
char *expiry,
char *supported_features,
OpenAPI_list_t *reset_ids
)
{
OpenAPI_policy_data_subscription_t *policy_data_subscription_local_var = ogs_malloc(sizeof(OpenAPI_policy_data_subscription_t));
ogs_assert(policy_data_subscription_local_var);
policy_data_subscription_local_var->notification_uri = notification_uri;
policy_data_subscription_local_var->notif_id = notif_id;
policy_data_subscription_local_var->monitored_resource_uris = monitored_resource_uris;
policy_data_subscription_local_var->mon_res_items = mon_res_items;
policy_data_subscription_local_var->excluded_res_items = excluded_res_items;
policy_data_subscription_local_var->expiry = expiry;
policy_data_subscription_local_var->supported_features = supported_features;
policy_data_subscription_local_var->reset_ids = reset_ids;
return policy_data_subscription_local_var;
}
void OpenAPI_policy_data_subscription_free(OpenAPI_policy_data_subscription_t *policy_data_subscription)
{
OpenAPI_lnode_t *node = NULL;
if (NULL == policy_data_subscription) {
return;
}
if (policy_data_subscription->notification_uri) {
ogs_free(policy_data_subscription->notification_uri);
policy_data_subscription->notification_uri = NULL;
}
if (policy_data_subscription->notif_id) {
ogs_free(policy_data_subscription->notif_id);
policy_data_subscription->notif_id = NULL;
}
if (policy_data_subscription->monitored_resource_uris) {
OpenAPI_list_for_each(policy_data_subscription->monitored_resource_uris, node) {
ogs_free(node->data);
}
OpenAPI_list_free(policy_data_subscription->monitored_resource_uris);
policy_data_subscription->monitored_resource_uris = NULL;
}
if (policy_data_subscription->mon_res_items) {
OpenAPI_list_for_each(policy_data_subscription->mon_res_items, node) {
OpenAPI_resource_item_free(node->data);
}
OpenAPI_list_free(policy_data_subscription->mon_res_items);
policy_data_subscription->mon_res_items = NULL;
}
if (policy_data_subscription->excluded_res_items) {
OpenAPI_list_for_each(policy_data_subscription->excluded_res_items, node) {
OpenAPI_resource_item_free(node->data);
}
OpenAPI_list_free(policy_data_subscription->excluded_res_items);
policy_data_subscription->excluded_res_items = NULL;
}
if (policy_data_subscription->expiry) {
ogs_free(policy_data_subscription->expiry);
policy_data_subscription->expiry = NULL;
}
if (policy_data_subscription->supported_features) {
ogs_free(policy_data_subscription->supported_features);
policy_data_subscription->supported_features = NULL;
}
if (policy_data_subscription->reset_ids) {
OpenAPI_list_for_each(policy_data_subscription->reset_ids, node) {
ogs_free(node->data);
}
OpenAPI_list_free(policy_data_subscription->reset_ids);
policy_data_subscription->reset_ids = NULL;
}
ogs_free(policy_data_subscription);
}
cJSON *OpenAPI_policy_data_subscription_convertToJSON(OpenAPI_policy_data_subscription_t *policy_data_subscription)
{
cJSON *item = NULL;
OpenAPI_lnode_t *node = NULL;
if (policy_data_subscription == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [PolicyDataSubscription]");
return NULL;
}
item = cJSON_CreateObject();
if (!policy_data_subscription->notification_uri) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [notification_uri]");
return NULL;
}
if (cJSON_AddStringToObject(item, "notificationUri", policy_data_subscription->notification_uri) == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [notification_uri]");
goto end;
}
if (policy_data_subscription->notif_id) {
if (cJSON_AddStringToObject(item, "notifId", policy_data_subscription->notif_id) == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [notif_id]");
goto end;
}
}
if (!policy_data_subscription->monitored_resource_uris) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [monitored_resource_uris]");
return NULL;
}
cJSON *monitored_resource_urisList = cJSON_AddArrayToObject(item, "monitoredResourceUris");
if (monitored_resource_urisList == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [monitored_resource_uris]");
goto end;
}
OpenAPI_list_for_each(policy_data_subscription->monitored_resource_uris, node) {
if (cJSON_AddStringToObject(monitored_resource_urisList, "", (char*)node->data) == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [monitored_resource_uris]");
goto end;
}
}
if (policy_data_subscription->mon_res_items) {
cJSON *mon_res_itemsList = cJSON_AddArrayToObject(item, "monResItems");
if (mon_res_itemsList == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [mon_res_items]");
goto end;
}
OpenAPI_list_for_each(policy_data_subscription->mon_res_items, node) {
cJSON *itemLocal = OpenAPI_resource_item_convertToJSON(node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [mon_res_items]");
goto end;
}
cJSON_AddItemToArray(mon_res_itemsList, itemLocal);
}
}
if (policy_data_subscription->excluded_res_items) {
cJSON *excluded_res_itemsList = cJSON_AddArrayToObject(item, "excludedResItems");
if (excluded_res_itemsList == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [excluded_res_items]");
goto end;
}
OpenAPI_list_for_each(policy_data_subscription->excluded_res_items, node) {
cJSON *itemLocal = OpenAPI_resource_item_convertToJSON(node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [excluded_res_items]");
goto end;
}
cJSON_AddItemToArray(excluded_res_itemsList, itemLocal);
}
}
if (policy_data_subscription->expiry) {
if (cJSON_AddStringToObject(item, "expiry", policy_data_subscription->expiry) == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [expiry]");
goto end;
}
}
if (policy_data_subscription->supported_features) {
if (cJSON_AddStringToObject(item, "supportedFeatures", policy_data_subscription->supported_features) == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [supported_features]");
goto end;
}
}
if (policy_data_subscription->reset_ids) {
cJSON *reset_idsList = cJSON_AddArrayToObject(item, "resetIds");
if (reset_idsList == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [reset_ids]");
goto end;
}
OpenAPI_list_for_each(policy_data_subscription->reset_ids, node) {
if (cJSON_AddStringToObject(reset_idsList, "", (char*)node->data) == NULL) {
ogs_error("OpenAPI_policy_data_subscription_convertToJSON() failed [reset_ids]");
goto end;
}
}
}
end:
return item;
}
OpenAPI_policy_data_subscription_t *OpenAPI_policy_data_subscription_parseFromJSON(cJSON *policy_data_subscriptionJSON)
{
OpenAPI_policy_data_subscription_t *policy_data_subscription_local_var = NULL;
OpenAPI_lnode_t *node = NULL;
cJSON *notification_uri = NULL;
cJSON *notif_id = NULL;
cJSON *monitored_resource_uris = NULL;
OpenAPI_list_t *monitored_resource_urisList = NULL;
cJSON *mon_res_items = NULL;
OpenAPI_list_t *mon_res_itemsList = NULL;
cJSON *excluded_res_items = NULL;
OpenAPI_list_t *excluded_res_itemsList = NULL;
cJSON *expiry = NULL;
cJSON *supported_features = NULL;
cJSON *reset_ids = NULL;
OpenAPI_list_t *reset_idsList = NULL;
notification_uri = cJSON_GetObjectItemCaseSensitive(policy_data_subscriptionJSON, "notificationUri");
if (!notification_uri) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [notification_uri]");
goto end;
}
if (!cJSON_IsString(notification_uri)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [notification_uri]");
goto end;
}
notif_id = cJSON_GetObjectItemCaseSensitive(policy_data_subscriptionJSON, "notifId");
if (notif_id) {
if (!cJSON_IsString(notif_id) && !cJSON_IsNull(notif_id)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [notif_id]");
goto end;
}
}
monitored_resource_uris = cJSON_GetObjectItemCaseSensitive(policy_data_subscriptionJSON, "monitoredResourceUris");
if (!monitored_resource_uris) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [monitored_resource_uris]");
goto end;
}
cJSON *monitored_resource_uris_local = NULL;
if (!cJSON_IsArray(monitored_resource_uris)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [monitored_resource_uris]");
goto end;
}
monitored_resource_urisList = OpenAPI_list_create();
cJSON_ArrayForEach(monitored_resource_uris_local, monitored_resource_uris) {
double *localDouble = NULL;
int *localInt = NULL;
if (!cJSON_IsString(monitored_resource_uris_local)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [monitored_resource_uris]");
goto end;
}
OpenAPI_list_add(monitored_resource_urisList, ogs_strdup(monitored_resource_uris_local->valuestring));
}
mon_res_items = cJSON_GetObjectItemCaseSensitive(policy_data_subscriptionJSON, "monResItems");
if (mon_res_items) {
cJSON *mon_res_items_local = NULL;
if (!cJSON_IsArray(mon_res_items)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [mon_res_items]");
goto end;
}
mon_res_itemsList = OpenAPI_list_create();
cJSON_ArrayForEach(mon_res_items_local, mon_res_items) {
if (!cJSON_IsObject(mon_res_items_local)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [mon_res_items]");
goto end;
}
OpenAPI_resource_item_t *mon_res_itemsItem = OpenAPI_resource_item_parseFromJSON(mon_res_items_local);
if (!mon_res_itemsItem) {
ogs_error("No mon_res_itemsItem");
goto end;
}
OpenAPI_list_add(mon_res_itemsList, mon_res_itemsItem);
}
}
excluded_res_items = cJSON_GetObjectItemCaseSensitive(policy_data_subscriptionJSON, "excludedResItems");
if (excluded_res_items) {
cJSON *excluded_res_items_local = NULL;
if (!cJSON_IsArray(excluded_res_items)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [excluded_res_items]");
goto end;
}
excluded_res_itemsList = OpenAPI_list_create();
cJSON_ArrayForEach(excluded_res_items_local, excluded_res_items) {
if (!cJSON_IsObject(excluded_res_items_local)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [excluded_res_items]");
goto end;
}
OpenAPI_resource_item_t *excluded_res_itemsItem = OpenAPI_resource_item_parseFromJSON(excluded_res_items_local);
if (!excluded_res_itemsItem) {
ogs_error("No excluded_res_itemsItem");
goto end;
}
OpenAPI_list_add(excluded_res_itemsList, excluded_res_itemsItem);
}
}
expiry = cJSON_GetObjectItemCaseSensitive(policy_data_subscriptionJSON, "expiry");
if (expiry) {
if (!cJSON_IsString(expiry) && !cJSON_IsNull(expiry)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [expiry]");
goto end;
}
}
supported_features = cJSON_GetObjectItemCaseSensitive(policy_data_subscriptionJSON, "supportedFeatures");
if (supported_features) {
if (!cJSON_IsString(supported_features) && !cJSON_IsNull(supported_features)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [supported_features]");
goto end;
}
}
reset_ids = cJSON_GetObjectItemCaseSensitive(policy_data_subscriptionJSON, "resetIds");
if (reset_ids) {
cJSON *reset_ids_local = NULL;
if (!cJSON_IsArray(reset_ids)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [reset_ids]");
goto end;
}
reset_idsList = OpenAPI_list_create();
cJSON_ArrayForEach(reset_ids_local, reset_ids) {
double *localDouble = NULL;
int *localInt = NULL;
if (!cJSON_IsString(reset_ids_local)) {
ogs_error("OpenAPI_policy_data_subscription_parseFromJSON() failed [reset_ids]");
goto end;
}
OpenAPI_list_add(reset_idsList, ogs_strdup(reset_ids_local->valuestring));
}
}
policy_data_subscription_local_var = OpenAPI_policy_data_subscription_create (
ogs_strdup(notification_uri->valuestring),
notif_id && !cJSON_IsNull(notif_id) ? ogs_strdup(notif_id->valuestring) : NULL,
monitored_resource_urisList,
mon_res_items ? mon_res_itemsList : NULL,
excluded_res_items ? excluded_res_itemsList : NULL,
expiry && !cJSON_IsNull(expiry) ? ogs_strdup(expiry->valuestring) : NULL,
supported_features && !cJSON_IsNull(supported_features) ? ogs_strdup(supported_features->valuestring) : NULL,
reset_ids ? reset_idsList : NULL
);
return policy_data_subscription_local_var;
end:
if (monitored_resource_urisList) {
OpenAPI_list_for_each(monitored_resource_urisList, node) {
ogs_free(node->data);
}
OpenAPI_list_free(monitored_resource_urisList);
monitored_resource_urisList = NULL;
}
if (mon_res_itemsList) {
OpenAPI_list_for_each(mon_res_itemsList, node) {
OpenAPI_resource_item_free(node->data);
}
OpenAPI_list_free(mon_res_itemsList);
mon_res_itemsList = NULL;
}
if (excluded_res_itemsList) {
OpenAPI_list_for_each(excluded_res_itemsList, node) {
OpenAPI_resource_item_free(node->data);
}
OpenAPI_list_free(excluded_res_itemsList);
excluded_res_itemsList = NULL;
}
if (reset_idsList) {
OpenAPI_list_for_each(reset_idsList, node) {
ogs_free(node->data);
}
OpenAPI_list_free(reset_idsList);
reset_idsList = NULL;
}
return NULL;
}
OpenAPI_policy_data_subscription_t *OpenAPI_policy_data_subscription_copy(OpenAPI_policy_data_subscription_t *dst, OpenAPI_policy_data_subscription_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_policy_data_subscription_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_policy_data_subscription_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_policy_data_subscription_free(dst);
dst = OpenAPI_policy_data_subscription_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}