[gdal-dev] Get error handler user data when removing CPL Error Handler

Rajsekar Manokaran rajsekar at gmail.com
Sun Sep 12 07:03:10 PDT 2021


Hi,

In the gdal rust bindings (https://github.com/georust/gdal), we're trying
to facilitate the use of CPLSetErrorHandlerEx and related APIs.  While
setting a handler, we may pass a heap allocated data pointer to the second
argument, which is then read via the CPLGetErrorHandlerUserData in the
handler and passed to the user.

However, while removing or setting another handler, we're unable to find a
race-free method to get the associated user data of the previous handler.
This is needed to properly deallocate the memory.

Is there an atomic way to get both the previous handler (as returned by
CPLSetErrorHandler), along with the associated user data?  The issue with
making two calls, is that another thread might make changes in between the
two calls.

We could synchronize in our API, but it still has the same issue if the
user parallely used the C APIs directly or via a different interface.

Relevant PR in rust gdal bindings: https://github.com/georust/gdal/pull/215

-
Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/gdal-dev/attachments/20210912/695f9a37/attachment.html>


More information about the gdal-dev mailing list