#include #include #include #include "policy_association_request.h" OpenAPI_policy_association_request_t *OpenAPI_policy_association_request_create( char *notification_uri, OpenAPI_list_t *alt_notif_ipv4_addrs, OpenAPI_list_t *alt_notif_ipv6_addrs, char *supi, char *gpsi, OpenAPI_access_type_e access_type, OpenAPI_list_t *access_types, char *pei, OpenAPI_user_location_t *user_loc, char *time_zone, OpenAPI_plmn_id_nid_t *serving_plmn, OpenAPI_rat_type_e rat_type, OpenAPI_list_t *rat_types, OpenAPI_list_t *group_ids, OpenAPI_service_area_restriction_t *serv_area_res, OpenAPI_wireline_service_area_restriction_t *wl_serv_area_res, int rfsp, OpenAPI_ambr_t *ue_ambr, OpenAPI_ambr_t *rg_tmbr, OpenAPI_list_t *allowed_snssais, OpenAPI_list_t *mapping_snssais, OpenAPI_list_t *n3g_allowed_snssais, OpenAPI_guami_t *guami, char *service_name, OpenAPI_trace_data_t *trace_req, char *supp_feat ) { OpenAPI_policy_association_request_t *policy_association_request_local_var = OpenAPI_malloc(sizeof(OpenAPI_policy_association_request_t)); if (!policy_association_request_local_var) { return NULL; } policy_association_request_local_var->notification_uri = notification_uri; policy_association_request_local_var->alt_notif_ipv4_addrs = alt_notif_ipv4_addrs; policy_association_request_local_var->alt_notif_ipv6_addrs = alt_notif_ipv6_addrs; policy_association_request_local_var->supi = supi; policy_association_request_local_var->gpsi = gpsi; policy_association_request_local_var->access_type = access_type; policy_association_request_local_var->access_types = access_types; policy_association_request_local_var->pei = pei; policy_association_request_local_var->user_loc = user_loc; policy_association_request_local_var->time_zone = time_zone; policy_association_request_local_var->serving_plmn = serving_plmn; policy_association_request_local_var->rat_type = rat_type; policy_association_request_local_var->rat_types = rat_types; policy_association_request_local_var->group_ids = group_ids; policy_association_request_local_var->serv_area_res = serv_area_res; policy_association_request_local_var->wl_serv_area_res = wl_serv_area_res; policy_association_request_local_var->rfsp = rfsp; policy_association_request_local_var->ue_ambr = ue_ambr; policy_association_request_local_var->rg_tmbr = rg_tmbr; policy_association_request_local_var->allowed_snssais = allowed_snssais; policy_association_request_local_var->mapping_snssais = mapping_snssais; policy_association_request_local_var->n3g_allowed_snssais = n3g_allowed_snssais; policy_association_request_local_var->guami = guami; policy_association_request_local_var->service_name = service_name; policy_association_request_local_var->trace_req = trace_req; policy_association_request_local_var->supp_feat = supp_feat; return policy_association_request_local_var; } void OpenAPI_policy_association_request_free(OpenAPI_policy_association_request_t *policy_association_request) { if (NULL == policy_association_request) { return; } OpenAPI_lnode_t *node; ogs_free(policy_association_request->notification_uri); OpenAPI_list_for_each(policy_association_request->alt_notif_ipv4_addrs, node) { ogs_free(node->data); } OpenAPI_list_free(policy_association_request->alt_notif_ipv4_addrs); OpenAPI_list_for_each(policy_association_request->alt_notif_ipv6_addrs, node) { ogs_free(node->data); } OpenAPI_list_free(policy_association_request->alt_notif_ipv6_addrs); ogs_free(policy_association_request->supi); ogs_free(policy_association_request->gpsi); OpenAPI_list_free(policy_association_request->access_types); ogs_free(policy_association_request->pei); OpenAPI_user_location_free(policy_association_request->user_loc); ogs_free(policy_association_request->time_zone); OpenAPI_plmn_id_nid_free(policy_association_request->serving_plmn); OpenAPI_list_free(policy_association_request->rat_types); OpenAPI_list_for_each(policy_association_request->group_ids, node) { ogs_free(node->data); } OpenAPI_list_free(policy_association_request->group_ids); OpenAPI_service_area_restriction_free(policy_association_request->serv_area_res); OpenAPI_wireline_service_area_restriction_free(policy_association_request->wl_serv_area_res); OpenAPI_ambr_free(policy_association_request->ue_ambr); OpenAPI_ambr_free(policy_association_request->rg_tmbr); OpenAPI_list_for_each(policy_association_request->allowed_snssais, node) { OpenAPI_snssai_free(node->data); } OpenAPI_list_free(policy_association_request->allowed_snssais); OpenAPI_list_for_each(policy_association_request->mapping_snssais, node) { OpenAPI_mapping_of_snssai_free(node->data); } OpenAPI_list_free(policy_association_request->mapping_snssais); OpenAPI_list_for_each(policy_association_request->n3g_allowed_snssais, node) { OpenAPI_snssai_free(node->data); } OpenAPI_list_free(policy_association_request->n3g_allowed_snssais); OpenAPI_guami_free(policy_association_request->guami); ogs_free(policy_association_request->service_name); OpenAPI_trace_data_free(policy_association_request->trace_req); ogs_free(policy_association_request->supp_feat); ogs_free(policy_association_request); } cJSON *OpenAPI_policy_association_request_convertToJSON(OpenAPI_policy_association_request_t *policy_association_request) { cJSON *item = NULL; if (policy_association_request == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [PolicyAssociationRequest]"); return NULL; } item = cJSON_CreateObject(); if (!policy_association_request->notification_uri) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [notification_uri]"); goto end; } if (cJSON_AddStringToObject(item, "notificationUri", policy_association_request->notification_uri) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [notification_uri]"); goto end; } if (policy_association_request->alt_notif_ipv4_addrs) { cJSON *alt_notif_ipv4_addrs = cJSON_AddArrayToObject(item, "altNotifIpv4Addrs"); if (alt_notif_ipv4_addrs == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [alt_notif_ipv4_addrs]"); goto end; } OpenAPI_lnode_t *alt_notif_ipv4_addrs_node; OpenAPI_list_for_each(policy_association_request->alt_notif_ipv4_addrs, alt_notif_ipv4_addrs_node) { if (cJSON_AddStringToObject(alt_notif_ipv4_addrs, "", (char*)alt_notif_ipv4_addrs_node->data) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [alt_notif_ipv4_addrs]"); goto end; } } } if (policy_association_request->alt_notif_ipv6_addrs) { cJSON *alt_notif_ipv6_addrs = cJSON_AddArrayToObject(item, "altNotifIpv6Addrs"); if (alt_notif_ipv6_addrs == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [alt_notif_ipv6_addrs]"); goto end; } OpenAPI_lnode_t *alt_notif_ipv6_addrs_node; OpenAPI_list_for_each(policy_association_request->alt_notif_ipv6_addrs, alt_notif_ipv6_addrs_node) { if (cJSON_AddStringToObject(alt_notif_ipv6_addrs, "", (char*)alt_notif_ipv6_addrs_node->data) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [alt_notif_ipv6_addrs]"); goto end; } } } if (!policy_association_request->supi) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [supi]"); goto end; } if (cJSON_AddStringToObject(item, "supi", policy_association_request->supi) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [supi]"); goto end; } if (policy_association_request->gpsi) { if (cJSON_AddStringToObject(item, "gpsi", policy_association_request->gpsi) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [gpsi]"); goto end; } } if (policy_association_request->access_type) { if (cJSON_AddStringToObject(item, "accessType", OpenAPI_access_type_ToString(policy_association_request->access_type)) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [access_type]"); goto end; } } if (policy_association_request->access_types) { cJSON *access_types = cJSON_AddArrayToObject(item, "accessTypes"); if (access_types == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [access_types]"); goto end; } OpenAPI_lnode_t *access_types_node; OpenAPI_list_for_each(policy_association_request->access_types, access_types_node) { if (cJSON_AddStringToObject(access_types, "", OpenAPI_access_type_ToString((OpenAPI_access_type_e)access_types_node->data)) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [access_types]"); goto end; } } } if (policy_association_request->pei) { if (cJSON_AddStringToObject(item, "pei", policy_association_request->pei) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [pei]"); goto end; } } if (policy_association_request->user_loc) { cJSON *user_loc_local_JSON = OpenAPI_user_location_convertToJSON(policy_association_request->user_loc); if (user_loc_local_JSON == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [user_loc]"); goto end; } cJSON_AddItemToObject(item, "userLoc", user_loc_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [user_loc]"); goto end; } } if (policy_association_request->time_zone) { if (cJSON_AddStringToObject(item, "timeZone", policy_association_request->time_zone) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [time_zone]"); goto end; } } if (policy_association_request->serving_plmn) { cJSON *serving_plmn_local_JSON = OpenAPI_plmn_id_nid_convertToJSON(policy_association_request->serving_plmn); if (serving_plmn_local_JSON == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [serving_plmn]"); goto end; } cJSON_AddItemToObject(item, "servingPlmn", serving_plmn_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [serving_plmn]"); goto end; } } if (policy_association_request->rat_type) { if (cJSON_AddStringToObject(item, "ratType", OpenAPI_rat_type_ToString(policy_association_request->rat_type)) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [rat_type]"); goto end; } } if (policy_association_request->rat_types) { cJSON *rat_types = cJSON_AddArrayToObject(item, "ratTypes"); if (rat_types == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [rat_types]"); goto end; } OpenAPI_lnode_t *rat_types_node; OpenAPI_list_for_each(policy_association_request->rat_types, rat_types_node) { if (cJSON_AddStringToObject(rat_types, "", OpenAPI_rat_type_ToString((OpenAPI_rat_type_e)rat_types_node->data)) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [rat_types]"); goto end; } } } if (policy_association_request->group_ids) { cJSON *group_ids = cJSON_AddArrayToObject(item, "groupIds"); if (group_ids == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [group_ids]"); goto end; } OpenAPI_lnode_t *group_ids_node; OpenAPI_list_for_each(policy_association_request->group_ids, group_ids_node) { if (cJSON_AddStringToObject(group_ids, "", (char*)group_ids_node->data) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [group_ids]"); goto end; } } } if (policy_association_request->serv_area_res) { cJSON *serv_area_res_local_JSON = OpenAPI_service_area_restriction_convertToJSON(policy_association_request->serv_area_res); if (serv_area_res_local_JSON == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [serv_area_res]"); goto end; } cJSON_AddItemToObject(item, "servAreaRes", serv_area_res_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [serv_area_res]"); goto end; } } if (policy_association_request->wl_serv_area_res) { cJSON *wl_serv_area_res_local_JSON = OpenAPI_wireline_service_area_restriction_convertToJSON(policy_association_request->wl_serv_area_res); if (wl_serv_area_res_local_JSON == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [wl_serv_area_res]"); goto end; } cJSON_AddItemToObject(item, "wlServAreaRes", wl_serv_area_res_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [wl_serv_area_res]"); goto end; } } if (policy_association_request->rfsp) { if (cJSON_AddNumberToObject(item, "rfsp", policy_association_request->rfsp) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [rfsp]"); goto end; } } if (policy_association_request->ue_ambr) { cJSON *ue_ambr_local_JSON = OpenAPI_ambr_convertToJSON(policy_association_request->ue_ambr); if (ue_ambr_local_JSON == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [ue_ambr]"); goto end; } cJSON_AddItemToObject(item, "ueAmbr", ue_ambr_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [ue_ambr]"); goto end; } } if (policy_association_request->rg_tmbr) { cJSON *rg_tmbr_local_JSON = OpenAPI_ambr_convertToJSON(policy_association_request->rg_tmbr); if (rg_tmbr_local_JSON == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [rg_tmbr]"); goto end; } cJSON_AddItemToObject(item, "rgTmbr", rg_tmbr_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [rg_tmbr]"); goto end; } } if (policy_association_request->allowed_snssais) { cJSON *allowed_snssaisList = cJSON_AddArrayToObject(item, "allowedSnssais"); if (allowed_snssaisList == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [allowed_snssais]"); goto end; } OpenAPI_lnode_t *allowed_snssais_node; if (policy_association_request->allowed_snssais) { OpenAPI_list_for_each(policy_association_request->allowed_snssais, allowed_snssais_node) { cJSON *itemLocal = OpenAPI_snssai_convertToJSON(allowed_snssais_node->data); if (itemLocal == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [allowed_snssais]"); goto end; } cJSON_AddItemToArray(allowed_snssaisList, itemLocal); } } } if (policy_association_request->mapping_snssais) { cJSON *mapping_snssaisList = cJSON_AddArrayToObject(item, "mappingSnssais"); if (mapping_snssaisList == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [mapping_snssais]"); goto end; } OpenAPI_lnode_t *mapping_snssais_node; if (policy_association_request->mapping_snssais) { OpenAPI_list_for_each(policy_association_request->mapping_snssais, mapping_snssais_node) { cJSON *itemLocal = OpenAPI_mapping_of_snssai_convertToJSON(mapping_snssais_node->data); if (itemLocal == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [mapping_snssais]"); goto end; } cJSON_AddItemToArray(mapping_snssaisList, itemLocal); } } } if (policy_association_request->n3g_allowed_snssais) { cJSON *n3g_allowed_snssaisList = cJSON_AddArrayToObject(item, "n3gAllowedSnssais"); if (n3g_allowed_snssaisList == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [n3g_allowed_snssais]"); goto end; } OpenAPI_lnode_t *n3g_allowed_snssais_node; if (policy_association_request->n3g_allowed_snssais) { OpenAPI_list_for_each(policy_association_request->n3g_allowed_snssais, n3g_allowed_snssais_node) { cJSON *itemLocal = OpenAPI_snssai_convertToJSON(n3g_allowed_snssais_node->data); if (itemLocal == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [n3g_allowed_snssais]"); goto end; } cJSON_AddItemToArray(n3g_allowed_snssaisList, itemLocal); } } } if (policy_association_request->guami) { cJSON *guami_local_JSON = OpenAPI_guami_convertToJSON(policy_association_request->guami); if (guami_local_JSON == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [guami]"); goto end; } cJSON_AddItemToObject(item, "guami", guami_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [guami]"); goto end; } } if (policy_association_request->service_name) { if (cJSON_AddStringToObject(item, "serviceName", policy_association_request->service_name) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [service_name]"); goto end; } } if (policy_association_request->trace_req) { cJSON *trace_req_local_JSON = OpenAPI_trace_data_convertToJSON(policy_association_request->trace_req); if (trace_req_local_JSON == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [trace_req]"); goto end; } cJSON_AddItemToObject(item, "traceReq", trace_req_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [trace_req]"); goto end; } } if (!policy_association_request->supp_feat) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [supp_feat]"); goto end; } if (cJSON_AddStringToObject(item, "suppFeat", policy_association_request->supp_feat) == NULL) { ogs_error("OpenAPI_policy_association_request_convertToJSON() failed [supp_feat]"); goto end; } end: return item; } OpenAPI_policy_association_request_t *OpenAPI_policy_association_request_parseFromJSON(cJSON *policy_association_requestJSON) { OpenAPI_policy_association_request_t *policy_association_request_local_var = NULL; cJSON *notification_uri = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "notificationUri"); if (!notification_uri) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [notification_uri]"); goto end; } if (!cJSON_IsString(notification_uri)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [notification_uri]"); goto end; } cJSON *alt_notif_ipv4_addrs = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "altNotifIpv4Addrs"); OpenAPI_list_t *alt_notif_ipv4_addrsList; if (alt_notif_ipv4_addrs) { cJSON *alt_notif_ipv4_addrs_local; if (!cJSON_IsArray(alt_notif_ipv4_addrs)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [alt_notif_ipv4_addrs]"); goto end; } alt_notif_ipv4_addrsList = OpenAPI_list_create(); cJSON_ArrayForEach(alt_notif_ipv4_addrs_local, alt_notif_ipv4_addrs) { if (!cJSON_IsString(alt_notif_ipv4_addrs_local)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [alt_notif_ipv4_addrs]"); goto end; } OpenAPI_list_add(alt_notif_ipv4_addrsList, ogs_strdup(alt_notif_ipv4_addrs_local->valuestring)); } } cJSON *alt_notif_ipv6_addrs = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "altNotifIpv6Addrs"); OpenAPI_list_t *alt_notif_ipv6_addrsList; if (alt_notif_ipv6_addrs) { cJSON *alt_notif_ipv6_addrs_local; if (!cJSON_IsArray(alt_notif_ipv6_addrs)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [alt_notif_ipv6_addrs]"); goto end; } alt_notif_ipv6_addrsList = OpenAPI_list_create(); cJSON_ArrayForEach(alt_notif_ipv6_addrs_local, alt_notif_ipv6_addrs) { if (!cJSON_IsString(alt_notif_ipv6_addrs_local)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [alt_notif_ipv6_addrs]"); goto end; } OpenAPI_list_add(alt_notif_ipv6_addrsList, ogs_strdup(alt_notif_ipv6_addrs_local->valuestring)); } } cJSON *supi = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "supi"); if (!supi) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [supi]"); goto end; } if (!cJSON_IsString(supi)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [supi]"); goto end; } cJSON *gpsi = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "gpsi"); if (gpsi) { if (!cJSON_IsString(gpsi)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [gpsi]"); goto end; } } cJSON *access_type = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "accessType"); OpenAPI_access_type_e access_typeVariable; if (access_type) { if (!cJSON_IsString(access_type)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [access_type]"); goto end; } access_typeVariable = OpenAPI_access_type_FromString(access_type->valuestring); } cJSON *access_types = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "accessTypes"); OpenAPI_list_t *access_typesList; if (access_types) { cJSON *access_types_local_nonprimitive; if (!cJSON_IsArray(access_types)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [access_types]"); goto end; } access_typesList = OpenAPI_list_create(); cJSON_ArrayForEach(access_types_local_nonprimitive, access_types ) { if (!cJSON_IsString(access_types_local_nonprimitive)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [access_types]"); goto end; } OpenAPI_list_add(access_typesList, (void *)OpenAPI_access_type_FromString(access_types_local_nonprimitive->valuestring)); } } cJSON *pei = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "pei"); if (pei) { if (!cJSON_IsString(pei)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [pei]"); goto end; } } cJSON *user_loc = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "userLoc"); OpenAPI_user_location_t *user_loc_local_nonprim = NULL; if (user_loc) { user_loc_local_nonprim = OpenAPI_user_location_parseFromJSON(user_loc); } cJSON *time_zone = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "timeZone"); if (time_zone) { if (!cJSON_IsString(time_zone)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [time_zone]"); goto end; } } cJSON *serving_plmn = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "servingPlmn"); OpenAPI_plmn_id_nid_t *serving_plmn_local_nonprim = NULL; if (serving_plmn) { serving_plmn_local_nonprim = OpenAPI_plmn_id_nid_parseFromJSON(serving_plmn); } cJSON *rat_type = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "ratType"); OpenAPI_rat_type_e rat_typeVariable; if (rat_type) { if (!cJSON_IsString(rat_type)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [rat_type]"); goto end; } rat_typeVariable = OpenAPI_rat_type_FromString(rat_type->valuestring); } cJSON *rat_types = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "ratTypes"); OpenAPI_list_t *rat_typesList; if (rat_types) { cJSON *rat_types_local_nonprimitive; if (!cJSON_IsArray(rat_types)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [rat_types]"); goto end; } rat_typesList = OpenAPI_list_create(); cJSON_ArrayForEach(rat_types_local_nonprimitive, rat_types ) { if (!cJSON_IsString(rat_types_local_nonprimitive)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [rat_types]"); goto end; } OpenAPI_list_add(rat_typesList, (void *)OpenAPI_rat_type_FromString(rat_types_local_nonprimitive->valuestring)); } } cJSON *group_ids = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "groupIds"); OpenAPI_list_t *group_idsList; if (group_ids) { cJSON *group_ids_local; if (!cJSON_IsArray(group_ids)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [group_ids]"); goto end; } group_idsList = OpenAPI_list_create(); cJSON_ArrayForEach(group_ids_local, group_ids) { if (!cJSON_IsString(group_ids_local)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [group_ids]"); goto end; } OpenAPI_list_add(group_idsList, ogs_strdup(group_ids_local->valuestring)); } } cJSON *serv_area_res = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "servAreaRes"); OpenAPI_service_area_restriction_t *serv_area_res_local_nonprim = NULL; if (serv_area_res) { serv_area_res_local_nonprim = OpenAPI_service_area_restriction_parseFromJSON(serv_area_res); } cJSON *wl_serv_area_res = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "wlServAreaRes"); OpenAPI_wireline_service_area_restriction_t *wl_serv_area_res_local_nonprim = NULL; if (wl_serv_area_res) { wl_serv_area_res_local_nonprim = OpenAPI_wireline_service_area_restriction_parseFromJSON(wl_serv_area_res); } cJSON *rfsp = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "rfsp"); if (rfsp) { if (!cJSON_IsNumber(rfsp)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [rfsp]"); goto end; } } cJSON *ue_ambr = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "ueAmbr"); OpenAPI_ambr_t *ue_ambr_local_nonprim = NULL; if (ue_ambr) { ue_ambr_local_nonprim = OpenAPI_ambr_parseFromJSON(ue_ambr); } cJSON *rg_tmbr = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "rgTmbr"); OpenAPI_ambr_t *rg_tmbr_local_nonprim = NULL; if (rg_tmbr) { rg_tmbr_local_nonprim = OpenAPI_ambr_parseFromJSON(rg_tmbr); } cJSON *allowed_snssais = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "allowedSnssais"); OpenAPI_list_t *allowed_snssaisList; if (allowed_snssais) { cJSON *allowed_snssais_local_nonprimitive; if (!cJSON_IsArray(allowed_snssais)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [allowed_snssais]"); goto end; } allowed_snssaisList = OpenAPI_list_create(); cJSON_ArrayForEach(allowed_snssais_local_nonprimitive, allowed_snssais ) { if (!cJSON_IsObject(allowed_snssais_local_nonprimitive)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [allowed_snssais]"); goto end; } OpenAPI_snssai_t *allowed_snssaisItem = OpenAPI_snssai_parseFromJSON(allowed_snssais_local_nonprimitive); OpenAPI_list_add(allowed_snssaisList, allowed_snssaisItem); } } cJSON *mapping_snssais = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "mappingSnssais"); OpenAPI_list_t *mapping_snssaisList; if (mapping_snssais) { cJSON *mapping_snssais_local_nonprimitive; if (!cJSON_IsArray(mapping_snssais)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [mapping_snssais]"); goto end; } mapping_snssaisList = OpenAPI_list_create(); cJSON_ArrayForEach(mapping_snssais_local_nonprimitive, mapping_snssais ) { if (!cJSON_IsObject(mapping_snssais_local_nonprimitive)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [mapping_snssais]"); goto end; } OpenAPI_mapping_of_snssai_t *mapping_snssaisItem = OpenAPI_mapping_of_snssai_parseFromJSON(mapping_snssais_local_nonprimitive); OpenAPI_list_add(mapping_snssaisList, mapping_snssaisItem); } } cJSON *n3g_allowed_snssais = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "n3gAllowedSnssais"); OpenAPI_list_t *n3g_allowed_snssaisList; if (n3g_allowed_snssais) { cJSON *n3g_allowed_snssais_local_nonprimitive; if (!cJSON_IsArray(n3g_allowed_snssais)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [n3g_allowed_snssais]"); goto end; } n3g_allowed_snssaisList = OpenAPI_list_create(); cJSON_ArrayForEach(n3g_allowed_snssais_local_nonprimitive, n3g_allowed_snssais ) { if (!cJSON_IsObject(n3g_allowed_snssais_local_nonprimitive)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [n3g_allowed_snssais]"); goto end; } OpenAPI_snssai_t *n3g_allowed_snssaisItem = OpenAPI_snssai_parseFromJSON(n3g_allowed_snssais_local_nonprimitive); OpenAPI_list_add(n3g_allowed_snssaisList, n3g_allowed_snssaisItem); } } cJSON *guami = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "guami"); OpenAPI_guami_t *guami_local_nonprim = NULL; if (guami) { guami_local_nonprim = OpenAPI_guami_parseFromJSON(guami); } cJSON *service_name = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "serviceName"); if (service_name) { if (!cJSON_IsString(service_name)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [service_name]"); goto end; } } cJSON *trace_req = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "traceReq"); OpenAPI_trace_data_t *trace_req_local_nonprim = NULL; if (trace_req) { trace_req_local_nonprim = OpenAPI_trace_data_parseFromJSON(trace_req); } cJSON *supp_feat = cJSON_GetObjectItemCaseSensitive(policy_association_requestJSON, "suppFeat"); if (!supp_feat) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [supp_feat]"); goto end; } if (!cJSON_IsString(supp_feat)) { ogs_error("OpenAPI_policy_association_request_parseFromJSON() failed [supp_feat]"); goto end; } policy_association_request_local_var = OpenAPI_policy_association_request_create ( ogs_strdup(notification_uri->valuestring), alt_notif_ipv4_addrs ? alt_notif_ipv4_addrsList : NULL, alt_notif_ipv6_addrs ? alt_notif_ipv6_addrsList : NULL, ogs_strdup(supi->valuestring), gpsi ? ogs_strdup(gpsi->valuestring) : NULL, access_type ? access_typeVariable : 0, access_types ? access_typesList : NULL, pei ? ogs_strdup(pei->valuestring) : NULL, user_loc ? user_loc_local_nonprim : NULL, time_zone ? ogs_strdup(time_zone->valuestring) : NULL, serving_plmn ? serving_plmn_local_nonprim : NULL, rat_type ? rat_typeVariable : 0, rat_types ? rat_typesList : NULL, group_ids ? group_idsList : NULL, serv_area_res ? serv_area_res_local_nonprim : NULL, wl_serv_area_res ? wl_serv_area_res_local_nonprim : NULL, rfsp ? rfsp->valuedouble : 0, ue_ambr ? ue_ambr_local_nonprim : NULL, rg_tmbr ? rg_tmbr_local_nonprim : NULL, allowed_snssais ? allowed_snssaisList : NULL, mapping_snssais ? mapping_snssaisList : NULL, n3g_allowed_snssais ? n3g_allowed_snssaisList : NULL, guami ? guami_local_nonprim : NULL, service_name ? ogs_strdup(service_name->valuestring) : NULL, trace_req ? trace_req_local_nonprim : NULL, ogs_strdup(supp_feat->valuestring) ); return policy_association_request_local_var; end: return NULL; } OpenAPI_policy_association_request_t *OpenAPI_policy_association_request_copy(OpenAPI_policy_association_request_t *dst, OpenAPI_policy_association_request_t *src) { cJSON *item = NULL; char *content = NULL; ogs_assert(src); item = OpenAPI_policy_association_request_convertToJSON(src); if (!item) { ogs_error("OpenAPI_policy_association_request_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_association_request_free(dst); dst = OpenAPI_policy_association_request_parseFromJSON(item); cJSON_Delete(item); return dst; }