289 lines
8.1 KiB
C
289 lines
8.1 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1_rbd_volume_source.h"
|
|
|
|
|
|
|
|
v1_rbd_volume_source_t *v1_rbd_volume_source_create(
|
|
char *fs_type,
|
|
char *image,
|
|
char *keyring,
|
|
list_t *monitors,
|
|
char *pool,
|
|
int read_only,
|
|
v1_local_object_reference_t *secret_ref,
|
|
char *user
|
|
) {
|
|
v1_rbd_volume_source_t *v1_rbd_volume_source_local_var = malloc(sizeof(v1_rbd_volume_source_t));
|
|
if (!v1_rbd_volume_source_local_var) {
|
|
return NULL;
|
|
}
|
|
v1_rbd_volume_source_local_var->fs_type = fs_type;
|
|
v1_rbd_volume_source_local_var->image = image;
|
|
v1_rbd_volume_source_local_var->keyring = keyring;
|
|
v1_rbd_volume_source_local_var->monitors = monitors;
|
|
v1_rbd_volume_source_local_var->pool = pool;
|
|
v1_rbd_volume_source_local_var->read_only = read_only;
|
|
v1_rbd_volume_source_local_var->secret_ref = secret_ref;
|
|
v1_rbd_volume_source_local_var->user = user;
|
|
|
|
return v1_rbd_volume_source_local_var;
|
|
}
|
|
|
|
|
|
void v1_rbd_volume_source_free(v1_rbd_volume_source_t *v1_rbd_volume_source) {
|
|
if(NULL == v1_rbd_volume_source){
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1_rbd_volume_source->fs_type) {
|
|
free(v1_rbd_volume_source->fs_type);
|
|
v1_rbd_volume_source->fs_type = NULL;
|
|
}
|
|
if (v1_rbd_volume_source->image) {
|
|
free(v1_rbd_volume_source->image);
|
|
v1_rbd_volume_source->image = NULL;
|
|
}
|
|
if (v1_rbd_volume_source->keyring) {
|
|
free(v1_rbd_volume_source->keyring);
|
|
v1_rbd_volume_source->keyring = NULL;
|
|
}
|
|
if (v1_rbd_volume_source->monitors) {
|
|
list_ForEach(listEntry, v1_rbd_volume_source->monitors) {
|
|
free(listEntry->data);
|
|
}
|
|
list_freeList(v1_rbd_volume_source->monitors);
|
|
v1_rbd_volume_source->monitors = NULL;
|
|
}
|
|
if (v1_rbd_volume_source->pool) {
|
|
free(v1_rbd_volume_source->pool);
|
|
v1_rbd_volume_source->pool = NULL;
|
|
}
|
|
if (v1_rbd_volume_source->secret_ref) {
|
|
v1_local_object_reference_free(v1_rbd_volume_source->secret_ref);
|
|
v1_rbd_volume_source->secret_ref = NULL;
|
|
}
|
|
if (v1_rbd_volume_source->user) {
|
|
free(v1_rbd_volume_source->user);
|
|
v1_rbd_volume_source->user = NULL;
|
|
}
|
|
free(v1_rbd_volume_source);
|
|
}
|
|
|
|
cJSON *v1_rbd_volume_source_convertToJSON(v1_rbd_volume_source_t *v1_rbd_volume_source) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1_rbd_volume_source->fs_type
|
|
if(v1_rbd_volume_source->fs_type) {
|
|
if(cJSON_AddStringToObject(item, "fsType", v1_rbd_volume_source->fs_type) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_rbd_volume_source->image
|
|
if (!v1_rbd_volume_source->image) {
|
|
goto fail;
|
|
}
|
|
if(cJSON_AddStringToObject(item, "image", v1_rbd_volume_source->image) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
|
|
|
|
// v1_rbd_volume_source->keyring
|
|
if(v1_rbd_volume_source->keyring) {
|
|
if(cJSON_AddStringToObject(item, "keyring", v1_rbd_volume_source->keyring) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_rbd_volume_source->monitors
|
|
if (!v1_rbd_volume_source->monitors) {
|
|
goto fail;
|
|
}
|
|
cJSON *monitors = cJSON_AddArrayToObject(item, "monitors");
|
|
if(monitors == NULL) {
|
|
goto fail; //primitive container
|
|
}
|
|
|
|
listEntry_t *monitorsListEntry;
|
|
list_ForEach(monitorsListEntry, v1_rbd_volume_source->monitors) {
|
|
if(cJSON_AddStringToObject(monitors, "", (char*)monitorsListEntry->data) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
|
|
|
|
// v1_rbd_volume_source->pool
|
|
if(v1_rbd_volume_source->pool) {
|
|
if(cJSON_AddStringToObject(item, "pool", v1_rbd_volume_source->pool) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_rbd_volume_source->read_only
|
|
if(v1_rbd_volume_source->read_only) {
|
|
if(cJSON_AddBoolToObject(item, "readOnly", v1_rbd_volume_source->read_only) == NULL) {
|
|
goto fail; //Bool
|
|
}
|
|
}
|
|
|
|
|
|
// v1_rbd_volume_source->secret_ref
|
|
if(v1_rbd_volume_source->secret_ref) {
|
|
cJSON *secret_ref_local_JSON = v1_local_object_reference_convertToJSON(v1_rbd_volume_source->secret_ref);
|
|
if(secret_ref_local_JSON == NULL) {
|
|
goto fail; //model
|
|
}
|
|
cJSON_AddItemToObject(item, "secretRef", secret_ref_local_JSON);
|
|
if(item->child == NULL) {
|
|
goto fail;
|
|
}
|
|
}
|
|
|
|
|
|
// v1_rbd_volume_source->user
|
|
if(v1_rbd_volume_source->user) {
|
|
if(cJSON_AddStringToObject(item, "user", v1_rbd_volume_source->user) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1_rbd_volume_source_t *v1_rbd_volume_source_parseFromJSON(cJSON *v1_rbd_volume_sourceJSON){
|
|
|
|
v1_rbd_volume_source_t *v1_rbd_volume_source_local_var = NULL;
|
|
|
|
// define the local list for v1_rbd_volume_source->monitors
|
|
list_t *monitorsList = NULL;
|
|
|
|
// define the local variable for v1_rbd_volume_source->secret_ref
|
|
v1_local_object_reference_t *secret_ref_local_nonprim = NULL;
|
|
|
|
// v1_rbd_volume_source->fs_type
|
|
cJSON *fs_type = cJSON_GetObjectItemCaseSensitive(v1_rbd_volume_sourceJSON, "fsType");
|
|
if (fs_type) {
|
|
if(!cJSON_IsString(fs_type) && !cJSON_IsNull(fs_type))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_rbd_volume_source->image
|
|
cJSON *image = cJSON_GetObjectItemCaseSensitive(v1_rbd_volume_sourceJSON, "image");
|
|
if (!image) {
|
|
goto end;
|
|
}
|
|
|
|
|
|
if(!cJSON_IsString(image))
|
|
{
|
|
goto end; //String
|
|
}
|
|
|
|
// v1_rbd_volume_source->keyring
|
|
cJSON *keyring = cJSON_GetObjectItemCaseSensitive(v1_rbd_volume_sourceJSON, "keyring");
|
|
if (keyring) {
|
|
if(!cJSON_IsString(keyring) && !cJSON_IsNull(keyring))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_rbd_volume_source->monitors
|
|
cJSON *monitors = cJSON_GetObjectItemCaseSensitive(v1_rbd_volume_sourceJSON, "monitors");
|
|
if (!monitors) {
|
|
goto end;
|
|
}
|
|
|
|
|
|
cJSON *monitors_local = NULL;
|
|
if(!cJSON_IsArray(monitors)) {
|
|
goto end;//primitive container
|
|
}
|
|
monitorsList = list_createList();
|
|
|
|
cJSON_ArrayForEach(monitors_local, monitors)
|
|
{
|
|
if(!cJSON_IsString(monitors_local))
|
|
{
|
|
goto end;
|
|
}
|
|
list_addElement(monitorsList , strdup(monitors_local->valuestring));
|
|
}
|
|
|
|
// v1_rbd_volume_source->pool
|
|
cJSON *pool = cJSON_GetObjectItemCaseSensitive(v1_rbd_volume_sourceJSON, "pool");
|
|
if (pool) {
|
|
if(!cJSON_IsString(pool) && !cJSON_IsNull(pool))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_rbd_volume_source->read_only
|
|
cJSON *read_only = cJSON_GetObjectItemCaseSensitive(v1_rbd_volume_sourceJSON, "readOnly");
|
|
if (read_only) {
|
|
if(!cJSON_IsBool(read_only))
|
|
{
|
|
goto end; //Bool
|
|
}
|
|
}
|
|
|
|
// v1_rbd_volume_source->secret_ref
|
|
cJSON *secret_ref = cJSON_GetObjectItemCaseSensitive(v1_rbd_volume_sourceJSON, "secretRef");
|
|
if (secret_ref) {
|
|
secret_ref_local_nonprim = v1_local_object_reference_parseFromJSON(secret_ref); //nonprimitive
|
|
}
|
|
|
|
// v1_rbd_volume_source->user
|
|
cJSON *user = cJSON_GetObjectItemCaseSensitive(v1_rbd_volume_sourceJSON, "user");
|
|
if (user) {
|
|
if(!cJSON_IsString(user) && !cJSON_IsNull(user))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
|
|
v1_rbd_volume_source_local_var = v1_rbd_volume_source_create (
|
|
fs_type && !cJSON_IsNull(fs_type) ? strdup(fs_type->valuestring) : NULL,
|
|
strdup(image->valuestring),
|
|
keyring && !cJSON_IsNull(keyring) ? strdup(keyring->valuestring) : NULL,
|
|
monitorsList,
|
|
pool && !cJSON_IsNull(pool) ? strdup(pool->valuestring) : NULL,
|
|
read_only ? read_only->valueint : 0,
|
|
secret_ref ? secret_ref_local_nonprim : NULL,
|
|
user && !cJSON_IsNull(user) ? strdup(user->valuestring) : NULL
|
|
);
|
|
|
|
return v1_rbd_volume_source_local_var;
|
|
end:
|
|
if (monitorsList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, monitorsList) {
|
|
free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(monitorsList);
|
|
monitorsList = NULL;
|
|
}
|
|
if (secret_ref_local_nonprim) {
|
|
v1_local_object_reference_free(secret_ref_local_nonprim);
|
|
secret_ref_local_nonprim = NULL;
|
|
}
|
|
return NULL;
|
|
|
|
}
|