114 lines
2.9 KiB
C
114 lines
2.9 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1_secret_env_source.h"
|
|
|
|
|
|
|
|
static v1_secret_env_source_t *v1_secret_env_source_create_internal(
|
|
char *name,
|
|
int optional
|
|
) {
|
|
v1_secret_env_source_t *v1_secret_env_source_local_var = malloc(sizeof(v1_secret_env_source_t));
|
|
if (!v1_secret_env_source_local_var) {
|
|
return NULL;
|
|
}
|
|
v1_secret_env_source_local_var->name = name;
|
|
v1_secret_env_source_local_var->optional = optional;
|
|
|
|
v1_secret_env_source_local_var->_library_owned = 1;
|
|
return v1_secret_env_source_local_var;
|
|
}
|
|
|
|
__attribute__((deprecated)) v1_secret_env_source_t *v1_secret_env_source_create(
|
|
char *name,
|
|
int optional
|
|
) {
|
|
return v1_secret_env_source_create_internal (
|
|
name,
|
|
optional
|
|
);
|
|
}
|
|
|
|
void v1_secret_env_source_free(v1_secret_env_source_t *v1_secret_env_source) {
|
|
if(NULL == v1_secret_env_source){
|
|
return ;
|
|
}
|
|
if(v1_secret_env_source->_library_owned != 1){
|
|
fprintf(stderr, "WARNING: %s() does NOT free objects allocated by the user\n", "v1_secret_env_source_free");
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1_secret_env_source->name) {
|
|
free(v1_secret_env_source->name);
|
|
v1_secret_env_source->name = NULL;
|
|
}
|
|
free(v1_secret_env_source);
|
|
}
|
|
|
|
cJSON *v1_secret_env_source_convertToJSON(v1_secret_env_source_t *v1_secret_env_source) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1_secret_env_source->name
|
|
if(v1_secret_env_source->name) {
|
|
if(cJSON_AddStringToObject(item, "name", v1_secret_env_source->name) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
|
|
// v1_secret_env_source->optional
|
|
if(v1_secret_env_source->optional) {
|
|
if(cJSON_AddBoolToObject(item, "optional", v1_secret_env_source->optional) == NULL) {
|
|
goto fail; //Bool
|
|
}
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1_secret_env_source_t *v1_secret_env_source_parseFromJSON(cJSON *v1_secret_env_sourceJSON){
|
|
|
|
v1_secret_env_source_t *v1_secret_env_source_local_var = NULL;
|
|
|
|
// v1_secret_env_source->name
|
|
cJSON *name = cJSON_GetObjectItemCaseSensitive(v1_secret_env_sourceJSON, "name");
|
|
if (cJSON_IsNull(name)) {
|
|
name = NULL;
|
|
}
|
|
if (name) {
|
|
if(!cJSON_IsString(name) && !cJSON_IsNull(name))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
// v1_secret_env_source->optional
|
|
cJSON *optional = cJSON_GetObjectItemCaseSensitive(v1_secret_env_sourceJSON, "optional");
|
|
if (cJSON_IsNull(optional)) {
|
|
optional = NULL;
|
|
}
|
|
if (optional) {
|
|
if(!cJSON_IsBool(optional))
|
|
{
|
|
goto end; //Bool
|
|
}
|
|
}
|
|
|
|
|
|
v1_secret_env_source_local_var = v1_secret_env_source_create_internal (
|
|
name && !cJSON_IsNull(name) ? strdup(name->valuestring) : NULL,
|
|
optional ? optional->valueint : 0
|
|
);
|
|
|
|
return v1_secret_env_source_local_var;
|
|
end:
|
|
return NULL;
|
|
|
|
}
|