fixed dnd
[geeqie.git] / src / uri_utils.c
index 7c1e107..5b81223 100644 (file)
 #include "filedata.h"
 #include "ui_fileops.h"
 
-/*
- *-----------------------------------------------------------------------------
- * drag and drop uri utils
- *-----------------------------------------------------------------------------
- */
-
-/* the following characters are allowed to be unencoded for pathnames:
- *     $ & + , / : = @
- */
-static gint escape_char_list[] = {
-       1, 1, 1, 1, 1, 1, 1, 1, 1, 1,   /*   0 */
-       1, 1, 1, 1, 1, 1, 1, 1, 1, 1,   /*  10 */
-       1, 1, 1, 1, 1, 1, 1, 1, 1, 1,   /*  20 */
-/*          spc !  "  #  $  %  &  '           */
-       1, 1, 0, 0, 1, 1, 0, 1, 0, 0,   /*  30 */
-/*     (  )  *  +  ,  -  .  /  0  1           */
-       0, 0, 0, 0, 0, 0, 0, 0, 0, 0,   /*  40 */
-/*     2  3  4  5  6  7  8  9  :  ;           */
-       0, 0, 0, 0, 0, 0, 0, 0, 0, 1,   /*  50 */
-/*     <  =  >  ?  @  A  B  C  D  E           */
-       1, 0, 1, 1, 0, 0, 0, 0, 0, 0,   /*  60 */
-       0, 0, 0, 0, 0, 0, 0, 0, 0, 0,   /*  70 */
-       0, 0, 0, 0, 0, 0, 0, 0, 0, 0,   /*  80 */
-/*     Z  [  \  ]  ^  _  `  a  b  c           */
-       0, 1, 1, 1, 1, 0, 1, 0, 0, 0,   /*  90 */
-       0, 0, 0, 0, 0, 0, 0, 0, 0, 0,   /* 100 */
-       0, 0, 0, 0, 0, 0, 0, 0, 0, 0,   /* 110 */
-/*     x  y  z  {  |  }  ~ del                */
-       0, 0, 0, 1, 1, 1, 0, 0          /* 120, 127 is end */
-};
-
-static gchar *hex_char = "0123456789ABCDEF";
-
-static gboolean escape_test(guchar c)
-{
-       if (c < 32 || c > 127) return TRUE;
-       return (escape_char_list[c] != 0);
-}
-
-static const gchar *escape_code(guchar c)
+gchar **uris_from_pathlist(GList *list)
 {
-       static gchar text[4];
-
-       text[0] = '%';
-       text[1] = hex_char[c>>4];
-       text[2] = hex_char[c%16];
-       text[3] = '\0';
-
-       return text;
-}
-
-gchar *uri_text_escape(const gchar *text)
-{
-       GString *string;
-       gchar *result;
-       const gchar *p;
-
-       if (!text) return NULL;
-
-       string = g_string_new("");
-
-       p = text;
-       while (*p != '\0')
-               {
-               if (escape_test(*p))
-                       {
-                       g_string_append(string, escape_code(*p));
-                       }
-               else
-                       {
-                       g_string_append_c(string, *p);
-                       }
-               p++;
-               }
-
-       result = string->str;
-       g_string_free(string, FALSE);
+       GList *work;
+       guint i = 0;
+       guint num = g_list_length(list);
+       gchar **uris = g_new0(gchar *, num + 1);
 
-       /* dropped filenames are expected to be utf-8 compatible */
-       if (!g_utf8_validate(result, -1, NULL))
+       work = list;
+       while (work)
                {
-               gchar *tmp;
-
-               tmp = g_locale_to_utf8(result, -1, NULL, NULL, NULL);
-               if (tmp)
-                       {
-                       g_free(result);
-                       result = tmp;
-                       }
+               const gchar *path = work->data;
+               gchar *local_path = path_from_utf8(path);
+               uris[i] = g_filename_to_uri(local_path, NULL, NULL);
+               g_free(local_path);
+               
+               i++;
+               work = work->next;
                }
 
-       return result;
+       uris[i] = NULL;
+       return uris;
 }
 
-/* this operates on the passed string, decoding escaped characters */
-void uri_text_decode(gchar *text)
+gchar **uris_from_filelist(GList *list)
 {
-       if (strchr(text, '%'))
-               {
-               gchar *w;
-               gchar *r;
-
-               w = r = text;
-
-               while (*r != '\0')
-                       {
-                       if (*r == '%' && *(r + 1) != '\0' && *(r + 2) != '\0')
-                               {
-                               gchar t[3];
-                               gint n;
-
-                               r++;
-                               t[0] = *r;
-                               r++;
-                               t[1] = *r;
-                               t[2] = '\0';
-                               n = (gint)strtol(t, NULL, 16);
-                               if (n > 0 && n < 256)
-                                       {
-                                       *w = (gchar)n;
-                                       }
-                               else
-                                       {
-                                       /* invalid number, rewind and ignore this escape */
-                                       r -= 2;
-                                       *w = *r;
-                                       }
-                               }
-                       else if (w != r)
-                               {
-                               *w = *r;
-                               }
-                       r++;
-                       w++;
-                       }
-               if (*w != '\0') *w = '\0';
-               }
+       GList *path_list = filelist_to_path_list(list);
+       gchar **ret = uris_from_pathlist(path_list);
+       string_list_free(path_list);
+       return ret;
 }
 
