OpenAPITools / openapi-generator

OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
https://openapi-generator.tech
Apache License 2.0
21.84k stars 6.59k forks source link

[BUG] [C Client] incorrect generate "object_convertToJSON" function #5735

Open Oleg-Stepanenko-owo opened 4 years ago

Oleg-Stepanenko-owo commented 4 years ago

Bug Report Checklist

Description

I use OpenApi3 generator (Openapi-generator-cli-4.1.0) for C client, and found not for clean functional for me.

So, I have some json template where I plan to use "payload" like addition parameter (json Object type) for my functionality:

...
"data": { "type": "object", "properties": { "message": { "type": "string", "minLength": 1, "maxLength": 1024, "description": "human-readable event description" }, "payload": { "type": "object", "description": "(optional) Additional data, some object/property should be added, integer/string/array/object", "properties": {} } }, ....

after generation we have object.h and object.c files for working with object_t type.

Please to correct my if I am wrong. For make "object" type need to do something like:

object_t* _tmp = object_create();
cJSON* obj = object_convertToJSON(_tmp);
if(cJSON_AddNumberToObject(obj, "value", 123)){
return true;
}

but currently looks like that function:"object_convertToJSON" not fully correct or maybe my json template wrong?

cJSON *object_convertToJSON(object_t *object) {
    cJSON *item = cJSON_CreateObject();

    return item;
fail:
    cJSON_Delete(item);
    return NULL;
}

I fix this issue internally, like:

cJSON *object_convertToJSON(object_t *object) {
    **//cJSON *item = cJSON_CreateObject();**
    return (cJSON *)object;
}
...
cJSON * _tmp = cJSON_CreateObject();
bla-bla...
openapi-generator version

Openapi-generator-cli-4.1.0

OpenAPI declaration file content or url
Command line used for generation
Steps to reproduce
Related issues/PRs
Suggest a fix
Oleg-Stepanenko-owo commented 4 years ago

4.3.1-SNAPSHOT - same issue

Oleg-Stepanenko-owo commented 4 years ago

what about:

/*
 * object.h
 */
typedef struct object_t {
    cJSON *temporary;
} object_t;
void object_free(object_t *object) {
     if (object) {
        cJSON_Delete(object->temporary);
    }
    free (object);
}

cJSON *object_convertToJSON(object_t *object) {
    if(object){
        object->temporary = cJSON_CreateObject();
        return object->temporary;
    }
}
Oleg-Stepanenko-owo commented 4 years ago

Hello, but object_convertToJSON function look same like before. not sure that:

cJSON *object_convertToJSON(object_t *object) {
    cJSON *item = cJSON_CreateObject();

    return item;
fail:
    cJSON_Delete(item);
    return NULL;
}

object_t *object_parseFromJSON(char *jsonString){
    object_t *object = NULL;

    return object;
end:
    return NULL;
}

is logical correct. ???