#include #include #include #include "confirmation_data.h" OpenAPI_confirmation_data_t *OpenAPI_confirmation_data_create( char *res_star ) { OpenAPI_confirmation_data_t *confirmation_data_local_var = OpenAPI_malloc(sizeof(OpenAPI_confirmation_data_t)); if (!confirmation_data_local_var) { return NULL; } confirmation_data_local_var->res_star = res_star; return confirmation_data_local_var; } void OpenAPI_confirmation_data_free(OpenAPI_confirmation_data_t *confirmation_data) { if (NULL == confirmation_data) { return; } OpenAPI_lnode_t *node; ogs_free(confirmation_data->res_star); ogs_free(confirmation_data); } cJSON *OpenAPI_confirmation_data_convertToJSON(OpenAPI_confirmation_data_t *confirmation_data) { cJSON *item = NULL; if (confirmation_data == NULL) { ogs_error("OpenAPI_confirmation_data_convertToJSON() failed [ConfirmationData]"); return NULL; } item = cJSON_CreateObject(); if (cJSON_AddStringToObject(item, "resStar", confirmation_data->res_star) == NULL) { ogs_error("OpenAPI_confirmation_data_convertToJSON() failed [res_star]"); goto end; } end: return item; } OpenAPI_confirmation_data_t *OpenAPI_confirmation_data_parseFromJSON(cJSON *confirmation_dataJSON) { OpenAPI_confirmation_data_t *confirmation_data_local_var = NULL; cJSON *res_star = cJSON_GetObjectItemCaseSensitive(confirmation_dataJSON, "resStar"); if (!res_star) { ogs_error("OpenAPI_confirmation_data_parseFromJSON() failed [res_star]"); goto end; } if (!cJSON_IsString(res_star)) { ogs_error("OpenAPI_confirmation_data_parseFromJSON() failed [res_star]"); goto end; } confirmation_data_local_var = OpenAPI_confirmation_data_create ( ogs_strdup_or_assert(res_star->valuestring) ); return confirmation_data_local_var; end: return NULL; } OpenAPI_confirmation_data_t *OpenAPI_confirmation_data_copy(OpenAPI_confirmation_data_t *dst, OpenAPI_confirmation_data_t *src) { cJSON *item = NULL; char *content = NULL; ogs_assert(src); item = OpenAPI_confirmation_data_convertToJSON(src); if (!item) { ogs_error("OpenAPI_confirmation_data_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_confirmation_data_free(dst); dst = OpenAPI_confirmation_data_parseFromJSON(item); cJSON_Delete(item); return dst; }