mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-03 05:40:09 +00:00
Add PCF(Policy Control Function)
This commit is contained in:
parent
fb95725ca4
commit
198abc6e8b
299 changed files with 29050 additions and 1075 deletions
180
lib/sbi/openapi/model/app_detection_info.c
Normal file
180
lib/sbi/openapi/model/app_detection_info.c
Normal file
|
|
@ -0,0 +1,180 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "app_detection_info.h"
|
||||
|
||||
OpenAPI_app_detection_info_t *OpenAPI_app_detection_info_create(
|
||||
char *app_id,
|
||||
char *instance_id,
|
||||
OpenAPI_list_t *sdf_descriptions
|
||||
)
|
||||
{
|
||||
OpenAPI_app_detection_info_t *app_detection_info_local_var = OpenAPI_malloc(sizeof(OpenAPI_app_detection_info_t));
|
||||
if (!app_detection_info_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
app_detection_info_local_var->app_id = app_id;
|
||||
app_detection_info_local_var->instance_id = instance_id;
|
||||
app_detection_info_local_var->sdf_descriptions = sdf_descriptions;
|
||||
|
||||
return app_detection_info_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_app_detection_info_free(OpenAPI_app_detection_info_t *app_detection_info)
|
||||
{
|
||||
if (NULL == app_detection_info) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
ogs_free(app_detection_info->app_id);
|
||||
ogs_free(app_detection_info->instance_id);
|
||||
OpenAPI_list_for_each(app_detection_info->sdf_descriptions, node) {
|
||||
OpenAPI_flow_information_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(app_detection_info->sdf_descriptions);
|
||||
ogs_free(app_detection_info);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_app_detection_info_convertToJSON(OpenAPI_app_detection_info_t *app_detection_info)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (app_detection_info == NULL) {
|
||||
ogs_error("OpenAPI_app_detection_info_convertToJSON() failed [AppDetectionInfo]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (!app_detection_info->app_id) {
|
||||
ogs_error("OpenAPI_app_detection_info_convertToJSON() failed [app_id]");
|
||||
goto end;
|
||||
}
|
||||
if (cJSON_AddStringToObject(item, "appId", app_detection_info->app_id) == NULL) {
|
||||
ogs_error("OpenAPI_app_detection_info_convertToJSON() failed [app_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (app_detection_info->instance_id) {
|
||||
if (cJSON_AddStringToObject(item, "instanceId", app_detection_info->instance_id) == NULL) {
|
||||
ogs_error("OpenAPI_app_detection_info_convertToJSON() failed [instance_id]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (app_detection_info->sdf_descriptions) {
|
||||
cJSON *sdf_descriptionsList = cJSON_AddArrayToObject(item, "sdfDescriptions");
|
||||
if (sdf_descriptionsList == NULL) {
|
||||
ogs_error("OpenAPI_app_detection_info_convertToJSON() failed [sdf_descriptions]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *sdf_descriptions_node;
|
||||
if (app_detection_info->sdf_descriptions) {
|
||||
OpenAPI_list_for_each(app_detection_info->sdf_descriptions, sdf_descriptions_node) {
|
||||
cJSON *itemLocal = OpenAPI_flow_information_convertToJSON(sdf_descriptions_node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_app_detection_info_convertToJSON() failed [sdf_descriptions]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(sdf_descriptionsList, itemLocal);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_app_detection_info_t *OpenAPI_app_detection_info_parseFromJSON(cJSON *app_detection_infoJSON)
|
||||
{
|
||||
OpenAPI_app_detection_info_t *app_detection_info_local_var = NULL;
|
||||
cJSON *app_id = cJSON_GetObjectItemCaseSensitive(app_detection_infoJSON, "appId");
|
||||
if (!app_id) {
|
||||
ogs_error("OpenAPI_app_detection_info_parseFromJSON() failed [app_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
||||
if (!cJSON_IsString(app_id)) {
|
||||
ogs_error("OpenAPI_app_detection_info_parseFromJSON() failed [app_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *instance_id = cJSON_GetObjectItemCaseSensitive(app_detection_infoJSON, "instanceId");
|
||||
|
||||
if (instance_id) {
|
||||
if (!cJSON_IsString(instance_id)) {
|
||||
ogs_error("OpenAPI_app_detection_info_parseFromJSON() failed [instance_id]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *sdf_descriptions = cJSON_GetObjectItemCaseSensitive(app_detection_infoJSON, "sdfDescriptions");
|
||||
|
||||
OpenAPI_list_t *sdf_descriptionsList;
|
||||
if (sdf_descriptions) {
|
||||
cJSON *sdf_descriptions_local_nonprimitive;
|
||||
if (!cJSON_IsArray(sdf_descriptions)) {
|
||||
ogs_error("OpenAPI_app_detection_info_parseFromJSON() failed [sdf_descriptions]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
sdf_descriptionsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(sdf_descriptions_local_nonprimitive, sdf_descriptions ) {
|
||||
if (!cJSON_IsObject(sdf_descriptions_local_nonprimitive)) {
|
||||
ogs_error("OpenAPI_app_detection_info_parseFromJSON() failed [sdf_descriptions]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_flow_information_t *sdf_descriptionsItem = OpenAPI_flow_information_parseFromJSON(sdf_descriptions_local_nonprimitive);
|
||||
|
||||
OpenAPI_list_add(sdf_descriptionsList, sdf_descriptionsItem);
|
||||
}
|
||||
}
|
||||
|
||||
app_detection_info_local_var = OpenAPI_app_detection_info_create (
|
||||
ogs_strdup(app_id->valuestring),
|
||||
instance_id ? ogs_strdup(instance_id->valuestring) : NULL,
|
||||
sdf_descriptions ? sdf_descriptionsList : NULL
|
||||
);
|
||||
|
||||
return app_detection_info_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_app_detection_info_t *OpenAPI_app_detection_info_copy(OpenAPI_app_detection_info_t *dst, OpenAPI_app_detection_info_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_app_detection_info_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_app_detection_info_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_app_detection_info_free(dst);
|
||||
dst = OpenAPI_app_detection_info_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue