122 lines
3.2 KiB
C
122 lines
3.2 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1_local_volume_source.h"
|
|
|
|
|
|
|
|
static v1_local_volume_source_t *v1_local_volume_source_create_internal(
|
|
char *fs_type,
|
|
char *path
|
|
) {
|
|
v1_local_volume_source_t *v1_local_volume_source_local_var = malloc(sizeof(v1_local_volume_source_t));
|
|
if (!v1_local_volume_source_local_var) {
|
|
return NULL;
|
|
}
|
|
v1_local_volume_source_local_var->fs_type = fs_type;
|
|
v1_local_volume_source_local_var->path = path;
|
|
|
|
v1_local_volume_source_local_var->_library_owned = 1;
|
|
return v1_local_volume_source_local_var;
|
|
}
|
|
|
|
__attribute__((deprecated)) v1_local_volume_source_t *v1_local_volume_source_create(
|
|
char *fs_type,
|
|
char *path
|
|
) {
|
|
return v1_local_volume_source_create_internal (
|
|
fs_type,
|
|
path
|
|
);
|
|
}
|
|
|
|
void v1_local_volume_source_free(v1_local_volume_source_t *v1_local_volume_source) {
|
|
if(NULL == v1_local_volume_source){
|
|
return ;
|
|
}
|
|
if(v1_local_volume_source->_library_owned != 1){
|
|
fprintf(stderr, "WARNING: %s() does NOT free objects allocated by the user\n", "v1_local_volume_source_free");
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1_local_volume_source->fs_type) {
|
|
free(v1_local_volume_source->fs_type);
|
|
v1_local_volume_source->fs_type = NULL;
|
|
}
|
|
if (v1_local_volume_source->path) {
|
|
free(v1_local_volume_source->path);
|
|
v1_local_volume_source->path = NULL;
|
|
}
|
|
free(v1_local_volume_source);
|
|
}
|
|
|
|
cJSON *v1_local_volume_source_convertToJSON(v1_local_volume_source_t *v1_local_volume_source) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1_local_volume_source->fs_type
|
|
if(v1_local_volume_source->fs_type) {
|
|
if(cJSON_AddStringToObject(item, "fsType", v1_local_volume_source->fs_type) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_local_volume_source->path
|
|
if (!v1_local_volume_source->path) {
|
|
goto fail;
|
|
}
|
|
if(cJSON_AddStringToObject(item, "path", v1_local_volume_source->path) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1_local_volume_source_t *v1_local_volume_source_parseFromJSON(cJSON *v1_local_volume_sourceJSON){
|
|
|
|
v1_local_volume_source_t *v1_local_volume_source_local_var = NULL;
|
|
|
|
// v1_local_volume_source->fs_type
|
|
cJSON *fs_type = cJSON_GetObjectItemCaseSensitive(v1_local_volume_sourceJSON, "fsType");
|
|
if (cJSON_IsNull(fs_type)) {
|
|
fs_type = NULL;
|
|
}
|
|
if (fs_type) {
|
|
if(!cJSON_IsString(fs_type) && !cJSON_IsNull(fs_type))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_local_volume_source->path
|
|
cJSON *path = cJSON_GetObjectItemCaseSensitive(v1_local_volume_sourceJSON, "path");
|
|
if (cJSON_IsNull(path)) {
|
|
path = NULL;
|
|
}
|
|
if (!path) {
|
|
goto end;
|
|
}
|
|
|
|
|
|
if(!cJSON_IsString(path))
|
|
{
|
|
goto end; //String
|
|
}
|
|
|
|
|
|
v1_local_volume_source_local_var = v1_local_volume_source_create_internal (
|
|
fs_type && !cJSON_IsNull(fs_type) ? strdup(fs_type->valuestring) : NULL,
|
|
strdup(path->valuestring)
|
|
);
|
|
|
|
return v1_local_volume_source_local_var;
|
|
end:
|
|
return NULL;
|
|
|
|
}
|