mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +00:00
150 lines
4 KiB
C
150 lines
4 KiB
C
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "patch_result.h"
|
|
|
|
OpenAPI_patch_result_t *OpenAPI_patch_result_create(
|
|
OpenAPI_list_t *report
|
|
)
|
|
{
|
|
OpenAPI_patch_result_t *patch_result_local_var = ogs_malloc(sizeof(OpenAPI_patch_result_t));
|
|
ogs_assert(patch_result_local_var);
|
|
|
|
patch_result_local_var->report = report;
|
|
|
|
return patch_result_local_var;
|
|
}
|
|
|
|
void OpenAPI_patch_result_free(OpenAPI_patch_result_t *patch_result)
|
|
{
|
|
OpenAPI_lnode_t *node = NULL;
|
|
|
|
if (NULL == patch_result) {
|
|
return;
|
|
}
|
|
if (patch_result->report) {
|
|
OpenAPI_list_for_each(patch_result->report, node) {
|
|
OpenAPI_report_item_free(node->data);
|
|
}
|
|
OpenAPI_list_free(patch_result->report);
|
|
patch_result->report = NULL;
|
|
}
|
|
ogs_free(patch_result);
|
|
}
|
|
|
|
cJSON *OpenAPI_patch_result_convertToJSON(OpenAPI_patch_result_t *patch_result)
|
|
{
|
|
cJSON *item = NULL;
|
|
OpenAPI_lnode_t *node = NULL;
|
|
|
|
if (patch_result == NULL) {
|
|
ogs_error("OpenAPI_patch_result_convertToJSON() failed [PatchResult]");
|
|
return NULL;
|
|
}
|
|
|
|
item = cJSON_CreateObject();
|
|
if (!patch_result->report) {
|
|
ogs_error("OpenAPI_patch_result_convertToJSON() failed [report]");
|
|
return NULL;
|
|
}
|
|
cJSON *reportList = cJSON_AddArrayToObject(item, "report");
|
|
if (reportList == NULL) {
|
|
ogs_error("OpenAPI_patch_result_convertToJSON() failed [report]");
|
|
goto end;
|
|
}
|
|
OpenAPI_list_for_each(patch_result->report, node) {
|
|
cJSON *itemLocal = OpenAPI_report_item_convertToJSON(node->data);
|
|
if (itemLocal == NULL) {
|
|
ogs_error("OpenAPI_patch_result_convertToJSON() failed [report]");
|
|
goto end;
|
|
}
|
|
cJSON_AddItemToArray(reportList, itemLocal);
|
|
}
|
|
|
|
end:
|
|
return item;
|
|
}
|
|
|
|
OpenAPI_patch_result_t *OpenAPI_patch_result_parseFromJSON(cJSON *patch_resultJSON)
|
|
{
|
|
OpenAPI_patch_result_t *patch_result_local_var = NULL;
|
|
OpenAPI_lnode_t *node = NULL;
|
|
cJSON *report = NULL;
|
|
OpenAPI_list_t *reportList = NULL;
|
|
report = cJSON_GetObjectItemCaseSensitive(patch_resultJSON, "report");
|
|
if (!report) {
|
|
ogs_error("OpenAPI_patch_result_parseFromJSON() failed [report]");
|
|
goto end;
|
|
}
|
|
cJSON *report_local = NULL;
|
|
if (!cJSON_IsArray(report)) {
|
|
ogs_error("OpenAPI_patch_result_parseFromJSON() failed [report]");
|
|
goto end;
|
|
}
|
|
|
|
reportList = OpenAPI_list_create();
|
|
|
|
cJSON_ArrayForEach(report_local, report) {
|
|
if (!cJSON_IsObject(report_local)) {
|
|
ogs_error("OpenAPI_patch_result_parseFromJSON() failed [report]");
|
|
goto end;
|
|
}
|
|
OpenAPI_report_item_t *reportItem = OpenAPI_report_item_parseFromJSON(report_local);
|
|
if (!reportItem) {
|
|
ogs_error("No reportItem");
|
|
goto end;
|
|
}
|
|
OpenAPI_list_add(reportList, reportItem);
|
|
}
|
|
|
|
patch_result_local_var = OpenAPI_patch_result_create (
|
|
reportList
|
|
);
|
|
|
|
return patch_result_local_var;
|
|
end:
|
|
if (reportList) {
|
|
OpenAPI_list_for_each(reportList, node) {
|
|
OpenAPI_report_item_free(node->data);
|
|
}
|
|
OpenAPI_list_free(reportList);
|
|
reportList = NULL;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
OpenAPI_patch_result_t *OpenAPI_patch_result_copy(OpenAPI_patch_result_t *dst, OpenAPI_patch_result_t *src)
|
|
{
|
|
cJSON *item = NULL;
|
|
char *content = NULL;
|
|
|
|
ogs_assert(src);
|
|
item = OpenAPI_patch_result_convertToJSON(src);
|
|
if (!item) {
|
|
ogs_error("OpenAPI_patch_result_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_patch_result_free(dst);
|
|
dst = OpenAPI_patch_result_parseFromJSON(item);
|
|
cJSON_Delete(item);
|
|
|
|
return dst;
|
|
}
|
|
|