1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
/*
* Copyright (C) 2020 Purism SPC
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Author: Guido Günther <agx@sigxcpu.org>
*/
#define G_LOG_DOMAIN "phosh-mount-manager"
#include "phosh-config.h"
#include "feedback-manager.h"
#include "mount-manager.h"
#include "mount-operation.h"
#include "notifications/mount-notification.h"
#include "notifications/notify-manager.h"
#include "shell-priv.h"
#include <gio/gio.h>
#define AUTOMOUNT_KEY "automount"
/**
* PhoshMountManager:
*
* Mount devices
*
* The #PhoshMountManager is responsible for auto mounting volumes and
* notifying about new devices.
*/
typedef struct _PhoshMountManager {
GObject parent;
GVolumeMonitor *monitor;
GSettings *settings;
GPtrArray *cancellables;
} PhoshMountManager;
G_DEFINE_TYPE (PhoshMountManager, phosh_mount_manager, G_TYPE_OBJECT)
static void
on_drive_connected (PhoshMountManager *self, GDrive *drive, GVolumeMonitor *monitor)
{
g_autofree char *name = NULL;
g_return_if_fail (G_IS_DRIVE (drive));
name = g_drive_get_name (drive);
g_debug ("Drive '%s' connected", name);
if (!phosh_shell_is_session_active (phosh_shell_get_default ()))
return;
phosh_trigger_feedback ("device-added-media");
}
static void
on_drive_disconnected (PhoshMountManager *self, GDrive *drive, GVolumeMonitor *monitor)
{
g_autofree char *name = NULL;
g_return_if_fail (G_IS_DRIVE (drive));
name = g_drive_get_name (drive);
g_debug ("Drive '%s' disconnected", name);
if (!phosh_shell_is_session_active (phosh_shell_get_default ()))
return;
phosh_trigger_feedback ("device-removed-media");
}
static void
on_mount_finished (GVolume *vol, GAsyncResult *res, PhoshMountManager *self)
{
g_autoptr (GError) err = NULL;
GCancellable *cancellable;
g_return_if_fail (PHOSH_IS_MOUNT_MANAGER (self));
g_return_if_fail (G_IS_VOLUME (vol));
if (!g_volume_mount_finish (vol, res, &err)) {
g_autofree char *name = g_volume_get_name (vol);
g_warning ("Failed to mount volume '%s': %s", name, err->message);
}
cancellable = g_object_get_data (G_OBJECT (vol), "phosh-cancel");
g_ptr_array_remove_fast (self->cancellables, cancellable);
g_ptr_array_unref (self->cancellables);
g_object_unref (vol);
g_object_unref (self);
}
static void
on_volume_added (PhoshMountManager *self, GVolume *vol, GVolumeMonitor *monitor)
{
gboolean automount;
gboolean mount_all;
GCancellable *cancellable;
g_autoptr (PhoshMountOperation) op = NULL;
g_autoptr (GMount) mount = NULL;
g_autofree char *name = NULL;
g_return_if_fail (PHOSH_IS_MOUNT_MANAGER (self));
g_return_if_fail (G_IS_VOLUME (vol));
name = g_volume_get_name (vol);
g_debug ("Volume added '%s'", name);
if (!phosh_shell_is_session_active (phosh_shell_get_default ()))
return;
mount_all = !!g_object_get_data (G_OBJECT (vol), "phosh-mount-all");
/* Initial mount-all is o.k. even when locked */
if (phosh_shell_get_locked (phosh_shell_get_default ()) && !mount_all)
return;
mount = g_volume_get_mount (vol);
if (mount)
return;
automount = g_settings_get_boolean (self->settings, AUTOMOUNT_KEY);
if (!automount || !g_volume_should_automount (vol))
return;
if (!g_volume_can_mount (vol)) {
g_debug ("Volume '%s' can not be mounted", name);
return;
}
/* If this is not the initial 'mount-all' run allow UI interaction */
if (!mount_all)
op = phosh_mount_operation_new ();
cancellable = g_cancellable_new ();
g_object_set_data (G_OBJECT (vol), "phosh-cancel", cancellable);
g_ptr_array_add (self->cancellables, cancellable);
g_ptr_array_ref (self->cancellables);
g_debug ("Mounting '%s'", name);
g_volume_mount (g_object_ref (vol), G_MOUNT_MOUNT_NONE, G_MOUNT_OPERATION (op), cancellable,
(GAsyncReadyCallback)on_mount_finished, g_object_ref (self));
}
static void
on_volume_removed (PhoshMountManager *self, GVolume *vol, GVolumeMonitor *monitor)
{
g_autofree char *name = NULL;
g_return_if_fail (PHOSH_IS_MOUNT_MANAGER (self));
g_return_if_fail (G_IS_VOLUME (vol));
if (!phosh_shell_is_session_active (phosh_shell_get_default ()))
return;
name = g_volume_get_name (vol);
g_debug ("Volume '%s' removed", name);
}
static void
on_mount_added (PhoshMountManager *self, GMount *mount, GVolumeMonitor *monitor)
{
g_autoptr (PhoshMountNotification) notification = NULL;
PhoshNotifyManager *nm;
guint id;
g_return_if_fail (PHOSH_IS_MOUNT_MANAGER (self));
g_return_if_fail (G_IS_MOUNT (mount));
if (!phosh_shell_is_session_active (phosh_shell_get_default ()))
return;
/* No notifications when mounting all volumes e.g. on startup */
if (phosh_shell_get_locked (phosh_shell_get_default ()))
return;
nm = phosh_notify_manager_get_default ();
id = phosh_notify_manager_get_notification_id (nm);
notification = phosh_mount_notification_new_from_mount (id, mount);
g_object_set_data (G_OBJECT (mount), "phosh-notify-id", GINT_TO_POINTER (id));
phosh_notify_manager_add_notification (nm, PHOSH_APP_ID ".desktop", -1,
PHOSH_NOTIFICATION (notification));
}
static void
on_mount_removed (PhoshMountManager *self, GMount *mount, GVolumeMonitor *monitor)
{
g_autofree char *name = NULL;
PhoshNotifyManager *nm;
gpointer data;
int id;
g_return_if_fail (PHOSH_IS_MOUNT_MANAGER (self));
g_return_if_fail (G_IS_MOUNT (mount));
if (!phosh_shell_is_session_active (phosh_shell_get_default ()))
return;
data = g_object_get_data (G_OBJECT (mount), "phosh-notify-id");
if (!data)
return;
id = GPOINTER_TO_INT (data);
name = g_mount_get_name (mount);
g_debug ("Mount '%s' removed, id %d", name, id);
nm = phosh_notify_manager_get_default ();
phosh_notify_manager_close_notification_by_id (nm, id, PHOSH_NOTIFICATION_REASON_UNDEFINED);
}
static void
on_session_active_changed (PhoshMountManager *self, GParamSpec *pspec, PhoshSessionManager *sm)
{
/* on_volume_added takes a ref on vol itself so we can cleanup here */
g_autolist (GVolume) volumes = NULL;
gboolean active;
g_return_if_fail (PHOSH_IS_MOUNT_MANAGER (self));
g_return_if_fail (PHOSH_IS_SESSION_MANAGER (sm));
active = phosh_shell_is_session_active (phosh_shell_get_default ());
g_debug ("Session active: %d", active);
if (!active)
return;
/* oneshot */
g_signal_handlers_disconnect_by_func (sm, on_session_active_changed, self);
g_object_connect (self->monitor,
"swapped-signal::drive-connected", on_drive_connected, self,
"swapped-signal::drive-disconnected", on_drive_disconnected, self,
"swapped-signal::volume-added", on_volume_added, self,
"swapped-signal::volume-removed", on_volume_removed, self,
"swapped-signal::mount-added", on_mount_added, self,
"swapped-signal::mount-removed", on_mount_removed, self,
NULL);
volumes = g_volume_monitor_get_volumes (self->monitor);
for (GList *elem = volumes; elem != NULL; elem = elem->next) {
GVolume *vol = G_VOLUME (elem->data);
/* Ignore screen lock on initial startup */
g_object_set_data (G_OBJECT (vol), "phosh-mount-all", GINT_TO_POINTER (TRUE));
on_volume_added (self, vol, self->monitor);
}
return;
}
static void
phosh_mount_manager_constructed (GObject *object)
{
PhoshMountManager *self = PHOSH_MOUNT_MANAGER (object);
PhoshSessionManager *sm;
self->cancellables = g_ptr_array_new_with_free_func (g_object_unref);
self->monitor = g_volume_monitor_get ();
self->settings = g_settings_new ("org.gnome.desktop.media-handling");
sm = phosh_shell_get_session_manager (phosh_shell_get_default ());
/* Wait for session to become active initially to mount everything so we don't
race against #PhoshSessionManager binding to the bus */
g_signal_connect_object (sm,
"notify::active",
G_CALLBACK (on_session_active_changed),
self,
G_CONNECT_SWAPPED);
on_session_active_changed (self, NULL, sm);
G_OBJECT_CLASS (phosh_mount_manager_parent_class)->constructed (object);
}
static void
phosh_mount_manager_dispose (GObject *object)
{
PhoshMountManager *self = PHOSH_MOUNT_MANAGER (object);
g_clear_object (&self->settings);
g_clear_object (&self->monitor);
/* Cancel all ongoing mount operations */
for (int i = 0; i < self->cancellables->len; i++) {
GCancellable *cancellable = g_ptr_array_index (self->cancellables, i);
g_cancellable_cancel (cancellable);
}
g_clear_pointer (&self->cancellables, g_ptr_array_unref);
G_OBJECT_CLASS (phosh_mount_manager_parent_class)->dispose (object);
}
static void
phosh_mount_manager_class_init (PhoshMountManagerClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->constructed = phosh_mount_manager_constructed;
object_class->dispose = phosh_mount_manager_dispose;
}
static void
phosh_mount_manager_init (PhoshMountManager *self)
{
}
PhoshMountManager *
phosh_mount_manager_new (void)
{
return g_object_new (PHOSH_TYPE_MOUNT_MANAGER, NULL);
}
|