mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
arch: DB schema Changes (#796)
- New function : NSSF - New feature : SMF selection
This commit is contained in:
parent
c6bfbed922
commit
9af4268bab
691 changed files with 40727 additions and 18985 deletions
128
lib/sbi/openapi/model/scp_domain_cond.c
Normal file
128
lib/sbi/openapi/model/scp_domain_cond.c
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "scp_domain_cond.h"
|
||||
|
||||
OpenAPI_scp_domain_cond_t *OpenAPI_scp_domain_cond_create(
|
||||
OpenAPI_list_t *scp_domains
|
||||
)
|
||||
{
|
||||
OpenAPI_scp_domain_cond_t *scp_domain_cond_local_var = OpenAPI_malloc(sizeof(OpenAPI_scp_domain_cond_t));
|
||||
if (!scp_domain_cond_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
scp_domain_cond_local_var->scp_domains = scp_domains;
|
||||
|
||||
return scp_domain_cond_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_scp_domain_cond_free(OpenAPI_scp_domain_cond_t *scp_domain_cond)
|
||||
{
|
||||
if (NULL == scp_domain_cond) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_list_for_each(scp_domain_cond->scp_domains, node) {
|
||||
ogs_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(scp_domain_cond->scp_domains);
|
||||
ogs_free(scp_domain_cond);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_scp_domain_cond_convertToJSON(OpenAPI_scp_domain_cond_t *scp_domain_cond)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (scp_domain_cond == NULL) {
|
||||
ogs_error("OpenAPI_scp_domain_cond_convertToJSON() failed [ScpDomainCond]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (scp_domain_cond->scp_domains) {
|
||||
cJSON *scp_domains = cJSON_AddArrayToObject(item, "scpDomains");
|
||||
if (scp_domains == NULL) {
|
||||
ogs_error("OpenAPI_scp_domain_cond_convertToJSON() failed [scp_domains]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *scp_domains_node;
|
||||
OpenAPI_list_for_each(scp_domain_cond->scp_domains, scp_domains_node) {
|
||||
if (cJSON_AddStringToObject(scp_domains, "", (char*)scp_domains_node->data) == NULL) {
|
||||
ogs_error("OpenAPI_scp_domain_cond_convertToJSON() failed [scp_domains]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_scp_domain_cond_t *OpenAPI_scp_domain_cond_parseFromJSON(cJSON *scp_domain_condJSON)
|
||||
{
|
||||
OpenAPI_scp_domain_cond_t *scp_domain_cond_local_var = NULL;
|
||||
cJSON *scp_domains = cJSON_GetObjectItemCaseSensitive(scp_domain_condJSON, "scpDomains");
|
||||
|
||||
OpenAPI_list_t *scp_domainsList;
|
||||
if (scp_domains) {
|
||||
cJSON *scp_domains_local;
|
||||
if (!cJSON_IsArray(scp_domains)) {
|
||||
ogs_error("OpenAPI_scp_domain_cond_parseFromJSON() failed [scp_domains]");
|
||||
goto end;
|
||||
}
|
||||
scp_domainsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(scp_domains_local, scp_domains) {
|
||||
if (!cJSON_IsString(scp_domains_local)) {
|
||||
ogs_error("OpenAPI_scp_domain_cond_parseFromJSON() failed [scp_domains]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(scp_domainsList, ogs_strdup(scp_domains_local->valuestring));
|
||||
}
|
||||
}
|
||||
|
||||
scp_domain_cond_local_var = OpenAPI_scp_domain_cond_create (
|
||||
scp_domains ? scp_domainsList : NULL
|
||||
);
|
||||
|
||||
return scp_domain_cond_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_scp_domain_cond_t *OpenAPI_scp_domain_cond_copy(OpenAPI_scp_domain_cond_t *dst, OpenAPI_scp_domain_cond_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_scp_domain_cond_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_scp_domain_cond_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_scp_domain_cond_free(dst);
|
||||
dst = OpenAPI_scp_domain_cond_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue