mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 23:37:22 +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
133
lib/sbi/openapi/model/subscribed_snssai.c
Normal file
133
lib/sbi/openapi/model/subscribed_snssai.c
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "subscribed_snssai.h"
|
||||
|
||||
OpenAPI_subscribed_snssai_t *OpenAPI_subscribed_snssai_create(
|
||||
OpenAPI_snssai_t *subscribed_snssai,
|
||||
int default_indication
|
||||
)
|
||||
{
|
||||
OpenAPI_subscribed_snssai_t *subscribed_snssai_local_var = OpenAPI_malloc(sizeof(OpenAPI_subscribed_snssai_t));
|
||||
if (!subscribed_snssai_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
subscribed_snssai_local_var->subscribed_snssai = subscribed_snssai;
|
||||
subscribed_snssai_local_var->default_indication = default_indication;
|
||||
|
||||
return subscribed_snssai_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_subscribed_snssai_free(OpenAPI_subscribed_snssai_t *subscribed_snssai)
|
||||
{
|
||||
if (NULL == subscribed_snssai) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_snssai_free(subscribed_snssai->subscribed_snssai);
|
||||
ogs_free(subscribed_snssai);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_subscribed_snssai_convertToJSON(OpenAPI_subscribed_snssai_t *subscribed_snssai)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (subscribed_snssai == NULL) {
|
||||
ogs_error("OpenAPI_subscribed_snssai_convertToJSON() failed [SubscribedSnssai]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (!subscribed_snssai->subscribed_snssai) {
|
||||
ogs_error("OpenAPI_subscribed_snssai_convertToJSON() failed [subscribed_snssai]");
|
||||
goto end;
|
||||
}
|
||||
cJSON *subscribed_snssai_local_JSON = OpenAPI_snssai_convertToJSON(subscribed_snssai->subscribed_snssai);
|
||||
if (subscribed_snssai_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_subscribed_snssai_convertToJSON() failed [subscribed_snssai]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "subscribedSnssai", subscribed_snssai_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_subscribed_snssai_convertToJSON() failed [subscribed_snssai]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (subscribed_snssai->default_indication) {
|
||||
if (cJSON_AddBoolToObject(item, "defaultIndication", subscribed_snssai->default_indication) == NULL) {
|
||||
ogs_error("OpenAPI_subscribed_snssai_convertToJSON() failed [default_indication]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_subscribed_snssai_t *OpenAPI_subscribed_snssai_parseFromJSON(cJSON *subscribed_snssaiJSON)
|
||||
{
|
||||
OpenAPI_subscribed_snssai_t *subscribed_snssai_local_var = NULL;
|
||||
cJSON *subscribed_snssai = cJSON_GetObjectItemCaseSensitive(subscribed_snssaiJSON, "subscribedSnssai");
|
||||
if (!subscribed_snssai) {
|
||||
ogs_error("OpenAPI_subscribed_snssai_parseFromJSON() failed [subscribed_snssai]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_snssai_t *subscribed_snssai_local_nonprim = NULL;
|
||||
|
||||
subscribed_snssai_local_nonprim = OpenAPI_snssai_parseFromJSON(subscribed_snssai);
|
||||
|
||||
cJSON *default_indication = cJSON_GetObjectItemCaseSensitive(subscribed_snssaiJSON, "defaultIndication");
|
||||
|
||||
if (default_indication) {
|
||||
if (!cJSON_IsBool(default_indication)) {
|
||||
ogs_error("OpenAPI_subscribed_snssai_parseFromJSON() failed [default_indication]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
subscribed_snssai_local_var = OpenAPI_subscribed_snssai_create (
|
||||
subscribed_snssai_local_nonprim,
|
||||
default_indication ? default_indication->valueint : 0
|
||||
);
|
||||
|
||||
return subscribed_snssai_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_subscribed_snssai_t *OpenAPI_subscribed_snssai_copy(OpenAPI_subscribed_snssai_t *dst, OpenAPI_subscribed_snssai_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_subscribed_snssai_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_subscribed_snssai_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_subscribed_snssai_free(dst);
|
||||
dst = OpenAPI_subscribed_snssai_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue