On Tuesday, 18 February 2020 at 05:41:38 UTC, Andre Pany wrote:
Hi,

I try to get wrap the "Azure SDK for C" using DPP and have following issue. Functions, which are actually implemented in C header files will cause
linker errors:

https://github.com/Azure/azure-sdk-for-c/blob/master/sdk/core/core/inc/az_span.h#L91

Example:
AZ_NODISCARD AZ_INLINE az_span az_span_init(uint8_t * ptr, int32_t length, int32_t capacity) { return (az_span){ ._internal = { .ptr = ptr, .length = length, .capacity = capacity, }, };
}

Error message:
/tmp/app.o:az_storage_blobs.d:function _D20blobs_client_example__T19AZ_SPAN_FROM_BUFFERTG4096hZQBdFNbQnZS16az_storage_blobs7az_span: error: undefined reference to 'az_span_init'

I do not know C well, is this the expected behavior and should I ask the Azure SDK developers to not implement functions within C header files?

Kind regards
André

I think the problem is that you haven't actually linked in the Azure SDK C library.

Dpp translates the header declarations from C to D, but the actual definitions (function bodies) are not part of the process. The executable code for the function definitions should be inside either a static or dynamic library provided by the SDK.


From the the project's readme file, it looks like they're using CMake as the build system generator (afterwards both make and ninja should be valid choices for building):

mkdir build
cd build
cmake ../
make

In cases like this, it's best to checkout the CMakeLists.txt files of the individual sub project, like this one:

https://github.com/Azure/azure-sdk-for-c/blob/master/sdk/core/core/CMakeLists.txt

As you can see, there are several outputs of the build process, among which:

- add_library(az_core ...)
This defines a library named az_core which can produce either a static (.a on Linux, .lib on Windows) or dynamic library file (.so on Linux, .dll on Windows). (If no configuration is specified, I think it's static by default).
So the final file name would be libaz_core.{a,so} on Linux.
For the .c files to be built, a list of include directories must be specified, where the various .h would located (containing function and type declarations). This done like so:
target_include_directories (az_core PUBLIC ...)
The 'PUBLIC' argument to the target_include_directories specifies that if you want to use the library, you need to use the same include directories, as those needed for building it.

- add_executable(az_core_test ..)
This defines an executable build output, which looks is only used for testing, so it's not interesting to us, except that it can serve as an example app using the az_core library.

---

So in summary, if you want to use the az_core library, you need to:
1. Build it
2. Run Dpp like so:

d++ \
--include-path <specify the same as what was given to target_include_directories>
  <your D file(s) here)
  <path to libaz_core.a>


You will need to repeat the same steps for any other part of the Azure C SDK.


--------

TL;DR
After I went through all those steps I got a similar linker error for az_http_response_init. After looking where is the actual function definition, it turned out that it's not defined in a .c file, but it is an inline function part of a header file. Searching for az_span_init revealed the same (I could have saved myself some time by reading your message more carefully :D).

So, to answer your original question, the problem is that dpp translates only declarations, not function definitions (such as inline functions like that).

For now, your best course of action is to translate all inline function definition by hand. Since in C inline functions are mostly short and simple functions (a better alternative to macros), hopefully that won't be too much work.

Also, looking at macros like AZ_SPAN_FROM_STR, there's really very little chance that they could be correctly translated automatically. As the things they do are likely not valid even in @system D code (without additional casts), so it's better to write your own D functions by hand anyway.


Here's what I tried:

test.dpp:

#include <az_http.h>
#include <az_span.h>

import std.stdio;

void main()
{
    char[] resp =
        "HTTP/1.2 404 We removed the\tpage!\r\n" ~
        "\r\n" ~
        "But there is somebody. :-)".dup;
    az_span response_span =
    {{
        ptr: cast(ubyte*)resp.ptr,
        length: cast(int)resp.length,
        capacity: cast(int)resp.length
    }};
    az_http_response response;
    az_result result = az_http_response_init(
        &response, response_span);

    writeln(result);
}

d++ --compiler ldmd2 --include-path ./inc test.dpp ./build/libaz_core.a

Reply via email to