Add PCF(Policy Control Function)

This commit is contained in:
Sukchan Lee 2020-12-11 14:03:20 -05:00
parent fb95725ca4
commit 198abc6e8b
299 changed files with 29050 additions and 1075 deletions

View file

@ -0,0 +1,196 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "steering_mode.h"
OpenAPI_steering_mode_t *OpenAPI_steering_mode_create(
OpenAPI_steer_mode_value_t *steer_mode_value,
OpenAPI_access_type_e active,
OpenAPI_access_type_e standby,
int _3g_load,
OpenAPI_access_type_e prio_acc
)
{
OpenAPI_steering_mode_t *steering_mode_local_var = OpenAPI_malloc(sizeof(OpenAPI_steering_mode_t));
if (!steering_mode_local_var) {
return NULL;
}
steering_mode_local_var->steer_mode_value = steer_mode_value;
steering_mode_local_var->active = active;
steering_mode_local_var->standby = standby;
steering_mode_local_var->_3g_load = _3g_load;
steering_mode_local_var->prio_acc = prio_acc;
return steering_mode_local_var;
}
void OpenAPI_steering_mode_free(OpenAPI_steering_mode_t *steering_mode)
{
if (NULL == steering_mode) {
return;
}
OpenAPI_lnode_t *node;
OpenAPI_steer_mode_value_free(steering_mode->steer_mode_value);
ogs_free(steering_mode);
}
cJSON *OpenAPI_steering_mode_convertToJSON(OpenAPI_steering_mode_t *steering_mode)
{
cJSON *item = NULL;
if (steering_mode == NULL) {
ogs_error("OpenAPI_steering_mode_convertToJSON() failed [SteeringMode]");
return NULL;
}
item = cJSON_CreateObject();
if (!steering_mode->steer_mode_value) {
ogs_error("OpenAPI_steering_mode_convertToJSON() failed [steer_mode_value]");
goto end;
}
cJSON *steer_mode_value_local_JSON = OpenAPI_steer_mode_value_convertToJSON(steering_mode->steer_mode_value);
if (steer_mode_value_local_JSON == NULL) {
ogs_error("OpenAPI_steering_mode_convertToJSON() failed [steer_mode_value]");
goto end;
}
cJSON_AddItemToObject(item, "steerModeValue", steer_mode_value_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_steering_mode_convertToJSON() failed [steer_mode_value]");
goto end;
}
if (steering_mode->active) {
if (cJSON_AddStringToObject(item, "active", OpenAPI_access_type_ToString(steering_mode->active)) == NULL) {
ogs_error("OpenAPI_steering_mode_convertToJSON() failed [active]");
goto end;
}
}
if (steering_mode->standby) {
if (cJSON_AddStringToObject(item, "standby", OpenAPI_access_type_ToString(steering_mode->standby)) == NULL) {
ogs_error("OpenAPI_steering_mode_convertToJSON() failed [standby]");
goto end;
}
}
if (steering_mode->_3g_load) {
if (cJSON_AddNumberToObject(item, "3gLoad", steering_mode->_3g_load) == NULL) {
ogs_error("OpenAPI_steering_mode_convertToJSON() failed [_3g_load]");
goto end;
}
}
if (steering_mode->prio_acc) {
if (cJSON_AddStringToObject(item, "prioAcc", OpenAPI_access_type_ToString(steering_mode->prio_acc)) == NULL) {
ogs_error("OpenAPI_steering_mode_convertToJSON() failed [prio_acc]");
goto end;
}
}
end:
return item;
}
OpenAPI_steering_mode_t *OpenAPI_steering_mode_parseFromJSON(cJSON *steering_modeJSON)
{
OpenAPI_steering_mode_t *steering_mode_local_var = NULL;
cJSON *steer_mode_value = cJSON_GetObjectItemCaseSensitive(steering_modeJSON, "steerModeValue");
if (!steer_mode_value) {
ogs_error("OpenAPI_steering_mode_parseFromJSON() failed [steer_mode_value]");
goto end;
}
OpenAPI_steer_mode_value_t *steer_mode_value_local_nonprim = NULL;
steer_mode_value_local_nonprim = OpenAPI_steer_mode_value_parseFromJSON(steer_mode_value);
cJSON *active = cJSON_GetObjectItemCaseSensitive(steering_modeJSON, "active");
OpenAPI_access_type_e activeVariable;
if (active) {
if (!cJSON_IsString(active)) {
ogs_error("OpenAPI_steering_mode_parseFromJSON() failed [active]");
goto end;
}
activeVariable = OpenAPI_access_type_FromString(active->valuestring);
}
cJSON *standby = cJSON_GetObjectItemCaseSensitive(steering_modeJSON, "standby");
OpenAPI_access_type_e standbyVariable;
if (standby) {
if (!cJSON_IsString(standby)) {
ogs_error("OpenAPI_steering_mode_parseFromJSON() failed [standby]");
goto end;
}
standbyVariable = OpenAPI_access_type_FromString(standby->valuestring);
}
cJSON *_3g_load = cJSON_GetObjectItemCaseSensitive(steering_modeJSON, "3gLoad");
if (_3g_load) {
if (!cJSON_IsNumber(_3g_load)) {
ogs_error("OpenAPI_steering_mode_parseFromJSON() failed [_3g_load]");
goto end;
}
}
cJSON *prio_acc = cJSON_GetObjectItemCaseSensitive(steering_modeJSON, "prioAcc");
OpenAPI_access_type_e prio_accVariable;
if (prio_acc) {
if (!cJSON_IsString(prio_acc)) {
ogs_error("OpenAPI_steering_mode_parseFromJSON() failed [prio_acc]");
goto end;
}
prio_accVariable = OpenAPI_access_type_FromString(prio_acc->valuestring);
}
steering_mode_local_var = OpenAPI_steering_mode_create (
steer_mode_value_local_nonprim,
active ? activeVariable : 0,
standby ? standbyVariable : 0,
_3g_load ? _3g_load->valuedouble : 0,
prio_acc ? prio_accVariable : 0
);
return steering_mode_local_var;
end:
return NULL;
}
OpenAPI_steering_mode_t *OpenAPI_steering_mode_copy(OpenAPI_steering_mode_t *dst, OpenAPI_steering_mode_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_steering_mode_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_steering_mode_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_steering_mode_free(dst);
dst = OpenAPI_steering_mode_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}