#include #include #include #include "pws_information.h" OpenAPI_pws_information_t *OpenAPI_pws_information_create( int message_identifier, int serial_number, OpenAPI_n2_info_content_t *pws_container, int send_ran_response, char *omc_id ) { OpenAPI_pws_information_t *pws_information_local_var = OpenAPI_malloc(sizeof(OpenAPI_pws_information_t)); if (!pws_information_local_var) { return NULL; } pws_information_local_var->message_identifier = message_identifier; pws_information_local_var->serial_number = serial_number; pws_information_local_var->pws_container = pws_container; pws_information_local_var->send_ran_response = send_ran_response; pws_information_local_var->omc_id = omc_id; return pws_information_local_var; } void OpenAPI_pws_information_free(OpenAPI_pws_information_t *pws_information) { if (NULL == pws_information) { return; } OpenAPI_lnode_t *node; OpenAPI_n2_info_content_free(pws_information->pws_container); ogs_free(pws_information->omc_id); ogs_free(pws_information); } cJSON *OpenAPI_pws_information_convertToJSON(OpenAPI_pws_information_t *pws_information) { cJSON *item = NULL; if (pws_information == NULL) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [PwsInformation]"); return NULL; } item = cJSON_CreateObject(); if (!pws_information->message_identifier) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [message_identifier]"); goto end; } if (cJSON_AddNumberToObject(item, "messageIdentifier", pws_information->message_identifier) == NULL) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [message_identifier]"); goto end; } if (!pws_information->serial_number) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [serial_number]"); goto end; } if (cJSON_AddNumberToObject(item, "serialNumber", pws_information->serial_number) == NULL) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [serial_number]"); goto end; } if (!pws_information->pws_container) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [pws_container]"); goto end; } cJSON *pws_container_local_JSON = OpenAPI_n2_info_content_convertToJSON(pws_information->pws_container); if (pws_container_local_JSON == NULL) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [pws_container]"); goto end; } cJSON_AddItemToObject(item, "pwsContainer", pws_container_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [pws_container]"); goto end; } if (pws_information->send_ran_response) { if (cJSON_AddBoolToObject(item, "sendRanResponse", pws_information->send_ran_response) == NULL) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [send_ran_response]"); goto end; } } if (pws_information->omc_id) { if (cJSON_AddStringToObject(item, "omcId", pws_information->omc_id) == NULL) { ogs_error("OpenAPI_pws_information_convertToJSON() failed [omc_id]"); goto end; } } end: return item; } OpenAPI_pws_information_t *OpenAPI_pws_information_parseFromJSON(cJSON *pws_informationJSON) { OpenAPI_pws_information_t *pws_information_local_var = NULL; cJSON *message_identifier = cJSON_GetObjectItemCaseSensitive(pws_informationJSON, "messageIdentifier"); if (!message_identifier) { ogs_error("OpenAPI_pws_information_parseFromJSON() failed [message_identifier]"); goto end; } if (!cJSON_IsNumber(message_identifier)) { ogs_error("OpenAPI_pws_information_parseFromJSON() failed [message_identifier]"); goto end; } cJSON *serial_number = cJSON_GetObjectItemCaseSensitive(pws_informationJSON, "serialNumber"); if (!serial_number) { ogs_error("OpenAPI_pws_information_parseFromJSON() failed [serial_number]"); goto end; } if (!cJSON_IsNumber(serial_number)) { ogs_error("OpenAPI_pws_information_parseFromJSON() failed [serial_number]"); goto end; } cJSON *pws_container = cJSON_GetObjectItemCaseSensitive(pws_informationJSON, "pwsContainer"); if (!pws_container) { ogs_error("OpenAPI_pws_information_parseFromJSON() failed [pws_container]"); goto end; } OpenAPI_n2_info_content_t *pws_container_local_nonprim = NULL; pws_container_local_nonprim = OpenAPI_n2_info_content_parseFromJSON(pws_container); cJSON *send_ran_response = cJSON_GetObjectItemCaseSensitive(pws_informationJSON, "sendRanResponse"); if (send_ran_response) { if (!cJSON_IsBool(send_ran_response)) { ogs_error("OpenAPI_pws_information_parseFromJSON() failed [send_ran_response]"); goto end; } } cJSON *omc_id = cJSON_GetObjectItemCaseSensitive(pws_informationJSON, "omcId"); if (omc_id) { if (!cJSON_IsString(omc_id)) { ogs_error("OpenAPI_pws_information_parseFromJSON() failed [omc_id]"); goto end; } } pws_information_local_var = OpenAPI_pws_information_create ( message_identifier->valuedouble, serial_number->valuedouble, pws_container_local_nonprim, send_ran_response ? send_ran_response->valueint : 0, omc_id ? ogs_strdup(omc_id->valuestring) : NULL ); return pws_information_local_var; end: return NULL; } OpenAPI_pws_information_t *OpenAPI_pws_information_copy(OpenAPI_pws_information_t *dst, OpenAPI_pws_information_t *src) { cJSON *item = NULL; char *content = NULL; ogs_assert(src); item = OpenAPI_pws_information_convertToJSON(src); if (!item) { ogs_error("OpenAPI_pws_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_pws_information_free(dst); dst = OpenAPI_pws_information_parseFromJSON(item); cJSON_Delete(item); return dst; }