summaryrefslogtreecommitdiff
path: root/libcaja-private
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-16 14:20:13 +0100
committerinfirit <[email protected]>2014-12-16 14:20:13 +0100
commitbe39d4a5f6b03a142e21d3d0448ef0e779e7e173 (patch)
tree75ac1079993ff7cd5b4b1df8f0bfb9417c8ca0f6 /libcaja-private
parent08bc0644ebc869ff1db320cc2bdfc4a471a6f9ac (diff)
downloadcaja-be39d4a5f6b03a142e21d3d0448ef0e779e7e173.tar.bz2
caja-be39d4a5f6b03a142e21d3d0448ef0e779e7e173.tar.xz
dbus-manager: implement the CopyURIs method
Diffstat (limited to 'libcaja-private')
-rw-r--r--libcaja-private/caja-dbus-manager.c81
-rw-r--r--libcaja-private/caja-dbus-manager.h22
2 files changed, 86 insertions, 17 deletions
diff --git a/libcaja-private/caja-dbus-manager.c b/libcaja-private/caja-dbus-manager.c
index 1c683dff..4f0b1b73 100644
--- a/libcaja-private/caja-dbus-manager.c
+++ b/libcaja-private/caja-dbus-manager.c
@@ -1,12 +1,37 @@
+/*
+ * caja-dbus-manager: caja DBus interface
+ *
+ * Copyright (C) 2010, Red Hat, Inc.
+ *
+ * Caja 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.
+ *
+ * Caja 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, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * Author: Cosimo Cecchi <[email protected]>
+ *
+ */
+
#include <config.h>
#include "caja-dbus-manager.h"
+#include "caja-file-operations.h"
+
#include <gio/gio.h>
static const gchar introspection_xml[] =
"<node>"
- " <interface name='org.mate.caja.FileOperations'>"
+ " <interface name='org.mate.Caja.FileOperations'>"
" <method name='CopyURIs'>"
" <arg type='as' name='URIList' direction='in'/>"
" <arg type='s' name='Destination' direction='in'/>"
@@ -66,6 +91,34 @@ caja_dbus_manager_class_init (CajaDBusManagerClass *klass)
}
static void
+trigger_copy_file_operation (const gchar **sources,
+ const gchar *destination)
+{
+ GList *source_files = NULL;
+ GFile *dest_dir;
+ gint idx;
+
+ if (sources == NULL || sources[0] == NULL || destination == NULL)
+ {
+ g_debug ("Called 'CopyURIs' with NULL arguments, discarding");
+ return;
+ }
+
+ 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]));
+
+ caja_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);
+}
+
+static void
handle_method_call (GDBusConnection *connection,
const gchar *sender,
const gchar *object_path,
@@ -82,7 +135,9 @@ handle_method_call (GDBusConnection *connection,
{
g_variant_get (parameters, "(^a&s&s)", &uris, &destination_uri);
- g_print ("Called CopyURIs with dest %s and uri %s\n", destination_uri, uris[0]);
+ trigger_copy_file_operation (uris, destination_uri);
+
+ g_debug ("Called CopyURIs with dest %s and uri %s\n", destination_uri, uris[0]);
}
g_dbus_method_invocation_return_value (invocation, NULL);
@@ -96,9 +151,9 @@ static const GDBusInterfaceVTable interface_vtable =
};
static void
-name_acquired_cb (GDBusConnection *conn,
- const gchar *name,
- gpointer user_data)
+bus_acquired_handler_cb (GDBusConnection *conn,
+ const gchar *name,
+ gpointer user_data)
{
CajaDBusManager *self = user_data;
GDBusNodeInfo *introspection_data;
@@ -119,7 +174,7 @@ name_acquired_cb (GDBusConnection *conn,
}
self->registration_id = g_dbus_connection_register_object (conn,
- "/org/mate/caja",
+ "/org/mate/Caja",
introspection_data->interfaces[0],
&interface_vtable,
self,
@@ -137,22 +192,14 @@ name_acquired_cb (GDBusConnection *conn,
}
static void
-name_lost_cb (GDBusConnection *conn,
- const gchar *name,
- gpointer user_data)
-{
-
-}
-
-static void
caja_dbus_manager_init (CajaDBusManager *self)
{
self->owner_id = g_bus_own_name (G_BUS_TYPE_SESSION,
- "org.mate.caja",
+ "org.mate.Caja",
G_BUS_NAME_OWNER_FLAGS_NONE,
+ bus_acquired_handler_cb,
+ NULL,
NULL,
- name_acquired_cb,
- name_lost_cb,
self,
NULL);
}
diff --git a/libcaja-private/caja-dbus-manager.h b/libcaja-private/caja-dbus-manager.h
index 0dc79735..878c57c6 100644
--- a/libcaja-private/caja-dbus-manager.h
+++ b/libcaja-private/caja-dbus-manager.h
@@ -1,3 +1,25 @@
+/*
+ * caja-dbus-manager: caja DBus interface
+ *
+ * Copyright (C) 2010, Red Hat, Inc.
+ *
+ * Caja 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.
+ *
+ * Caja 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, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * Author: Cosimo Cecchi <[email protected]>
+ *
+ */
#ifndef __CAJA_DBUS_MANAGER_H__
#define __CAJA_DBUS_MANAGER_H__