I need to attach file descriptors to the GLIB mainloop. My issue is that the list of file descriptors is not fixed during execution.
According to GLIB documentation, I can:
- create a GIOChannel for each FD using g_io_channel_unix_new and attach it to the context with g_io_add_watch
- Use a Gsource created with g_io_create_watch and set a callback g_source_set_callback
My question is : is it possible to modify dynamically a source or a context. And how can I do it ? I find the GSourceFuncs ability, but that doesn't fit my issue.
Thanks for your help.
g_io_add_watch
returns an event source ID which you can later use to dynamically remove the watch again, usingg_source_remove
. Use one event source per FD and instead of modifying existing watches, remove the old ones and create appropriate new ones.