364 lines
12 KiB
C
364 lines
12 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "v1alpha1_named_rule_with_operations.h"
|
|
|
|
|
|
|
|
v1alpha1_named_rule_with_operations_t *v1alpha1_named_rule_with_operations_create(
|
|
list_t *api_groups,
|
|
list_t *api_versions,
|
|
list_t *operations,
|
|
list_t *resource_names,
|
|
list_t *resources,
|
|
char *scope
|
|
) {
|
|
v1alpha1_named_rule_with_operations_t *v1alpha1_named_rule_with_operations_local_var = malloc(sizeof(v1alpha1_named_rule_with_operations_t));
|
|
if (!v1alpha1_named_rule_with_operations_local_var) {
|
|
return NULL;
|
|
}
|
|
v1alpha1_named_rule_with_operations_local_var->api_groups = api_groups;
|
|
v1alpha1_named_rule_with_operations_local_var->api_versions = api_versions;
|
|
v1alpha1_named_rule_with_operations_local_var->operations = operations;
|
|
v1alpha1_named_rule_with_operations_local_var->resource_names = resource_names;
|
|
v1alpha1_named_rule_with_operations_local_var->resources = resources;
|
|
v1alpha1_named_rule_with_operations_local_var->scope = scope;
|
|
|
|
return v1alpha1_named_rule_with_operations_local_var;
|
|
}
|
|
|
|
|
|
void v1alpha1_named_rule_with_operations_free(v1alpha1_named_rule_with_operations_t *v1alpha1_named_rule_with_operations) {
|
|
if(NULL == v1alpha1_named_rule_with_operations){
|
|
return ;
|
|
}
|
|
listEntry_t *listEntry;
|
|
if (v1alpha1_named_rule_with_operations->api_groups) {
|
|
list_ForEach(listEntry, v1alpha1_named_rule_with_operations->api_groups) {
|
|
free(listEntry->data);
|
|
}
|
|
list_freeList(v1alpha1_named_rule_with_operations->api_groups);
|
|
v1alpha1_named_rule_with_operations->api_groups = NULL;
|
|
}
|
|
if (v1alpha1_named_rule_with_operations->api_versions) {
|
|
list_ForEach(listEntry, v1alpha1_named_rule_with_operations->api_versions) {
|
|
free(listEntry->data);
|
|
}
|
|
list_freeList(v1alpha1_named_rule_with_operations->api_versions);
|
|
v1alpha1_named_rule_with_operations->api_versions = NULL;
|
|
}
|
|
if (v1alpha1_named_rule_with_operations->operations) {
|
|
list_ForEach(listEntry, v1alpha1_named_rule_with_operations->operations) {
|
|
free(listEntry->data);
|
|
}
|
|
list_freeList(v1alpha1_named_rule_with_operations->operations);
|
|
v1alpha1_named_rule_with_operations->operations = NULL;
|
|
}
|
|
if (v1alpha1_named_rule_with_operations->resource_names) {
|
|
list_ForEach(listEntry, v1alpha1_named_rule_with_operations->resource_names) {
|
|
free(listEntry->data);
|
|
}
|
|
list_freeList(v1alpha1_named_rule_with_operations->resource_names);
|
|
v1alpha1_named_rule_with_operations->resource_names = NULL;
|
|
}
|
|
if (v1alpha1_named_rule_with_operations->resources) {
|
|
list_ForEach(listEntry, v1alpha1_named_rule_with_operations->resources) {
|
|
free(listEntry->data);
|
|
}
|
|
list_freeList(v1alpha1_named_rule_with_operations->resources);
|
|
v1alpha1_named_rule_with_operations->resources = NULL;
|
|
}
|
|
if (v1alpha1_named_rule_with_operations->scope) {
|
|
free(v1alpha1_named_rule_with_operations->scope);
|
|
v1alpha1_named_rule_with_operations->scope = NULL;
|
|
}
|
|
free(v1alpha1_named_rule_with_operations);
|
|
}
|
|
|
|
cJSON *v1alpha1_named_rule_with_operations_convertToJSON(v1alpha1_named_rule_with_operations_t *v1alpha1_named_rule_with_operations) {
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
// v1alpha1_named_rule_with_operations->api_groups
|
|
if(v1alpha1_named_rule_with_operations->api_groups) {
|
|
cJSON *api_groups = cJSON_AddArrayToObject(item, "apiGroups");
|
|
if(api_groups == NULL) {
|
|
goto fail; //primitive container
|
|
}
|
|
|
|
listEntry_t *api_groupsListEntry;
|
|
list_ForEach(api_groupsListEntry, v1alpha1_named_rule_with_operations->api_groups) {
|
|
if(cJSON_AddStringToObject(api_groups, "", (char*)api_groupsListEntry->data) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1alpha1_named_rule_with_operations->api_versions
|
|
if(v1alpha1_named_rule_with_operations->api_versions) {
|
|
cJSON *api_versions = cJSON_AddArrayToObject(item, "apiVersions");
|
|
if(api_versions == NULL) {
|
|
goto fail; //primitive container
|
|
}
|
|
|
|
listEntry_t *api_versionsListEntry;
|
|
list_ForEach(api_versionsListEntry, v1alpha1_named_rule_with_operations->api_versions) {
|
|
if(cJSON_AddStringToObject(api_versions, "", (char*)api_versionsListEntry->data) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1alpha1_named_rule_with_operations->operations
|
|
if(v1alpha1_named_rule_with_operations->operations) {
|
|
cJSON *operations = cJSON_AddArrayToObject(item, "operations");
|
|
if(operations == NULL) {
|
|
goto fail; //primitive container
|
|
}
|
|
|
|
listEntry_t *operationsListEntry;
|
|
list_ForEach(operationsListEntry, v1alpha1_named_rule_with_operations->operations) {
|
|
if(cJSON_AddStringToObject(operations, "", (char*)operationsListEntry->data) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1alpha1_named_rule_with_operations->resource_names
|
|
if(v1alpha1_named_rule_with_operations->resource_names) {
|
|
cJSON *resource_names = cJSON_AddArrayToObject(item, "resourceNames");
|
|
if(resource_names == NULL) {
|
|
goto fail; //primitive container
|
|
}
|
|
|
|
listEntry_t *resource_namesListEntry;
|
|
list_ForEach(resource_namesListEntry, v1alpha1_named_rule_with_operations->resource_names) {
|
|
if(cJSON_AddStringToObject(resource_names, "", (char*)resource_namesListEntry->data) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1alpha1_named_rule_with_operations->resources
|
|
if(v1alpha1_named_rule_with_operations->resources) {
|
|
cJSON *resources = cJSON_AddArrayToObject(item, "resources");
|
|
if(resources == NULL) {
|
|
goto fail; //primitive container
|
|
}
|
|
|
|
listEntry_t *resourcesListEntry;
|
|
list_ForEach(resourcesListEntry, v1alpha1_named_rule_with_operations->resources) {
|
|
if(cJSON_AddStringToObject(resources, "", (char*)resourcesListEntry->data) == NULL)
|
|
{
|
|
goto fail;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// v1alpha1_named_rule_with_operations->scope
|
|
if(v1alpha1_named_rule_with_operations->scope) {
|
|
if(cJSON_AddStringToObject(item, "scope", v1alpha1_named_rule_with_operations->scope) == NULL) {
|
|
goto fail; //String
|
|
}
|
|
}
|
|
|
|
return item;
|
|
fail:
|
|
if (item) {
|
|
cJSON_Delete(item);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
v1alpha1_named_rule_with_operations_t *v1alpha1_named_rule_with_operations_parseFromJSON(cJSON *v1alpha1_named_rule_with_operationsJSON){
|
|
|
|
v1alpha1_named_rule_with_operations_t *v1alpha1_named_rule_with_operations_local_var = NULL;
|
|
|
|
// define the local list for v1alpha1_named_rule_with_operations->api_groups
|
|
list_t *api_groupsList = NULL;
|
|
|
|
// define the local list for v1alpha1_named_rule_with_operations->api_versions
|
|
list_t *api_versionsList = NULL;
|
|
|
|
// define the local list for v1alpha1_named_rule_with_operations->operations
|
|
list_t *operationsList = NULL;
|
|
|
|
// define the local list for v1alpha1_named_rule_with_operations->resource_names
|
|
list_t *resource_namesList = NULL;
|
|
|
|
// define the local list for v1alpha1_named_rule_with_operations->resources
|
|
list_t *resourcesList = NULL;
|
|
|
|
// v1alpha1_named_rule_with_operations->api_groups
|
|
cJSON *api_groups = cJSON_GetObjectItemCaseSensitive(v1alpha1_named_rule_with_operationsJSON, "apiGroups");
|
|
if (api_groups) {
|
|
cJSON *api_groups_local = NULL;
|
|
if(!cJSON_IsArray(api_groups)) {
|
|
goto end;//primitive container
|
|
}
|
|
api_groupsList = list_createList();
|
|
|
|
cJSON_ArrayForEach(api_groups_local, api_groups)
|
|
{
|
|
if(!cJSON_IsString(api_groups_local))
|
|
{
|
|
goto end;
|
|
}
|
|
list_addElement(api_groupsList , strdup(api_groups_local->valuestring));
|
|
}
|
|
}
|
|
|
|
// v1alpha1_named_rule_with_operations->api_versions
|
|
cJSON *api_versions = cJSON_GetObjectItemCaseSensitive(v1alpha1_named_rule_with_operationsJSON, "apiVersions");
|
|
if (api_versions) {
|
|
cJSON *api_versions_local = NULL;
|
|
if(!cJSON_IsArray(api_versions)) {
|
|
goto end;//primitive container
|
|
}
|
|
api_versionsList = list_createList();
|
|
|
|
cJSON_ArrayForEach(api_versions_local, api_versions)
|
|
{
|
|
if(!cJSON_IsString(api_versions_local))
|
|
{
|
|
goto end;
|
|
}
|
|
list_addElement(api_versionsList , strdup(api_versions_local->valuestring));
|
|
}
|
|
}
|
|
|
|
// v1alpha1_named_rule_with_operations->operations
|
|
cJSON *operations = cJSON_GetObjectItemCaseSensitive(v1alpha1_named_rule_with_operationsJSON, "operations");
|
|
if (operations) {
|
|
cJSON *operations_local = NULL;
|
|
if(!cJSON_IsArray(operations)) {
|
|
goto end;//primitive container
|
|
}
|
|
operationsList = list_createList();
|
|
|
|
cJSON_ArrayForEach(operations_local, operations)
|
|
{
|
|
if(!cJSON_IsString(operations_local))
|
|
{
|
|
goto end;
|
|
}
|
|
list_addElement(operationsList , strdup(operations_local->valuestring));
|
|
}
|
|
}
|
|
|
|
// v1alpha1_named_rule_with_operations->resource_names
|
|
cJSON *resource_names = cJSON_GetObjectItemCaseSensitive(v1alpha1_named_rule_with_operationsJSON, "resourceNames");
|
|
if (resource_names) {
|
|
cJSON *resource_names_local = NULL;
|
|
if(!cJSON_IsArray(resource_names)) {
|
|
goto end;//primitive container
|
|
}
|
|
resource_namesList = list_createList();
|
|
|
|
cJSON_ArrayForEach(resource_names_local, resource_names)
|
|
{
|
|
if(!cJSON_IsString(resource_names_local))
|
|
{
|
|
goto end;
|
|
}
|
|
list_addElement(resource_namesList , strdup(resource_names_local->valuestring));
|
|
}
|
|
}
|
|
|
|
// v1alpha1_named_rule_with_operations->resources
|
|
cJSON *resources = cJSON_GetObjectItemCaseSensitive(v1alpha1_named_rule_with_operationsJSON, "resources");
|
|
if (resources) {
|
|
cJSON *resources_local = NULL;
|
|
if(!cJSON_IsArray(resources)) {
|
|
goto end;//primitive container
|
|
}
|
|
resourcesList = list_createList();
|
|
|
|
cJSON_ArrayForEach(resources_local, resources)
|
|
{
|
|
if(!cJSON_IsString(resources_local))
|
|
{
|
|
goto end;
|
|
}
|
|
list_addElement(resourcesList , strdup(resources_local->valuestring));
|
|
}
|
|
}
|
|
|
|
// v1alpha1_named_rule_with_operations->scope
|
|
cJSON *scope = cJSON_GetObjectItemCaseSensitive(v1alpha1_named_rule_with_operationsJSON, "scope");
|
|
if (scope) {
|
|
if(!cJSON_IsString(scope) && !cJSON_IsNull(scope))
|
|
{
|
|
goto end; //String
|
|
}
|
|
}
|
|
|
|
|
|
v1alpha1_named_rule_with_operations_local_var = v1alpha1_named_rule_with_operations_create (
|
|
api_groups ? api_groupsList : NULL,
|
|
api_versions ? api_versionsList : NULL,
|
|
operations ? operationsList : NULL,
|
|
resource_names ? resource_namesList : NULL,
|
|
resources ? resourcesList : NULL,
|
|
scope && !cJSON_IsNull(scope) ? strdup(scope->valuestring) : NULL
|
|
);
|
|
|
|
return v1alpha1_named_rule_with_operations_local_var;
|
|
end:
|
|
if (api_groupsList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, api_groupsList) {
|
|
free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(api_groupsList);
|
|
api_groupsList = NULL;
|
|
}
|
|
if (api_versionsList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, api_versionsList) {
|
|
free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(api_versionsList);
|
|
api_versionsList = NULL;
|
|
}
|
|
if (operationsList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, operationsList) {
|
|
free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(operationsList);
|
|
operationsList = NULL;
|
|
}
|
|
if (resource_namesList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, resource_namesList) {
|
|
free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(resource_namesList);
|
|
resource_namesList = NULL;
|
|
}
|
|
if (resourcesList) {
|
|
listEntry_t *listEntry = NULL;
|
|
list_ForEach(listEntry, resourcesList) {
|
|
free(listEntry->data);
|
|
listEntry->data = NULL;
|
|
}
|
|
list_freeList(resourcesList);
|
|
resourcesList = NULL;
|
|
}
|
|
return NULL;
|
|
|
|
}
|