* Port sendto to GIO
@ 2008-09-24 21:49 Bastien Nocera
2008-09-27 4:25 ` Marcel Holtmann
0 siblings, 1 reply; 2+ messages in thread
From: Bastien Nocera @ 2008-09-24 21:49 UTC (permalink / raw)
To: linux-bluetooth
[-- Attachment #1: Type: text/plain, Size: 12 bytes --]
Done! Enjoy
[-- Attachment #2: 0001-Move-filename-conversion-to-a-separate-function.patch --]
[-- Type: text/x-patch, Size: 2745 bytes --]
>From c581c3a1dbe21004b508463786c0059e231f0017 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Wed, 24 Sep 2008 14:42:50 -0700
Subject: [PATCH] Move filename conversion to a separate function
Just half the work to start using GIO
---
configure.ac | 5 +++++
sendto/Makefile.am | 4 ++--
sendto/main.c | 26 +++++++++++++++++---------
3 files changed, 24 insertions(+), 11 deletions(-)
diff --git a/configure.ac b/configure.ac
index 9219262..680c682 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,6 +73,11 @@ PKG_CHECK_MODULES(NOTIFY, libnotify >= 0.4.3, dummy=yes,
AC_SUBST(NOTIFY_CFLAGS)
AC_SUBST(NOTIFY_LIBS)
+PKG_CHECK_MODULES(GIO, gio-2.0, dummy=yes,
+ AC_MSG_ERROR(gio, part of glib, is required))
+AC_SUBST(GIO_CFLAGS)
+AC_SUBST(GIO_LIBS)
+
dnl PKG_CHECK_MODULES(OPENOBEX, libopenobex-glib >= 1.4, dummy=yes, dummy=no)
dnl AC_SUBST(OPENOBEX_CFLAGS)
dnl AC_SUBST(OPENOBEX_LIBS)
diff --git a/sendto/Makefile.am b/sendto/Makefile.am
index 9d3addf..7bcc21c 100644
--- a/sendto/Makefile.am
+++ b/sendto/Makefile.am
@@ -4,9 +4,9 @@ bin_PROGRAMS = bluetooth-sendto
bluetooth_sendto_SOURCES = main.c
bluetooth_sendto_LDADD = $(top_builddir)/common/libcommon.a \
- @GTK_LIBS@ @DBUS_LIBS@
+ @GTK_LIBS@ @DBUS_LIBS@ @GIO_LIBS@
-AM_CFLAGS = @DBUS_CFLAGS@ @GTK_CFLAGS@
+AM_CFLAGS = @DBUS_CFLAGS@ @GTK_CFLAGS@ @GIO_CFLAGS@
INCLUDES = -I$(top_srcdir)/common -I$(top_builddir)/common
diff --git a/sendto/main.c b/sendto/main.c
index 0972ac8..8e8d3fc 100644
--- a/sendto/main.c
+++ b/sendto/main.c
@@ -109,6 +109,21 @@ static gchar *format_time(int seconds)
hours), hours);
}
+static gchar *filename_to_path(const gchar *filename)
+{
+ if (g_str_has_prefix(filename, "file://") == TRUE) {
+ return g_filename_from_uri(filename, NULL, NULL);
+ } else if (filename[0] != '/') {
+ gchar *dir = g_get_current_dir();
+ gchar *output;
+ output = g_build_filename(dir, filename, NULL);
+ g_free(dir);
+ return output;
+ }
+
+ return NULL;
+}
+
static void response_callback(GtkWidget *dialog,
gint response, gpointer user_data)
{
@@ -581,17 +596,10 @@ int main(int argc, char *argv[])
file_count = g_strv_length(option_files);
for (i = 0; i < file_count; i++) {
- gchar *filename = NULL;
+ gchar *filename;
struct stat st;
- if (g_str_has_prefix(option_files[i], "file://") == TRUE) {
- filename = g_filename_from_uri(option_files[i],
- NULL, NULL);
- } else if (option_files[i][0] != '/') {
- gchar *dir = g_get_current_dir();
- filename = g_build_filename(dir, option_files[i], NULL);
- g_free(dir);
- }
+ filename = filename_to_path (option_files[i]);
if (filename != NULL) {
g_free(option_files[i]);
--
1.6.0.1
[-- Attachment #3: 0002-Use-GIO-to-normalise-paths.patch --]
[-- Type: text/x-patch, Size: 1355 bytes --]
>From 744caed0d2bbef0d21e2fbe8bdec2ec80dbbc2f6 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Wed, 24 Sep 2008 14:48:15 -0700
Subject: [PATCH] Use GIO to normalise paths
This means that we remove crummy ways of transforming the URI,
filename, or whatever into a local path, and also get support
for remote files automatically
---
sendto/main.c | 18 ++++++++----------
1 files changed, 8 insertions(+), 10 deletions(-)
diff --git a/sendto/main.c b/sendto/main.c
index 8e8d3fc..d8f7e7c 100644
--- a/sendto/main.c
+++ b/sendto/main.c
@@ -29,6 +29,7 @@
#include <glib/gi18n.h>
#include <glib/gstdio.h>
+#include <gio/gio.h>
#include <gtk/gtk.h>
#include <dbus/dbus-glib.h>
@@ -111,17 +112,14 @@ static gchar *format_time(int seconds)
static gchar *filename_to_path(const gchar *filename)
{
- if (g_str_has_prefix(filename, "file://") == TRUE) {
- return g_filename_from_uri(filename, NULL, NULL);
- } else if (filename[0] != '/') {
- gchar *dir = g_get_current_dir();
- gchar *output;
- output = g_build_filename(dir, filename, NULL);
- g_free(dir);
- return output;
- }
+ GFile *file;
+ gchar *ret;
- return NULL;
+ file = g_file_new_for_commandline_arg (filename);
+ ret = g_file_get_path (file);
+ g_object_unref (file);
+
+ return ret;
}
static void response_callback(GtkWidget *dialog,
--
1.6.0.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: Port sendto to GIO
2008-09-24 21:49 Port sendto to GIO Bastien Nocera
@ 2008-09-27 4:25 ` Marcel Holtmann
0 siblings, 0 replies; 2+ messages in thread
From: Marcel Holtmann @ 2008-09-27 4:25 UTC (permalink / raw)
To: Bastien Nocera; +Cc: linux-bluetooth
Hi Bastien,
> Done! Enjoy
both patches have been applied with a few fixups. Thanks.
Regards
Marcel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-09-27 4:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-24 21:49 Port sendto to GIO Bastien Nocera
2008-09-27 4:25 ` Marcel Holtmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox