summaryrefslogtreecommitdiff
path: root/src/nautilus-dbus-manager.c
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2014-04-28 22:59:13 -0700
committerCosimo Cecchi <cosimoc@gnome.org>2014-04-30 11:08:25 +0200
commit94445571c7324a7fdc76a5899e37f11ca83766c5 (patch)
tree362bd24b1304602f84a6bd887764677005637822 /src/nautilus-dbus-manager.c
parent89d04f6b542781b776dd7cf91fcfc996318fd261 (diff)
downloadnautilus-94445571c7324a7fdc76a5899e37f11ca83766c5.tar.gz
dbus: move NautilusDBusManager to src/
Don't know why it wasn't there already...
Diffstat (limited to 'src/nautilus-dbus-manager.c')
-rw-r--r--src/nautilus-dbus-manager.c174
1 files changed, 174 insertions, 0 deletions
diff --git a/src/nautilus-dbus-manager.c b/src/nautilus-dbus-manager.c
new file mode 100644
index 000000000..847afb577
--- /dev/null
+++ b/src/nautilus-dbus-manager.c
@@ -0,0 +1,174 @@
+/*
+ * nautilus-dbus-manager: nautilus DBus interface
+ *
+ * Copyright (C) 2010, Red Hat, Inc.
+ *
+ * Nautilus is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * Nautilus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Cosimo Cecchi <cosimoc@redhat.com>
+ *
+ */
+
+#include <config.h>
+
+#include "nautilus-dbus-manager.h"
+#include "nautilus-generated.h"
+
+#include "nautilus-file-operations.h"
+
+#define DEBUG_FLAG NAUTILUS_DEBUG_DBUS
+#include "nautilus-debug.h"
+
+#include <gio/gio.h>
+
+struct _NautilusDBusManager {
+ GObject parent;
+
+ NautilusDBusFileOperations *file_operations;
+};
+
+struct _NautilusDBusManagerClass {
+ GObjectClass parent_class;
+};
+
+G_DEFINE_TYPE (NautilusDBusManager, nautilus_dbus_manager, G_TYPE_OBJECT);
+
+static void
+nautilus_dbus_manager_dispose (GObject *object)
+{
+ NautilusDBusManager *self = (NautilusDBusManager *) object;
+
+ if (self->file_operations) {
+ g_object_unref (self->file_operations);
+ self->file_operations = NULL;
+ }
+
+ G_OBJECT_CLASS (nautilus_dbus_manager_parent_class)->dispose (object);
+}
+
+static gboolean
+handle_copy_file (NautilusDBusFileOperations *object,
+ GDBusMethodInvocation *invocation,
+ const gchar *source_uri,
+ const gchar *source_display_name,
+ const gchar *dest_dir_uri,
+ const gchar *dest_name)
+{
+ GFile *source_file, *target_dir;
+ const gchar *target_name = NULL, *source_name = NULL;
+
+ source_file = g_file_new_for_uri (source_uri);
+ target_dir = g_file_new_for_uri (dest_dir_uri);
+
+ if (dest_name != NULL && dest_name[0] != '\0')
+ target_name = dest_name;
+
+ if (source_display_name != NULL && source_display_name[0] != '\0')
+ source_name = source_display_name;
+
+ nautilus_file_operations_copy_file (source_file, target_dir, source_name, target_name,
+ NULL, NULL, NULL);
+
+ g_object_unref (source_file);
+ g_object_unref (target_dir);
+
+ nautilus_dbus_file_operations_complete_copy_file (object, invocation);
+ return TRUE; /* invocation was handled */
+}
+
+static gboolean
+handle_copy_uris (NautilusDBusFileOperations *object,
+ GDBusMethodInvocation *invocation,
+ const gchar **sources,
+ const gchar *destination)
+{
+ GList *source_files = NULL;
+ GFile *dest_dir;
+ gint idx;
+
+ dest_dir = g_file_new_for_uri (destination);
+
+ for (idx = 0; sources[idx] != NULL; idx++)
+ source_files = g_list_prepend (source_files,
+ g_file_new_for_uri (sources[idx]));
+
+ nautilus_file_operations_copy (source_files, NULL,
+ dest_dir,
+ NULL, NULL, NULL);
+
+ g_list_free_full (source_files, g_object_unref);
+ g_object_unref (dest_dir);
+
+ nautilus_dbus_file_operations_complete_copy_uris (object, invocation);
+ return TRUE; /* invocation was handled */
+}
+
+static gboolean
+handle_empty_trash (NautilusDBusFileOperations *object,
+ GDBusMethodInvocation *invocation)
+{
+ nautilus_file_operations_empty_trash (NULL);
+
+ nautilus_dbus_file_operations_complete_empty_trash (object, invocation);
+ return TRUE; /* invocation was handled */
+}
+
+static void
+nautilus_dbus_manager_init (NautilusDBusManager *self)
+{
+ self->file_operations = nautilus_dbus_file_operations_skeleton_new ();
+
+ g_signal_connect (self->file_operations,
+ "handle-copy-uris",
+ G_CALLBACK (handle_copy_uris),
+ self);
+ g_signal_connect (self->file_operations,
+ "handle-copy-file",
+ G_CALLBACK (handle_copy_file),
+ self);
+ g_signal_connect (self->file_operations,
+ "handle-empty-trash",
+ G_CALLBACK (handle_empty_trash),
+ self);
+}
+
+static void
+nautilus_dbus_manager_class_init (NautilusDBusManagerClass *klass)
+{
+ GObjectClass *oclass = G_OBJECT_CLASS (klass);
+
+ oclass->dispose = nautilus_dbus_manager_dispose;
+}
+
+NautilusDBusManager *
+nautilus_dbus_manager_new (void)
+{
+ return g_object_new (nautilus_dbus_manager_get_type (),
+ NULL);
+}
+
+gboolean
+nautilus_dbus_manager_register (NautilusDBusManager *self,
+ GDBusConnection *connection,
+ GError **error)
+{
+ return g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (self->file_operations),
+ connection, "/org/gnome/Nautilus", error);
+}
+
+void
+nautilus_dbus_manager_unregister (NautilusDBusManager *self)
+{
+ g_dbus_interface_skeleton_unexport (G_DBUS_INTERFACE_SKELETON (self->file_operations));
+}