Files
c/kubernetes/model/v1_gce_persistent_disk_volume_source.c
Hui Yu 732348e69e Re-generate the C client to merge recent changes from openapi-generator:
1. [C][Client] Add C++ reserved keywords to C-libcurl client generator,then the C client can be compiled by C++ compiler (#8205)

2. [C][Client] Disable escaping the parameter name in URL path string (#8243)

3. [C][Client] Fix coredump when releasing the memory of an incompleted model (#8190)
2021-01-05 15:42:34 +08:00

143 lines
4.4 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v1_gce_persistent_disk_volume_source.h"
v1_gce_persistent_disk_volume_source_t *v1_gce_persistent_disk_volume_source_create(
char *fs_type,
int partition,
char *pd_name,
int read_only
) {
v1_gce_persistent_disk_volume_source_t *v1_gce_persistent_disk_volume_source_local_var = malloc(sizeof(v1_gce_persistent_disk_volume_source_t));
if (!v1_gce_persistent_disk_volume_source_local_var) {
return NULL;
}
v1_gce_persistent_disk_volume_source_local_var->fs_type = fs_type;
v1_gce_persistent_disk_volume_source_local_var->partition = partition;
v1_gce_persistent_disk_volume_source_local_var->pd_name = pd_name;
v1_gce_persistent_disk_volume_source_local_var->read_only = read_only;
return v1_gce_persistent_disk_volume_source_local_var;
}
void v1_gce_persistent_disk_volume_source_free(v1_gce_persistent_disk_volume_source_t *v1_gce_persistent_disk_volume_source) {
if(NULL == v1_gce_persistent_disk_volume_source){
return ;
}
listEntry_t *listEntry;
if (v1_gce_persistent_disk_volume_source->fs_type) {
free(v1_gce_persistent_disk_volume_source->fs_type);
v1_gce_persistent_disk_volume_source->fs_type = NULL;
}
if (v1_gce_persistent_disk_volume_source->pd_name) {
free(v1_gce_persistent_disk_volume_source->pd_name);
v1_gce_persistent_disk_volume_source->pd_name = NULL;
}
free(v1_gce_persistent_disk_volume_source);
}
cJSON *v1_gce_persistent_disk_volume_source_convertToJSON(v1_gce_persistent_disk_volume_source_t *v1_gce_persistent_disk_volume_source) {
cJSON *item = cJSON_CreateObject();
// v1_gce_persistent_disk_volume_source->fs_type
if(v1_gce_persistent_disk_volume_source->fs_type) {
if(cJSON_AddStringToObject(item, "fsType", v1_gce_persistent_disk_volume_source->fs_type) == NULL) {
goto fail; //String
}
}
// v1_gce_persistent_disk_volume_source->partition
if(v1_gce_persistent_disk_volume_source->partition) {
if(cJSON_AddNumberToObject(item, "partition", v1_gce_persistent_disk_volume_source->partition) == NULL) {
goto fail; //Numeric
}
}
// v1_gce_persistent_disk_volume_source->pd_name
if (!v1_gce_persistent_disk_volume_source->pd_name) {
goto fail;
}
if(cJSON_AddStringToObject(item, "pdName", v1_gce_persistent_disk_volume_source->pd_name) == NULL) {
goto fail; //String
}
// v1_gce_persistent_disk_volume_source->read_only
if(v1_gce_persistent_disk_volume_source->read_only) {
if(cJSON_AddBoolToObject(item, "readOnly", v1_gce_persistent_disk_volume_source->read_only) == NULL) {
goto fail; //Bool
}
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
v1_gce_persistent_disk_volume_source_t *v1_gce_persistent_disk_volume_source_parseFromJSON(cJSON *v1_gce_persistent_disk_volume_sourceJSON){
v1_gce_persistent_disk_volume_source_t *v1_gce_persistent_disk_volume_source_local_var = NULL;
// v1_gce_persistent_disk_volume_source->fs_type
cJSON *fs_type = cJSON_GetObjectItemCaseSensitive(v1_gce_persistent_disk_volume_sourceJSON, "fsType");
if (fs_type) {
if(!cJSON_IsString(fs_type))
{
goto end; //String
}
}
// v1_gce_persistent_disk_volume_source->partition
cJSON *partition = cJSON_GetObjectItemCaseSensitive(v1_gce_persistent_disk_volume_sourceJSON, "partition");
if (partition) {
if(!cJSON_IsNumber(partition))
{
goto end; //Numeric
}
}
// v1_gce_persistent_disk_volume_source->pd_name
cJSON *pd_name = cJSON_GetObjectItemCaseSensitive(v1_gce_persistent_disk_volume_sourceJSON, "pdName");
if (!pd_name) {
goto end;
}
if(!cJSON_IsString(pd_name))
{
goto end; //String
}
// v1_gce_persistent_disk_volume_source->read_only
cJSON *read_only = cJSON_GetObjectItemCaseSensitive(v1_gce_persistent_disk_volume_sourceJSON, "readOnly");
if (read_only) {
if(!cJSON_IsBool(read_only))
{
goto end; //Bool
}
}
v1_gce_persistent_disk_volume_source_local_var = v1_gce_persistent_disk_volume_source_create (
fs_type ? strdup(fs_type->valuestring) : NULL,
partition ? partition->valuedouble : 0,
strdup(pd_name->valuestring),
read_only ? read_only->valueint : 0
);
return v1_gce_persistent_disk_volume_source_local_var;
end:
return NULL;
}