Upgrade SBI(Service-based Interface)

* OpenAPI Generator version: 4.3.1 ==> 5.5.1
* Specification : r16.8.0 (20210629)
This commit is contained in:
Sukchan Lee 2021-07-07 17:32:55 +09:00
parent 2aaa8200c2
commit f278d58a69
1914 changed files with 91329 additions and 57361 deletions

View file

@ -0,0 +1,109 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v2x_information.h"
OpenAPI_v2x_information_t *OpenAPI_v2x_information_create(
OpenAPI_n2_info_content_t *n2_pc5_pol
)
{
OpenAPI_v2x_information_t *v2x_information_local_var = OpenAPI_malloc(sizeof(OpenAPI_v2x_information_t));
if (!v2x_information_local_var) {
return NULL;
}
v2x_information_local_var->n2_pc5_pol = n2_pc5_pol;
return v2x_information_local_var;
}
void OpenAPI_v2x_information_free(OpenAPI_v2x_information_t *v2x_information)
{
if (NULL == v2x_information) {
return;
}
OpenAPI_lnode_t *node;
OpenAPI_n2_info_content_free(v2x_information->n2_pc5_pol);
ogs_free(v2x_information);
}
cJSON *OpenAPI_v2x_information_convertToJSON(OpenAPI_v2x_information_t *v2x_information)
{
cJSON *item = NULL;
if (v2x_information == NULL) {
ogs_error("OpenAPI_v2x_information_convertToJSON() failed [V2xInformation]");
return NULL;
}
item = cJSON_CreateObject();
if (v2x_information->n2_pc5_pol) {
cJSON *n2_pc5_pol_local_JSON = OpenAPI_n2_info_content_convertToJSON(v2x_information->n2_pc5_pol);
if (n2_pc5_pol_local_JSON == NULL) {
ogs_error("OpenAPI_v2x_information_convertToJSON() failed [n2_pc5_pol]");
goto end;
}
cJSON_AddItemToObject(item, "n2Pc5Pol", n2_pc5_pol_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_v2x_information_convertToJSON() failed [n2_pc5_pol]");
goto end;
}
}
end:
return item;
}
OpenAPI_v2x_information_t *OpenAPI_v2x_information_parseFromJSON(cJSON *v2x_informationJSON)
{
OpenAPI_v2x_information_t *v2x_information_local_var = NULL;
cJSON *n2_pc5_pol = cJSON_GetObjectItemCaseSensitive(v2x_informationJSON, "n2Pc5Pol");
OpenAPI_n2_info_content_t *n2_pc5_pol_local_nonprim = NULL;
if (n2_pc5_pol) {
n2_pc5_pol_local_nonprim = OpenAPI_n2_info_content_parseFromJSON(n2_pc5_pol);
}
v2x_information_local_var = OpenAPI_v2x_information_create (
n2_pc5_pol ? n2_pc5_pol_local_nonprim : NULL
);
return v2x_information_local_var;
end:
return NULL;
}
OpenAPI_v2x_information_t *OpenAPI_v2x_information_copy(OpenAPI_v2x_information_t *dst, OpenAPI_v2x_information_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_v2x_information_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_v2x_information_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_v2x_information_free(dst);
dst = OpenAPI_v2x_information_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}