1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Authors: Alexander Larsson <alexl@redhat.com>
21 * John McCutchan <john@johnmccutchan.com>
22 * Sebastian Dröge <slomo@circular-chaos.org>
27 #include <gio/gfilemonitor.h>
28 #include <gio/gfile.h>
30 #include "fam-helper.h"
32 static FAMConnection* fam_connection = NULL;
33 static gint fam_watch_id = 0;
34 G_LOCK_DEFINE_STATIC(fam_connection);
45 /* This uses int as the argument type because the
46 real type differs between implementations:
47 gamin has "typedef enum FAMCodes {....} FAMCodes;"
48 fam has "enum FAMCodes { ... }".
50 static GFileMonitorEvent
51 fam_event_to_file_monitor_event (int code)
56 return G_FILE_MONITOR_EVENT_CHANGED;
59 return G_FILE_MONITOR_EVENT_DELETED;
62 return G_FILE_MONITOR_EVENT_CREATED;
71 fam_do_iter_unlocked (void)
73 while (fam_connection != NULL && FAMPending (fam_connection))
79 if (FAMNextEvent (fam_connection, &ev) != 1)
81 FAMClose (fam_connection);
82 g_free (fam_connection);
83 g_source_remove (fam_watch_id);
85 fam_connection = NULL;
89 sub = (fam_sub*)ev.userdata;
90 cancelled = sub->cancelled;
91 if (ev.code == FAMAcknowledge && cancelled)
102 GFileMonitor* monitor = G_FILE_MONITOR (sub->user_data);
103 GFileMonitorEvent eflags = fam_event_to_file_monitor_event (ev.code);
105 GFile *child, *parent;
107 /* unsupported event */
111 if (ev.filename[0] == '/')
112 path = g_strdup (ev.filename);
114 path = g_strdup_printf ("%s/%s", sub->pathname, ev.filename);
116 child = g_file_new_for_path (path);
117 parent = g_file_get_parent (child);
118 g_file_monitor_emit_event (monitor, child, NULL, eflags);
120 g_object_unref (child);
121 g_object_unref (parent);
126 GFileMonitor* monitor = G_FILE_MONITOR (sub->user_data);
127 GFileMonitorEvent eflags = fam_event_to_file_monitor_event (ev.code);
132 path = g_strdup (ev.filename);
133 child = g_file_new_for_path (path);
134 g_file_monitor_emit_event (monitor, child, NULL, eflags);
136 g_object_unref (child);
144 fam_callback (GIOChannel *source,
145 GIOCondition condition,
149 G_LOCK (fam_connection);
151 res = fam_do_iter_unlocked ();
153 G_UNLOCK (fam_connection);
158 _fam_sub_startup (void)
162 G_LOCK (fam_connection);
164 if (fam_connection == NULL)
166 fam_connection = g_new0 (FAMConnection, 1);
167 if (FAMOpen2 (fam_connection, "gvfs user") != 0)
169 g_warning ("FAMOpen failed, FAMErrno=%d\n", FAMErrno);
170 g_free (fam_connection);
171 fam_connection = NULL;
172 G_UNLOCK (fam_connection);
175 #ifdef HAVE_FAM_NO_EXISTS
176 /* This is a gamin extension that avoids sending all the Exists event for dir monitors */
177 FAMNoExists (fam_connection);
179 ioc = g_io_channel_unix_new (FAMCONNECTION_GETFD(fam_connection));
180 fam_watch_id = g_io_add_watch (ioc,
181 G_IO_IN | G_IO_HUP | G_IO_ERR,
182 fam_callback, fam_connection);
183 g_io_channel_unref (ioc);
186 G_UNLOCK (fam_connection);
192 _fam_sub_shutdown (void)
194 G_LOCK (fam_connection);
196 if (fam_connection != NULL)
198 FAMClose (fam_connection);
199 g_free (fam_connection);
200 g_source_remove (fam_watch_id);
202 fam_connection = NULL;
205 G_UNLOCK (fam_connection);
209 _fam_sub_add (const gchar *pathname,
215 if (!_fam_sub_startup ())
218 G_LOCK (fam_connection);
219 /* We need to queue up incoming messages to avoid blocking on write
220 * if there are many monitors being canceled */
221 fam_do_iter_unlocked ();
223 if (fam_connection == NULL)
225 G_UNLOCK (fam_connection);
229 sub = g_new0 (fam_sub, 1);
230 sub->pathname = g_strdup (pathname);
231 sub->directory = directory;
232 sub->user_data = user_data;
235 FAMMonitorDirectory (fam_connection, pathname, &sub->request, sub);
237 FAMMonitorFile (fam_connection, pathname, &sub->request, sub);
239 G_UNLOCK (fam_connection);
245 _fam_sub_cancel (fam_sub* sub)
250 sub->cancelled = TRUE;
252 G_LOCK (fam_connection);
253 /* We need to queue up incoming messages to avoid blocking on write
254 * if there are many monitors being canceled */
255 fam_do_iter_unlocked ();
257 if (fam_connection == NULL)
259 G_UNLOCK (fam_connection);
263 FAMCancelMonitor (fam_connection, &sub->request);
265 G_UNLOCK (fam_connection);
271 _fam_sub_free (fam_sub* sub)
273 g_free (sub->pathname);