Mercurial > geeqie
annotate src/ui_fileops.c @ 1284:8b89e3ff286b
Add year 2009 to copyright info everywhere.
| author | zas_ |
|---|---|
| date | Wed, 04 Feb 2009 17:15:30 +0000 |
| parents | a5c78d3cfea0 |
| children | e8f21b91885d |
| rev | line source |
|---|---|
| 9 | 1 /* |
| 2 * (SLIK) SimpLIstic sKin functions | |
|
69
31759d770628
Fri Oct 13 10:27:22 2006 John Ellis <johne@verizon.net>
gqview
parents:
40
diff
changeset
|
3 * (C) 2006 John Ellis |
| 1284 | 4 * Copyright (C) 2008 - 2009 The Geeqie Team |
| 9 | 5 * |
| 6 * Author: John Ellis | |
| 7 * | |
| 8 * This software is released under the GNU General Public License (GNU GPL). | |
| 9 * Please read the included file COPYING for more information. | |
| 10 * This software comes with no warranty of any kind, use at your own risk! | |
| 11 */ | |
| 12 | |
| 13 #ifdef HAVE_CONFIG_H | |
| 14 # include "config.h" | |
| 15 #endif | |
| 16 | |
| 17 #include <pwd.h> | |
| 18 #include <stdio.h> | |
| 19 #include <stdlib.h> | |
| 20 #include <string.h> | |
| 21 #include <unistd.h> | |
| 22 #include <sys/param.h> | |
| 23 #include <dirent.h> | |
| 24 #include <utime.h> | |
| 25 | |
| 26 #include <glib.h> | |
| 27 #include <gtk/gtk.h> /* for locale warning dialog */ | |
| 28 | |
| 281 | 29 #include "main.h" |
| 9 | 30 #include "ui_fileops.h" |
| 31 | |
| 32 #include "ui_utildlg.h" /* for locale warning dialog */ | |
| 33 | |
| 34 /* | |
| 35 *----------------------------------------------------------------------------- | |
| 36 * generic file information and manipulation routines (public) | |
| 37 *----------------------------------------------------------------------------- | |
| 442 | 38 */ |
| 9 | 39 |
| 40 | |
| 41 | |
| 42 void print_term(const gchar *text_utf8) | |
| 43 { | |
| 44 gchar *text_l; | |
| 45 | |
| 46 text_l = g_locale_from_utf8(text_utf8, -1, NULL, NULL, NULL); | |
| 759 | 47 fputs((text_l) ? text_l : text_utf8, stdout); |
| 9 | 48 g_free(text_l); |
| 49 } | |
| 50 | |
| 51 static void encoding_dialog(const gchar *path); | |
| 52 | |
| 53 static gint encoding_dialog_idle(gpointer data) | |
| 54 { | |
| 55 gchar *path = data; | |
| 56 | |
| 57 encoding_dialog(path); | |
| 58 g_free(path); | |
| 59 | |
| 60 return FALSE; | |
| 61 } | |
| 62 | |
| 63 static gint encoding_dialog_delay(gpointer data) | |
| 64 { | |
| 65 g_idle_add(encoding_dialog_idle, data); | |
| 66 | |
| 67 return 0; | |
| 68 } | |
| 69 | |
| 70 static void encoding_dialog(const gchar *path) | |
| 71 { | |
| 72 static gint warned_user = FALSE; | |
| 73 GenericDialog *gd; | |
| 74 GString *string; | |
| 75 const gchar *lc; | |
| 76 const gchar *bf; | |
| 77 | |
| 78 /* check that gtk is initialized (loop is level > 0) */ | |
| 79 if (gtk_main_level() == 0) | |
| 80 { | |
| 81 /* gtk not initialized */ | |
| 82 gtk_init_add(encoding_dialog_delay, g_strdup(path)); | |
| 83 return; | |
| 84 } | |
| 85 | |
| 86 if (warned_user) return; | |
| 87 warned_user = TRUE; | |
| 88 | |
| 89 lc = getenv("LANG"); | |
| 90 bf = getenv("G_BROKEN_FILENAMES"); | |
| 91 | |
| 92 string = g_string_new(""); | |
|
989
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
93 g_string_append(string, _("One or more filenames are not encoded with the preferred locale character set.\n")); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
94 g_string_append_printf(string, _("Operations on, and display of these files with %s may not succeed.\n"), PACKAGE); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
95 g_string_append(string, "\n"); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
96 g_string_append(string, _("If your filenames are not encoded in utf-8, try setting the environment variable G_BROKEN_FILENAMES=1\n")); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
97 if (bf) |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
98 g_string_append_printf(string, _("It appears G_BROKEN_FILENAMES is set to %s\n"), bf); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
99 else |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
100 g_string_append(string, _("It appears G_BROKEN_FILENAMES is not set\n")); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
101 g_string_append(string, "\n"); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
102 g_string_append_printf(string, _("The locale appears to be set to \"%s\"\n(set by the LANG environment variable)\n"), (lc) ? lc : "undefined"); |
| 9 | 103 if (lc && (strstr(lc, "UTF-8") || strstr(lc, "utf-8"))) |
| 104 { | |
| 105 gchar *name; | |
| 106 name = g_convert(path, -1, "UTF-8", "ISO-8859-1", NULL, NULL, NULL); | |
|
989
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
107 string = g_string_append(string, _("\nPreferred encoding appears to be UTF-8, however the file:\n")); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
108 g_string_append_printf(string, "\"%s\"\n", (name) ? name : _("[name not displayable]")); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
109 |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
110 if (g_utf8_validate(path, -1, NULL)) |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
111 g_string_append_printf(string, _("\"%s\" is encoded in valid UTF-8."), (name) ? name : _("[name not displayable]")); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
112 else |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
113 g_string_append_printf(string, _("\"%s\" is not encoded in valid UTF-8."), (name) ? name : _("[name not displayable]")); |
|
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
114 g_string_append(string, "\n"); |
| 9 | 115 g_free(name); |
| 116 } | |
| 117 | |
|
989
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
118 gd = generic_dialog_new(_("Filename encoding locale mismatch"), |
|
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1164
diff
changeset
|
119 "locale warning", NULL, TRUE, NULL, NULL); |
| 9 | 120 generic_dialog_add_button(gd, GTK_STOCK_CLOSE, NULL, NULL, TRUE); |
| 121 | |
| 122 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_WARNING, | |
|
989
50e1f5e54c1a
Fix untranslated messages. French translation and POTFILES.in were updated.
zas_
parents:
983
diff
changeset
|
123 _("Filename encoding locale mismatch"), string->str); |
| 9 | 124 |
| 125 gtk_widget_show(gd->dialog); | |
| 126 | |
| 127 g_string_free(string, TRUE); | |
| 128 } | |
| 129 | |
| 130 gchar *path_to_utf8(const gchar *path) | |
| 131 { | |
| 132 gchar *utf8; | |
| 133 GError *error = NULL; | |
| 134 | |
| 135 if (!path) return NULL; | |
| 136 | |
| 137 utf8 = g_filename_to_utf8(path, -1, NULL, NULL, &error); | |
| 138 if (error) | |
| 139 { | |
|
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
140 log_printf("Unable to convert filename to UTF-8:\n%s\n%s\n", path, error->message); |
| 9 | 141 g_error_free(error); |
| 142 encoding_dialog(path); | |
| 143 } | |
| 144 if (!utf8) | |
| 145 { | |
| 146 /* just let it through, but bad things may happen */ | |
| 147 utf8 = g_strdup(path); | |
| 148 } | |
| 149 | |
| 150 return utf8; | |
| 151 } | |
| 152 | |
| 153 gchar *path_from_utf8(const gchar *utf8) | |
| 154 { | |
| 155 gchar *path; | |
| 156 GError *error = NULL; | |
| 157 | |
| 158 if (!utf8) return NULL; | |
| 159 | |
| 160 path = g_filename_from_utf8(utf8, -1, NULL, NULL, &error); | |
| 161 if (error) | |
| 162 { | |
|
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
163 log_printf("Unable to convert filename to locale from UTF-8:\n%s\n%s\n", utf8, error->message); |
| 9 | 164 g_error_free(error); |
| 165 } | |
| 166 if (!path) | |
| 167 { | |
| 168 /* if invalid UTF-8, text probaby still in original form, so just copy it */ | |
| 169 path = g_strdup(utf8); | |
| 170 } | |
| 171 | |
| 172 return path; | |
| 173 } | |
| 174 | |
|
998
d2701a5864c5
Fixed segfault when is run inside directory with non valid uft-8 image
bruclik
parents:
990
diff
changeset
|
175 /* first we try the HOME environment var, if that doesn't work, we try g_get_homedir(). */ |
| 9 | 176 const gchar *homedir(void) |
| 177 { | |
| 178 static gchar *home = NULL; | |
| 179 | |
| 180 if (!home) | |
| 181 home = path_to_utf8(getenv("HOME")); | |
|
998
d2701a5864c5
Fixed segfault when is run inside directory with non valid uft-8 image
bruclik
parents:
990
diff
changeset
|
182 |
| 9 | 183 if (!home) |
|
998
d2701a5864c5
Fixed segfault when is run inside directory with non valid uft-8 image
bruclik
parents:
990
diff
changeset
|
184 home = path_to_utf8(g_get_home_dir()); |
| 9 | 185 |
| 186 return home; | |
| 187 } | |
| 188 | |
|
1149
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
189 static gchar *xdg_dir_get(const gchar *key, const gchar *fallback) |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
190 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
191 gchar *dir = getenv(key); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
192 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
193 if (!dir || dir[0] == '\0') |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
194 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
195 return g_build_filename(homedir(), fallback, NULL); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
196 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
197 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
198 return path_to_utf8(dir); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
199 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
200 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
201 const gchar *xdg_data_home_get(void) |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
202 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
203 static const gchar *xdg_data_home = NULL; |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
204 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
205 if (xdg_data_home) return xdg_data_home; |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
206 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
207 xdg_data_home = xdg_dir_get("XDG_DATA_HOME", ".local/share"); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
208 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
209 return xdg_data_home; |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
210 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
211 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
212 const gchar *xdg_config_home_get(void) |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
213 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
214 static const gchar *xdg_config_home = NULL; |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
215 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
216 if (xdg_config_home) return xdg_config_home; |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
217 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
218 xdg_config_home = xdg_dir_get("XDG_CONFIG_HOME", ".config"); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
219 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
220 return xdg_config_home; |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
221 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
222 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
223 const gchar *xdg_cache_home_get(void) |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
224 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
225 static const gchar *xdg_cache_home = NULL; |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
226 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
227 if (xdg_cache_home) return xdg_cache_home; |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
228 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
229 xdg_cache_home = xdg_dir_get("XDG_CACHE_HOME", ".cache"); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
230 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
231 return xdg_cache_home; |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
232 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
233 |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
234 const gchar *get_rc_dir(void) |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
235 { |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
236 static gchar *rc_dir = NULL; |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
237 |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
238 if (rc_dir) return rc_dir; |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
239 |
|
1149
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
240 if (USE_XDG) |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
241 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
242 rc_dir = g_build_filename(xdg_config_home_get(), GQ_APPNAME_LC, NULL); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
243 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
244 else |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
245 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
246 rc_dir = g_build_filename(homedir(), GQ_RC_DIR, NULL); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
247 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
248 |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
249 return rc_dir; |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
250 } |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
251 |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
252 const gchar *get_collections_dir(void) |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
253 { |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
254 static gchar *collections_dir = NULL; |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
255 |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
256 if (collections_dir) return collections_dir; |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
257 |
|
1149
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
258 if (USE_XDG) |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
259 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
260 collections_dir = g_build_filename(xdg_data_home_get(), GQ_APPNAME_LC, GQ_COLLECTIONS_DIR, NULL); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
261 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
262 else |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
263 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
264 collections_dir = g_build_filename(get_rc_dir(), GQ_COLLECTIONS_DIR, NULL); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
265 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
266 |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
267 return collections_dir; |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
268 } |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
269 |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
270 const gchar *get_trash_dir(void) |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
271 { |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
272 static gchar *trash_dir = NULL; |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
273 |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
274 if (trash_dir) return trash_dir; |
|
1149
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
275 |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
276 if (USE_XDG) |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
277 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
278 trash_dir = g_build_filename(xdg_data_home_get(), GQ_APPNAME_LC, GQ_TRASH_DIR, NULL); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
279 } |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
280 else |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
281 { |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
282 trash_dir = g_build_filename(get_rc_dir(), GQ_TRASH_DIR, NULL); |
|
c4fcf8001574
Implement preliminary support for XDG Base Directory Specification.
zas_
parents:
1148
diff
changeset
|
283 } |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
284 |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
285 return trash_dir; |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
286 } |
|
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
287 |
| 9 | 288 gint stat_utf8(const gchar *s, struct stat *st) |
| 289 { | |
| 290 gchar *sl; | |
| 291 gint ret; | |
| 292 | |
| 293 if (!s) return FALSE; | |
| 294 sl = path_from_utf8(s); | |
| 295 ret = (stat(sl, st) == 0); | |
| 296 g_free(sl); | |
| 297 | |
| 298 return ret; | |
| 299 } | |
| 300 | |
|
40
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
301 gint lstat_utf8(const gchar *s, struct stat *st) |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
302 { |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
303 gchar *sl; |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
304 gint ret; |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
305 |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
306 if (!s) return FALSE; |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
307 sl = path_from_utf8(s); |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
308 ret = (lstat(sl, st) == 0); |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
309 g_free(sl); |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
310 |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
311 return ret; |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
312 } |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
313 |
|
1229
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
314 /* extension must contain only ASCII characters */ |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
315 gint stat_utf8_case_insensitive_ext(GString *base, const gchar *ext, struct stat *st) |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
316 { |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
317 gchar *sl; |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
318 gchar *extl; |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
319 gint ret = 0; |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
320 gint ext_len; |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
321 gint base_len = strlen(base->str); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
322 |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
323 g_string_append(base, ext); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
324 sl = path_from_utf8(base->str); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
325 |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
326 extl = strrchr(sl, '.'); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
327 if (extl) |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
328 { |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
329 gint i, j; |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
330 extl++; /* the first char after . */ |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
331 ext_len = strlen(extl); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
332 |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
333 for (i = 0; i < (1 << ext_len); i++) |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
334 { |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
335 for (j = 0; j < ext_len; j++) |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
336 { |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
337 if (i & (1 << j)) |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
338 extl[j] = g_ascii_toupper(extl[j]); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
339 else |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
340 extl[j] = g_ascii_tolower(extl[j]); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
341 } |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
342 ret = (stat(sl, st) == 0); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
343 if (ret) break; |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
344 } |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
345 |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
346 if (ret) |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
347 { |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
348 /* append the found extension to base */ |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
349 base = g_string_truncate(base, base_len); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
350 extl--; |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
351 g_string_append(base, extl); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
352 } |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
353 } |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
354 g_free(sl); |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
355 |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
356 return ret; |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
357 } |
|
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1198
diff
changeset
|
358 |
| 9 | 359 gint isname(const gchar *s) |
| 360 { | |
| 361 struct stat st; | |
| 362 | |
| 363 return stat_utf8(s, &st); | |
| 364 } | |
| 365 | |
| 366 gint isfile(const gchar *s) | |
| 367 { | |
| 368 struct stat st; | |
| 369 | |
| 370 return (stat_utf8(s, &st) && S_ISREG(st.st_mode)); | |
| 371 } | |
| 372 | |
| 373 gint isdir(const gchar *s) | |
| 374 { | |
| 375 struct stat st; | |
| 442 | 376 |
| 1198 | 377 return (stat_utf8(s, &st) && S_ISDIR(st.st_mode)); |
| 9 | 378 } |
| 379 | |
|
40
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
380 gint islink(const gchar *s) |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
381 { |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
382 struct stat st; |
| 442 | 383 |
| 1198 | 384 return (lstat_utf8(s, &st) && S_ISLNK(st.st_mode)); |
|
40
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
385 } |
|
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
386 |
| 9 | 387 gint64 filesize(const gchar *s) |
| 388 { | |
| 389 struct stat st; | |
| 442 | 390 |
| 9 | 391 if (!stat_utf8(s, &st)) return 0; |
| 983 | 392 return st.st_size; |
| 9 | 393 } |
| 394 | |
| 395 time_t filetime(const gchar *s) | |
| 396 { | |
| 442 | 397 struct stat st; |
| 9 | 398 |
| 399 if (!stat_utf8(s, &st)) return 0; | |
| 400 return st.st_mtime; | |
| 401 } | |
| 402 | |
| 403 gint filetime_set(const gchar *s, time_t tval) | |
| 404 { | |
| 405 gint ret = FALSE; | |
| 406 | |
| 407 if (tval > 0) | |
| 408 { | |
| 409 struct utimbuf ut; | |
| 410 gchar *sl; | |
| 411 | |
| 412 ut.actime = ut.modtime = tval; | |
| 413 | |
| 414 sl = path_from_utf8(s); | |
| 415 ret = (utime(sl, &ut) == 0); | |
| 416 g_free(sl); | |
| 417 } | |
| 418 | |
| 419 return ret; | |
| 420 } | |
| 421 | |
|
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
998
diff
changeset
|
422 gint access_file(const gchar *s, gint mode) |
| 9 | 423 { |
| 424 gchar *sl; | |
| 425 gint ret; | |
| 426 | |
| 427 if (!s) return FALSE; | |
| 428 | |
| 429 sl = path_from_utf8(s); | |
| 430 ret = (access(sl, mode) == 0); | |
| 431 g_free(sl); | |
| 432 | |
| 433 return ret; | |
| 434 } | |
| 435 | |
| 436 gint unlink_file(const gchar *s) | |
| 437 { | |
| 438 gchar *sl; | |
| 439 gint ret; | |
| 440 | |
| 441 if (!s) return FALSE; | |
| 442 | |
| 443 sl = path_from_utf8(s); | |
| 444 ret = (unlink(sl) == 0); | |
| 445 g_free(sl); | |
| 446 | |
| 447 return ret; | |
| 448 } | |
| 449 | |
| 450 gint symlink_utf8(const gchar *source, const gchar *target) | |
| 451 { | |
| 452 gchar *sl; | |
| 453 gchar *tl; | |
| 454 gint ret; | |
| 455 | |
| 456 if (!source || !target) return FALSE; | |
| 457 | |
| 458 sl = path_from_utf8(source); | |
| 459 tl = path_from_utf8(target); | |
| 460 | |
| 461 ret = (symlink(sl, tl) == 0); | |
| 462 | |
| 463 g_free(sl); | |
| 464 g_free(tl); | |
| 465 | |
| 466 return ret; | |
| 467 } | |
| 468 | |
|
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
998
diff
changeset
|
469 gint mkdir_utf8(const gchar *s, gint mode) |
| 9 | 470 { |
| 471 gchar *sl; | |
| 472 gint ret; | |
| 473 | |
| 474 if (!s) return FALSE; | |
| 475 | |
| 476 sl = path_from_utf8(s); | |
| 477 ret = (mkdir(sl, mode) == 0); | |
| 478 g_free(sl); | |
| 479 return ret; | |
| 480 } | |
| 481 | |
| 482 gint rmdir_utf8(const gchar *s) | |
| 483 { | |
| 484 gchar *sl; | |
| 485 gint ret; | |
| 486 | |
| 487 if (!s) return FALSE; | |
| 488 | |
| 489 sl = path_from_utf8(s); | |
| 490 ret = (rmdir(sl) == 0); | |
| 491 g_free(sl); | |
| 492 | |
| 493 return ret; | |
| 494 } | |
| 495 | |
| 496 gint copy_file_attributes(const gchar *s, const gchar *t, gint perms, gint mtime) | |
| 497 { | |
| 498 struct stat st; | |
| 499 gchar *sl, *tl; | |
| 500 gint ret = FALSE; | |
| 501 | |
| 502 if (!s || !t) return FALSE; | |
| 503 | |
| 504 sl = path_from_utf8(s); | |
| 505 tl = path_from_utf8(t); | |
| 506 | |
| 507 if (stat(sl, &st) == 0) | |
| 508 { | |
| 509 struct utimbuf tb; | |
| 510 | |
| 511 ret = TRUE; | |
| 512 | |
| 513 /* set the dest file attributes to that of source (ignoring errors) */ | |
| 514 | |
| 515 if (perms && chown(tl, st.st_uid, st.st_gid) < 0) ret = FALSE; | |
| 516 if (perms && chmod(tl, st.st_mode) < 0) ret = FALSE; | |
| 517 | |
| 518 tb.actime = st.st_atime; | |
| 519 tb.modtime = st.st_mtime; | |
| 520 if (mtime && utime(tl, &tb) < 0) ret = FALSE; | |
| 521 } | |
| 522 | |
| 523 g_free(sl); | |
| 524 g_free(tl); | |
| 525 | |
| 526 return ret; | |
| 527 } | |
| 528 | |
| 529 /* paths are in filesystem encoding */ | |
| 530 static gint hard_linked(const gchar *a, const gchar *b) | |
| 531 { | |
| 532 struct stat sta; | |
| 533 struct stat stb; | |
| 534 | |
| 535 if (stat(a, &sta) != 0 || stat(b, &stb) != 0) return FALSE; | |
| 536 | |
| 537 return (sta.st_dev == stb.st_dev && | |
| 538 sta.st_ino == stb.st_ino); | |
| 539 } | |
| 540 | |
| 541 gint copy_file(const gchar *s, const gchar *t) | |
| 542 { | |
| 543 FILE *fi = NULL; | |
| 544 FILE *fo = NULL; | |
| 545 gchar *sl, *tl; | |
| 546 gchar buf[4096]; | |
|
704
839525c4e85f
Use size_t instead of gint, it silents a signed vs unsigned warning.
zas_
parents:
703
diff
changeset
|
547 size_t b; |
| 9 | 548 |
| 549 sl = path_from_utf8(s); | |
| 550 tl = path_from_utf8(t); | |
| 551 | |
| 552 if (hard_linked(sl, tl)) | |
| 553 { | |
| 554 g_free(sl); | |
| 555 g_free(tl); | |
| 556 return TRUE; | |
| 557 } | |
| 558 | |
| 559 fi = fopen(sl, "rb"); | |
| 560 if (fi) | |
| 561 { | |
| 562 fo = fopen(tl, "wb"); | |
| 563 if (!fo) | |
| 564 { | |
| 565 fclose(fi); | |
| 566 fi = NULL; | |
| 567 } | |
| 568 } | |
| 569 | |
| 570 g_free(sl); | |
| 571 g_free(tl); | |
| 572 | |
| 573 if (!fi || !fo) return FALSE; | |
| 574 | |
|
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
998
diff
changeset
|
575 while ((b = fread(buf, sizeof(gchar), sizeof(buf), fi)) && b != 0) |
| 9 | 576 { |
|
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
998
diff
changeset
|
577 if (fwrite(buf, sizeof(gchar), b, fo) != b) |
| 9 | 578 { |
| 579 fclose(fi); | |
| 580 fclose(fo); | |
| 581 return FALSE; | |
| 582 } | |
| 583 } | |
| 584 | |
| 585 fclose(fi); | |
| 586 fclose(fo); | |
| 587 | |
| 588 copy_file_attributes(s, t, TRUE, TRUE); | |
| 589 | |
| 590 return TRUE; | |
| 591 } | |
| 592 | |
| 593 gint move_file(const gchar *s, const gchar *t) | |
| 594 { | |
| 595 gchar *sl, *tl; | |
| 596 gint ret = TRUE; | |
| 597 | |
| 598 if (!s || !t) return FALSE; | |
| 599 | |
| 600 sl = path_from_utf8(s); | |
| 601 tl = path_from_utf8(t); | |
| 602 if (rename(sl, tl) < 0) | |
| 603 { | |
| 604 /* this may have failed because moving a file across filesystems | |
| 605 was attempted, so try copy and delete instead */ | |
| 606 if (copy_file(s, t)) | |
| 607 { | |
| 608 if (unlink(sl) < 0) | |
| 609 { | |
| 610 /* err, now we can't delete the source file so return FALSE */ | |
| 611 ret = FALSE; | |
| 612 } | |
| 613 } | |
| 614 else | |
| 615 { | |
| 616 ret = FALSE; | |
| 617 } | |
| 618 } | |
| 619 g_free(sl); | |
| 620 g_free(tl); | |
| 621 | |
| 622 return ret; | |
| 623 } | |
| 624 | |
| 625 gint rename_file(const gchar *s, const gchar *t) | |
| 626 { | |
| 627 gchar *sl, *tl; | |
| 628 gint ret; | |
| 629 | |
| 630 if (!s || !t) return FALSE; | |
| 631 | |
| 632 sl = path_from_utf8(s); | |
| 633 tl = path_from_utf8(t); | |
| 634 ret = (rename(sl, tl) == 0); | |
| 635 g_free(sl); | |
| 636 g_free(tl); | |
| 637 | |
| 638 return ret; | |
| 639 } | |
| 640 | |
| 641 gchar *get_current_dir(void) | |
| 642 { | |
| 643 gchar *pathl; | |
| 644 gchar *path8; | |
| 645 | |
| 646 pathl = g_get_current_dir(); | |
| 647 path8 = path_to_utf8(pathl); | |
| 648 g_free(pathl); | |
| 649 | |
| 650 return path8; | |
| 651 } | |
| 652 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
545
diff
changeset
|
653 void string_list_free(GList *list) |
| 9 | 654 { |
| 655 g_list_foreach(list, (GFunc)g_free, NULL); | |
| 656 g_list_free(list); | |
| 657 } | |
| 658 | |
|
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1229
diff
changeset
|
659 GList *string_list_copy(const GList *list) |
| 9 | 660 { |
| 661 GList *new_list = NULL; | |
| 1249 | 662 GList *work = (GList *) list; |
| 9 | 663 |
| 664 while (work) | |
| 665 { | |
| 666 gchar *path; | |
| 442 | 667 |
| 9 | 668 path = work->data; |
| 669 work = work->next; | |
| 442 | 670 |
| 9 | 671 new_list = g_list_prepend(new_list, g_strdup(path)); |
| 672 } | |
| 442 | 673 |
| 9 | 674 return g_list_reverse(new_list); |
| 675 } | |
| 676 | |
| 677 gchar *unique_filename(const gchar *path, const gchar *ext, const gchar *divider, gint pad) | |
| 678 { | |
| 679 gchar *unique; | |
| 680 gint n = 1; | |
| 681 | |
| 682 if (!ext) ext = ""; | |
| 683 if (!divider) divider = ""; | |
| 684 | |
| 685 unique = g_strconcat(path, ext, NULL); | |
| 686 while (isname(unique)) | |
| 687 { | |
| 688 g_free(unique); | |
| 689 if (pad) | |
| 690 { | |
| 691 unique = g_strdup_printf("%s%s%03d%s", path, divider, n, ext); | |
| 692 } | |
| 693 else | |
| 694 { | |
| 695 unique = g_strdup_printf("%s%s%d%s", path, divider, n, ext); | |
| 696 } | |
| 697 n++; | |
| 698 if (n > 999) | |
| 699 { | |
| 700 /* well, we tried */ | |
| 701 g_free(unique); | |
| 702 return NULL; | |
| 703 } | |
| 704 } | |
| 705 | |
| 706 return unique; | |
| 707 } | |
| 708 | |
| 709 gchar *unique_filename_simple(const gchar *path) | |
| 710 { | |
| 711 gchar *unique; | |
| 712 const gchar *name; | |
| 713 const gchar *ext; | |
| 714 | |
| 715 if (!path) return NULL; | |
| 716 | |
| 717 name = filename_from_path(path); | |
| 718 if (!name) return NULL; | |
| 719 | |
| 720 ext = extension_from_path(name); | |
| 721 | |
| 722 if (!ext) | |
| 723 { | |
| 724 unique = unique_filename(path, NULL, "_", TRUE); | |
| 725 } | |
| 726 else | |
| 727 { | |
| 728 gchar *base; | |
| 729 | |
| 730 base = remove_extension_from_path(path); | |
| 731 unique = unique_filename(base, ext, "_", TRUE); | |
| 732 g_free(base); | |
| 733 } | |
| 734 | |
| 735 return unique; | |
| 736 } | |
| 737 | |
| 738 const gchar *filename_from_path(const gchar *path) | |
| 739 { | |
| 740 const gchar *base; | |
| 741 | |
| 742 if (!path) return NULL; | |
| 743 | |
| 701 | 744 base = strrchr(path, G_DIR_SEPARATOR); |
| 9 | 745 if (base) return base + 1; |
| 746 | |
| 747 return path; | |
| 748 } | |
| 749 | |
| 750 gchar *remove_level_from_path(const gchar *path) | |
| 751 { | |
| 543 | 752 gint p = 0, n = -1; |
| 9 | 753 |
| 754 if (!path) return NULL; | |
| 755 | |
| 543 | 756 while (path[p]) |
| 757 { | |
| 701 | 758 if (path[p] == G_DIR_SEPARATOR) n = p; |
| 543 | 759 p++; |
| 760 } | |
| 761 if (n <= 0) n++; | |
| 762 | |
| 763 return g_strndup(path, (gsize) n); | |
| 9 | 764 } |
| 765 | |
| 766 const gchar *extension_from_path(const gchar *path) | |
| 767 { | |
| 768 if (!path) return NULL; | |
| 769 return strrchr(path, '.'); | |
| 770 } | |
| 771 | |
| 772 gint file_extension_match(const gchar *path, const gchar *ext) | |
| 773 { | |
| 774 gint p; | |
| 775 gint e; | |
| 776 | |
| 777 if (!path) return FALSE; | |
| 778 if (!ext) return TRUE; | |
| 779 | |
| 780 p = strlen(path); | |
| 781 e = strlen(ext); | |
| 782 | |
|
605
651ae2be1031
Use g_ascii_strncasecmp() instead of strncasecmp() where applicable.
zas_
parents:
576
diff
changeset
|
783 /* FIXME: utf8 */ |
| 9 | 784 return (p > e && strncasecmp(path + p - e, ext, e) == 0); |
| 785 } | |
| 786 | |
| 787 gchar *remove_extension_from_path(const gchar *path) | |
| 788 { | |
| 544 | 789 gint p = 0, n = -1; |
| 9 | 790 |
| 791 if (!path) return NULL; | |
| 792 | |
| 544 | 793 while (path[p]) |
| 794 { | |
| 795 if (path[p] == '.') n = p; | |
| 796 p++; | |
| 797 } | |
| 798 if (n < 0) n = p; | |
| 799 | |
| 800 return g_strndup(path, (gsize) n); | |
| 9 | 801 } |
| 802 | |
| 803 void parse_out_relatives(gchar *path) | |
| 804 { | |
| 805 gint s, t; | |
| 806 | |
| 807 if (!path) return; | |
| 808 | |
| 809 s = t = 0; | |
| 810 | |
| 811 while (path[s] != '\0') | |
| 812 { | |
| 919 | 813 if (path[s] == G_DIR_SEPARATOR && path[s+1] == '.') |
| 9 | 814 { |
| 919 | 815 /* /. occurence, let's see more */ |
| 816 gint p = s + 2; | |
| 817 | |
| 818 if (path[p] == G_DIR_SEPARATOR || path[p] == '\0') | |
| 819 { | |
| 820 /* /./ or /., just skip this part */ | |
| 821 s = p; | |
| 822 continue; | |
| 823 } | |
| 824 else if (path[p] == '.' && (path[p+1] == G_DIR_SEPARATOR || path[p+1] == '\0')) | |
| 825 { | |
| 826 /* /../ or /.., remove previous part, ie. /a/b/../ becomes /a/ */ | |
| 827 s = p + 1; | |
| 828 if (t > 0) t--; | |
| 829 while (path[t] != G_DIR_SEPARATOR && t > 0) t--; | |
| 830 continue; | |
| 831 } | |
| 9 | 832 } |
| 919 | 833 |
| 834 if (s != t) path[t] = path[s]; | |
| 835 t++; | |
| 836 s++; | |
| 9 | 837 } |
| 919 | 838 |
| 701 | 839 if (t == 0 && path[t] == G_DIR_SEPARATOR) t++; |
| 840 if (t > 1 && path[t-1] == G_DIR_SEPARATOR) t--; | |
| 9 | 841 path[t] = '\0'; |
| 842 } | |
| 843 | |
| 844 gint file_in_path(const gchar *name) | |
| 845 { | |
| 846 gchar *path; | |
| 847 gchar *namel; | |
| 848 gint p, l; | |
| 849 gint ret = FALSE; | |
| 850 | |
| 851 if (!name) return FALSE; | |
| 852 path = g_strdup(getenv("PATH")); | |
| 853 if (!path) return FALSE; | |
| 854 namel = path_from_utf8(name); | |
| 855 | |
| 856 p = 0; | |
| 857 l = strlen(path); | |
| 858 while (p < l && !ret) | |
| 859 { | |
| 860 gchar *f; | |
| 861 gint e = p; | |
| 862 while (path[e] != ':' && path[e] != '\0') e++; | |
| 863 path[e] = '\0'; | |
| 864 e++; | |
| 703 | 865 f = g_build_filename(path + p, namel, NULL); |
| 9 | 866 if (isfile(f)) ret = TRUE; |
| 867 g_free(f); | |
| 868 p = e; | |
| 869 } | |
| 870 g_free(namel); | |
| 871 g_free(path); | |
| 872 | |
| 873 return ret; | |
| 874 } | |
|
1148
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
875 |
| 1164 | 876 gboolean recursive_mkdir_if_not_exists(const gchar *path, mode_t mode) |
|
1148
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
877 { |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
878 if (!path) return FALSE; |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
879 |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
880 if (!isdir(path)) |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
881 { |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
882 gchar *npath = g_strdup(path); |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
883 gchar *p = npath; |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
884 |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
885 while (p[0] != '\0') |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
886 { |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
887 p++; |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
888 if (p[0] == G_DIR_SEPARATOR || p[0] == '\0') |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
889 { |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
890 gint end = TRUE; |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
891 |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
892 if (p[0] != '\0') |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
893 { |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
894 p[0] = '\0'; |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
895 end = FALSE; |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
896 } |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
897 |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
898 if (!isdir(npath)) |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
899 { |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
900 DEBUG_1("creating sub dir:%s", npath); |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
901 if (!mkdir_utf8(npath, mode)) |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
902 { |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
903 log_printf("create dir failed: %s\n", npath); |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
904 g_free(npath); |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
905 return FALSE; |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
906 } |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
907 } |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
908 |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
909 if (!end) p[0] = G_DIR_SEPARATOR; |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
910 } |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
911 } |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
912 g_free(npath); |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
913 } |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
914 |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
915 return TRUE; |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
916 } |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
917 |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
918 |
|
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
919 |
|
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1000
diff
changeset
|
920 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |
