summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-29 11:46:50 +0100
committerinfirit <[email protected]>2014-12-29 11:46:50 +0100
commit1690e1b22e5617dc1ab4d00822547a5d798ad399 (patch)
treed282da78f518d5b69d15aa8b289233051b41ffb0
parent3f31cb74f7acac3ff5ea70be4b1e8319a8b47920 (diff)
downloadcaja-1690e1b22e5617dc1ab4d00822547a5d798ad399.tar.bz2
caja-1690e1b22e5617dc1ab4d00822547a5d798ad399.tar.xz
Revert "dbus-manager: implement the CopyURIs method"
This reverts commit be39d4a5f6b03a142e21d3d0448ef0e779e7e173.
-rw-r--r--libcaja-private/caja-dbus-manager.c81
-rw-r--r--libcaja-private/caja-dbus-manager.h22
2 files changed, 17 insertions, 86 deletions
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 <[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'/>"
@@ -91,34 +66,6 @@ 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,
@@ -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,
@@ -192,14 +137,22 @@ 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 <[email protected]>
- *
- */
#ifndef __CAJA_DBUS_MANAGER_H__
#define __CAJA_DBUS_MANAGER_H__