bindings: cxx: make operator bool() explicit
authorDavid Kozub <zub@linux.fjfi.cvut.cz>
Thu, 28 Mar 2019 22:49:23 +0000 (23:49 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 29 Mar 2019 09:43:45 +0000 (10:43 +0100)
commita02f790d549580a1f4128dbfd8dfb2924f2e72ed
treeba5e2b1144a3200b36e6429c88b2ef22908d46bb
parent1fd1e271b720cdb182fd11ea860657043ce8186a
bindings: cxx: make operator bool() explicit

A non-explicit operator bool() is dangerous: It allows unwanted
conversion to integral types:

gpiod::chip c;
int i = c;

This is a trivial example, but more insidious effects are possible,
e.g. with std::set<gpiod::chip>, which would use the operator bool()
to implement element comparison, thus turning such set into a set that
has at most 2 elements: An invalid (false) element and just 1 valid
element:

std::set<gpiod::chip> s;
s.emplace();
s.emplace("/dev/gpiochip0");
s.emplace("/dev/gpiochip1");
// s.size() is still 2 even if both chips were opened!

Making the operator explicit disables this.

See e.g.
https://en.cppreference.com/w/cpp/language/implicit_conversion#The_safe_bool_problem
for more info on this.

Signed-off-by: David Kozub <zub@linux.fjfi.cvut.cz>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
bindings/cxx/gpiod.hpp
bindings/cxx/line.cpp