From 1690e1b22e5617dc1ab4d00822547a5d798ad399 Mon Sep 17 00:00:00 2001 From: infirit Date: Mon, 29 Dec 2014 11:46:50 +0100 Subject: Revert "dbus-manager: implement the CopyURIs method" This reverts commit be39d4a5f6b03a142e21d3d0448ef0e779e7e173. --- libcaja-private/caja-dbus-manager.c | 81 ++++++++----------------------------- libcaja-private/caja-dbus-manager.h | 22 ---------- 2 files changed, 17 insertions(+), 86 deletions(-) (limited to 'libcaja-private') diff --git a/libcaja-private/caja-dbus-manager.c b/libcaja-private/caja-dbus-manager.c index 4f0b1b73..1c683dff 100644 --- a/libcaja-private/caja-dbus-manager.c +++ b/libcaja-private/caja-dbus-manager.c @@ -1,37 +1,12 @@ -/* - * 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 - * - */ - #include #include "caja-dbus-manager.h" -#include "caja-file-operations.h" - #include static const gchar introspection_xml[] = "" - " " + " " " " " " " " @@ -90,34 +65,6 @@ caja_dbus_manager_class_init (CajaDBusManagerClass *klass) oclass->dispose = caja_dbus_manager_dispose; } -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, @@ -135,9 +82,7 @@ handle_method_call (GDBusConnection *connection, { g_variant_get (parameters, "(^a&s&s)", &uris, &destination_uri); - trigger_copy_file_operation (uris, destination_uri); - - g_debug ("Called CopyURIs with dest %s and uri %s\n", destination_uri, uris[0]); + g_print ("Called CopyURIs with dest %s and uri %s\n", destination_uri, uris[0]); } g_dbus_method_invocation_return_value (invocation, NULL); @@ -151,9 +96,9 @@ static const GDBusInterfaceVTable interface_vtable = }; static void -bus_acquired_handler_cb (GDBusConnection *conn, - const gchar *name, - gpointer user_data) +name_acquired_cb (GDBusConnection *conn, + const gchar *name, + gpointer user_data) { CajaDBusManager *self = user_data; GDBusNodeInfo *introspection_data; @@ -174,7 +119,7 @@ bus_acquired_handler_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, @@ -191,15 +136,23 @@ bus_acquired_handler_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 878c57c6..0dc79735 100644 --- a/libcaja-private/caja-dbus-manager.h +++ b/libcaja-private/caja-dbus-manager.h @@ -1,25 +1,3 @@ -/* - * 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 - * - */ #ifndef __CAJA_DBUS_MANAGER_H__ #define __CAJA_DBUS_MANAGER_H__ -- cgit v1.2.1