Merge remote branch 'gvdb/master'
[platform/upstream/glib.git] / gio / gunixvolumemonitor.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
3 /* GIO - GLib Input, Output and Streaming Library
4  * 
5  * Copyright (C) 2006-2007 Red Hat, Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This 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  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General
18  * Public License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20  * Boston, MA 02111-1307, USA.
21  *
22  * Author: Alexander Larsson <alexl@redhat.com>
23  *         David Zeuthen <davidz@redhat.com>
24  */
25
26 #include "config.h"
27
28 #include <string.h>
29
30 #include <glib.h>
31 #include "gunixvolumemonitor.h"
32 #include "gunixmounts.h"
33 #include "gunixmount.h"
34 #include "gunixvolume.h"
35 #include "gmount.h"
36 #include "gmountprivate.h"
37 #include "giomodule.h"
38 #include "glibintl.h"
39
40 #include "gioalias.h"
41
42 struct _GUnixVolumeMonitor {
43   GNativeVolumeMonitor parent;
44
45   GUnixMountMonitor *mount_monitor;
46
47   GList *last_mountpoints;
48   GList *last_mounts;
49
50   GList *volumes;
51   GList *mounts;
52 };
53
54 static void mountpoints_changed      (GUnixMountMonitor  *mount_monitor,
55                                       gpointer            user_data);
56 static void mounts_changed           (GUnixMountMonitor  *mount_monitor,
57                                       gpointer            user_data);
58 static void update_volumes           (GUnixVolumeMonitor *monitor);
59 static void update_mounts            (GUnixVolumeMonitor *monitor);
60
61 #define g_unix_volume_monitor_get_type _g_unix_volume_monitor_get_type
62 G_DEFINE_TYPE_WITH_CODE (GUnixVolumeMonitor, g_unix_volume_monitor, G_TYPE_NATIVE_VOLUME_MONITOR,
63                          g_io_extension_point_implement (G_NATIVE_VOLUME_MONITOR_EXTENSION_POINT_NAME,
64                                                          g_define_type_id,
65                                                          "unix",
66                                                          0));
67
68 static void
69 g_unix_volume_monitor_finalize (GObject *object)
70 {
71   GUnixVolumeMonitor *monitor;
72   
73   monitor = G_UNIX_VOLUME_MONITOR (object);
74
75   g_signal_handlers_disconnect_by_func (monitor->mount_monitor, mountpoints_changed, monitor);
76   g_signal_handlers_disconnect_by_func (monitor->mount_monitor, mounts_changed, monitor);
77                                         
78   g_object_unref (monitor->mount_monitor);
79
80   g_list_foreach (monitor->last_mountpoints, (GFunc)g_unix_mount_point_free, NULL);
81   g_list_free (monitor->last_mountpoints);
82   g_list_foreach (monitor->last_mounts, (GFunc)g_unix_mount_free, NULL);
83   g_list_free (monitor->last_mounts);
84
85   g_list_foreach (monitor->volumes, (GFunc)g_object_unref, NULL);
86   g_list_free (monitor->volumes);
87   g_list_foreach (monitor->mounts, (GFunc)g_object_unref, NULL);
88   g_list_free (monitor->mounts);
89
90   G_OBJECT_CLASS (g_unix_volume_monitor_parent_class)->finalize (object);
91 }
92
93 static void
94 g_unix_volume_monitor_dispose (GObject *object)
95 {
96   GUnixVolumeMonitor *monitor;
97
98   monitor = G_UNIX_VOLUME_MONITOR (object);
99   g_list_foreach (monitor->volumes, (GFunc)g_object_unref, NULL);
100   g_list_free (monitor->volumes);
101   monitor->volumes = NULL;
102   
103   g_list_foreach (monitor->mounts, (GFunc)g_object_unref, NULL);
104   g_list_free (monitor->mounts);
105   monitor->mounts = NULL;
106   
107   G_OBJECT_CLASS (g_unix_volume_monitor_parent_class)->dispose (object);
108 }
109
110 static GList *
111 get_mounts (GVolumeMonitor *volume_monitor)
112 {
113   GUnixVolumeMonitor *monitor;
114   GList *l;
115   
116   monitor = G_UNIX_VOLUME_MONITOR (volume_monitor);
117
118   l = g_list_copy (monitor->mounts);
119   g_list_foreach (l, (GFunc)g_object_ref, NULL);
120
121   return l;
122 }
123
124 static GList *
125 get_volumes (GVolumeMonitor *volume_monitor)
126 {
127   GUnixVolumeMonitor *monitor;
128   GList *l;
129   
130   monitor = G_UNIX_VOLUME_MONITOR (volume_monitor);
131
132   l = g_list_copy (monitor->volumes);
133   g_list_foreach (l, (GFunc)g_object_ref, NULL);
134
135   return l;
136 }
137
138 static GList *
139 get_connected_drives (GVolumeMonitor *volume_monitor)
140 {
141   return NULL;
142 }
143
144 static GVolume *
145 get_volume_for_uuid (GVolumeMonitor *volume_monitor, const char *uuid)
146 {
147   return NULL;
148 }
149
150 static GMount *
151 get_mount_for_uuid (GVolumeMonitor *volume_monitor, const char *uuid)
152 {
153   return NULL;
154 }
155
156 static gboolean
157 is_supported (void)
158 {
159   return TRUE;
160 }
161
162 static GMount *
163 get_mount_for_mount_path (const char *mount_path,
164                           GCancellable *cancellable)
165 {
166   GUnixMountEntry *mount_entry;
167   GUnixMount *mount;
168
169   mount_entry = g_unix_mount_at (mount_path, NULL);
170
171   if (!mount_entry)
172     return NULL;
173
174   /* TODO: Set mountable volume? */
175   mount = _g_unix_mount_new (NULL, mount_entry, NULL);
176
177   g_unix_mount_free (mount_entry);
178
179   return G_MOUNT (mount);
180 }
181
182 static void
183 g_unix_volume_monitor_class_init (GUnixVolumeMonitorClass *klass)
184 {
185   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
186   GVolumeMonitorClass *monitor_class = G_VOLUME_MONITOR_CLASS (klass);
187   GNativeVolumeMonitorClass *native_class = G_NATIVE_VOLUME_MONITOR_CLASS (klass);
188   
189   gobject_class->finalize = g_unix_volume_monitor_finalize;
190   gobject_class->dispose = g_unix_volume_monitor_dispose;
191
192   monitor_class->get_mounts = get_mounts;
193   monitor_class->get_volumes = get_volumes;
194   monitor_class->get_connected_drives = get_connected_drives;
195   monitor_class->get_volume_for_uuid = get_volume_for_uuid;
196   monitor_class->get_mount_for_uuid = get_mount_for_uuid;
197   monitor_class->is_supported = is_supported;
198
199   native_class->get_mount_for_mount_path = get_mount_for_mount_path;
200 }
201
202 static void
203 mountpoints_changed (GUnixMountMonitor *mount_monitor,
204                      gpointer           user_data)
205 {
206   GUnixVolumeMonitor *unix_monitor = user_data;
207
208   /* Update both to make sure volumes are created before mounts */
209   update_volumes (unix_monitor);
210   update_mounts (unix_monitor);
211 }
212
213 static void
214 mounts_changed (GUnixMountMonitor *mount_monitor,
215                 gpointer           user_data)
216 {
217   GUnixVolumeMonitor *unix_monitor = user_data;
218
219   /* Update both to make sure volumes are created before mounts */
220   update_volumes (unix_monitor);
221   update_mounts (unix_monitor);
222 }
223
224 static void
225 g_unix_volume_monitor_init (GUnixVolumeMonitor *unix_monitor)
226 {
227
228   unix_monitor->mount_monitor = g_unix_mount_monitor_new ();
229
230   g_signal_connect (unix_monitor->mount_monitor,
231                     "mounts-changed", G_CALLBACK (mounts_changed),
232                     unix_monitor);
233   
234   g_signal_connect (unix_monitor->mount_monitor,
235                     "mountpoints-changed", G_CALLBACK (mountpoints_changed),
236                     unix_monitor);
237                     
238   update_volumes (unix_monitor);
239   update_mounts (unix_monitor);
240 }
241
242 GVolumeMonitor *
243 _g_unix_volume_monitor_new (void)
244 {
245   GUnixVolumeMonitor *monitor;
246
247   monitor = g_object_new (G_TYPE_UNIX_VOLUME_MONITOR, NULL);
248   
249   return G_VOLUME_MONITOR (monitor);
250 }
251
252 static void
253 diff_sorted_lists (GList         *list1, 
254                    GList         *list2, 
255                    GCompareFunc   compare,
256                    GList        **added, 
257                    GList        **removed)
258 {
259   int order;
260   
261   *added = *removed = NULL;
262   
263   while (list1 != NULL &&
264          list2 != NULL)
265     {
266       order = (*compare) (list1->data, list2->data);
267       if (order < 0)
268         {
269           *removed = g_list_prepend (*removed, list1->data);
270           list1 = list1->next;
271         }
272       else if (order > 0)
273         {
274           *added = g_list_prepend (*added, list2->data);
275           list2 = list2->next;
276         }
277       else
278         { /* same item */
279           list1 = list1->next;
280           list2 = list2->next;
281         }
282     }
283
284   while (list1 != NULL)
285     {
286       *removed = g_list_prepend (*removed, list1->data);
287       list1 = list1->next;
288     }
289   while (list2 != NULL)
290     {
291       *added = g_list_prepend (*added, list2->data);
292       list2 = list2->next;
293     }
294 }
295
296 GUnixVolume *
297 _g_unix_volume_monitor_lookup_volume_for_mount_path (GUnixVolumeMonitor *monitor,
298                                                      const char         *mount_path)
299 {
300   GList *l;
301
302   for (l = monitor->volumes; l != NULL; l = l->next)
303     {
304       GUnixVolume *volume = l->data;
305
306       if (_g_unix_volume_has_mount_path (volume, mount_path))
307         return volume;
308     }
309   
310   return NULL;
311 }
312
313 static GUnixMount *
314 find_mount_by_mountpath (GUnixVolumeMonitor *monitor,
315                          const char *mount_path)
316 {
317   GList *l;
318
319   for (l = monitor->mounts; l != NULL; l = l->next)
320     {
321       GUnixMount *mount = l->data;
322
323       if (_g_unix_mount_has_mount_path (mount, mount_path))
324         return mount;
325     }
326   
327   return NULL;
328 }
329
330 static void
331 update_volumes (GUnixVolumeMonitor *monitor)
332 {
333   GList *new_mountpoints;
334   GList *removed, *added;
335   GList *l;
336   GUnixVolume *volume;
337   
338   new_mountpoints = g_unix_mount_points_get (NULL);
339   
340   new_mountpoints = g_list_sort (new_mountpoints, (GCompareFunc) g_unix_mount_point_compare);
341   
342   diff_sorted_lists (monitor->last_mountpoints,
343                      new_mountpoints, (GCompareFunc) g_unix_mount_point_compare,
344                      &added, &removed);
345   
346   for (l = removed; l != NULL; l = l->next)
347     {
348       GUnixMountPoint *mountpoint = l->data;
349       
350       volume = _g_unix_volume_monitor_lookup_volume_for_mount_path (monitor,
351                                                                     g_unix_mount_point_get_mount_path (mountpoint));
352       if (volume)
353         {
354           _g_unix_volume_disconnected (volume);
355           monitor->volumes = g_list_remove (monitor->volumes, volume);
356           g_signal_emit_by_name (monitor, "volume-removed", volume);
357           g_signal_emit_by_name (volume, "removed");
358           g_object_unref (volume);
359         }
360     }
361   
362   for (l = added; l != NULL; l = l->next)
363     {
364       GUnixMountPoint *mountpoint = l->data;
365       
366       volume = _g_unix_volume_new (G_VOLUME_MONITOR (monitor), mountpoint);
367       if (volume)
368         {
369           monitor->volumes = g_list_prepend (monitor->volumes, volume);
370           g_signal_emit_by_name (monitor, "volume-added", volume);
371         }
372     }
373   
374   g_list_free (added);
375   g_list_free (removed);
376   g_list_foreach (monitor->last_mountpoints,
377                   (GFunc)g_unix_mount_point_free, NULL);
378   g_list_free (monitor->last_mountpoints);
379   monitor->last_mountpoints = new_mountpoints;
380 }
381
382 static void
383 update_mounts (GUnixVolumeMonitor *monitor)
384 {
385   GList *new_mounts;
386   GList *removed, *added;
387   GList *l;
388   GUnixMount *mount;
389   GUnixVolume *volume;
390   const char *mount_path;
391   
392   new_mounts = g_unix_mounts_get (NULL);
393   
394   new_mounts = g_list_sort (new_mounts, (GCompareFunc) g_unix_mount_compare);
395   
396   diff_sorted_lists (monitor->last_mounts,
397                      new_mounts, (GCompareFunc) g_unix_mount_compare,
398                      &added, &removed);
399   
400   for (l = removed; l != NULL; l = l->next)
401     {
402       GUnixMountEntry *mount_entry = l->data;
403       
404       mount = find_mount_by_mountpath (monitor, g_unix_mount_get_mount_path (mount_entry));
405       if (mount)
406         {
407           _g_unix_mount_unmounted (mount);
408           monitor->mounts = g_list_remove (monitor->mounts, mount);
409           g_signal_emit_by_name (monitor, "mount-removed", mount);
410           g_signal_emit_by_name (mount, "unmounted");
411           g_object_unref (mount);
412         }
413     }
414   
415   for (l = added; l != NULL; l = l->next)
416     {
417       GUnixMountEntry *mount_entry = l->data;
418
419       mount_path = g_unix_mount_get_mount_path (mount_entry);
420       
421       volume = _g_unix_volume_monitor_lookup_volume_for_mount_path (monitor, mount_path);
422       mount = _g_unix_mount_new (G_VOLUME_MONITOR (monitor), mount_entry, volume);
423       if (mount)
424         {
425           monitor->mounts = g_list_prepend (monitor->mounts, mount);
426           g_signal_emit_by_name (monitor, "mount-added", mount);
427         }
428     }
429   
430   g_list_free (added);
431   g_list_free (removed);
432   g_list_foreach (monitor->last_mounts,
433                   (GFunc)g_unix_mount_free, NULL);
434   g_list_free (monitor->last_mounts);
435   monitor->last_mounts = new_mounts;
436 }