186 lines
4.5 KiB
C
186 lines
4.5 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1_capabilities.h"
|
|
|
|
|
|
|
|
static v1_capabilities_t *v1_capabilities_create_internal(
|
|
list_t *add,
|
|
list_t *drop
|
|
) {
|
|
v1_capabilities_t *v1_capabilities_local_var = malloc(sizeof(v1_capabilities_t));
|
|
if (!v1_capabilities_local_var) {
|
|
return NULL;
|
|
}
|
|
v1_capabilities_local_var->add = add;
|
|
v1_capabilities_local_var->drop = drop;
|
|
|
|
v1_capabilities_local_var->_library_owned = 1;
|
|
return v1_capabilities_local_var;
|
|
}
|
|
|
|
__attribute__((deprecated)) v1_capabilities_t *v1_capabilities_create(
|
|
list_t *add,
|
|
list_t *drop
|
|
) {
|
|
return v1_capabilities_create_internal (
|
|
add,
|
|
drop
|
|
);
|
|
}
|
|
|
|
void v1_capabilities_free(v1_capabilities_t *v1_capabilities) {
|
|
if(NULL == v1_capabilities){
|
|
return ;
|
|
}
|
|
if(v1_capabilities->_library_owned != 1){
|
|
fprintf(stderr, "WARNING: %s() does NOT free objects allocated by the user\n", "v1_capabilities_free");
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1_capabilities->add) {
|
|
list_ForEach(listEntry, v1_capabilities->add) {
|
|
free(listEntry->data);
|
|
}
|
|
list_freeList(v1_capabilities->add);
|
|
v1_capabilities->add = NULL;
|
|
}
|
|
if (v1_capabilities->drop) {
|
|
list_ForEach(listEntry, v1_capabilities->drop) {
|
|
free(listEntry->data);
|
|
}
|
|
list_freeList(v1_capabilities->drop);
|
|
v1_capabilities->drop = NULL;
|
|
}
|
|
free(v1_capabilities);
|
|
}
|
|
|
|
cJSON *v1_capabilities_convertToJSON(v1_capabilities_t *v1_capabilities) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1_capabilities->add
|
|
if(v1_capabilities->add) {
|
|
cJSON *add = cJSON_AddArrayToObject(item, "add");
|
|
if(add == NULL) {
|
|
goto fail; //primitive container
|
|
}
|
|
|
|
listEntry_t *addListEntry;
|
|
list_ForEach(addListEntry, v1_capabilities->add) {
|
|
if(cJSON_AddStringToObject(add, "", addListEntry->data) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1_capabilities->drop
|
|
if(v1_capabilities->drop) {
|
|
cJSON *drop = cJSON_AddArrayToObject(item, "drop");
|
|
if(drop == NULL) {
|
|
goto fail; //primitive container
|
|
}
|
|
|
|
listEntry_t *dropListEntry;
|
|
list_ForEach(dropListEntry, v1_capabilities->drop) {
|
|
if(cJSON_AddStringToObject(drop, "", dropListEntry->data) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1_capabilities_t *v1_capabilities_parseFromJSON(cJSON *v1_capabilitiesJSON){
|
|
|
|
v1_capabilities_t *v1_capabilities_local_var = NULL;
|
|
|
|
// define the local list for v1_capabilities->add
|
|
list_t *addList = NULL;
|
|
|
|
// define the local list for v1_capabilities->drop
|
|
list_t *dropList = NULL;
|
|
|
|
// v1_capabilities->add
|
|
cJSON *add = cJSON_GetObjectItemCaseSensitive(v1_capabilitiesJSON, "add");
|
|
if (cJSON_IsNull(add)) {
|
|
add = NULL;
|
|
}
|
|
if (add) {
|
|
cJSON *add_local = NULL;
|
|
if(!cJSON_IsArray(add)) {
|
|
goto end;//primitive container
|
|
}
|
|
addList = list_createList();
|
|
|
|
cJSON_ArrayForEach(add_local, add)
|
|
{
|
|
if(!cJSON_IsString(add_local))
|
|
{
|
|
goto end;
|
|
}
|
|
list_addElement(addList , strdup(add_local->valuestring));
|
|
}
|
|
}
|
|
|
|
// v1_capabilities->drop
|
|
cJSON *drop = cJSON_GetObjectItemCaseSensitive(v1_capabilitiesJSON, "drop");
|
|
if (cJSON_IsNull(drop)) {
|
|
drop = NULL;
|
|
}
|
|
if (drop) {
|
|
cJSON *drop_local = NULL;
|
|
if(!cJSON_IsArray(drop)) {
|
|
goto end;//primitive container
|
|
}
|
|
dropList = list_createList();
|
|
|
|
cJSON_ArrayForEach(drop_local, drop)
|
|
{
|
|
if(!cJSON_IsString(drop_local))
|
|
{
|
|
goto end;
|
|
}
|
|
list_addElement(dropList , strdup(drop_local->valuestring));
|
|
}
|
|
}
|
|
|
|
|
|
v1_capabilities_local_var = v1_capabilities_create_internal (
|
|
add ? addList : NULL,
|
|
drop ? dropList : NULL
|
|
);
|
|
|
|
return v1_capabilities_local_var;
|
|
end:
|
|
if (addList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, addList) {
|
|
free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(addList);
|
|
addList = NULL;
|
|
}
|
|
if (dropList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, dropList) {
|
|
free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(dropList);
|
|
dropList = NULL;
|
|
}
|
|
return NULL;
|
|
|
|
}
|