treewide: unify gpiod_line_config/request_get_offsets() functions
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 24 Jan 2023 09:58:11 +0000 (10:58 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 24 Jan 2023 20:53:40 +0000 (21:53 +0100)
commit2c0bdce53aeb9d3ff32c726062053c2283556aef
treed37c21980014ce55df62bd5a19df958e66c541c9
parent27b28ba156de7af257e2828e5d8ddee8099e55cb
treewide: unify gpiod_line_config/request_get_offsets() functions

We have two functions in the C API that allow users to retrieve a list
of offsets from objects: gpiod_line_request_get_offsets() and
gpiod_line_config_get_offsets(). Even though they serve pretty much the
same purpose, they have different signatures and one of them also
requires the user to free the memory allocated within the libgpiod
library with a non-libgpiod free() function.

Unify them: make them take the array in which to store offsets and the
size of this array. Make them return the number of offsets actually
stored in the array and make them impossible to fail. Change their names
to be more descriptive and in the case of line_config: add a new function
that allows users to get the number of configured offsets.

Update the entire tree to use the new interfaces.

For rust bindings: also unify the line config interface to return a map
of line settings like C++ bindings do instead of having a function to
get settings by offset. A map returned from a single call is easier to
iterate over with a for loop than using an integer and calling the
previous line_settings() method.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
13 files changed:
bindings/cxx/line-config.cpp
bindings/cxx/line-request.cpp
bindings/python/gpiod/ext/request.c
bindings/rust/libgpiod/src/lib.rs
bindings/rust/libgpiod/src/line_config.rs
bindings/rust/libgpiod/src/line_request.rs
bindings/rust/libgpiod/tests/line_config.rs
configure.ac
include/gpiod.h
lib/line-config.c
lib/line-request.c
tests/tests-line-config.c
tests/tests-line-request.c