1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 8 -*- */
3 /* inotify-helper.c - GVFS Monitor based on inotify.
5 Copyright (C) 2007 John McCutchan
7 The Gnome Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
12 The Gnome Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with the Gnome Library; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
23 John McCutchan <john@johnmccutchan.com>
30 #include <sys/ioctl.h>
31 /* Just include the local header to stop all the pain */
32 #include <sys/inotify.h>
33 #include <gio/glocalfile.h>
34 #include <gio/gfilemonitor.h>
35 #include <gio/gfile.h>
36 #include "inotify-helper.h"
37 #include "inotify-missing.h"
38 #include "inotify-path.h"
39 #include "inotify-diag.h"
44 static gboolean ih_debug_enabled = FALSE;
45 #define IH_W if (ih_debug_enabled) g_warning
47 static void ih_event_callback (ik_event_t *event, inotify_sub *sub);
48 static void ih_not_missing_callback (inotify_sub *sub);
50 /* We share this lock with inotify-kernel.c and inotify-missing.c
52 * inotify-kernel.c takes the lock when it reads events from
53 * the kernel and when it processes those events
55 * inotify-missing.c takes the lock when it is scanning the missing
58 * We take the lock in all public functions
60 G_GNUC_INTERNAL G_LOCK_DEFINE (inotify_lock);
62 static GFileMonitorEvent ih_mask_to_EventFlags (guint32 mask);
67 * Initializes the inotify backend. This must be called before
68 * any other functions in this module.
70 * Return value: #TRUE if initialization succeeded, #FALSE otherwise
75 static gboolean initialized = FALSE;
76 static gboolean result = FALSE;
78 G_LOCK (inotify_lock);
80 if (initialized == TRUE)
82 G_UNLOCK (inotify_lock);
86 result = _ip_startup (ih_event_callback);
89 g_warning ("Could not initialize inotify\n");
90 G_UNLOCK (inotify_lock);
93 _im_startup (ih_not_missing_callback);
96 IH_W ("started gvfs inotify backend\n");
100 G_UNLOCK (inotify_lock);
106 * Adds a subscription to be monitored.
109 _ih_sub_add (inotify_sub *sub)
111 G_LOCK (inotify_lock);
113 if (!_ip_start_watching (sub))
116 G_UNLOCK (inotify_lock);
121 * Cancels a subscription which was being monitored.
124 _ih_sub_cancel (inotify_sub *sub)
126 G_LOCK (inotify_lock);
130 IH_W ("cancelling %s\n", sub->dirname);
131 sub->cancelled = TRUE;
133 _ip_stop_watching (sub);
136 G_UNLOCK (inotify_lock);
142 _ih_fullpath_from_event (ik_event_t *event, char *dirname)
147 fullpath = g_strdup_printf ("%s/%s", dirname, event->name);
149 fullpath = g_strdup_printf ("%s/", dirname);
156 ih_event_is_paired_move (ik_event_t *event)
160 ik_event_t *paired = event->pair;
161 /* intofiy(7): IN_MOVE == IN_MOVED_FROM | IN_MOVED_TO */
162 return (event->mask | paired->mask) & IN_MOVE;
169 ih_event_callback (ik_event_t *event,
173 GFileMonitorEvent eflags;
178 eflags = ih_mask_to_EventFlags (event->mask);
179 parent = g_file_new_for_path (sub->dirname);
180 fullpath = _ih_fullpath_from_event (event, sub->dirname);
181 child = g_file_new_for_path (fullpath);
184 if (ih_event_is_paired_move (event) && sub->pair_moves)
186 char *parent_dir = _ip_get_path_for_wd (event->pair->wd);
187 fullpath = _ih_fullpath_from_event (event->pair, parent_dir);
188 other = g_file_new_for_path (fullpath);
190 eflags = G_FILE_MONITOR_EVENT_MOVED;
191 event->pair = NULL; /* prevents the paired event to be emitted as well */
196 g_file_monitor_emit_event (G_FILE_MONITOR (sub->user_data),
197 child, other, eflags);
199 g_object_unref (child);
200 g_object_unref (parent);
202 g_object_unref (other);
206 ih_not_missing_callback (inotify_sub *sub)
209 GFileMonitorEvent eflags;
214 parent = g_file_new_for_path (sub->dirname);
218 fullpath = g_strdup_printf ("%s/%s", sub->dirname, sub->filename);
219 g_warning ("Missing callback called fullpath = %s\n", fullpath);
220 if (!g_file_test (fullpath, G_FILE_TEST_EXISTS))
229 fullpath = g_strdup_printf ("%s", sub->dirname);
230 mask = IN_CREATE|IN_ISDIR;
233 eflags = ih_mask_to_EventFlags (mask);
234 child = g_file_new_for_path (fullpath);
237 g_file_monitor_emit_event (G_FILE_MONITOR (sub->user_data),
238 child, NULL, eflags);
240 g_object_unref (child);
241 g_object_unref (parent);
244 /* Transforms a inotify event to a GVFS event. */
245 static GFileMonitorEvent
246 ih_mask_to_EventFlags (guint32 mask)
252 return G_FILE_MONITOR_EVENT_CHANGED;
254 return G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT;
256 return G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED;
261 return G_FILE_MONITOR_EVENT_DELETED;
264 return G_FILE_MONITOR_EVENT_CREATED;
266 return G_FILE_MONITOR_EVENT_UNMOUNTED;
269 case IN_CLOSE_NOWRITE: