mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
Upgrade SBI(Service-based Interface)
* OpenAPI Generator version: 4.3.1 ==> 5.5.1 * Specification : r16.8.0 (20210629)
This commit is contained in:
parent
2aaa8200c2
commit
f278d58a69
1914 changed files with 91329 additions and 57361 deletions
|
|
@ -5,16 +5,16 @@
|
|||
#include "inline_object_3.h"
|
||||
|
||||
OpenAPI_inline_object_3_t *OpenAPI_inline_object_3_create(
|
||||
OpenAPI_transfer_mt_data_req_data_t *json_data,
|
||||
OpenAPI_binary_t* binary_mt_data
|
||||
)
|
||||
OpenAPI_n1_message_notification_t *json_data,
|
||||
OpenAPI_binary_t* binary_data_n1_message
|
||||
)
|
||||
{
|
||||
OpenAPI_inline_object_3_t *inline_object_3_local_var = OpenAPI_malloc(sizeof(OpenAPI_inline_object_3_t));
|
||||
if (!inline_object_3_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
inline_object_3_local_var->json_data = json_data;
|
||||
inline_object_3_local_var->binary_mt_data = binary_mt_data;
|
||||
inline_object_3_local_var->binary_data_n1_message = binary_data_n1_message;
|
||||
|
||||
return inline_object_3_local_var;
|
||||
}
|
||||
|
|
@ -25,8 +25,8 @@ void OpenAPI_inline_object_3_free(OpenAPI_inline_object_3_t *inline_object_3)
|
|||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_transfer_mt_data_req_data_free(inline_object_3->json_data);
|
||||
ogs_free(inline_object_3->binary_mt_data->data);
|
||||
OpenAPI_n1_message_notification_free(inline_object_3->json_data);
|
||||
ogs_free(inline_object_3->binary_data_n1_message->data);
|
||||
ogs_free(inline_object_3);
|
||||
}
|
||||
|
||||
|
|
@ -41,25 +41,25 @@ cJSON *OpenAPI_inline_object_3_convertToJSON(OpenAPI_inline_object_3_t *inline_o
|
|||
|
||||
item = cJSON_CreateObject();
|
||||
if (inline_object_3->json_data) {
|
||||
cJSON *json_data_local_JSON = OpenAPI_transfer_mt_data_req_data_convertToJSON(inline_object_3->json_data);
|
||||
if (json_data_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_3_convertToJSON() failed [json_data]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "jsonData", json_data_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_3_convertToJSON() failed [json_data]");
|
||||
goto end;
|
||||
}
|
||||
cJSON *json_data_local_JSON = OpenAPI_n1_message_notification_convertToJSON(inline_object_3->json_data);
|
||||
if (json_data_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_3_convertToJSON() failed [json_data]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "jsonData", json_data_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_3_convertToJSON() failed [json_data]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (inline_object_3->binary_mt_data) {
|
||||
char* encoded_str_binary_mt_data = OpenAPI_base64encode(inline_object_3->binary_mt_data->data,inline_object_3->binary_mt_data->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryMtData", encoded_str_binary_mt_data) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_3_convertToJSON() failed [binary_mt_data]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_mt_data);
|
||||
if (inline_object_3->binary_data_n1_message) {
|
||||
char* encoded_str_binary_data_n1_message = OpenAPI_base64encode(inline_object_3->binary_data_n1_message->data,inline_object_3->binary_data_n1_message->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN1Message", encoded_str_binary_data_n1_message) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_3_convertToJSON() failed [binary_data_n1_message]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n1_message);
|
||||
}
|
||||
|
||||
end:
|
||||
|
|
@ -71,30 +71,30 @@ OpenAPI_inline_object_3_t *OpenAPI_inline_object_3_parseFromJSON(cJSON *inline_o
|
|||
OpenAPI_inline_object_3_t *inline_object_3_local_var = NULL;
|
||||
cJSON *json_data = cJSON_GetObjectItemCaseSensitive(inline_object_3JSON, "jsonData");
|
||||
|
||||
OpenAPI_transfer_mt_data_req_data_t *json_data_local_nonprim = NULL;
|
||||
if (json_data) {
|
||||
json_data_local_nonprim = OpenAPI_transfer_mt_data_req_data_parseFromJSON(json_data);
|
||||
}
|
||||
OpenAPI_n1_message_notification_t *json_data_local_nonprim = NULL;
|
||||
if (json_data) {
|
||||
json_data_local_nonprim = OpenAPI_n1_message_notification_parseFromJSON(json_data);
|
||||
}
|
||||
|
||||
cJSON *binary_mt_data = cJSON_GetObjectItemCaseSensitive(inline_object_3JSON, "binaryMtData");
|
||||
cJSON *binary_data_n1_message = cJSON_GetObjectItemCaseSensitive(inline_object_3JSON, "binaryDataN1Message");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_mt_data = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_mt_data) {
|
||||
if (!cJSON_IsString(binary_mt_data)) {
|
||||
ogs_error("OpenAPI_inline_object_3_parseFromJSON() failed [binary_mt_data]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_mt_data->data = OpenAPI_base64decode(binary_mt_data->valuestring, strlen(binary_mt_data->valuestring), &decoded_str_binary_mt_data->len);
|
||||
if (!decoded_str_binary_mt_data->data) {
|
||||
ogs_error("OpenAPI_inline_object_3_parseFromJSON() failed [binary_mt_data]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n1_message = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n1_message) {
|
||||
if (!cJSON_IsString(binary_data_n1_message)) {
|
||||
ogs_error("OpenAPI_inline_object_3_parseFromJSON() failed [binary_data_n1_message]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n1_message->data = OpenAPI_base64decode(binary_data_n1_message->valuestring, strlen(binary_data_n1_message->valuestring), &decoded_str_binary_data_n1_message->len);
|
||||
if (!decoded_str_binary_data_n1_message->data) {
|
||||
ogs_error("OpenAPI_inline_object_3_parseFromJSON() failed [binary_data_n1_message]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
inline_object_3_local_var = OpenAPI_inline_object_3_create (
|
||||
json_data ? json_data_local_nonprim : NULL,
|
||||
binary_mt_data ? decoded_str_binary_mt_data : NULL
|
||||
);
|
||||
binary_data_n1_message ? decoded_str_binary_data_n1_message : NULL
|
||||
);
|
||||
|
||||
return inline_object_3_local_var;
|
||||
end:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue