mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 01:16:17 +01:00
aa39a0557c
- Stop using a custom thread for listening to kqueue(2) events. Instead call kevent(2) in non blocking mode in a monitor callback. Under the hood poll(2) is used to figure out if new events are available. - Do not use a socketpair with a custom protocol requiring 2 supplementary context switches per event to commicate between multiple threads. Calling kevent(2), in non blocking mode, to add/remove events is fine from any context. - Add kqueue(2) events without the EV_ONESHOT flag. This removes a race where some notifications were lost because events had to be re-added for every new notification. - Get rid of the global hash table and its associated lock and races. Use the 'cookie' argument of kevent(2) to pass the associated descriptor when registering an event. - Fix _kh_file_appeared_cb() by properly passing a monitor instead of a source to g_file_monitor_emit_event(). - Properly refcount sources. - Remove a lot of abstraction making it harder to fix the remaining issues. https://bugzilla.gnome.org/show_bug.cgi?id=739424
54 lines
1.9 KiB
C
54 lines
1.9 KiB
C
/*******************************************************************************
|
|
Copyright (c) 2011, 2012 Dmitry Matveev <me@dmitrymatveev.co.uk>
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*******************************************************************************/
|
|
|
|
#ifndef __KQUEUE_HELPER_H
|
|
#define __KQUEUE_HELPER_H
|
|
|
|
#include <gio/glocalfilemonitor.h>
|
|
#include <gio/gfilemonitor.h>
|
|
|
|
#include "dep-list.h"
|
|
|
|
/**
|
|
* kqueue_sub:
|
|
* @filename: a name of the file to monitor
|
|
* @fd: the associated file descriptor (used by kqueue)
|
|
*
|
|
* Represents a subscription on a file or directory.
|
|
*/
|
|
typedef struct
|
|
{
|
|
GLocalFileMonitor *mon;
|
|
GFileMonitorSource *source;
|
|
gchar* filename;
|
|
int fd;
|
|
dep_list* deps;
|
|
int is_dir;
|
|
} kqueue_sub;
|
|
|
|
gboolean _kqsub_start_watching (kqueue_sub *sub);
|
|
void _kh_dir_diff (kqueue_sub *sub);
|
|
void _km_add_missing (kqueue_sub *sub);
|
|
void _km_remove (kqueue_sub *sub);
|
|
|
|
#endif /* __KQUEUE_HELPER_H */
|