Mercurial > geeqie
annotate src/cache_maint.c @ 1367:fe4da037be21
When g_new0() is used, drop redundant initializations to NULL, FALSE or 0, second pass.
| author | zas_ |
|---|---|
| date | Sun, 01 Mar 2009 23:14:19 +0000 |
| parents | 79937bc55f3a |
| children | 3a9fb1b52559 |
| rev | line source |
|---|---|
| 9 | 1 /* |
| 196 | 2 * Geeqie |
|
69
31759d770628
Fri Oct 13 10:27:22 2006 John Ellis <johne@verizon.net>
gqview
parents:
9
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 | |
| 281 | 13 #include "main.h" |
| 9 | 14 #include "cache_maint.h" |
| 15 | |
| 16 #include "cache.h" | |
| 586 | 17 #include "filedata.h" |
|
1074
ba2a41f053e6
Let Create thumbnails start in current directory (fallback to home directory if not available) as requested by Marcin Zajaczkowski (feature request 2166691).
zas_
parents:
1055
diff
changeset
|
18 #include "layout.h" |
| 9 | 19 #include "thumb.h" |
| 20 #include "thumb_standard.h" | |
| 21 #include "ui_fileops.h" | |
| 22 #include "ui_misc.h" | |
| 23 #include "ui_spinner.h" | |
| 24 #include "ui_tabcomp.h" | |
| 25 #include "ui_utildlg.h" | |
| 26 | |
| 27 | |
| 28 typedef struct _CMData CMData; | |
| 29 struct _CMData | |
| 30 { | |
| 31 GList *list; | |
| 32 GList *done_list; | |
| 33 gint idle_id; | |
| 34 GenericDialog *gd; | |
| 35 GtkWidget *entry; | |
| 36 GtkWidget *spinner; | |
| 37 GtkWidget *button_stop; | |
| 38 GtkWidget *button_close; | |
| 39 gint clear; | |
| 40 gint metadata; | |
| 41 }; | |
| 42 | |
| 43 #define PURGE_DIALOG_WIDTH 400 | |
| 44 | |
| 45 | |
| 46 /* | |
| 47 *------------------------------------------------------------------- | |
| 48 * cache maintenance | |
| 49 *------------------------------------------------------------------- | |
| 50 */ | |
| 51 | |
|
735
df6c11709106
Comment out unused static function extension_truncate().
zas_
parents:
734
diff
changeset
|
52 #if 0 |
| 9 | 53 static gint extension_truncate(gchar *path, const gchar *ext) |
| 54 { | |
| 55 gint l; | |
| 56 gint el; | |
| 57 | |
| 58 if (!path || !ext) return FALSE; | |
| 59 | |
| 60 l = strlen(path); | |
| 61 el = strlen(ext); | |
| 62 | |
| 63 if (l < el || strcmp(path + (l - el), ext) != 0) return FALSE; | |
| 64 | |
| 65 path[l - el] = '\0'; | |
| 66 | |
| 67 return TRUE; | |
| 68 } | |
|
735
df6c11709106
Comment out unused static function extension_truncate().
zas_
parents:
734
diff
changeset
|
69 #endif |
| 9 | 70 |
| 71 static gchar *extension_find_dot(gchar *path) | |
| 72 { | |
| 533 | 73 gchar *dot = NULL; |
| 9 | 74 |
| 533 | 75 if (!path) return NULL; |
| 9 | 76 |
| 533 | 77 while (*path != '\0') |
| 78 { | |
| 79 if (*path == '.') dot = path; | |
| 80 path++; | |
| 81 } | |
| 9 | 82 |
| 533 | 83 return dot; |
| 9 | 84 } |
| 85 | |
| 86 static gint isempty(const gchar *path) | |
| 87 { | |
| 88 DIR *dp; | |
| 89 struct dirent *dir; | |
| 90 gchar *pathl; | |
| 91 | |
| 92 pathl = path_from_utf8(path); | |
| 93 dp = opendir(pathl); | |
| 94 g_free(pathl); | |
| 95 if (!dp) return FALSE; | |
| 96 | |
| 97 while ((dir = readdir(dp)) != NULL) | |
| 98 { | |
| 99 gchar *name = dir->d_name; | |
| 100 | |
|
69
31759d770628
Fri Oct 13 10:27:22 2006 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
101 if (!(name[0] == '.' && (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'))) ) |
| 9 | 102 { |
| 103 closedir(dp); | |
| 104 return FALSE; | |
| 105 } | |
| 106 } | |
| 107 | |
| 108 closedir(dp); | |
| 109 return TRUE; | |
| 110 } | |
| 111 | |
| 112 static void cache_maintain_home_close(CMData *cm) | |
| 113 { | |
| 114 if (cm->idle_id != -1) g_source_remove(cm->idle_id); | |
| 115 if (cm->gd) generic_dialog_close(cm->gd); | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
116 filelist_free(cm->list); |
| 9 | 117 g_list_free(cm->done_list); |
| 118 g_free(cm); | |
| 119 } | |
| 120 | |
| 121 static void cache_maintain_home_stop(CMData *cm) | |
| 122 { | |
| 123 if (cm->idle_id != -1) | |
| 124 { | |
| 125 g_source_remove(cm->idle_id); | |
| 126 cm->idle_id = -1; | |
| 127 } | |
| 128 | |
| 129 gtk_entry_set_text(GTK_ENTRY(cm->entry), _("done")); | |
| 130 spinner_set_interval(cm->spinner, -1); | |
| 131 | |
| 132 gtk_widget_set_sensitive(cm->button_stop, FALSE); | |
| 133 gtk_widget_set_sensitive(cm->button_close, TRUE); | |
| 134 } | |
| 135 | |
| 136 static gint cache_maintain_home_cb(gpointer data) | |
| 137 { | |
| 138 CMData *cm = data; | |
| 139 GList *dlist = NULL; | |
| 140 GList *list = NULL; | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
141 FileData *fd; |
|
734
e6ebae313d46
Fix up some types, make some signed vs unsigned warnings quiet.
zas_
parents:
710
diff
changeset
|
142 gboolean just_done = FALSE; |
|
e6ebae313d46
Fix up some types, make some signed vs unsigned warnings quiet.
zas_
parents:
710
diff
changeset
|
143 gboolean still_have_a_file = TRUE; |
|
e6ebae313d46
Fix up some types, make some signed vs unsigned warnings quiet.
zas_
parents:
710
diff
changeset
|
144 gsize base_length; |
| 9 | 145 const gchar *cache_folder; |
| 146 | |
| 147 if (cm->metadata) | |
| 148 { | |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1074
diff
changeset
|
149 cache_folder = get_metadata_cache_dir(); |
| 9 | 150 } |
| 151 else | |
| 152 { | |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1074
diff
changeset
|
153 cache_folder = get_thumbnails_cache_dir(); |
| 9 | 154 } |
| 155 | |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1074
diff
changeset
|
156 base_length = strlen(cache_folder); |
| 9 | 157 |
| 158 if (!cm->list) | |
| 159 { | |
|
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
160 DEBUG_1("purge chk done."); |
| 9 | 161 cm->idle_id = -1; |
| 162 cache_maintain_home_stop(cm); | |
| 163 return FALSE; | |
| 164 } | |
| 165 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
166 fd = cm->list->data; |
| 9 | 167 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
168 DEBUG_1("purge chk (%d) \"%s\"", (cm->clear && !cm->metadata), fd->path); |
| 9 | 169 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
170 if (g_list_find(cm->done_list, fd) == NULL) |
| 9 | 171 { |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
172 cm->done_list = g_list_prepend(cm->done_list, fd); |
| 9 | 173 |
| 783 | 174 if (filelist_read(fd, &list, &dlist)) |
| 9 | 175 { |
| 176 GList *work; | |
| 177 | |
| 178 just_done = TRUE; | |
| 179 still_have_a_file = FALSE; | |
| 442 | 180 |
| 9 | 181 work = list; |
| 182 while (work) | |
| 183 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
184 FileData *fd_list = work->data; |
| 1307 | 185 gchar *path_buf = g_strdup(fd_list->path); |
| 9 | 186 gchar *dot; |
| 442 | 187 |
| 9 | 188 dot = extension_find_dot(path_buf); |
| 442 | 189 |
| 9 | 190 if (dot) *dot = '\0'; |
| 191 if ((!cm->metadata && cm->clear) || | |
| 192 (strlen(path_buf) > base_length && !isfile(path_buf + base_length)) ) | |
| 193 { | |
| 194 if (dot) *dot = '.'; | |
|
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
195 if (!unlink_file(path_buf)) log_printf("failed to delete:%s\n", path_buf); |
| 9 | 196 } |
| 197 else | |
| 198 { | |
| 199 still_have_a_file = TRUE; | |
| 200 } | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
201 g_free(path_buf); |
| 9 | 202 work = work->next; |
| 203 } | |
| 204 } | |
| 205 } | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
206 filelist_free(list); |
| 9 | 207 |
| 208 cm->list = g_list_concat(dlist, cm->list); | |
| 209 | |
| 210 if (cm->list && g_list_find(cm->done_list, cm->list->data) != NULL) | |
| 211 { | |
| 212 /* check if the dir is empty */ | |
| 442 | 213 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
214 if (cm->list->data == fd && just_done) |
| 9 | 215 { |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
216 if (!still_have_a_file && !dlist && cm->list->next && !rmdir_utf8(fd->path)) |
| 9 | 217 { |
|
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
218 log_printf("Unable to delete dir: %s\n", fd->path); |
| 9 | 219 } |
| 220 } | |
| 221 else | |
| 222 { | |
| 223 /* must re-check for an empty dir */ | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
224 if (isempty(fd->path) && cm->list->next && !rmdir_utf8(fd->path)) |
| 9 | 225 { |
|
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
226 log_printf("Unable to delete dir: %s\n", fd->path); |
| 9 | 227 } |
| 228 } | |
| 229 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
230 fd = cm->list->data; |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
231 cm->done_list = g_list_remove(cm->done_list, fd); |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
232 cm->list = g_list_remove(cm->list, fd); |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
233 file_data_unref(fd); |
| 9 | 234 } |
| 235 | |
| 236 if (cm->list) | |
| 237 { | |
| 238 const gchar *buf; | |
| 239 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
240 fd = cm->list->data; |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
241 if (strlen(fd->path) > base_length) |
| 9 | 242 { |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
243 buf = fd->path + base_length; |
| 9 | 244 } |
| 245 else | |
| 246 { | |
| 247 buf = "..."; | |
| 248 } | |
| 249 gtk_entry_set_text(GTK_ENTRY(cm->entry), buf); | |
| 250 } | |
| 251 | |
| 252 return TRUE; | |
| 253 } | |
| 254 | |
| 255 static void cache_maintain_home_close_cb(GenericDialog *gd, gpointer data) | |
| 256 { | |
| 257 CMData *cm = data; | |
| 258 | |
| 259 if (!GTK_WIDGET_SENSITIVE(cm->button_close)) return; | |
| 260 | |
| 261 cache_maintain_home_close(cm); | |
| 262 } | |
| 263 | |
| 264 static void cache_maintain_home_stop_cb(GenericDialog *gd, gpointer data) | |
| 265 { | |
| 266 CMData *cm = data; | |
| 267 | |
| 268 cache_maintain_home_stop(cm); | |
| 269 } | |
| 270 | |
| 271 /* sorry for complexity (cm->done_list), but need it to remove empty dirs */ | |
| 272 void cache_maintain_home(gint metadata, gint clear, GtkWidget *parent) | |
| 273 { | |
| 274 CMData *cm; | |
|
780
44128da39e13
Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents:
735
diff
changeset
|
275 GList *dlist; |
| 783 | 276 FileData *dir_fd; |
| 9 | 277 const gchar *msg; |
| 278 const gchar *cache_folder; | |
| 279 GtkWidget *hbox; | |
| 280 | |
| 281 if (metadata) | |
| 282 { | |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1074
diff
changeset
|
283 cache_folder = get_metadata_cache_dir(); |
| 9 | 284 } |
| 285 else | |
| 286 { | |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1074
diff
changeset
|
287 cache_folder = get_thumbnails_cache_dir(); |
| 9 | 288 } |
| 289 | |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1074
diff
changeset
|
290 dir_fd = file_data_new_simple(cache_folder); |
| 783 | 291 if (!filelist_read(dir_fd, NULL, &dlist)) |
| 9 | 292 { |
| 783 | 293 file_data_unref(dir_fd); |
| 9 | 294 return; |
| 295 } | |
| 296 | |
| 783 | 297 dlist = g_list_append(dlist, dir_fd); |
| 9 | 298 |
| 299 cm = g_new0(CMData, 1); | |
| 300 cm->list = dlist; | |
| 301 cm->done_list = NULL; | |
| 302 cm->clear = clear; | |
| 303 cm->metadata = metadata; | |
| 304 | |
| 305 if (metadata) | |
| 306 { | |
| 307 msg = _("Removing old metadata..."); | |
| 308 } | |
| 309 else if (clear) | |
| 310 { | |
| 311 msg = _("Clearing cached thumbnails..."); | |
| 312 } | |
| 313 else | |
| 314 { | |
| 315 msg = _("Removing old thumbnails..."); | |
| 316 } | |
| 317 | |
| 318 cm->gd = generic_dialog_new(_("Maintenance"), | |
|
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:
1148
diff
changeset
|
319 "main_maintenance", |
| 9 | 320 parent, FALSE, |
| 321 NULL, cm); | |
| 322 cm->gd->cancel_cb = cache_maintain_home_close_cb; | |
| 323 cm->button_close = generic_dialog_add_button(cm->gd, GTK_STOCK_CLOSE, NULL, | |
| 324 cache_maintain_home_close_cb, FALSE); | |
| 325 gtk_widget_set_sensitive(cm->button_close, FALSE); | |
| 326 cm->button_stop = generic_dialog_add_button(cm->gd, GTK_STOCK_STOP, NULL, | |
| 327 cache_maintain_home_stop_cb, FALSE); | |
| 328 | |
| 329 generic_dialog_add_message(cm->gd, NULL, msg, NULL); | |
| 330 gtk_window_set_default_size(GTK_WINDOW(cm->gd->dialog), PURGE_DIALOG_WIDTH, -1); | |
| 331 | |
| 332 hbox = gtk_hbox_new(FALSE, 0); | |
| 333 gtk_box_pack_start(GTK_BOX(cm->gd->vbox), hbox, FALSE, FALSE, 5); | |
| 334 gtk_widget_show(hbox); | |
| 335 | |
| 336 cm->entry = gtk_entry_new(); | |
| 337 GTK_WIDGET_UNSET_FLAGS(cm->entry, GTK_CAN_FOCUS); | |
| 338 gtk_editable_set_editable(GTK_EDITABLE(cm->entry), FALSE); | |
| 339 gtk_box_pack_start(GTK_BOX(hbox), cm->entry, TRUE, TRUE, 0); | |
| 340 gtk_widget_show(cm->entry); | |
| 341 | |
| 342 cm->spinner = spinner_new(NULL, SPINNER_SPEED); | |
| 343 gtk_box_pack_start(GTK_BOX(hbox), cm->spinner, FALSE, FALSE, 0); | |
| 344 gtk_widget_show(cm->spinner); | |
| 442 | 345 |
| 9 | 346 gtk_widget_show(cm->gd->dialog); |
| 347 | |
| 348 cm->idle_id = g_idle_add(cache_maintain_home_cb, cm); | |
| 349 } | |
| 350 | |
| 710 | 351 #if 0 |
|
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
352 /* This checks all files in ~/GQ_RC_DIR/thumbnails and |
| 9 | 353 * removes them if thay have no source counterpart. |
| 354 * (this assumes all cache files have an extension of 4 chars including '.') | |
| 355 */ | |
| 356 gint cache_maintain_home_dir(const gchar *dir, gint recursive, gint clear) | |
| 357 { | |
| 358 gchar *base; | |
| 359 gint base_length; | |
| 360 GList *dlist = NULL; | |
| 783 | 361 FileData *dir_fd; |
| 9 | 362 GList *flist = NULL; |
| 363 gint still_have_a_file = FALSE; | |
| 364 | |
|
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
365 DEBUG_1("maintainance check: %s", dir); |
| 9 | 366 |
| 283 | 367 base_length = strlen(homedir()) + strlen("/") + strlen(GQ_CACHE_RC_THUMB); |
| 368 base = g_strconcat(homedir(), "/", GQ_CACHE_RC_THUMB, dir, NULL); | |
| 783 | 369 dir_fd = file_data_new_simple(base); |
| 370 g_free(base); | |
| 9 | 371 |
| 783 | 372 if (filelist_read(dir_fd, &flist, &dlist)) |
| 9 | 373 { |
| 374 GList *work; | |
| 375 | |
| 376 work = dlist; | |
| 516 | 377 while (work) |
| 9 | 378 { |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
379 FileData *fd = work->data; |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
380 if (recursive && strlen(fd->path) > base_length && |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
381 !cache_maintain_home_dir(fd->path + base_length, recursive, clear)) |
| 9 | 382 { |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
383 DEBUG_1("Deleting thumb dir: %s", fd->path); |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
384 if (!rmdir_utf8(fd->path)) |
| 9 | 385 { |
|
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
386 log_printf("Unable to delete dir: %s\n", fd->path); |
| 9 | 387 } |
| 388 } | |
| 389 else | |
| 390 { | |
| 391 still_have_a_file = TRUE; | |
| 392 } | |
| 393 work = work->next; | |
| 394 } | |
| 395 | |
| 396 work = flist; | |
| 397 while (work) | |
| 398 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
399 FileData *fd = work->data; |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
400 gchar *path = g_strdup(fd->path); |
| 9 | 401 gchar *dot; |
| 402 | |
| 403 dot = extension_find_dot(path); | |
| 404 | |
| 405 if (dot) *dot = '\0'; | |
| 406 if (clear || | |
| 407 (strlen(path) > base_length && !isfile(path + base_length)) ) | |
| 408 { | |
| 409 if (dot) *dot = '.'; | |
|
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
410 if (!unlink_file(path)) log_printf("failed to delete:%s\n", path); |
| 9 | 411 } |
| 412 else | |
| 413 { | |
| 414 still_have_a_file = TRUE; | |
| 415 } | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
416 g_free(path); |
| 9 | 417 |
| 418 work = work->next; | |
| 419 } | |
| 420 } | |
| 421 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
422 filelist_free(dlist); |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
423 filelist_free(flist); |
| 783 | 424 file_data_unref(dir_fd); |
| 9 | 425 |
| 426 return still_have_a_file; | |
| 427 } | |
| 428 | |
| 429 /* This checks relative caches in dir/.thumbnails and | |
| 430 * removes them if they have no source counterpart. | |
| 431 */ | |
| 783 | 432 gint cache_maintain_dir(FileData *dir_fd, gint recursive, gint clear) |
| 9 | 433 { |
| 434 GList *list = NULL; | |
| 435 gchar *cachedir; | |
| 783 | 436 FileData *cachedir_fd; |
| 9 | 437 gint still_have_a_file = FALSE; |
| 438 GList *work; | |
| 439 | |
|
707
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
440 cachedir = g_build_filename(dir, GQ_CACHE_LOCAL_THUMB, NULL); |
| 783 | 441 cachedir_fd = file_data_new_simple(cachedir); |
| 442 g_free(cachedir); | |
| 9 | 443 |
| 783 | 444 filelist_read(cachedir_fd, &list, NULL); |
| 9 | 445 work = list; |
| 446 | |
| 447 while (work) | |
| 448 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
449 FileData *fd; |
| 9 | 450 gchar *source; |
| 451 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
452 fd = work->data; |
| 9 | 453 work = work->next; |
| 454 | |
| 783 | 455 source = g_build_filename(dir->path, fd->name, NULL); |
| 9 | 456 |
| 457 if (clear || | |
| 283 | 458 extension_truncate(source, GQ_CACHE_EXT_THUMB) || |
| 459 extension_truncate(source, GQ_CACHE_EXT_SIM)) | |
| 9 | 460 { |
| 461 if (!clear && isfile(source)) | |
| 462 { | |
| 463 still_have_a_file = TRUE; | |
| 464 } | |
| 465 else | |
| 466 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
467 if (!unlink_file(fd->path)) |
| 9 | 468 { |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
469 DEBUG_1("Failed to remove cache file %s", fd->path); |
| 9 | 470 still_have_a_file = TRUE; |
| 471 } | |
| 472 } | |
| 473 } | |
| 474 else | |
| 475 { | |
| 476 still_have_a_file = TRUE; | |
| 477 } | |
| 478 g_free(source); | |
| 479 } | |
| 480 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
481 filelist_free(list); |
| 783 | 482 file_data_unref(cachedir_fd); |
| 9 | 483 |
| 484 if (recursive) | |
| 485 { | |
| 486 list = NULL; | |
| 487 | |
| 783 | 488 filelist_read(dir_fd, NULL, &list); |
| 9 | 489 work = list; |
| 490 while (work) | |
| 491 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
492 FileData *fd = work->data; |
| 9 | 493 work = work->next; |
| 494 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
495 still_have_a_file |= cache_maintain_dir(fd->path, recursive, clear); |
| 9 | 496 } |
| 497 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
498 filelist_free(list); |
| 9 | 499 } |
| 500 | |
| 501 return still_have_a_file; | |
| 502 } | |
| 710 | 503 #endif |
| 9 | 504 |
| 505 static void cache_file_move(const gchar *src, const gchar *dest) | |
| 506 { | |
| 507 if (!dest || !src || !isfile(src)) return; | |
| 508 | |
| 509 if (!move_file(src, dest)) | |
| 510 { | |
|
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
511 DEBUG_1("Failed to move cache file \"%s\" to \"%s\"", src, dest); |
| 9 | 512 /* we remove it anyway - it's stale */ |
| 513 unlink_file(src); | |
| 514 } | |
| 515 } | |
| 516 | |
| 793 | 517 static void cache_maint_moved(FileData *fd) |
| 9 | 518 { |
| 519 gchar *base; | |
| 520 mode_t mode = 0755; | |
| 138 | 521 const gchar *src = fd->change->source; |
| 522 const gchar *dest = fd->change->dest; | |
| 9 | 523 |
| 524 if (!src || !dest) return; | |
| 525 | |
| 526 base = cache_get_location(CACHE_TYPE_THUMB, dest, FALSE, &mode); | |
|
1148
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
527 if (recursive_mkdir_if_not_exists(base, mode)) |
| 9 | 528 { |
| 529 gchar *buf; | |
| 530 gchar *d; | |
| 531 | |
| 532 buf = cache_find_location(CACHE_TYPE_THUMB, src); | |
| 533 d = cache_get_location(CACHE_TYPE_THUMB, dest, TRUE, NULL); | |
| 534 cache_file_move(buf, d); | |
| 535 g_free(d); | |
| 536 g_free(buf); | |
| 537 | |
| 538 buf = cache_find_location(CACHE_TYPE_SIM, src); | |
| 539 d = cache_get_location(CACHE_TYPE_SIM, dest, TRUE, NULL); | |
| 540 cache_file_move(buf, d); | |
| 541 g_free(d); | |
| 542 g_free(buf); | |
| 543 } | |
| 544 else | |
| 545 { | |
|
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
546 log_printf("Failed to create cache dir for move %s\n", base); |
| 9 | 547 } |
| 548 g_free(base); | |
| 549 | |
| 550 base = cache_get_location(CACHE_TYPE_METADATA, dest, FALSE, &mode); | |
|
1148
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
551 if (recursive_mkdir_if_not_exists(base, mode)) |
| 9 | 552 { |
| 553 gchar *buf; | |
| 554 gchar *d; | |
| 442 | 555 |
| 9 | 556 buf = cache_find_location(CACHE_TYPE_METADATA, src); |
| 557 d = cache_get_location(CACHE_TYPE_METADATA, dest, TRUE, NULL); | |
| 558 cache_file_move(buf, d); | |
| 559 g_free(d); | |
| 560 g_free(buf); | |
| 561 } | |
| 562 g_free(base); | |
| 563 | |
| 333 | 564 if (options->thumbnails.enable_caching && options->thumbnails.spec_standard) |
| 318 | 565 thumb_std_maint_moved(src, dest); |
| 9 | 566 } |
| 567 | |
| 568 static void cache_file_remove(const gchar *path) | |
| 569 { | |
| 570 if (path && isfile(path) && !unlink_file(path)) | |
| 571 { | |
|
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
572 DEBUG_1("Failed to remove cache file %s", path); |
| 9 | 573 } |
| 574 } | |
| 575 | |
| 793 | 576 static void cache_maint_removed(FileData *fd) |
| 9 | 577 { |
| 578 gchar *buf; | |
| 579 | |
| 138 | 580 buf = cache_find_location(CACHE_TYPE_THUMB, fd->path); |
| 9 | 581 cache_file_remove(buf); |
| 582 g_free(buf); | |
| 583 | |
| 138 | 584 buf = cache_find_location(CACHE_TYPE_SIM, fd->path); |
| 9 | 585 cache_file_remove(buf); |
| 586 g_free(buf); | |
| 587 | |
| 138 | 588 buf = cache_find_location(CACHE_TYPE_METADATA, fd->path); |
| 9 | 589 cache_file_remove(buf); |
| 590 g_free(buf); | |
| 591 | |
| 333 | 592 if (options->thumbnails.enable_caching && options->thumbnails.spec_standard) |
| 318 | 593 thumb_std_maint_removed(fd->path); |
| 9 | 594 } |
| 595 | |
| 793 | 596 static void cache_maint_copied(FileData *fd) |
| 9 | 597 { |
| 598 gchar *dest_base; | |
| 599 gchar *src_cache; | |
| 600 mode_t mode = 0755; | |
| 601 | |
| 138 | 602 src_cache = cache_find_location(CACHE_TYPE_METADATA, fd->change->source); |
| 9 | 603 if (!src_cache) return; |
| 604 | |
| 138 | 605 dest_base = cache_get_location(CACHE_TYPE_METADATA, fd->change->dest, FALSE, &mode); |
|
1148
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
606 if (recursive_mkdir_if_not_exists(dest_base, mode)) |
| 9 | 607 { |
| 608 gchar *path; | |
| 442 | 609 |
| 138 | 610 path = cache_get_location(CACHE_TYPE_METADATA, fd->change->dest, TRUE, NULL); |
| 9 | 611 if (!copy_file(src_cache, path)) |
| 612 { | |
|
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
613 DEBUG_1("failed to copy metadata %s to %s", src_cache, path); |
| 9 | 614 } |
| 615 g_free(path); | |
| 616 } | |
| 617 | |
| 618 g_free(dest_base); | |
| 619 g_free(src_cache); | |
| 620 } | |
| 621 | |
| 793 | 622 void cache_notify_cb(FileData *fd, NotifyType type, gpointer data) |
| 623 { | |
| 803 | 624 if (type != NOTIFY_TYPE_CHANGE || !fd->change) return; |
| 793 | 625 |
|
1347
79937bc55f3a
Add missing space between switch and first parenthesis.
zas_
parents:
1307
diff
changeset
|
626 switch (fd->change->type) |
| 793 | 627 { |
| 628 case FILEDATA_CHANGE_MOVE: | |
| 629 case FILEDATA_CHANGE_RENAME: | |
| 630 cache_maint_moved(fd); | |
| 631 break; | |
| 632 case FILEDATA_CHANGE_COPY: | |
| 633 cache_maint_copied(fd); | |
| 634 break; | |
| 635 case FILEDATA_CHANGE_DELETE: | |
| 636 cache_maint_removed(fd); | |
| 637 break; | |
| 638 case FILEDATA_CHANGE_UNSPECIFIED: | |
| 1211 | 639 case FILEDATA_CHANGE_WRITE_METADATA: |
| 793 | 640 break; |
| 641 } | |
| 642 } | |
| 643 | |
| 644 | |
| 9 | 645 /* |
| 646 *------------------------------------------------------------------- | |
| 647 * new cache maintenance utilities | |
| 648 *------------------------------------------------------------------- | |
| 649 */ | |
| 650 | |
| 651 typedef struct _CacheManager CacheManager; | |
| 652 struct _CacheManager | |
| 653 { | |
| 654 GenericDialog *dialog; | |
| 655 GtkWidget *folder_entry; | |
| 656 GtkWidget *progress; | |
| 657 | |
| 658 GList *list_todo; | |
| 659 | |
| 660 gint count_total; | |
| 661 gint count_done; | |
| 662 }; | |
| 663 | |
| 664 typedef struct _CleanData CleanData; | |
| 665 struct _CleanData | |
| 666 { | |
| 667 GenericDialog *gd; | |
| 668 ThumbLoaderStd *tl; | |
| 669 | |
| 670 GList *list; | |
| 671 GList *list_dir; | |
| 672 | |
| 673 gint days; | |
| 674 gint clear; | |
| 675 | |
| 676 GtkWidget *button_close; | |
| 677 GtkWidget *button_stop; | |
| 678 GtkWidget *button_start; | |
| 679 GtkWidget *progress; | |
| 680 GtkWidget *spinner; | |
| 681 | |
| 682 GtkWidget *group; | |
| 683 GtkWidget *entry; | |
| 684 | |
| 685 gint count_total; | |
| 686 gint count_done; | |
| 687 | |
| 688 gint local; | |
| 689 gint recurse; | |
| 690 | |
| 691 gint idle_id; | |
| 692 }; | |
| 693 | |
| 694 static void cache_manager_render_reset(CleanData *cd) | |
| 695 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
696 filelist_free(cd->list); |
| 9 | 697 cd->list = NULL; |
| 698 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
699 filelist_free(cd->list_dir); |
| 9 | 700 cd->list_dir = NULL; |
| 701 | |
| 702 thumb_loader_free((ThumbLoader *)cd->tl); | |
| 703 cd->tl = NULL; | |
| 704 } | |
| 705 | |
| 706 static void cache_manager_render_close_cb(GenericDialog *fd, gpointer data) | |
| 707 { | |
| 708 CleanData *cd = data; | |
| 709 | |
| 710 if (!GTK_WIDGET_SENSITIVE(cd->button_close)) return; | |
| 711 | |
| 712 cache_manager_render_reset(cd); | |
| 713 generic_dialog_close(cd->gd); | |
| 714 g_free(cd); | |
| 715 } | |
| 716 | |
| 717 static void cache_manager_render_finish(CleanData *cd) | |
| 718 { | |
| 719 cache_manager_render_reset(cd); | |
| 720 | |
| 721 gtk_entry_set_text(GTK_ENTRY(cd->progress), _("done")); | |
| 722 spinner_set_interval(cd->spinner, -1); | |
| 723 | |
| 724 gtk_widget_set_sensitive(cd->group, TRUE); | |
| 725 gtk_widget_set_sensitive(cd->button_start, TRUE); | |
| 726 gtk_widget_set_sensitive(cd->button_stop, FALSE); | |
| 727 gtk_widget_set_sensitive(cd->button_close, TRUE); | |
| 728 } | |
| 729 | |
| 730 static void cache_manager_render_stop_cb(GenericDialog *fd, gpointer data) | |
| 731 { | |
| 732 CleanData *cd = data; | |
| 733 | |
| 734 cache_manager_render_finish(cd); | |
| 735 } | |
| 736 | |
| 783 | 737 static void cache_manager_render_folder(CleanData *cd, FileData *dir_fd) |
| 9 | 738 { |
| 739 GList *list_d = NULL; | |
| 740 GList *list_f = NULL; | |
| 741 | |
| 742 if (cd->recurse) | |
| 743 { | |
| 783 | 744 filelist_read(dir_fd, &list_f, &list_d); |
| 9 | 745 } |
| 746 else | |
| 747 { | |
| 783 | 748 filelist_read(dir_fd, &list_f, NULL); |
| 9 | 749 } |
| 750 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
751 list_f = filelist_filter(list_f, FALSE); |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
752 list_d = filelist_filter(list_d, TRUE); |
| 9 | 753 |
| 754 cd->list = g_list_concat(list_f, cd->list); | |
| 755 cd->list_dir = g_list_concat(list_d, cd->list_dir); | |
| 756 } | |
| 757 | |
| 758 static gint cache_manager_render_file(CleanData *cd); | |
| 759 | |
| 760 static void cache_manager_render_thumb_done_cb(ThumbLoader *tl, gpointer data) | |
| 761 { | |
| 762 CleanData *cd = data; | |
| 763 | |
| 764 thumb_loader_free((ThumbLoader *)cd->tl); | |
| 765 cd->tl = NULL; | |
| 766 | |
| 767 while (cache_manager_render_file(cd)); | |
| 768 } | |
| 769 | |
| 770 static gint cache_manager_render_file(CleanData *cd) | |
| 771 { | |
| 772 if (cd->list) | |
| 773 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
774 FileData *fd; |
| 9 | 775 gint success; |
| 776 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
777 fd = cd->list->data; |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
778 cd->list = g_list_remove(cd->list, fd); |
| 9 | 779 |
| 333 | 780 cd->tl = (ThumbLoaderStd *)thumb_loader_new(options->thumbnails.max_width, options->thumbnails.max_height); |
| 9 | 781 thumb_loader_set_callbacks((ThumbLoader *)cd->tl, |
| 782 cache_manager_render_thumb_done_cb, | |
| 783 cache_manager_render_thumb_done_cb, | |
| 784 NULL, cd); | |
| 785 thumb_loader_set_cache((ThumbLoader *)cd->tl, TRUE, cd->local, TRUE); | |
| 838 | 786 success = thumb_loader_start((ThumbLoader *)cd->tl, fd); |
| 9 | 787 if (success) |
| 788 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
789 gtk_entry_set_text(GTK_ENTRY(cd->progress), fd->path); |
| 9 | 790 } |
| 791 else | |
| 792 { | |
| 793 thumb_loader_free((ThumbLoader *)cd->tl); | |
| 794 cd->tl = NULL; | |
| 795 } | |
| 796 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
797 file_data_unref(fd); |
| 9 | 798 |
| 799 return (!success); | |
| 800 } | |
| 801 else if (cd->list_dir) | |
| 802 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
803 FileData *fd; |
| 9 | 804 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
805 fd = cd->list_dir->data; |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
806 cd->list_dir = g_list_remove(cd->list_dir, fd); |
| 9 | 807 |
| 783 | 808 cache_manager_render_folder(cd, fd); |
| 9 | 809 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
810 file_data_unref(fd); |
| 9 | 811 |
| 812 return TRUE; | |
| 813 } | |
| 814 | |
| 815 cache_manager_render_finish(cd); | |
| 816 | |
| 817 return FALSE; | |
| 818 } | |
| 819 | |
| 820 static void cache_manager_render_start_cb(GenericDialog *fd, gpointer data) | |
| 821 { | |
| 822 CleanData *cd = data; | |
| 823 gchar *path; | |
| 824 | |
| 825 if (cd->list || !GTK_WIDGET_SENSITIVE(cd->button_start)) return; | |
| 826 | |
| 827 path = remove_trailing_slash((gtk_entry_get_text(GTK_ENTRY(cd->entry)))); | |
| 828 parse_out_relatives(path); | |
| 829 | |
| 830 if (!isdir(path)) | |
| 831 { | |
| 832 warning_dialog(_("Invalid folder"), | |
| 442 | 833 _("The specified folder can not be found."), |
| 9 | 834 GTK_STOCK_DIALOG_WARNING, cd->gd->dialog); |
| 835 } | |
| 836 else | |
| 837 { | |
| 783 | 838 FileData *dir_fd; |
| 9 | 839 gtk_widget_set_sensitive(cd->group, FALSE); |
| 840 gtk_widget_set_sensitive(cd->button_start, FALSE); | |
| 841 gtk_widget_set_sensitive(cd->button_stop, TRUE); | |
| 842 gtk_widget_set_sensitive(cd->button_close, FALSE); | |
| 843 | |
| 844 spinner_set_interval(cd->spinner, SPINNER_SPEED); | |
| 845 | |
| 783 | 846 dir_fd = file_data_new_simple(path); |
| 847 cache_manager_render_folder(cd, dir_fd); | |
| 848 file_data_unref(dir_fd); | |
| 9 | 849 while (cache_manager_render_file(cd)); |
| 850 } | |
| 851 | |
| 852 g_free(path); | |
| 853 } | |
| 854 | |
| 855 static void cache_manager_render_dialog(GtkWidget *widget, const gchar *path) | |
| 856 { | |
| 857 CleanData *cd; | |
| 858 GtkWidget *hbox; | |
| 859 GtkWidget *label; | |
| 860 GtkWidget *button; | |
| 861 | |
| 862 cd = g_new0(CleanData, 1); | |
| 863 | |
| 864 cd->gd = generic_dialog_new(_("Create thumbnails"), | |
|
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:
1148
diff
changeset
|
865 "create_thumbnails", |
| 9 | 866 widget, FALSE, |
| 867 NULL, cd); | |
| 868 gtk_window_set_default_size(GTK_WINDOW(cd->gd->dialog), PURGE_DIALOG_WIDTH, -1); | |
| 869 cd->gd->cancel_cb = cache_manager_render_close_cb; | |
| 870 cd->button_close = generic_dialog_add_button(cd->gd, GTK_STOCK_CLOSE, NULL, | |
| 871 cache_manager_render_close_cb, FALSE); | |
| 872 cd->button_start = generic_dialog_add_button(cd->gd, GTK_STOCK_OK, _("S_tart"), | |
| 873 cache_manager_render_start_cb, FALSE); | |
| 874 cd->button_stop = generic_dialog_add_button(cd->gd, GTK_STOCK_STOP, NULL, | |
| 875 cache_manager_render_stop_cb, FALSE); | |
| 876 gtk_widget_set_sensitive(cd->button_stop, FALSE); | |
| 877 | |
| 878 generic_dialog_add_message(cd->gd, NULL, _("Create thumbnails"), NULL); | |
| 879 | |
| 880 hbox = pref_box_new(cd->gd->vbox, FALSE, GTK_ORIENTATION_HORIZONTAL, 0); | |
| 881 pref_spacer(hbox, PREF_PAD_INDENT); | |
| 882 cd->group = pref_box_new(hbox, TRUE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP); | |
| 883 | |
| 884 hbox = pref_box_new(cd->group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
| 885 pref_label_new(hbox, _("Folder:")); | |
| 886 | |
| 887 label = tab_completion_new(&cd->entry, path, NULL, NULL); | |
| 888 tab_completion_add_select_button(cd->entry,_("Select folder") , TRUE); | |
| 889 gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, TRUE, 0); | |
| 890 gtk_widget_show(label); | |
| 891 | |
| 892 pref_checkbox_new_int(cd->group, _("Include subfolders"), FALSE, &cd->recurse); | |
| 893 button = pref_checkbox_new_int(cd->group, _("Store thumbnails local to source images"), FALSE, &cd->local); | |
| 333 | 894 gtk_widget_set_sensitive(button, options->thumbnails.spec_standard); |
| 9 | 895 |
| 896 pref_line(cd->gd->vbox, PREF_PAD_SPACE); | |
| 897 hbox = pref_box_new(cd->gd->vbox, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
| 898 | |
| 899 cd->progress = gtk_entry_new(); | |
| 900 GTK_WIDGET_UNSET_FLAGS(cd->progress, GTK_CAN_FOCUS); | |
| 901 gtk_editable_set_editable(GTK_EDITABLE(cd->progress), FALSE); | |
| 902 gtk_entry_set_text(GTK_ENTRY(cd->progress), _("click start to begin")); | |
| 903 gtk_box_pack_start(GTK_BOX(hbox), cd->progress, TRUE, TRUE, 0); | |
| 904 gtk_widget_show(cd->progress); | |
| 905 | |
| 906 cd->spinner = spinner_new(NULL, -1); | |
| 907 gtk_box_pack_start(GTK_BOX(hbox), cd->spinner, FALSE, FALSE, 0); | |
| 908 gtk_widget_show(cd->spinner); | |
| 909 | |
| 910 cd->list = NULL; | |
| 911 | |
| 912 gtk_widget_show(cd->gd->dialog); | |
| 913 } | |
| 914 | |
| 915 | |
| 916 | |
| 917 | |
| 918 static void cache_manager_standard_clean_close_cb(GenericDialog *gd, gpointer data) | |
| 919 { | |
| 920 CleanData *cd = data; | |
| 921 | |
| 922 if (!GTK_WIDGET_SENSITIVE(cd->button_close)) return; | |
| 923 | |
| 924 generic_dialog_close(cd->gd); | |
| 925 | |
| 926 thumb_loader_std_thumb_file_validate_cancel(cd->tl); | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
927 filelist_free(cd->list); |
| 9 | 928 g_free(cd); |
| 929 } | |
| 930 | |
| 931 static void cache_manager_standard_clean_done(CleanData *cd) | |
| 932 { | |
| 933 gtk_widget_set_sensitive(cd->button_stop, FALSE); | |
| 934 gtk_widget_set_sensitive(cd->button_close, TRUE); | |
| 935 | |
| 936 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(cd->progress), 1.0); | |
| 937 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(cd->progress), _("done")); | |
| 938 | |
| 939 if (cd->idle_id != -1) | |
| 940 { | |
| 941 g_source_remove(cd->idle_id); | |
| 942 cd->idle_id = -1; | |
| 943 } | |
| 944 | |
| 945 thumb_loader_std_thumb_file_validate_cancel(cd->tl); | |
| 946 cd->tl = NULL; | |
| 947 | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
948 filelist_free(cd->list); |
| 9 | 949 cd->list = NULL; |
| 950 } | |
| 951 | |
| 952 static void cache_manager_standard_clean_stop_cb(GenericDialog *gd, gpointer data) | |
| 953 { | |
| 954 CleanData *cd = data; | |
| 955 | |
| 956 cache_manager_standard_clean_done(cd); | |
| 957 } | |
| 958 | |
| 959 static gint cache_manager_standard_clean_clear_cb(gpointer data) | |
| 960 { | |
| 961 CleanData *cd = data; | |
| 962 | |
| 963 if (cd->list) | |
| 964 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
965 FileData *next_fd; |
| 9 | 966 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
967 next_fd = cd->list->data; |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
968 cd->list = g_list_remove(cd->list, next_fd); |
| 9 | 969 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
970 DEBUG_1("thumb removed: %s", next_fd->path); |
| 9 | 971 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
972 unlink_file(next_fd->path); |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
973 file_data_unref(next_fd); |
| 9 | 974 |
| 975 cd->count_done++; | |
| 976 if (cd->count_total != 0) | |
| 977 { | |
| 978 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(cd->progress), | |
| 979 (gdouble)cd->count_done / cd->count_total); | |
| 980 } | |
| 981 | |
| 982 return TRUE; | |
| 983 } | |
| 984 | |
| 985 cd->idle_id = -1; | |
| 986 cache_manager_standard_clean_done(cd); | |
| 987 return FALSE; | |
| 988 } | |
| 989 | |
| 990 static void cache_manager_standard_clean_valid_cb(const gchar *path, gint valid, gpointer data) | |
| 991 { | |
| 992 CleanData *cd = data; | |
| 993 | |
| 994 if (path) | |
| 995 { | |
| 996 if (!valid) | |
| 997 { | |
|
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
998 DEBUG_1("thumb cleaned: %s", path); |
| 9 | 999 unlink_file(path); |
| 1000 } | |
| 1001 | |
| 1002 cd->count_done++; | |
| 1003 if (cd->count_total != 0) | |
| 1004 { | |
| 1005 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(cd->progress), | |
| 1006 (gdouble)cd->count_done / cd->count_total); | |
| 1007 } | |
| 1008 } | |
| 1009 | |
| 1010 cd->tl = NULL; | |
| 1011 if (cd->list) | |
| 1012 { | |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
1013 FileData *next_fd; |
| 9 | 1014 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
1015 next_fd = cd->list->data; |
|
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
1016 cd->list = g_list_remove(cd->list, next_fd); |
| 442 | 1017 |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
1018 cd->tl = thumb_loader_std_thumb_file_validate(next_fd->path, cd->days, |
| 9 | 1019 cache_manager_standard_clean_valid_cb, cd); |
|
576
9dc0513837b5
dropped path_list functions, use filelist functions everywhere
nadvornik
parents:
533
diff
changeset
|
1020 file_data_unref(next_fd); |
| 9 | 1021 } |
| 1022 else | |
| 1023 { | |
| 1024 cache_manager_standard_clean_done(cd); | |
| 1025 } | |
| 1026 } | |
| 1027 | |
| 1028 static void cache_manager_standard_clean_start_cb(GenericDialog *gd, gpointer data) | |
| 1029 { | |
| 1030 CleanData *cd = data; | |
| 1031 GList *list; | |
| 1032 gchar *path; | |
| 783 | 1033 FileData *dir_fd; |
| 9 | 1034 |
| 1035 if (cd->list || !GTK_WIDGET_SENSITIVE(cd->button_start)) return; | |
| 1036 | |
| 1037 gtk_widget_set_sensitive(cd->button_start, FALSE); | |
| 1038 gtk_widget_set_sensitive(cd->button_stop, TRUE); | |
| 1039 gtk_widget_set_sensitive(cd->button_close, FALSE); | |
| 1040 | |
| 1041 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(cd->progress), _("running...")); | |
| 1042 | |
|
707
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1043 path = g_build_filename(homedir(), THUMB_FOLDER_GLOBAL, THUMB_FOLDER_NORMAL, NULL); |
| 783 | 1044 dir_fd = file_data_new_simple(path); |
| 1045 filelist_read(dir_fd, &list, NULL); | |
| 9 | 1046 cd->list = list; |
| 783 | 1047 file_data_unref(dir_fd); |
| 9 | 1048 g_free(path); |
| 1049 | |
|
707
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1050 path = g_build_filename(homedir(), THUMB_FOLDER_GLOBAL, THUMB_FOLDER_LARGE, NULL); |
| 783 | 1051 dir_fd = file_data_new_simple(path); |
| 1052 filelist_read(dir_fd, &list, NULL); | |
| 9 | 1053 cd->list = g_list_concat(cd->list, list); |
| 783 | 1054 file_data_unref(dir_fd); |
| 9 | 1055 g_free(path); |
| 1056 | |
|
707
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1057 path = g_build_filename(homedir(), THUMB_FOLDER_GLOBAL, THUMB_FOLDER_FAIL, NULL); |
| 783 | 1058 dir_fd = file_data_new_simple(path); |
| 1059 filelist_read(dir_fd, &list, NULL); | |
| 9 | 1060 cd->list = g_list_concat(cd->list, list); |
| 783 | 1061 file_data_unref(dir_fd); |
| 9 | 1062 g_free(path); |
| 1063 | |
| 1064 cd->count_total = g_list_length(cd->list); | |
| 1065 cd->count_done = 0; | |
| 1066 | |
| 1067 /* start iterating */ | |
| 1068 if (cd->clear) | |
| 1069 { | |
| 1070 cd->idle_id = g_idle_add(cache_manager_standard_clean_clear_cb, cd); | |
| 1071 } | |
| 1072 else | |
| 1073 { | |
| 1074 cache_manager_standard_clean_valid_cb(NULL, TRUE, cd); | |
| 1075 } | |
| 1076 } | |
| 1077 | |
| 1078 static void cache_manager_standard_process(GtkWidget *widget, gint clear) | |
| 1079 { | |
| 1080 CleanData *cd; | |
| 1081 const gchar *stock_id; | |
| 1082 const gchar *msg; | |
| 1083 | |
| 1084 cd = g_new0(CleanData, 1); | |
| 1085 cd->clear = clear; | |
| 1086 | |
| 1087 if (clear) | |
| 1088 { | |
| 1089 stock_id = GTK_STOCK_DELETE; | |
| 1090 msg = _("Clearing thumbnails..."); | |
| 1091 } | |
| 1092 else | |
| 1093 { | |
| 1094 stock_id = GTK_STOCK_CLEAR; | |
| 1095 msg = _("Removing old thumbnails..."); | |
| 1096 } | |
| 1097 | |
| 1098 cd->gd = generic_dialog_new(_("Maintenance"), | |
|
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:
1148
diff
changeset
|
1099 "standard_maintenance", |
| 9 | 1100 widget, FALSE, |
| 1101 NULL, cd); | |
| 1102 cd->gd->cancel_cb = cache_manager_standard_clean_close_cb; | |
| 1103 cd->button_close = generic_dialog_add_button(cd->gd, GTK_STOCK_CLOSE, NULL, | |
| 1104 cache_manager_standard_clean_close_cb, FALSE); | |
| 1105 cd->button_start = generic_dialog_add_button(cd->gd, GTK_STOCK_OK, _("S_tart"), | |
| 1106 cache_manager_standard_clean_start_cb, FALSE); | |
| 1107 cd->button_stop = generic_dialog_add_button(cd->gd, GTK_STOCK_STOP, NULL, | |
| 1108 cache_manager_standard_clean_stop_cb, FALSE); | |
| 1109 gtk_widget_set_sensitive(cd->button_stop, FALSE); | |
| 1110 | |
| 1111 generic_dialog_add_message(cd->gd, stock_id, msg, NULL); | |
| 1112 | |
| 1113 cd->progress = gtk_progress_bar_new(); | |
| 1114 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(cd->progress), _("click start to begin")); | |
| 1115 gtk_box_pack_start(GTK_BOX(cd->gd->vbox), cd->progress, FALSE, FALSE, 0); | |
| 1116 gtk_widget_show(cd->progress); | |
| 1117 | |
| 1118 cd->days = 30; | |
| 1119 cd->tl = NULL; | |
| 1120 cd->idle_id = -1; | |
| 1121 | |
| 1122 gtk_widget_show(cd->gd->dialog); | |
| 1123 } | |
| 1124 | |
| 1125 static void cache_manager_standard_clean_cb(GtkWidget *widget, gpointer data) | |
| 1126 { | |
| 1127 cache_manager_standard_process(widget, FALSE); | |
| 1128 } | |
| 1129 | |
| 1130 static void cache_manager_standard_clear_cb(GtkWidget *widget, gpointer data) | |
| 1131 { | |
| 1132 cache_manager_standard_process(widget, TRUE); | |
| 1133 } | |
| 1134 | |
| 1135 | |
|
229
c44b98370dba
Use more generic names for some cache manager callback functions.
zas_
parents:
228
diff
changeset
|
1136 static void cache_manager_main_clean_cb(GtkWidget *widget, gpointer data) |
| 9 | 1137 { |
| 1138 cache_maintain_home(FALSE, FALSE, widget); | |
| 1139 } | |
| 1140 | |
| 1141 | |
| 1142 static void dummy_cancel_cb(GenericDialog *gd, gpointer data) | |
| 1143 { | |
| 1144 /* no op, only so cancel button appears */ | |
| 1145 } | |
| 1146 | |
|
229
c44b98370dba
Use more generic names for some cache manager callback functions.
zas_
parents:
228
diff
changeset
|
1147 static void cache_manager_main_clear_ok_cb(GenericDialog *gd, gpointer data) |
| 9 | 1148 { |
| 1149 cache_maintain_home(FALSE, TRUE, NULL); | |
| 1150 } | |
| 1151 | |
|
229
c44b98370dba
Use more generic names for some cache manager callback functions.
zas_
parents:
228
diff
changeset
|
1152 void cache_manager_main_clear_confirm(GtkWidget *parent) |
| 9 | 1153 { |
| 1154 GenericDialog *gd; | |
| 1155 | |
| 1156 gd = generic_dialog_new(_("Clear cache"), | |
|
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:
1148
diff
changeset
|
1157 "clear_cache", parent, TRUE, |
| 9 | 1158 dummy_cancel_cb, NULL); |
| 1159 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Clear cache"), | |
| 1160 _("This will remove all thumbnails that have\nbeen saved to disk, continue?")); | |
|
229
c44b98370dba
Use more generic names for some cache manager callback functions.
zas_
parents:
228
diff
changeset
|
1161 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, cache_manager_main_clear_ok_cb, TRUE); |
| 9 | 1162 |
| 1163 gtk_widget_show(gd->dialog); | |
| 1164 } | |
| 1165 | |
|
229
c44b98370dba
Use more generic names for some cache manager callback functions.
zas_
parents:
228
diff
changeset
|
1166 static void cache_manager_main_clear_cb(GtkWidget *widget, gpointer data) |
| 9 | 1167 { |
|
229
c44b98370dba
Use more generic names for some cache manager callback functions.
zas_
parents:
228
diff
changeset
|
1168 cache_manager_main_clear_confirm(widget); |
| 9 | 1169 } |
| 1170 | |
| 1171 static void cache_manager_render_cb(GtkWidget *widget, gpointer data) | |
| 1172 { | |
|
1074
ba2a41f053e6
Let Create thumbnails start in current directory (fallback to home directory if not available) as requested by Marcin Zajaczkowski (feature request 2166691).
zas_
parents:
1055
diff
changeset
|
1173 const gchar *path = layout_get_path(NULL); |
|
ba2a41f053e6
Let Create thumbnails start in current directory (fallback to home directory if not available) as requested by Marcin Zajaczkowski (feature request 2166691).
zas_
parents:
1055
diff
changeset
|
1174 |
|
ba2a41f053e6
Let Create thumbnails start in current directory (fallback to home directory if not available) as requested by Marcin Zajaczkowski (feature request 2166691).
zas_
parents:
1055
diff
changeset
|
1175 if (!path || !*path) path = homedir(); |
|
ba2a41f053e6
Let Create thumbnails start in current directory (fallback to home directory if not available) as requested by Marcin Zajaczkowski (feature request 2166691).
zas_
parents:
1055
diff
changeset
|
1176 cache_manager_render_dialog(widget, path); |
| 9 | 1177 } |
| 1178 | |
| 1179 static void cache_manager_metadata_clean_cb(GtkWidget *widget, gpointer data) | |
| 1180 { | |
| 1181 cache_maintain_home(TRUE, FALSE, widget); | |
| 1182 } | |
| 1183 | |
| 1184 | |
| 1185 static CacheManager *cache_manager = NULL; | |
| 1186 | |
| 1187 static void cache_manager_close_cb(GenericDialog *gd, gpointer data) | |
| 1188 { | |
| 1189 generic_dialog_close(gd); | |
| 1190 | |
| 1191 g_free(cache_manager); | |
| 1192 cache_manager = NULL; | |
| 1193 } | |
| 1194 | |
|
707
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1195 static GtkWidget *cache_manager_location_label(GtkWidget *group, const gchar *subdir) |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1196 { |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1197 GtkWidget *label; |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1198 gchar *buf; |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1199 gchar *path; |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1200 |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1201 path = g_build_filename(homedir(), subdir, NULL); |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1202 buf = g_strdup_printf(_("Location: %s"), path); |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1203 g_free(path); |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1204 label = pref_label_new(group, buf); |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1205 g_free(buf); |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1206 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5); |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1207 |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1208 return label; |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1209 } |
|
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1210 |
| 9 | 1211 void cache_manager_show(void) |
| 1212 { | |
| 1213 GenericDialog *gd; | |
| 1214 GtkWidget *group; | |
| 1215 GtkWidget *button; | |
| 1216 GtkWidget *table; | |
| 1217 GtkSizeGroup *sizegroup; | |
| 1218 | |
| 1219 if (cache_manager) | |
| 1220 { | |
| 1221 gtk_window_present(GTK_WINDOW(cache_manager->dialog->dialog)); | |
| 1222 return; | |
| 1223 } | |
| 1224 | |
| 1225 cache_manager = g_new0(CacheManager, 1); | |
| 1226 | |
| 675 | 1227 cache_manager->dialog = generic_dialog_new(_("Cache Maintenance"), |
|
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:
1148
diff
changeset
|
1228 "cache_manager", |
| 9 | 1229 NULL, FALSE, |
| 1230 NULL, cache_manager); | |
| 1231 gd = cache_manager->dialog; | |
| 1232 | |
| 1233 gd->cancel_cb = cache_manager_close_cb; | |
| 1234 generic_dialog_add_button(gd, GTK_STOCK_CLOSE, NULL, | |
| 1235 cache_manager_close_cb, FALSE); | |
| 1236 | |
| 1237 generic_dialog_add_message(gd, NULL, _("Cache and Data Maintenance"), NULL); | |
| 1238 | |
| 1239 sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
| 1240 | |
|
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1241 group = pref_group_new(gd->vbox, FALSE, _("Thumbnail cache"), GTK_ORIENTATION_VERTICAL); |
| 9 | 1242 |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1074
diff
changeset
|
1243 cache_manager_location_label(group, get_thumbnails_cache_dir()); |
| 9 | 1244 |
| 1245 table = pref_table_new(group, 2, 2, FALSE, FALSE); | |
| 1246 | |
| 1247 button = pref_table_button(table, 0, 0, GTK_STOCK_CLEAR, _("Clean up"), FALSE, | |
|
229
c44b98370dba
Use more generic names for some cache manager callback functions.
zas_
parents:
228
diff
changeset
|
1248 G_CALLBACK(cache_manager_main_clean_cb), cache_manager); |
| 9 | 1249 gtk_size_group_add_widget(sizegroup, button); |
| 1250 pref_table_label(table, 1, 0, _("Remove orphaned or outdated thumbnails."), 0.0); | |
| 1251 | |
| 1252 button = pref_table_button(table, 0, 1, GTK_STOCK_DELETE, _("Clear cache"), FALSE, | |
|
229
c44b98370dba
Use more generic names for some cache manager callback functions.
zas_
parents:
228
diff
changeset
|
1253 G_CALLBACK(cache_manager_main_clear_cb), cache_manager); |
| 9 | 1254 gtk_size_group_add_widget(sizegroup, button); |
| 1255 pref_table_label(table, 1, 1, _("Delete all cached thumbnails."), 0.0); | |
| 1256 | |
| 1257 | |
| 1258 group = pref_group_new(gd->vbox, FALSE, _("Shared thumbnail cache"), GTK_ORIENTATION_VERTICAL); | |
| 1259 | |
|
707
41c17c66e63b
Use g_build_filename() and move location label creation from cache_manager_show() to new cache_manager_location_label().
zas_
parents:
675
diff
changeset
|
1260 cache_manager_location_label(group, THUMB_FOLDER_GLOBAL); |
| 9 | 1261 |
| 1262 table = pref_table_new(group, 2, 2, FALSE, FALSE); | |
| 1263 | |
| 1264 button = pref_table_button(table, 0, 0, GTK_STOCK_CLEAR, _("Clean up"), FALSE, | |
| 1265 G_CALLBACK(cache_manager_standard_clean_cb), cache_manager); | |
| 1266 gtk_size_group_add_widget(sizegroup, button); | |
| 1267 pref_table_label(table, 1, 0, _("Remove orphaned or outdated thumbnails."), 0.0); | |
| 1268 | |
| 1269 button = pref_table_button(table, 0, 1, GTK_STOCK_DELETE, _("Clear cache"), FALSE, | |
| 1270 G_CALLBACK(cache_manager_standard_clear_cb), cache_manager); | |
| 1271 gtk_size_group_add_widget(sizegroup, button); | |
| 1272 pref_table_label(table, 1, 1, _("Delete all cached thumbnails."), 0.0); | |
| 1273 | |
| 1274 group = pref_group_new(gd->vbox, FALSE, _("Create thumbnails"), GTK_ORIENTATION_VERTICAL); | |
| 1275 | |
| 1276 table = pref_table_new(group, 2, 1, FALSE, FALSE); | |
| 1277 | |
| 1278 button = pref_table_button(table, 0, 1, GTK_STOCK_EXECUTE, _("Render"), FALSE, | |
| 1279 G_CALLBACK(cache_manager_render_cb), cache_manager); | |
| 1280 gtk_size_group_add_widget(sizegroup, button); | |
| 1281 pref_table_label(table, 1, 1, _("Render thumbnails for a specific folder."), 0.0); | |
| 1282 | |
| 1283 group = pref_group_new(gd->vbox, FALSE, _("Metadata"), GTK_ORIENTATION_VERTICAL); | |
|
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1284 |
|
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1074
diff
changeset
|
1285 cache_manager_location_label(group, get_metadata_cache_dir()); |
| 9 | 1286 |
| 1287 table = pref_table_new(group, 2, 1, FALSE, FALSE); | |
| 1288 | |
| 1289 button = pref_table_button(table, 0, 0, GTK_STOCK_CLEAR, _("Clean up"), FALSE, | |
| 1290 G_CALLBACK(cache_manager_metadata_clean_cb), cache_manager); | |
| 1291 gtk_size_group_add_widget(sizegroup, button); | |
| 1292 pref_table_label(table, 1, 0, _("Remove orphaned keywords and comments."), 0.0); | |
| 1293 | |
| 1294 gtk_widget_show(cache_manager->dialog->dialog); | |
| 1295 } | |
|
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
838
diff
changeset
|
1296 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |
