126 lines
3.0 KiB
C
126 lines
3.0 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1_match_condition.h"
|
|
|
|
|
|
|
|
static v1_match_condition_t *v1_match_condition_create_internal(
|
|
char *expression,
|
|
char *name
|
|
) {
|
|
v1_match_condition_t *v1_match_condition_local_var = malloc(sizeof(v1_match_condition_t));
|
|
if (!v1_match_condition_local_var) {
|
|
return NULL;
|
|
}
|
|
v1_match_condition_local_var->expression = expression;
|
|
v1_match_condition_local_var->name = name;
|
|
|
|
v1_match_condition_local_var->_library_owned = 1;
|
|
return v1_match_condition_local_var;
|
|
}
|
|
|
|
__attribute__((deprecated)) v1_match_condition_t *v1_match_condition_create(
|
|
char *expression,
|
|
char *name
|
|
) {
|
|
return v1_match_condition_create_internal (
|
|
expression,
|
|
name
|
|
);
|
|
}
|
|
|
|
void v1_match_condition_free(v1_match_condition_t *v1_match_condition) {
|
|
if(NULL == v1_match_condition){
|
|
return ;
|
|
}
|
|
if(v1_match_condition->_library_owned != 1){
|
|
fprintf(stderr, "WARNING: %s() does NOT free objects allocated by the user\n", "v1_match_condition_free");
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1_match_condition->expression) {
|
|
free(v1_match_condition->expression);
|
|
v1_match_condition->expression = NULL;
|
|
}
|
|
if (v1_match_condition->name) {
|
|
free(v1_match_condition->name);
|
|
v1_match_condition->name = NULL;
|
|
}
|
|
free(v1_match_condition);
|
|
}
|
|
|
|
cJSON *v1_match_condition_convertToJSON(v1_match_condition_t *v1_match_condition) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1_match_condition->expression
|
|
if (!v1_match_condition->expression) {
|
|
goto fail;
|
|
}
|
|
if(cJSON_AddStringToObject(item, "expression", v1_match_condition->expression) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
|
|
|
|
// v1_match_condition->name
|
|
if (!v1_match_condition->name) {
|
|
goto fail;
|
|
}
|
|
if(cJSON_AddStringToObject(item, "name", v1_match_condition->name) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1_match_condition_t *v1_match_condition_parseFromJSON(cJSON *v1_match_conditionJSON){
|
|
|
|
v1_match_condition_t *v1_match_condition_local_var = NULL;
|
|
|
|
// v1_match_condition->expression
|
|
cJSON *expression = cJSON_GetObjectItemCaseSensitive(v1_match_conditionJSON, "expression");
|
|
if (cJSON_IsNull(expression)) {
|
|
expression = NULL;
|
|
}
|
|
if (!expression) {
|
|
goto end;
|
|
}
|
|
|
|
|
|
if(!cJSON_IsString(expression))
|
|
{
|
|
goto end; //String
|
|
}
|
|
|
|
// v1_match_condition->name
|
|
cJSON *name = cJSON_GetObjectItemCaseSensitive(v1_match_conditionJSON, "name");
|
|
if (cJSON_IsNull(name)) {
|
|
name = NULL;
|
|
}
|
|
if (!name) {
|
|
goto end;
|
|
}
|
|
|
|
|
|
if(!cJSON_IsString(name))
|
|
{
|
|
goto end; //String
|
|
}
|
|
|
|
|
|
v1_match_condition_local_var = v1_match_condition_create_internal (
|
|
strdup(expression->valuestring),
|
|
strdup(name->valuestring)
|
|
);
|
|
|
|
return v1_match_condition_local_var;
|
|
end:
|
|
return NULL;
|
|
|
|
}
|