Openapi-generator: [BUG][CPPRestSDK] Generated CPPRestSDK client does not compile in Visual Studio 2017

Created on 4 Jun 2020  路  6Comments  路  Source: OpenAPITools/openapi-generator

Bug Report Checklist

  • [x] Have you provided a full/minimal spec to reproduce the issue?
  • [ ] Have you validated the input using an OpenAPI validator (example)? N/A
  • [ ] What's the version of OpenAPI Generator used? N/A
  • [ ] Have you search for related issues/PRs?
  • [x] What's the actual output vs expected output?
  • [ ] [Optional] Bounty to sponsor the fix (example)
Description

The generated CPPRestSDK client for the sample Pet Store does not compile in Visual Studio 2017 (CMake generated Visual Studio solution), with the following error:

2>...\samples\clientpetstore\cpp-restsdk\client\ModelBase.cpp(239): error C2664: 'void org::openapitools::client::model::HttpContent::setData(std::shared_ptrstd::istream)': cannot convert argument 1 from 'std::shared_ptr < utility::stringstream_t >' to 'std::shared_ptr < std::istream >'
2>...\samples\clientpetstore\cpp-restsdk\client\ModelBase.cpp(239): note: No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called

When using the CPPRestSDK library for Windows, in its basic_types.h the type utility::stringstream_t is always defined as an alias for std::wstringstream. However, the generated HttpContent::setData method always takes a std::shared_ptr < std::istream > as parameter, not a std::shared_ptr < std::wistream >

I need help with this. It's a blocker for any CPPRestSDK generated API client for Windows.

openapi-generator version

The client API is already generated in the openapi-generator repository.

OpenAPI declaration file content or url

The client API is already generated in the openapi-generator repository.

Command line used for generation

N/A

Steps to reproduce

Install CPPRestSDK with vcpck, as described in CPPRestSDK
Modify the local CMakeLists.txt file for compilation with vcpkg, as described in the file contents.
Generate the Visual Studio solution with 'cmake -G "Visual Studio 15 2017" < path of the CMakeLists.txt file > ' or 'cmake -G "Visual Studio 15 2017 Win64" < path of the CMakeLists.txt file > '
Open the generated solution and compile

Related issues/PRs

None

Suggest a fix

See the description above.

C++ Bug

Most helpful comment

All 6 comments

@Danielku15, you seem to be creator of the CppRestSDK generator, any update on this?
(cc: @wing328, @jimschubert, @cbornet, @ackintosh, @jmini, @etherealjoy, @spacether)

I was mainly the very initial contributor of the generator to swagger-codegen. Since then it was taken over by the project maintainers of swagger-codegen and at some point the openapi-generator was founded as a fork.

From an quick look at your description look it seems correct to expect a std::shared_ptr < std::istream >. For files it is needed to have a byte stream for transmission, bytes are nothing but unsigned char or the common define uint8_t.

To me it seems a bug that utility::stringstream_t is used at some point which might result in a unicode string stream and therefore results in a 2-byte (wchar_t) stream instead of a 1-byte stream which is not easily serializable to the underlying network stream.

Digging deeper the bug was introduced as part of the following PR/commit where a lot of things were updated to utlity::string_t and utility::stringstream_t in favor of the old web::json::value and std::stringstream usage

https://github.com/OpenAPITools/openapi-generator/commit/2d6311cbdcf477b7894eca0388fc771dce46b24b
https://github.com/OpenAPITools/openapi-generator/pull/5222

Maybe @etherealjoy might give his bits to this change 馃憢馃槈

Will take a look at this in the coming days.

Thanks for fixing this! Is it applied now if I run the openapi-generator through Docker?

I think the docker images are updated only for released versions. So you would need to wait.
Other way is to compile it yourself or get the snapshot jar and put it on your docker image.

Was this page helpful?
0 / 5 - 0 ratings