-static void uri_list_parse_encoded_chars(GList *list)
+gboolean uri_selection_data_set_uris_from_filelist(GtkSelectionData *selection_data, GList *list)
 {
-       GList *work = list;
-
-       while (work)
+       gchar **uris = uris_from_filelist(list);
+       gboolean ret = gtk_selection_data_set_uris(selection_data, uris);
+       if (!ret) 
                {
-               gchar *text = work->data;
-
-               uri_text_decode(text);
-
-               work = work->next;
+               char *str = g_strjoinv("\r\n", uris);
+               ret = gtk_selection_data_set_text(selection_data, str, -1);
+               g_free(str);
                }
+
+       g_strfreev(uris);
+       return ret;
 }
 
-GList *uri_list_from_text(gchar *data, gboolean files_only)
+GList *uri_pathlist_from_uris(gchar **uris)
 {
        GList *list = NULL;
-       gint b, e;
-
-       b = e = 0;
+       guint i = 0;
 
-       while (data[b] != '\0')
+       while (uris[i])
                {
-               while (data[e] != '\r' && data[e] != '\n' && data[e] != '\0') e++;
-               if (strncmp(data + b, "file:", 5) == 0)
-                       {
-                       gchar *path;
-                       b += 5;
-                       while (data[b] == '/' && data[b+1] == '/') b++;
-                       path = g_strndup(data + b, e - b);
-                       list = g_list_append(list, path_to_utf8(path));
-                       g_free(path);
-                       }
-               else if (!files_only && strncmp(data + b, "http:", 5) == 0)
-                       {
-                       list = g_list_append(list, g_strndup(data + b, e - b));
-                       }
-               else if (!files_only && strncmp(data + b, "ftp:", 3) == 0)
-                       {
-                       list = g_list_append(list, g_strndup(data + b, e - b));
-                       }
-               while (data[e] == '\r' || data[e] == '\n') e++;
-               b = e;
+               gchar *local_path = g_filename_from_uri(uris[i], NULL, NULL);
+               gchar *path = path_to_utf8(local_path);
+               g_free(local_path);
+               list = g_list_prepend(list, path);
+               i++;
                }
 
-       uri_list_parse_encoded_chars(list);
-
-       return list;
+       return g_list_reverse(list);
 }
 
-GList *uri_filelist_from_text(gchar *data, gboolean files_only)
+
+
+GList *uri_filelist_from_uris(gchar **uris)
 {
-       GList *path_list = uri_list_from_text(data, files_only);
+       GList *path_list = uri_pathlist_from_uris(uris);
        GList *filelist = filelist_from_path_list(path_list);
        string_list_free(path_list);
        return filelist;
 }
 
-gchar *uri_text_from_list(GList *list, gint *len, gboolean plain_text)
+GList *uri_filelist_from_gtk_selection_data(GtkSelectionData *selection_data)
 {
-       gchar *uri_text = NULL;
-       GString *string;
-       GList *work;
-
-       if (!list)
-               {
-               if (len) *len = 0;
-               return NULL;
-               }
-
-       string = g_string_new("");
-
-       work = list;
-       while (work)
-               {
-               const gchar *name8;     /* dnd filenames are in utf-8 */
-
-               name8 = work->data;
-
-               if (!plain_text)
-                       {
-                       gchar *escaped;
-
-                       escaped = uri_text_escape(name8);
-                       g_string_append(string, "file:");
-                       g_string_append(string, escaped);
-                       g_free(escaped);
-
-                       g_string_append(string, "\r\n");
-                       }
-               else
-                       {
-                       g_string_append(string, name8);
-                       if (work->next) g_string_append(string, "\n");
-                       }
-
-               work = work->next;
-               }
+       gchar **uris = gtk_selection_data_get_uris(selection_data);
+       GList *ret = uri_filelist_from_uris(uris);
+       g_strfreev(uris);
+       return ret;
+}
 
-       uri_text = string->str;
-       if (len) *len = string->len;
-       g_string_free(string, FALSE);
 
-       return uri_text;
-}
 
-gchar *uri_text_from_filelist(GList *list, gint *len, gboolean plain_text)
-{
-       GList *path_list = filelist_to_path_list(list);
-       gchar *ret = uri_text_from_list(path_list, len, plain_text);
-       string_list_free(path_list);
-       return ret;
-}
 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */