Hi Jukka,
On 02/12/2015 01:23 AM, Jukka Rissanen wrote:
On ke, 2015-02-11 at 08:06 -0600, Denis Kenzior wrote:
> Hi Patrik,
>
> On 02/11/2015 03:21 AM, Patrik Flykt wrote:
>> On Tue, 2015-02-10 at 13:47 -0600, Denis Kenzior wrote:
>>> Can you tell me why this is needed? This sounds like abuse of
>>> hashmap_foreach and an alternate data structure might be in order.
>>
>> One should not be able to crash the library by (mis)using the provided
>> API. The implementation needs to work all the time or politely tell that
>> the API function call did not complete at this time.
>>
>
> Are you serious? I've yet to see any library that I can't crash by
> deliberately misusing the API; even the best can't do what you're
> describing. Ell's job is not to hand-hold the programmer.
I disagree you here. It is quite difficult to know how ell is being used
so it should be prepared to not to crash. For example here it is not
very obvious from the library user point of view that calling
l_dbus_unregister() from dbus callback will cause a segfault. It is
clearly a bug that needs to be fixed. I do not understand why we would
leave this kind of bug in the code and then let the library user to
invent some workarounds for this issue.
Except you're not fixing l_dbus_unregister. You're fixing l_hashmap,
which does not need to be 'fixed'.
l_dbus_register used a hashmap for whatever reason. The reason might
have been to have a fast O(1) unregister implementation. But then it
was not meant to handle re-entrancy in the way you're trying to
implement it.
I already pointed out to you the long term fix. We should get rid of
l_dbus_register completely and add proper signal watch functions with a
multi-level/tree data structure for fast signal matching.
A stop-gap solution based on gdbus signal watch implementation is also
acceptable. But it is only a stop-gap solution.
Regards,
-Denis