bindings: python: provide better resource control
authorBartosz Golaszewski <bartekgola@gmail.com>
Wed, 16 May 2018 09:53:18 +0000 (11:53 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Wed, 16 May 2018 10:01:45 +0000 (12:01 +0200)
commite04d4d45c200e0e1277ca1c74e0f7f56d700b9c9
treeeedf0308b4257249ca0d22acbbbdb5c5a4306c18
parent7cc5304f337a499d74f3d50c37bd18031fb67f4d
bindings: python: provide better resource control

So far we rely on cpython's reference counting for closing the GPIO
chips and freeing the underlying resources. This is however wrong.
Python doesn't guarantee anything regarding the lifetime of an object.

Provide a method for closing the underlying chip handle and add
relevant checks to all methods using the resources associated with
a GPIO chip, so that we raise an error should the user use a chip
after closing it.

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/python/examples/gpiod_tests.py
bindings/python/gpiodmodule.c