Fix the build
[glib.git] / gio / inotify / inotify-helper.c
blob0042e7e854ccc2d6b59d2b482d6b2d0ad48c7581
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.
22 Authors:
23 John McCutchan <john@johnmccutchan.com>
26 #include "config.h"
27 #include <errno.h>
28 #include <time.h>
29 #include <string.h>
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"
41 #include "gioalias.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
56 * list.
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);
64 /**
65 * _ih_startup:
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
72 gboolean
73 _ih_startup (void)
75 static gboolean initialized = FALSE;
76 static gboolean result = FALSE;
78 G_LOCK (inotify_lock);
80 if (initialized == TRUE)
82 G_UNLOCK (inotify_lock);
83 return result;
86 result = _ip_startup (ih_event_callback);
87 if (!result)
89 g_warning ("Could not initialize inotify\n");
90 G_UNLOCK (inotify_lock);
91 return FALSE;
93 _im_startup (ih_not_missing_callback);
94 _id_startup ();
96 IH_W ("started gvfs inotify backend\n");
98 initialized = TRUE;
100 G_UNLOCK (inotify_lock);
102 return TRUE;
106 * Adds a subscription to be monitored.
108 gboolean
109 _ih_sub_add (inotify_sub *sub)
111 G_LOCK (inotify_lock);
113 if (!_ip_start_watching (sub))
114 _im_add (sub);
116 G_UNLOCK (inotify_lock);
117 return TRUE;
121 * Cancels a subscription which was being monitored.
123 gboolean
124 _ih_sub_cancel (inotify_sub *sub)
126 G_LOCK (inotify_lock);
128 if (!sub->cancelled)
130 IH_W ("cancelling %s\n", sub->dirname);
131 sub->cancelled = TRUE;
132 _im_rm (sub);
133 _ip_stop_watching (sub);
136 G_UNLOCK (inotify_lock);
138 return TRUE;
142 static void
143 ih_event_callback (ik_event_t *event,
144 inotify_sub *sub)
146 gchar *fullpath;
147 GFileMonitorEvent eflags;
148 GFile* parent;
149 GFile* child;
151 eflags = ih_mask_to_EventFlags (event->mask);
152 parent = g_file_new_for_path (sub->dirname);
153 if (event->name)
154 fullpath = g_strdup_printf ("%s/%s", sub->dirname, event->name);
155 else
156 fullpath = g_strdup_printf ("%s/", sub->dirname);
158 child = g_file_new_for_path (fullpath);
159 g_free (fullpath);
161 g_file_monitor_emit_event (G_FILE_MONITOR (sub->user_data),
162 child, NULL, eflags);
164 g_object_unref (child);
165 g_object_unref (parent);
168 static void
169 ih_not_missing_callback (inotify_sub *sub)
171 gchar *fullpath;
172 GFileMonitorEvent eflags;
173 guint32 mask;
174 GFile* parent;
175 GFile* child;
177 parent = g_file_new_for_path (sub->dirname);
179 if (sub->filename)
181 fullpath = g_strdup_printf ("%s/%s", sub->dirname, sub->filename);
182 g_warning ("Missing callback called fullpath = %s\n", fullpath);
183 if (!g_file_test (fullpath, G_FILE_TEST_EXISTS))
185 g_free (fullpath);
186 return;
188 mask = IN_CREATE;
190 else
192 fullpath = g_strdup_printf ("%s", sub->dirname);
193 mask = IN_CREATE|IN_ISDIR;
196 eflags = ih_mask_to_EventFlags (mask);
197 child = g_file_new_for_path (fullpath);
198 g_free (fullpath);
200 g_file_monitor_emit_event (G_FILE_MONITOR (sub->user_data),
201 child, NULL, eflags);
203 g_object_unref (child);
204 g_object_unref (parent);
207 /* Transforms a inotify event to a GVFS event. */
208 static GFileMonitorEvent
209 ih_mask_to_EventFlags (guint32 mask)
211 mask &= ~IN_ISDIR;
212 switch (mask)
214 case IN_MODIFY:
215 return G_FILE_MONITOR_EVENT_CHANGED;
216 case IN_CLOSE_WRITE:
217 return G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT;
218 case IN_ATTRIB:
219 return G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED;
220 case IN_MOVE_SELF:
221 case IN_MOVED_FROM:
222 case IN_DELETE:
223 case IN_DELETE_SELF:
224 return G_FILE_MONITOR_EVENT_DELETED;
225 case IN_CREATE:
226 case IN_MOVED_TO:
227 return G_FILE_MONITOR_EVENT_CREATED;
228 case IN_UNMOUNT:
229 return G_FILE_MONITOR_EVENT_UNMOUNTED;
230 case IN_Q_OVERFLOW:
231 case IN_OPEN:
232 case IN_CLOSE_NOWRITE:
233 case IN_ACCESS:
234 case IN_IGNORED:
235 default:
236 return -1;