Skip to main content

C Bindings

The C bindings are a simple single header/library distribution which makes application integration extremely straightforward:

graph TD A[C Application] B[rodbus.h] C[librodbus_ffi.so] A -- #include --> B A -- links --> C

The distribution contains:

  • Single header file in /include/rodbus.h
  • Platform-specific shared libraries in /lib/<platform>
  • 3rd party license information in third-party-licenses.txt
  • CMake find package script in /cmake/
tip

The CMake script is just a recipe for how you might integrate the library. You don't have to use it. Our distribution contains a single header file and a shared library that can be easily linked. Assuming that you've installed the shared library in /usr/lib, linking a program could be as simple as:

> gcc main.c -I./c-bindings/include/ -lrodbus_ffi
> ldd a.out
linux-vdso.so.1 (0x00007ffd643f1000)
librodbus_ffi.so => /lib/librodbus_ffi.so (0x00007fbb1ec5c000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fbb1ea6a000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fbb1ea4f000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007fbb1ea45000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fbb1ea22000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fbb1e8d3000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007fbb1e8cb000)
/lib64/ld-linux-x86-64.so.2 (0x00007fbb1f1cd000)

The example above shows how dependencies might look for an executable linked on a GLIBC based distribution such as Ubuntu. Libraries are also available for MUSL distributions such as Alpine Linux.

> ldd a.out
/lib/ld-musl-x86_64.so.1 (0x7fbb1edeb000)
librodbus_ffi.so => /usr/lib/librodbus_ffi.so (0x7fbb1e894000)
libc.musl-x86_64.so.1 => /lib/ld-musl-x86_64.so.1 (0x7fbb1edeb000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x7fbb1e87b000)

CMake Usage

Make the find package script discoverable by adding it to the prefix path. Next, call find_package:

set(CMAKE_PREFIX_PATH ${DISTRIBUTION_PATH}/cmake)
set(RODBUS_RUST_TARGET x86_64-unknown-linux-gnu)
find_package(rodbus REQUIRED)
tip

The RODBUS_RUST_TARGET variable can also be set via the command line when configuring cmake. It just tells the script which library to link.

> mkdir build; cd build
> cmake .. -DRODBUS_RUST_TARGET=x86_64-unknown-linux-gnu

This call will expose two targets:

  • rodbus which is a shared library. When using this target, you must make the DLL or .so file available to your executable. You can automatically copy it to the executable target directory using the following CMake statement:
add_custom_command(TARGET my_awesome_project POST_BUILD 
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:rodbus> $<TARGET_FILE_DIR:my_awesome_project>
)

Finally, declare a dependency on the library for your executable:

add_executable(my_awesome_project main.c)
target_link_libraries(my_awesome_project PRIVATE rodbus)

Mapping

Many of the concepts built into higher-level languages are design patterns or idioms in C. When you see these higher levels patterns discussed in this guide, you can use the idioms to understand how they map to C.

Classes

C doesn't have classes with restricted member visibility. Instead, you can use opaque types to hide implementation details:

typedef struct opaque_type_t;

You can then define constructors and destructors as functions:

// constructor
opaque_type_t* create_opaque_type();
//destructor
void destroy_opaque_type(opaque_type_t* instance);

Class "member functions" are simply functions that take a pointer to the opaque type as the first argument:

int opaque_type_get_special_value(opaque_type_t* instance)

Interfaces

C accomplishes function polymorphism using function pointers. Interfaces are simply collections of function pointers along with some optional context. For example, let's look at the following logging interface in the library:

typedef struct dnp3_logger_t
{
void (*on_message)(dnp3_log_level_t level, const char* message, void* ctx);
void (*on_destroy)(void* ctx);
void* ctx;
} dnp3_logger_t;
  • ctx is an opaque pointer to some state information required by the interface. It is passed into every method as the final argument.
  • on_destroy is the destructor that cleans up the ctx.
  • on_message is a function pointer used to dispatch a log message.

Keep in mind that this example only contains a single method. Other interfaces will contain several methods.

tip

If your implementation of an interface is stateless, you can initialize ctx and on_destroy to NULL. C99 struct initialization syntax will do this by default if you don't specify a value for these fields.

Iterators

Collections in the C bindings are always implemented as an opaque iterator type. Think of them as a class with a single "next" method. For example, let's look at an iterator over bool values:

// opaque iterator
typedef struct bool_iterator_t;
// next function
bool* bool_iterator_next(bool_iterator_t* iter);

If you are given this iterator in a callback, you can process the values in a loop:

void my_callback(bool_iterator_t* iter, void* ctx)
{
bool* value = NULL;
while(value = bool_iterator_next(iter))
{
// process value
}
}
danger

Never use an iterator outside the callback. Frequently, the iterator points to memory on the stack and will result in undefined behavior if it is used after the callback is complete.

Error Handling

C API error handling is performed using error codes. An error code is always an enum value where the first value is equal to zero, indicating success.

Consider an error enum and a function that parses a string as an int that can fail:

typedef enum my_error_t
{
MY_ERROR_OK = 0,
MY_ERROR_BAD_INT_STRING = 1,
} my_error_t;

my_error_t parse_string(const char* string, int* out);

When a function that can fail needs to return a value, it always does so using an out parameter as the last argument. Your code should always check for returned error values:

int value = 0;
my_error_t err = parse_string("not a number", &value);
if(err) {
printf("unable to parse number: %s\n", my_error_to_string(err));
// handle error
}
note

Every enum generated by the C code generator also has a generated *_to_string helper method for debugging.