Mercurial > geeqie.yaz
annotate src/filedata.c @ 845:06929cbcd796
renamed fd->pixbuf to fd->thumb_pixbuf
author | nadvornik |
---|---|
date | Sat, 21 Jun 2008 11:05:55 +0000 |
parents | 8620e6934cfb |
children | 8911a4f0e56c |
rev | line source |
---|---|
586 | 1 /* |
2 * Geeqie | |
3 * (C) 2006 John Ellis | |
4 * Copyright (C) 2008 The Geeqie Team | |
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 | |
14 #include "main.h" | |
15 #include "filedata.h" | |
16 | |
17 #include "filefilter.h" | |
18 #include "cache.h" | |
19 #include "rcfile.h" | |
20 #include "secure_save.h" | |
21 #include "thumb_standard.h" | |
22 #include "ui_fileops.h" | |
23 | |
24 | |
785 | 25 static GHashTable *file_data_pool = NULL; |
26 | |
586 | 27 static gint sidecar_file_priority(const gchar *path); |
28 | |
29 | |
30 /* | |
31 *----------------------------------------------------------------------------- | |
32 * text conversion utils | |
33 *----------------------------------------------------------------------------- | |
34 */ | |
35 | |
36 gchar *text_from_size(gint64 size) | |
37 { | |
38 gchar *a, *b; | |
39 gchar *s, *d; | |
40 gint l, n, i; | |
41 | |
42 /* what I would like to use is printf("%'d", size) | |
43 * BUT: not supported on every libc :( | |
44 */ | |
45 if (size > G_MAXUINT) | |
46 { | |
47 /* the %lld conversion is not valid in all libcs, so use a simple work-around */ | |
48 a = g_strdup_printf("%d%09d", (guint)(size / 1000000000), (guint)(size % 1000000000)); | |
49 } | |
50 else | |
51 { | |
52 a = g_strdup_printf("%d", (guint)size); | |
53 } | |
54 l = strlen(a); | |
55 n = (l - 1)/ 3; | |
56 if (n < 1) return a; | |
57 | |
58 b = g_new(gchar, l + n + 1); | |
59 | |
60 s = a; | |
61 d = b; | |
62 i = l - n * 3; | |
63 while (*s != '\0') | |
64 { | |
65 if (i < 1) | |
66 { | |
67 i = 3; | |
68 *d = ','; | |
69 d++; | |
70 } | |
71 | |
72 *d = *s; | |
73 s++; | |
74 d++; | |
75 i--; | |
76 } | |
77 *d = '\0'; | |
78 | |
79 g_free(a); | |
80 return b; | |
81 } | |
82 | |
83 gchar *text_from_size_abrev(gint64 size) | |
84 { | |
85 if (size < (gint64)1024) | |
86 { | |
87 return g_strdup_printf(_("%d bytes"), (gint)size); | |
88 } | |
89 if (size < (gint64)1048576) | |
90 { | |
91 return g_strdup_printf(_("%.1f K"), (double)size / 1024.0); | |
92 } | |
93 if (size < (gint64)1073741824) | |
94 { | |
95 return g_strdup_printf(_("%.1f MB"), (double)size / 1048576.0); | |
96 } | |
97 | |
98 /* to avoid overflowing the double, do division in two steps */ | |
99 size /= 1048576; | |
100 return g_strdup_printf(_("%.1f GB"), (double)size / 1024.0); | |
101 } | |
102 | |
103 /* note: returned string is valid until next call to text_from_time() */ | |
104 const gchar *text_from_time(time_t t) | |
105 { | |
106 static gchar *ret = NULL; | |
107 gchar buf[128]; | |
108 gint buflen; | |
109 struct tm *btime; | |
110 GError *error = NULL; | |
111 | |
112 btime = localtime(&t); | |
113 | |
114 /* the %x warning about 2 digit years is not an error */ | |
115 buflen = strftime(buf, sizeof(buf), "%x %H:%M", btime); | |
116 if (buflen < 1) return ""; | |
117 | |
118 g_free(ret); | |
119 ret = g_locale_to_utf8(buf, buflen, NULL, NULL, &error); | |
120 if (error) | |
121 { | |
673
fbebf5cf4a55
Do not use printf() directly but use new wrapper function log_printf() instead.
zas_
parents:
671
diff
changeset
|
122 log_printf("Error converting locale strftime to UTF-8: %s\n", error->message); |
586 | 123 g_error_free(error); |
124 return ""; | |
125 } | |
126 | |
127 return ret; | |
128 } | |
129 | |
130 /* | |
131 *----------------------------------------------------------------------------- | |
132 * file info struct | |
133 *----------------------------------------------------------------------------- | |
134 */ | |
135 | |
136 FileData *file_data_merge_sidecar_files(FileData *target, FileData *source); | |
137 static void file_data_check_sidecars(FileData *fd); | |
138 FileData *file_data_disconnect_sidecar_file(FileData *target, FileData *sfd); | |
139 | |
140 | |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
141 void file_data_increment_version(FileData *fd) |
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
142 { |
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
143 fd->version++; |
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
144 if (fd->parent) fd->parent->version++; |
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
145 } |
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
146 |
785 | 147 static void file_data_set_collate_keys(FileData *fd) |
148 { | |
149 gchar *caseless_name; | |
150 | |
151 g_assert(g_utf8_validate(fd->name, -1, NULL)); | |
152 | |
153 caseless_name = g_utf8_casefold(fd->name, -1); | |
154 | |
155 g_free(fd->collate_key_name); | |
156 g_free(fd->collate_key_name_nocase); | |
157 | |
158 #if GLIB_CHECK_VERSION(2, 8, 0) | |
159 fd->collate_key_name = g_utf8_collate_key_for_filename(fd->name, -1); | |
160 fd->collate_key_name_nocase = g_utf8_collate_key_for_filename(caseless_name, -1); | |
161 #else | |
162 fd->collate_key_name = g_utf8_collate_key(fd->name, -1); | |
163 fd->collate_key_name_nocase = g_utf8_collate_key(caseless_name, -1); | |
164 #endif | |
165 g_free(caseless_name); | |
166 } | |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
167 |
586 | 168 static void file_data_set_path(FileData *fd, const gchar *path) |
169 { | |
790 | 170 g_assert(path /* && *path*/); /* view_dir_tree uses FileData with zero length path */ |
785 | 171 g_assert(file_data_pool); |
172 | |
173 g_free(fd->path); | |
174 | |
175 if (fd->original_path) | |
176 { | |
177 g_hash_table_remove(file_data_pool, fd->original_path); | |
178 g_free(fd->original_path); | |
179 } | |
180 fd->original_path = g_strdup(path); | |
181 g_hash_table_insert(file_data_pool, fd->original_path, fd); | |
586 | 182 |
725 | 183 if (strcmp(path, G_DIR_SEPARATOR_S) == 0) |
586 | 184 { |
185 fd->path = g_strdup(path); | |
186 fd->name = fd->path; | |
187 fd->extension = fd->name + 1; | |
785 | 188 file_data_set_collate_keys(fd); |
586 | 189 return; |
190 } | |
191 | |
192 fd->path = g_strdup(path); | |
193 fd->name = filename_from_path(fd->path); | |
194 | |
195 if (strcmp(fd->name, "..") == 0) | |
196 { | |
197 gchar *dir = remove_level_from_path(path); | |
198 g_free(fd->path); | |
199 fd->path = remove_level_from_path(dir); | |
200 g_free(dir); | |
201 fd->name = ".."; | |
202 fd->extension = fd->name + 2; | |
785 | 203 file_data_set_collate_keys(fd); |
586 | 204 return; |
205 } | |
206 else if (strcmp(fd->name, ".") == 0) | |
207 { | |
208 g_free(fd->path); | |
209 fd->path = remove_level_from_path(path); | |
210 fd->name = "."; | |
211 fd->extension = fd->name + 1; | |
785 | 212 file_data_set_collate_keys(fd); |
586 | 213 return; |
214 } | |
215 | |
216 fd->extension = extension_from_path(fd->path); | |
217 if (fd->extension == NULL) | |
218 fd->extension = fd->name + strlen(fd->name); | |
785 | 219 |
220 file_data_set_collate_keys(fd); | |
586 | 221 } |
222 | |
801 | 223 static gboolean file_data_check_changed_files_recursive(FileData *fd, struct stat *st) |
586 | 224 { |
801 | 225 gboolean ret = FALSE; |
586 | 226 GList *work; |
806 | 227 |
586 | 228 if (fd->size != st->st_size || |
229 fd->date != st->st_mtime) | |
230 { | |
231 fd->size = st->st_size; | |
232 fd->date = st->st_mtime; | |
845 | 233 if (fd->thumb_pixbuf) g_object_unref(fd->thumb_pixbuf); |
234 fd->thumb_pixbuf = NULL; | |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
235 file_data_increment_version(fd); |
800 | 236 file_data_send_notification(fd, NOTIFY_TYPE_REREAD); |
801 | 237 ret = TRUE; |
586 | 238 } |
239 | |
240 work = fd->sidecar_files; | |
241 while (work) | |
242 { | |
243 FileData *sfd = work->data; | |
244 struct stat st; | |
801 | 245 work = work->next; |
586 | 246 |
247 if (!stat_utf8(sfd->path, &st)) | |
248 { | |
801 | 249 fd->size = 0; |
250 fd->date = 0; | |
586 | 251 file_data_disconnect_sidecar_file(fd, sfd); |
801 | 252 ret = TRUE; |
253 continue; | |
586 | 254 } |
255 | |
801 | 256 ret |= file_data_check_changed_files_recursive(sfd, &st); |
586 | 257 } |
801 | 258 return ret; |
259 } | |
260 | |
261 | |
262 static gboolean file_data_check_changed_files(FileData *fd) | |
263 { | |
264 gboolean ret = FALSE; | |
265 struct stat st; | |
806 | 266 |
801 | 267 if (fd->parent) fd = fd->parent; |
268 | |
269 if (!stat_utf8(fd->path, &st)) | |
270 { | |
806 | 271 GList *work; |
272 FileData *sfd = NULL; | |
273 | |
801 | 274 /* parent is missing, we have to rebuild whole group */ |
275 ret = TRUE; | |
276 fd->size = 0; | |
277 fd->date = 0; | |
806 | 278 |
279 work = fd->sidecar_files; | |
801 | 280 while (work) |
281 { | |
282 sfd = work->data; | |
283 work = work->next; | |
284 | |
285 file_data_disconnect_sidecar_file(fd, sfd); | |
286 } | |
287 if (sfd) file_data_check_sidecars(sfd); /* this will group the sidecars back together */ | |
288 file_data_send_notification(fd, NOTIFY_TYPE_REREAD); | |
289 } | |
806 | 290 else |
291 { | |
801 | 292 ret |= file_data_check_changed_files_recursive(fd, &st); |
806 | 293 } |
294 | |
801 | 295 return ret; |
586 | 296 } |
297 | |
298 static FileData *file_data_new(const gchar *path_utf8, struct stat *st, gboolean check_sidecars) | |
299 { | |
300 FileData *fd; | |
301 | |
302 DEBUG_2("file_data_new: '%s' %d", path_utf8, check_sidecars); | |
303 | |
304 if (!file_data_pool) | |
305 file_data_pool = g_hash_table_new(g_str_hash, g_str_equal); | |
306 | |
307 fd = g_hash_table_lookup(file_data_pool, path_utf8); | |
308 if (fd) | |
309 { | |
801 | 310 gboolean changed; |
806 | 311 |
801 | 312 if (fd->parent) |
313 changed = file_data_check_changed_files(fd); | |
314 else | |
315 changed = file_data_check_changed_files_recursive(fd, st); | |
316 if (changed && check_sidecars && sidecar_file_priority(fd->extension)) | |
317 file_data_check_sidecars(fd); | |
318 DEBUG_2("file_data_pool hit: '%s' %s", fd->path, changed ? "(changed)" : ""); | |
806 | 319 |
586 | 320 return file_data_ref(fd); |
321 } | |
322 | |
323 fd = g_new0(FileData, 1); | |
785 | 324 |
325 fd->path = NULL; | |
326 fd->name = NULL; | |
327 fd->collate_key_name = NULL; | |
328 fd->collate_key_name_nocase = NULL; | |
329 fd->original_path = NULL; | |
586 | 330 |
331 fd->size = st->st_size; | |
332 fd->date = st->st_mtime; | |
845 | 333 fd->thumb_pixbuf = NULL; |
586 | 334 fd->sidecar_files = NULL; |
335 fd->ref = 1; | |
336 fd->magick = 0x12345678; | |
337 | |
785 | 338 file_data_set_path(fd, path_utf8); /* set path, name, collate_key_*, original_path */ |
586 | 339 |
340 if (check_sidecars && sidecar_file_priority(fd->extension)) | |
341 file_data_check_sidecars(fd); | |
785 | 342 |
586 | 343 return fd; |
344 } | |
345 | |
346 static void file_data_check_sidecars(FileData *fd) | |
347 { | |
348 int base_len = fd->extension - fd->path; | |
349 GString *fname = g_string_new_len(fd->path, base_len); | |
350 FileData *parent_fd = NULL; | |
351 GList *work = sidecar_ext_get_list(); | |
806 | 352 |
586 | 353 while (work) |
354 { | |
355 /* check for possible sidecar files; | |
356 the sidecar files created here are referenced only via fd->sidecar_files or fd->parent, | |
357 they have fd->ref set to 0 and file_data unref must chack and free them all together | |
358 (using fd->ref would cause loops and leaks) | |
359 */ | |
360 | |
361 FileData *new_fd; | |
806 | 362 gchar *ext = work->data; |
586 | 363 |
364 work = work->next; | |
365 | |
366 if (strcmp(ext, fd->extension) == 0) | |
367 { | |
368 new_fd = fd; /* processing the original file */ | |
369 } | |
370 else | |
371 { | |
372 struct stat nst; | |
373 g_string_truncate(fname, base_len); | |
374 g_string_append(fname, ext); | |
375 | |
376 if (!stat_utf8(fname->str, &nst)) | |
377 continue; | |
378 | |
379 new_fd = file_data_new(fname->str, &nst, FALSE); | |
380 new_fd->ref--; /* do not use ref here */ | |
381 } | |
382 | |
383 if (!parent_fd) | |
384 parent_fd = new_fd; /* parent is the one with the highest prio, found first */ | |
385 else | |
386 file_data_merge_sidecar_files(parent_fd, new_fd); | |
387 } | |
388 g_string_free(fname, TRUE); | |
389 } | |
390 | |
391 | |
392 static FileData *file_data_new_local(const gchar *path, struct stat *st, gboolean check_sidecars) | |
393 { | |
394 gchar *path_utf8 = path_to_utf8(path); | |
395 FileData *ret = file_data_new(path_utf8, st, check_sidecars); | |
806 | 396 |
586 | 397 g_free(path_utf8); |
398 return ret; | |
399 } | |
400 | |
401 FileData *file_data_new_simple(const gchar *path_utf8) | |
402 { | |
403 struct stat st; | |
404 | |
405 if (!stat_utf8(path_utf8, &st)) | |
406 { | |
407 st.st_size = 0; | |
408 st.st_mtime = 0; | |
409 } | |
410 | |
411 return file_data_new(path_utf8, &st, TRUE); | |
412 } | |
413 | |
414 FileData *file_data_add_sidecar_file(FileData *target, FileData *sfd) | |
415 { | |
416 sfd->parent = target; | |
417 if(!g_list_find(target->sidecar_files, sfd)) | |
418 target->sidecar_files = g_list_prepend(target->sidecar_files, sfd); | |
801 | 419 file_data_increment_version(sfd); /* increments both sfd and target */ |
586 | 420 return target; |
421 } | |
422 | |
423 | |
424 FileData *file_data_merge_sidecar_files(FileData *target, FileData *source) | |
425 { | |
426 GList *work; | |
806 | 427 |
586 | 428 file_data_add_sidecar_file(target, source); |
429 | |
430 work = source->sidecar_files; | |
431 while (work) | |
432 { | |
433 FileData *sfd = work->data; | |
434 file_data_add_sidecar_file(target, sfd); | |
435 work = work->next; | |
436 } | |
437 | |
438 g_list_free(source->sidecar_files); | |
439 source->sidecar_files = NULL; | |
440 | |
441 target->sidecar_files = filelist_sort(target->sidecar_files, SORT_NAME, TRUE); | |
806 | 442 |
586 | 443 return target; |
444 } | |
445 | |
446 | |
447 FileData *file_data_ref(FileData *fd) | |
448 { | |
449 if (fd == NULL) return NULL; | |
450 | |
451 // return g_memdup(fd, sizeof(FileData)); | |
452 g_assert(fd->magick == 0x12345678); | |
453 fd->ref++; | |
454 return fd; | |
455 } | |
456 | |
457 static void file_data_free(FileData *fd) | |
458 { | |
459 g_assert(fd->magick == 0x12345678); | |
460 g_assert(fd->ref == 0); | |
461 | |
462 g_hash_table_remove(file_data_pool, fd->original_path); | |
463 | |
464 g_free(fd->path); | |
465 g_free(fd->original_path); | |
785 | 466 g_free(fd->collate_key_name); |
467 g_free(fd->collate_key_name_nocase); | |
845 | 468 if (fd->thumb_pixbuf) g_object_unref(fd->thumb_pixbuf); |
586 | 469 |
470 g_assert(fd->sidecar_files == NULL); /* sidecar files must be freed before calling this */ | |
471 | |
472 file_data_change_info_free(NULL, fd); | |
473 g_free(fd); | |
474 } | |
475 | |
476 void file_data_unref(FileData *fd) | |
477 { | |
478 if (fd == NULL) return; | |
479 g_assert(fd->magick == 0x12345678); | |
480 | |
481 fd->ref--; | |
482 DEBUG_2("file_data_unref (%d): '%s'", fd->ref, fd->path); | |
483 | |
484 if (fd->ref == 0) | |
485 { | |
806 | 486 GList *work; |
586 | 487 FileData *parent = fd->parent ? fd->parent : fd; |
806 | 488 |
586 | 489 if (parent->ref > 0) |
490 return; | |
491 | |
492 work = parent->sidecar_files; | |
493 while (work) | |
494 { | |
495 FileData *sfd = work->data; | |
496 if (sfd->ref > 0) | |
497 return; | |
498 work = work->next; | |
499 } | |
500 | |
501 /* none of parent/children is referenced, we can free everything */ | |
502 | |
503 DEBUG_2("file_data_unref: deleting '%s', parent '%s'", fd->path, parent->path); | |
504 | |
505 work = parent->sidecar_files; | |
506 while (work) | |
507 { | |
508 FileData *sfd = work->data; | |
509 file_data_free(sfd); | |
510 work = work->next; | |
511 } | |
512 | |
513 g_list_free(parent->sidecar_files); | |
514 parent->sidecar_files = NULL; | |
515 | |
516 file_data_free(parent); | |
517 } | |
518 } | |
519 | |
520 FileData *file_data_disconnect_sidecar_file(FileData *target, FileData *sfd) | |
521 { | |
522 sfd->parent = target; | |
523 g_assert(g_list_find(target->sidecar_files, sfd)); | |
801 | 524 |
525 file_data_increment_version(sfd); /* increments both sfd and target */ | |
586 | 526 |
527 target->sidecar_files = g_list_remove(target->sidecar_files, sfd); | |
528 sfd->parent = NULL; | |
529 | |
806 | 530 if (sfd->ref == 0) |
531 { | |
586 | 532 file_data_free(sfd); |
533 return NULL; | |
806 | 534 } |
586 | 535 |
536 return sfd; | |
537 } | |
538 | |
539 /* compare name without extension */ | |
540 gint file_data_compare_name_without_ext(FileData *fd1, FileData *fd2) | |
541 { | |
542 size_t len1 = fd1->extension - fd1->name; | |
543 size_t len2 = fd2->extension - fd2->name; | |
544 | |
545 if (len1 < len2) return -1; | |
546 if (len1 > len2) return 1; | |
547 | |
785 | 548 return strncmp(fd1->name, fd2->name, len1); /* FIXME: utf8 */ |
586 | 549 } |
550 | |
551 gboolean file_data_add_change_info(FileData *fd, FileDataChangeType type, const gchar *src, const gchar *dest) | |
552 { | |
553 FileDataChangeInfo *fdci; | |
554 | |
555 if (fd->change) return FALSE; | |
556 | |
557 fdci = g_new0(FileDataChangeInfo, 1); | |
558 fdci->type = type; | |
559 | |
560 if (src) | |
561 fdci->source = g_strdup(src); | |
562 else | |
563 fdci->source = g_strdup(fd->path); | |
564 | |
565 if (dest) | |
566 fdci->dest = g_strdup(dest); | |
567 | |
568 fd->change = fdci; | |
806 | 569 |
586 | 570 return TRUE; |
571 } | |
572 | |
573 void file_data_change_info_free(FileDataChangeInfo *fdci, FileData *fd) | |
574 { | |
575 if (!fdci && fd) | |
576 fdci = fd->change; | |
577 | |
578 if (!fdci) | |
579 return; | |
580 | |
581 g_free(fdci->source); | |
582 g_free(fdci->dest); | |
583 | |
584 g_free(fdci); | |
585 | |
586 if (fd) | |
587 fd->change = NULL; | |
588 } | |
589 | |
590 | |
591 | |
592 | |
593 /* | |
594 *----------------------------------------------------------------------------- | |
595 * sidecar file info struct | |
596 *----------------------------------------------------------------------------- | |
597 */ | |
598 | |
599 | |
600 | |
601 static gint sidecar_file_priority(const gchar *path) | |
602 { | |
603 const char *extension = extension_from_path(path); | |
604 int i = 1; | |
605 GList *work; | |
806 | 606 |
586 | 607 if (extension == NULL) |
608 return 0; | |
609 | |
610 work = sidecar_ext_get_list(); | |
611 | |
612 while (work) { | |
613 gchar *ext = work->data; | |
806 | 614 |
586 | 615 work = work->next; |
616 if (strcmp(extension, ext) == 0) return i; | |
617 i++; | |
618 } | |
619 return 0; | |
620 } | |
621 | |
622 | |
623 /* | |
624 *----------------------------------------------------------------------------- | |
625 * load file list | |
626 *----------------------------------------------------------------------------- | |
627 */ | |
628 | |
629 static SortType filelist_sort_method = SORT_NONE; | |
630 static gint filelist_sort_ascend = TRUE; | |
631 | |
632 | |
633 gint filelist_sort_compare_filedata(FileData *fa, FileData *fb) | |
634 { | |
635 if (!filelist_sort_ascend) | |
636 { | |
637 FileData *tmp = fa; | |
638 fa = fb; | |
639 fb = tmp; | |
640 } | |
641 | |
642 switch (filelist_sort_method) | |
643 { | |
785 | 644 case SORT_NAME: |
645 break; | |
586 | 646 case SORT_SIZE: |
647 if (fa->size < fb->size) return -1; | |
648 if (fa->size > fb->size) return 1; | |
785 | 649 /* fall back to name */ |
586 | 650 break; |
651 case SORT_TIME: | |
652 if (fa->date < fb->date) return -1; | |
653 if (fa->date > fb->date) return 1; | |
785 | 654 /* fall back to name */ |
586 | 655 break; |
656 #ifdef HAVE_STRVERSCMP | |
657 case SORT_NUMBER: | |
658 return strverscmp(fa->name, fb->name); | |
659 break; | |
660 #endif | |
661 default: | |
662 break; | |
663 } | |
785 | 664 |
665 if (options->file_sort.case_sensitive) | |
666 return strcmp(fa->collate_key_name, fb->collate_key_name); | |
667 else | |
668 return strcmp(fa->collate_key_name_nocase, fb->collate_key_name_nocase); | |
586 | 669 } |
670 | |
671 gint filelist_sort_compare_filedata_full(FileData *fa, FileData *fb, SortType method, gint ascend) | |
672 { | |
673 filelist_sort_method = method; | |
674 filelist_sort_ascend = ascend; | |
675 return filelist_sort_compare_filedata(fa, fb); | |
676 } | |
677 | |
678 static gint filelist_sort_file_cb(void *a, void *b) | |
679 { | |
680 return filelist_sort_compare_filedata(a, b); | |
681 } | |
682 | |
683 GList *filelist_sort_full(GList *list, SortType method, gint ascend, GCompareFunc cb) | |
684 { | |
685 filelist_sort_method = method; | |
686 filelist_sort_ascend = ascend; | |
687 return g_list_sort(list, cb); | |
688 } | |
689 | |
690 GList *filelist_insert_sort_full(GList *list, void *data, SortType method, gint ascend, GCompareFunc cb) | |
691 { | |
692 filelist_sort_method = method; | |
693 filelist_sort_ascend = ascend; | |
694 return g_list_insert_sorted(list, data, cb); | |
695 } | |
696 | |
697 GList *filelist_sort(GList *list, SortType method, gint ascend) | |
698 { | |
699 return filelist_sort_full(list, method, ascend, (GCompareFunc) filelist_sort_file_cb); | |
700 } | |
701 | |
702 GList *filelist_insert_sort(GList *list, FileData *fd, SortType method, gint ascend) | |
703 { | |
704 return filelist_insert_sort_full(list, fd, method, ascend, (GCompareFunc) filelist_sort_file_cb); | |
705 } | |
706 | |
707 | |
708 static GList *filelist_filter_out_sidecars(GList *flist) | |
709 { | |
710 GList *work = flist; | |
711 GList *flist_filtered = NULL; | |
712 | |
713 while (work) | |
714 { | |
715 FileData *fd = work->data; | |
806 | 716 |
586 | 717 work = work->next; |
718 if (fd->parent) /* remove fd's that are children */ | |
719 file_data_unref(fd); | |
720 else | |
721 flist_filtered = g_list_prepend(flist_filtered, fd); | |
722 } | |
723 g_list_free(flist); | |
806 | 724 |
586 | 725 return flist_filtered; |
726 } | |
727 | |
783 | 728 static gint filelist_read_real(FileData *dir_fd, GList **files, GList **dirs, gint follow_symlinks) |
586 | 729 { |
730 DIR *dp; | |
731 struct dirent *dir; | |
732 gchar *pathl; | |
779 | 733 GList *dlist = NULL; |
734 GList *flist = NULL; | |
735 int (*stat_func)(const char *path, struct stat *buf); | |
586 | 736 |
779 | 737 g_assert(files || dirs); |
738 | |
739 if (files) *files = NULL; | |
740 if (dirs) *dirs = NULL; | |
586 | 741 |
783 | 742 pathl = path_from_utf8(dir_fd->path); |
779 | 743 if (!pathl) return FALSE; |
744 | |
745 dp = opendir(pathl); | |
746 if (dp == NULL) | |
586 | 747 { |
748 g_free(pathl); | |
749 return FALSE; | |
750 } | |
751 | |
779 | 752 if (follow_symlinks) |
753 stat_func = stat; | |
754 else | |
755 stat_func = lstat; | |
756 | |
586 | 757 while ((dir = readdir(dp)) != NULL) |
758 { | |
779 | 759 struct stat ent_sbuf; |
760 const gchar *name = dir->d_name; | |
761 gchar *filepath; | |
762 | |
763 if (!options->file_filter.show_hidden_files && ishidden(name)) | |
764 continue; | |
765 | |
766 filepath = g_build_filename(pathl, name, NULL); | |
767 if (stat_func(filepath, &ent_sbuf) >= 0) | |
586 | 768 { |
779 | 769 if (S_ISDIR(ent_sbuf.st_mode)) |
586 | 770 { |
779 | 771 /* we ignore the .thumbnails dir for cleanliness */ |
772 if (dirs && | |
773 !(name[0] == '.' && (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'))) && | |
774 strcmp(name, GQ_CACHE_LOCAL_THUMB) != 0 && | |
775 strcmp(name, GQ_CACHE_LOCAL_METADATA) != 0 && | |
776 strcmp(name, THUMB_FOLDER_LOCAL) != 0) | |
586 | 777 { |
779 | 778 dlist = g_list_prepend(dlist, file_data_new_local(filepath, &ent_sbuf, FALSE)); |
586 | 779 } |
780 } | |
779 | 781 else |
782 { | |
783 if (files && filter_name_exists(name)) | |
784 { | |
785 flist = g_list_prepend(flist, file_data_new_local(filepath, &ent_sbuf, TRUE)); | |
786 } | |
787 } | |
586 | 788 } |
779 | 789 g_free(filepath); |
586 | 790 } |
791 | |
792 closedir(dp); | |
779 | 793 |
586 | 794 g_free(pathl); |
795 | |
796 if (dirs) *dirs = dlist; | |
779 | 797 if (files) *files = filelist_filter_out_sidecars(flist); |
586 | 798 |
799 return TRUE; | |
800 } | |
801 | |
783 | 802 gint filelist_read(FileData *dir_fd, GList **files, GList **dirs) |
586 | 803 { |
783 | 804 return filelist_read_real(dir_fd, files, dirs, TRUE); |
586 | 805 } |
806 | |
783 | 807 gint filelist_read_lstat(FileData *dir_fd, GList **files, GList **dirs) |
586 | 808 { |
783 | 809 return filelist_read_real(dir_fd, files, dirs, FALSE); |
586 | 810 } |
811 | |
812 void filelist_free(GList *list) | |
813 { | |
814 GList *work; | |
815 | |
816 work = list; | |
817 while (work) | |
818 { | |
819 file_data_unref((FileData *)work->data); | |
820 work = work->next; | |
821 } | |
822 | |
823 g_list_free(list); | |
824 } | |
825 | |
826 | |
827 GList *filelist_copy(GList *list) | |
828 { | |
829 GList *new_list = NULL; | |
830 GList *work; | |
831 | |
832 work = list; | |
833 while (work) | |
834 { | |
835 FileData *fd; | |
836 | |
837 fd = work->data; | |
838 work = work->next; | |
839 | |
840 new_list = g_list_prepend(new_list, file_data_ref(fd)); | |
841 } | |
842 | |
843 return g_list_reverse(new_list); | |
844 } | |
845 | |
846 GList *filelist_from_path_list(GList *list) | |
847 { | |
848 GList *new_list = NULL; | |
849 GList *work; | |
850 | |
851 work = list; | |
852 while (work) | |
853 { | |
854 gchar *path; | |
855 | |
856 path = work->data; | |
857 work = work->next; | |
858 | |
859 new_list = g_list_prepend(new_list, file_data_new_simple(path)); | |
860 } | |
861 | |
862 return g_list_reverse(new_list); | |
863 } | |
864 | |
865 GList *filelist_to_path_list(GList *list) | |
866 { | |
867 GList *new_list = NULL; | |
868 GList *work; | |
869 | |
870 work = list; | |
871 while (work) | |
872 { | |
873 FileData *fd; | |
874 | |
875 fd = work->data; | |
876 work = work->next; | |
877 | |
878 new_list = g_list_prepend(new_list, g_strdup(fd->path)); | |
879 } | |
880 | |
881 return g_list_reverse(new_list); | |
882 } | |
883 | |
884 GList *filelist_filter(GList *list, gint is_dir_list) | |
885 { | |
886 GList *work; | |
887 | |
888 if (!is_dir_list && options->file_filter.disable && options->file_filter.show_hidden_files) return list; | |
889 | |
890 work = list; | |
891 while (work) | |
892 { | |
893 FileData *fd = (FileData *)(work->data); | |
894 const gchar *name = fd->name; | |
895 | |
896 if ((!options->file_filter.show_hidden_files && ishidden(name)) || | |
897 (!is_dir_list && !filter_name_exists(name)) || | |
898 (is_dir_list && name[0] == '.' && (strcmp(name, GQ_CACHE_LOCAL_THUMB) == 0 || | |
899 strcmp(name, GQ_CACHE_LOCAL_METADATA) == 0)) ) | |
900 { | |
901 GList *link = work; | |
806 | 902 |
586 | 903 list = g_list_remove_link(list, link); |
904 file_data_unref(fd); | |
905 g_list_free(link); | |
906 } | |
806 | 907 |
908 work = work->next; | |
586 | 909 } |
910 | |
911 return list; | |
912 } | |
913 | |
914 /* | |
915 *----------------------------------------------------------------------------- | |
916 * filelist recursive | |
917 *----------------------------------------------------------------------------- | |
918 */ | |
919 | |
920 static gint filelist_sort_path_cb(gconstpointer a, gconstpointer b) | |
921 { | |
922 return CASE_SORT(((FileData *)a)->path, ((FileData *)b)->path); | |
923 } | |
924 | |
925 GList *filelist_sort_path(GList *list) | |
926 { | |
927 return g_list_sort(list, filelist_sort_path_cb); | |
928 } | |
929 | |
930 static void filelist_recursive_append(GList **list, GList *dirs) | |
931 { | |
932 GList *work; | |
933 | |
934 work = dirs; | |
935 while (work) | |
936 { | |
937 FileData *fd = (FileData *)(work->data); | |
780
44128da39e13
Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents:
779
diff
changeset
|
938 GList *f; |
44128da39e13
Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents:
779
diff
changeset
|
939 GList *d; |
586 | 940 |
783 | 941 if (filelist_read(fd, &f, &d)) |
586 | 942 { |
943 f = filelist_filter(f, FALSE); | |
944 f = filelist_sort_path(f); | |
945 *list = g_list_concat(*list, f); | |
946 | |
947 d = filelist_filter(d, TRUE); | |
948 d = filelist_sort_path(d); | |
949 filelist_recursive_append(list, d); | |
950 filelist_free(d); | |
951 } | |
952 | |
953 work = work->next; | |
954 } | |
955 } | |
956 | |
783 | 957 GList *filelist_recursive(FileData *dir_fd) |
586 | 958 { |
780
44128da39e13
Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents:
779
diff
changeset
|
959 GList *list; |
44128da39e13
Drop initialization to NULL since filelist_read() will take care of it.
zas_
parents:
779
diff
changeset
|
960 GList *d; |
586 | 961 |
783 | 962 if (!filelist_read(dir_fd, &list, &d)) return NULL; |
586 | 963 list = filelist_filter(list, FALSE); |
964 list = filelist_sort_path(list); | |
965 | |
966 d = filelist_filter(d, TRUE); | |
967 d = filelist_sort_path(d); | |
968 filelist_recursive_append(&list, d); | |
969 filelist_free(d); | |
970 | |
971 return list; | |
972 } | |
590 | 973 |
974 | |
800 | 975 /* |
976 * marks and orientation | |
977 */ | |
978 | |
979 | |
980 gboolean file_data_get_mark(FileData *fd, gint n) | |
981 { | |
982 return !!(fd->marks & (1 << n)); | |
983 } | |
984 | |
985 void file_data_set_mark(FileData *fd, gint n, gboolean value) | |
986 { | |
987 if (!value == !(fd->marks & (1 << n))) return; | |
988 | |
989 fd->marks = fd->marks ^ (1 << n); | |
990 file_data_increment_version(fd); | |
991 file_data_send_notification(fd, NOTIFY_TYPE_INTERNAL); | |
992 } | |
993 | |
994 gint file_data_get_user_orientation(FileData *fd) | |
995 { | |
996 return fd->user_orientation; | |
997 } | |
998 | |
999 void file_data_set_user_orientation(FileData *fd, gint value) | |
1000 { | |
1001 if (fd->user_orientation == value) return; | |
1002 | |
1003 fd->user_orientation = value; | |
1004 file_data_increment_version(fd); | |
1005 file_data_send_notification(fd, NOTIFY_TYPE_INTERNAL); | |
1006 } | |
1007 | |
1008 | |
590 | 1009 |
1010 /* | |
1011 * file_data - operates on the given fd | |
1012 * file_data_sc - operates on the given fd + sidecars - all fds linked via fd->sidecar_files or fd->parent | |
1013 */ | |
1014 | |
1015 | |
1016 /* return list of sidecar file extensions in a string */ | |
596 | 1017 gchar *file_data_sc_list_to_string(FileData *fd) |
1018 { | |
1019 GList *work; | |
1020 GString *result = g_string_new(""); | |
1021 | |
1022 work = fd->sidecar_files; | |
1023 while (work) | |
1024 { | |
1025 FileData *sfd = work->data; | |
806 | 1026 |
596 | 1027 result = g_string_append(result, "+ "); |
1028 result = g_string_append(result, sfd->extension); | |
1029 work = work->next; | |
1030 if (work) result = g_string_append_c(result, ' '); | |
1031 } | |
1032 | |
1033 return g_string_free(result, FALSE); | |
1034 } | |
590 | 1035 |
1036 | |
1037 /* disables / enables grouping for particular file, sends UPDATE notification */ | |
1038 void file_data_disable_grouping(FileData *fd); // now file_data_disconnect_sidecar_file, broken | |
1039 void file_data_disable_grouping(FileData *fd); | |
1040 | |
1041 /* runs stat on a file and sends UPDATE notification if it has been changed */ | |
1042 void file_data_sc_update(FileData *fd); | |
1043 | |
1044 | |
1045 | |
1046 | |
1047 /* | |
1048 * add FileDataChangeInfo (see typedefs.h) for the given operation | |
1049 * uses file_data_add_change_info | |
1050 * | |
1051 * fails if the fd->change already exists - change operations can't run in parallel | |
1052 * fd->change_info works as a lock | |
1053 * | |
1054 * dest can be NULL - in this case the current name is used for now, it will | |
1055 * be changed later | |
1056 */ | |
1057 | |
1058 /* | |
1059 FileDataChangeInfo types: | |
1060 COPY | |
1061 MOVE - patch is changed, name may be changed too | |
1062 RENAME - path remains unchanged, name is changed | |
1063 extension should remain (FIXME should we allow editing extension? it will make problems wth grouping) | |
1064 sidecar names are changed too, extensions are not changed | |
1065 DELETE | |
1066 UPDATE - file size, date or grouping has been changed | |
1067 */ | |
1068 | |
1069 gboolean file_data_add_ci(FileData *fd, FileDataChangeType type, const gchar *src, const gchar *dest) | |
1070 { | |
1071 FileDataChangeInfo *fdci; | |
1072 | |
1073 if (fd->change) return FALSE; | |
1074 | |
1075 fdci = g_new0(FileDataChangeInfo, 1); | |
1076 | |
1077 fdci->type = type; | |
1078 | |
1079 if (src) | |
1080 fdci->source = g_strdup(src); | |
1081 else | |
1082 fdci->source = g_strdup(fd->path); | |
1083 | |
1084 if (dest) | |
1085 fdci->dest = g_strdup(dest); | |
1086 | |
1087 fd->change = fdci; | |
1088 | |
1089 return TRUE; | |
1090 } | |
1091 | |
1092 void file_data_free_ci(FileData *fd) | |
1093 { | |
1094 FileDataChangeInfo *fdci = fd->change; | |
1095 | |
1096 if (!fdci) | |
1097 return; | |
1098 | |
1099 g_free(fdci->source); | |
1100 g_free(fdci->dest); | |
1101 | |
1102 g_free(fdci); | |
1103 | |
1104 fd->change = NULL; | |
1105 } | |
1106 | |
1107 | |
1108 static gboolean file_data_sc_add_ci(FileData *fd, FileDataChangeType type) | |
1109 { | |
1110 GList *work; | |
806 | 1111 |
590 | 1112 if (fd->parent) fd = fd->parent; |
1113 | |
1114 if (fd->change) return FALSE; | |
806 | 1115 |
590 | 1116 work = fd->sidecar_files; |
1117 while (work) | |
1118 { | |
1119 FileData *sfd = work->data; | |
806 | 1120 |
590 | 1121 if (sfd->change) return FALSE; |
1122 work = work->next; | |
1123 } | |
1124 | |
1125 file_data_add_ci(fd, type, NULL, NULL); | |
1126 | |
1127 work = fd->sidecar_files; | |
1128 while (work) | |
1129 { | |
1130 FileData *sfd = work->data; | |
806 | 1131 |
590 | 1132 file_data_add_ci(sfd, type, NULL, NULL); |
1133 work = work->next; | |
1134 } | |
1135 | |
1136 return TRUE; | |
1137 } | |
1138 | |
1139 static gboolean file_data_sc_check_ci(FileData *fd, FileDataChangeType type) | |
1140 { | |
1141 GList *work; | |
806 | 1142 |
590 | 1143 if (fd->parent) fd = fd->parent; |
1144 | |
806 | 1145 if (!fd->change || fd->change->type != type) return FALSE; |
1146 | |
590 | 1147 work = fd->sidecar_files; |
1148 while (work) | |
1149 { | |
1150 FileData *sfd = work->data; | |
806 | 1151 |
1152 if (!sfd->change || sfd->change->type != type) return FALSE; | |
590 | 1153 work = work->next; |
1154 } | |
806 | 1155 |
590 | 1156 return TRUE; |
1157 } | |
1158 | |
1159 | |
751 | 1160 gboolean file_data_sc_add_ci_copy(FileData *fd, const gchar *dest_path) |
590 | 1161 { |
1162 if (!file_data_sc_add_ci(fd, FILEDATA_CHANGE_COPY)) return FALSE; | |
1163 file_data_sc_update_ci_copy(fd, dest_path); | |
1164 return TRUE; | |
1165 } | |
1166 | |
751 | 1167 gboolean file_data_sc_add_ci_move(FileData *fd, const gchar *dest_path) |
590 | 1168 { |
1169 if (!file_data_sc_add_ci(fd, FILEDATA_CHANGE_MOVE)) return FALSE; | |
1170 file_data_sc_update_ci_move(fd, dest_path); | |
1171 return TRUE; | |
1172 } | |
1173 | |
751 | 1174 gboolean file_data_sc_add_ci_rename(FileData *fd, const gchar *dest_path) |
590 | 1175 { |
1176 if (!file_data_sc_add_ci(fd, FILEDATA_CHANGE_RENAME)) return FALSE; | |
1177 file_data_sc_update_ci_rename(fd, dest_path); | |
1178 return TRUE; | |
1179 } | |
1180 | |
1181 gboolean file_data_sc_add_ci_delete(FileData *fd) | |
1182 { | |
1183 return file_data_sc_add_ci(fd, FILEDATA_CHANGE_DELETE); | |
1184 } | |
1185 | |
753 | 1186 gboolean file_data_sc_add_ci_unspecified(FileData *fd, const gchar *dest_path) |
590 | 1187 { |
753 | 1188 if (!file_data_sc_add_ci(fd, FILEDATA_CHANGE_UNSPECIFIED)) return FALSE; |
1189 file_data_sc_update_ci_unspecified(fd, dest_path); | |
1190 return TRUE; | |
590 | 1191 } |
1192 | |
1193 void file_data_sc_free_ci(FileData *fd) | |
1194 { | |
1195 GList *work; | |
806 | 1196 |
590 | 1197 if (fd->parent) fd = fd->parent; |
1198 | |
1199 file_data_free_ci(fd); | |
1200 | |
1201 work = fd->sidecar_files; | |
1202 while (work) | |
1203 { | |
1204 FileData *sfd = work->data; | |
806 | 1205 |
590 | 1206 file_data_free_ci(sfd); |
1207 work = work->next; | |
1208 } | |
1209 } | |
1210 | |
751 | 1211 gboolean file_data_sc_add_ci_delete_list(GList *fd_list) |
1212 { | |
1213 GList *work; | |
1214 gboolean ret = TRUE; | |
806 | 1215 |
751 | 1216 work = fd_list; |
1217 while (work) | |
1218 { | |
1219 FileData *fd = work->data; | |
806 | 1220 |
751 | 1221 if (!file_data_sc_add_ci_delete(fd)) ret = FALSE; |
1222 work = work->next; | |
1223 } | |
806 | 1224 |
751 | 1225 return ret; |
1226 } | |
1227 | |
1228 gboolean file_data_sc_add_ci_copy_list(GList *fd_list, const gchar *dest) | |
1229 { | |
1230 GList *work; | |
1231 gboolean ret = TRUE; | |
806 | 1232 |
751 | 1233 work = fd_list; |
1234 while (work) | |
1235 { | |
1236 FileData *fd = work->data; | |
806 | 1237 |
751 | 1238 if (!file_data_sc_add_ci_copy(fd, dest)) ret = FALSE; |
1239 work = work->next; | |
1240 } | |
806 | 1241 |
751 | 1242 return ret; |
1243 } | |
1244 | |
1245 gboolean file_data_sc_add_ci_move_list(GList *fd_list, const gchar *dest) | |
1246 { | |
1247 GList *work; | |
1248 gboolean ret = TRUE; | |
806 | 1249 |
751 | 1250 work = fd_list; |
1251 while (work) | |
1252 { | |
1253 FileData *fd = work->data; | |
806 | 1254 |
751 | 1255 if (!file_data_sc_add_ci_move(fd, dest)) ret = FALSE; |
1256 work = work->next; | |
1257 } | |
806 | 1258 |
751 | 1259 return ret; |
1260 } | |
1261 | |
1262 gboolean file_data_sc_add_ci_rename_list(GList *fd_list, const gchar *dest) | |
1263 { | |
1264 GList *work; | |
1265 gboolean ret = TRUE; | |
806 | 1266 |
751 | 1267 work = fd_list; |
1268 while (work) | |
1269 { | |
1270 FileData *fd = work->data; | |
806 | 1271 |
751 | 1272 if (!file_data_sc_add_ci_rename(fd, dest)) ret = FALSE; |
1273 work = work->next; | |
1274 } | |
806 | 1275 |
751 | 1276 return ret; |
1277 } | |
1278 | |
753 | 1279 gboolean file_data_sc_add_ci_unspecified_list(GList *fd_list, const gchar *dest) |
1280 { | |
1281 GList *work; | |
1282 gboolean ret = TRUE; | |
806 | 1283 |
753 | 1284 work = fd_list; |
1285 while (work) | |
1286 { | |
1287 FileData *fd = work->data; | |
806 | 1288 |
753 | 1289 if (!file_data_sc_add_ci_unspecified(fd, dest)) ret = FALSE; |
1290 work = work->next; | |
1291 } | |
806 | 1292 |
753 | 1293 return ret; |
1294 } | |
1295 | |
751 | 1296 void file_data_sc_free_ci_list(GList *fd_list) |
1297 { | |
1298 GList *work; | |
806 | 1299 |
751 | 1300 work = fd_list; |
1301 while (work) | |
1302 { | |
1303 FileData *fd = work->data; | |
806 | 1304 |
751 | 1305 file_data_sc_free_ci(fd); |
1306 work = work->next; | |
1307 } | |
1308 } | |
590 | 1309 |
1310 /* | |
1311 * update existing fd->change, it will be used from dialog callbacks for interactive editing | |
1312 * fails if fd->change does not exist or the change type does not match | |
1313 */ | |
1314 | |
751 | 1315 static void file_data_update_ci_dest(FileData *fd, const gchar *dest_path) |
590 | 1316 { |
1317 g_free(fd->change->dest); | |
1318 fd->change->dest = g_strdup(dest_path); | |
1319 } | |
1320 | |
751 | 1321 static void file_data_update_ci_dest_preserve_ext(FileData *fd, const gchar *dest_path) |
590 | 1322 { |
1323 const char *extension = extension_from_path(fd->change->source); | |
751 | 1324 gchar *base = remove_extension_from_path(dest_path); |
806 | 1325 |
590 | 1326 g_free(fd->change->dest); |
751 | 1327 fd->change->dest = g_strdup_printf("%s%s", base, extension); |
806 | 1328 |
751 | 1329 g_free(base); |
590 | 1330 } |
1331 | |
751 | 1332 static void file_data_sc_update_ci(FileData *fd, const gchar *dest_path) |
590 | 1333 { |
1334 GList *work; | |
751 | 1335 gchar *dest_path_full = NULL; |
806 | 1336 |
590 | 1337 if (fd->parent) fd = fd->parent; |
1338 | |
751 | 1339 if (!dest_path) dest_path = fd->path; |
1340 | |
1341 if (!strchr(dest_path, G_DIR_SEPARATOR)) /* we got only filename, not a full path */ | |
1342 { | |
1343 gchar *dir = remove_level_from_path(fd->path); | |
806 | 1344 |
751 | 1345 dest_path_full = g_build_filename(dir, dest_path, NULL); |
1346 g_free(dir); | |
1347 dest_path = dest_path_full; | |
1348 } | |
1349 | |
1350 if (isdir(dest_path)) | |
1351 { | |
1352 dest_path_full = g_build_filename(dest_path, fd->name, NULL); | |
1353 dest_path = dest_path_full; | |
1354 } | |
806 | 1355 |
1356 file_data_update_ci_dest(fd, dest_path); | |
751 | 1357 |
590 | 1358 work = fd->sidecar_files; |
1359 while (work) | |
1360 { | |
1361 FileData *sfd = work->data; | |
806 | 1362 |
590 | 1363 file_data_update_ci_dest_preserve_ext(sfd, dest_path); |
1364 work = work->next; | |
1365 } | |
806 | 1366 |
751 | 1367 g_free(dest_path_full); |
590 | 1368 } |
1369 | |
751 | 1370 gint file_data_sc_update_ci_copy(FileData *fd, const gchar *dest_path) |
590 | 1371 { |
1372 if (!file_data_sc_check_ci(fd, FILEDATA_CHANGE_COPY)) return FALSE; | |
1373 file_data_sc_update_ci(fd, dest_path); | |
1374 return TRUE; | |
1375 } | |
1376 | |
751 | 1377 gint file_data_sc_update_ci_move(FileData *fd, const gchar *dest_path) |
590 | 1378 { |
1379 if (!file_data_sc_check_ci(fd, FILEDATA_CHANGE_MOVE)) return FALSE; | |
1380 file_data_sc_update_ci(fd, dest_path); | |
1381 return TRUE; | |
1382 } | |
1383 | |
751 | 1384 gint file_data_sc_update_ci_rename(FileData *fd, const gchar *dest_path) |
590 | 1385 { |
1386 if (!file_data_sc_check_ci(fd, FILEDATA_CHANGE_RENAME)) return FALSE; | |
1387 file_data_sc_update_ci(fd, dest_path); | |
1388 return TRUE; | |
1389 } | |
1390 | |
753 | 1391 gint file_data_sc_update_ci_unspecified(FileData *fd, const gchar *dest_path) |
1392 { | |
1393 if (!file_data_sc_check_ci(fd, FILEDATA_CHANGE_UNSPECIFIED)) return FALSE; | |
1394 file_data_sc_update_ci(fd, dest_path); | |
1395 return TRUE; | |
1396 } | |
1397 | |
590 | 1398 |
751 | 1399 gboolean file_data_sc_update_ci_move_list(GList *fd_list, const gchar *dest) |
1400 { | |
1401 GList *work; | |
1402 gboolean ret = TRUE; | |
806 | 1403 |
751 | 1404 work = fd_list; |
1405 while (work) | |
1406 { | |
1407 FileData *fd = work->data; | |
806 | 1408 |
751 | 1409 if (!file_data_sc_update_ci_move(fd, dest)) ret = FALSE; |
1410 work = work->next; | |
1411 } | |
806 | 1412 |
751 | 1413 return ret; |
1414 } | |
1415 | |
1416 gboolean file_data_sc_update_ci_copy_list(GList *fd_list, const gchar *dest) | |
1417 { | |
1418 GList *work; | |
1419 gboolean ret = TRUE; | |
806 | 1420 |
751 | 1421 work = fd_list; |
1422 while (work) | |
1423 { | |
1424 FileData *fd = work->data; | |
806 | 1425 |
751 | 1426 if (!file_data_sc_update_ci_copy(fd, dest)) ret = FALSE; |
1427 work = work->next; | |
1428 } | |
806 | 1429 |
751 | 1430 return ret; |
1431 } | |
1432 | |
753 | 1433 gboolean file_data_sc_update_ci_unspecified_list(GList *fd_list, const gchar *dest) |
1434 { | |
1435 GList *work; | |
1436 gboolean ret = TRUE; | |
806 | 1437 |
753 | 1438 work = fd_list; |
1439 while (work) | |
1440 { | |
1441 FileData *fd = work->data; | |
806 | 1442 |
753 | 1443 if (!file_data_sc_update_ci_unspecified(fd, dest)) ret = FALSE; |
1444 work = work->next; | |
1445 } | |
806 | 1446 |
753 | 1447 return ret; |
1448 } | |
1449 | |
590 | 1450 |
1451 /* | |
1452 * check dest paths - dest image exists, etc. | |
1453 * returns FIXME | |
1454 * it should detect all possible problems with the planned operation | |
1455 */ | |
1456 | |
1457 gint file_data_sc_check_ci_dest(FileData *fd) | |
1458 { | |
1459 } | |
1460 | |
1461 | |
1462 | |
1463 | |
1464 /* | |
1465 * perform the change described by FileFataChangeInfo | |
1466 * it is used for internal operations, | |
1467 * this function actually operates with files on the filesystem | |
1468 * it should implement safe delete | |
1469 */ | |
1470 | |
1471 static gboolean file_data_perform_move(FileData *fd) | |
1472 { | |
1473 g_assert(!strcmp(fd->change->source, fd->path)); | |
1474 return move_file(fd->change->source, fd->change->dest); | |
1475 } | |
1476 | |
1477 static gboolean file_data_perform_copy(FileData *fd) | |
1478 { | |
1479 g_assert(!strcmp(fd->change->source, fd->path)); | |
1480 return copy_file(fd->change->source, fd->change->dest); | |
1481 } | |
1482 | |
1483 static gboolean file_data_perform_delete(FileData *fd) | |
1484 { | |
1485 return unlink_file(fd->path); | |
1486 } | |
1487 | |
1488 static gboolean file_data_perform_ci(FileData *fd) | |
1489 { | |
1490 FileDataChangeType type = fd->change->type; | |
1491 switch (type) | |
1492 { | |
1493 case FILEDATA_CHANGE_MOVE: | |
1494 return file_data_perform_move(fd); | |
1495 case FILEDATA_CHANGE_COPY: | |
1496 return file_data_perform_copy(fd); | |
1497 case FILEDATA_CHANGE_RENAME: | |
1498 return file_data_perform_move(fd); /* the same as move */ | |
1499 case FILEDATA_CHANGE_DELETE: | |
1500 return file_data_perform_delete(fd); | |
753 | 1501 case FILEDATA_CHANGE_UNSPECIFIED: |
596 | 1502 /* nothing to do here */ |
590 | 1503 break; |
1504 } | |
1505 return TRUE; | |
1506 } | |
1507 | |
1508 | |
1509 | |
1510 gboolean file_data_sc_perform_ci(FileData *fd) | |
1511 { | |
1512 GList *work; | |
1513 gboolean ret = TRUE; | |
1514 FileDataChangeType type = fd->change->type; | |
806 | 1515 |
590 | 1516 if (!file_data_sc_check_ci(fd, type)) return FALSE; |
1517 | |
1518 work = fd->sidecar_files; | |
1519 while (work) | |
1520 { | |
1521 FileData *sfd = work->data; | |
806 | 1522 |
590 | 1523 if (!file_data_perform_ci(sfd)) ret = FALSE; |
1524 work = work->next; | |
1525 } | |
806 | 1526 |
590 | 1527 if (!file_data_perform_ci(fd)) ret = FALSE; |
806 | 1528 |
590 | 1529 return ret; |
1530 } | |
1531 | |
1532 /* | |
1533 * updates FileData structure according to FileDataChangeInfo | |
1534 */ | |
1535 | |
1536 static void file_data_apply_ci(FileData *fd) | |
1537 { | |
1538 FileDataChangeType type = fd->change->type; | |
806 | 1539 |
590 | 1540 /* FIXME delete ?*/ |
773 | 1541 if (type == FILEDATA_CHANGE_MOVE || type == FILEDATA_CHANGE_RENAME) |
590 | 1542 { |
1543 file_data_set_path(fd, fd->change->dest); | |
1544 } | |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
1545 file_data_increment_version(fd); |
800 | 1546 file_data_send_notification(fd, NOTIFY_TYPE_CHANGE); |
590 | 1547 } |
1548 | |
596 | 1549 gint file_data_sc_apply_ci(FileData *fd) |
590 | 1550 { |
1551 GList *work; | |
1552 FileDataChangeType type = fd->change->type; | |
806 | 1553 |
590 | 1554 if (!file_data_sc_check_ci(fd, type)) return FALSE; |
1555 | |
1556 work = fd->sidecar_files; | |
1557 while (work) | |
1558 { | |
1559 FileData *sfd = work->data; | |
806 | 1560 |
590 | 1561 file_data_apply_ci(sfd); |
1562 work = work->next; | |
1563 } | |
806 | 1564 |
590 | 1565 file_data_apply_ci(fd); |
806 | 1566 |
590 | 1567 return TRUE; |
1568 } | |
1569 | |
1570 | |
1571 /* | |
1572 * notify other modules about the change described by FileFataChangeInfo | |
1573 */ | |
1574 | |
1575 /* might use file_maint_ functions for now, later it should be changed to a system of callbacks | |
1576 FIXME do we need the ignore_list? It looks like a workaround for ineffective | |
1577 implementation in view_file_list.c */ | |
1578 | |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1579 |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1580 |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1581 |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1582 typedef struct _NotifyData NotifyData; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1583 |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1584 struct _NotifyData { |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1585 FileDataNotifyFunc func; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1586 gpointer data; |
791 | 1587 NotifyPriority priority; |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1588 }; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1589 |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1590 static GList *notify_func_list = NULL; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1591 |
791 | 1592 static gint file_data_notify_sort(gconstpointer a, gconstpointer b) |
1593 { | |
1594 NotifyData *nda = (NotifyData *)a; | |
1595 NotifyData *ndb = (NotifyData *)b; | |
806 | 1596 |
791 | 1597 if (nda->priority < ndb->priority) return -1; |
1598 if (nda->priority > ndb->priority) return 1; | |
1599 return 0; | |
1600 } | |
1601 | |
1602 gint file_data_register_notify_func(FileDataNotifyFunc func, gpointer data, NotifyPriority priority) | |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1603 { |
806 | 1604 NotifyData *nd; |
1605 | |
1606 nd = g_new(NotifyData, 1); | |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1607 nd->func = func; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1608 nd->data = data; |
791 | 1609 nd->priority = priority; |
806 | 1610 |
791 | 1611 notify_func_list = g_list_insert_sorted(notify_func_list, nd, file_data_notify_sort); |
1612 DEBUG_1("Notify func registered: %p", nd); | |
806 | 1613 |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1614 return TRUE; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1615 } |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1616 |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1617 gint file_data_unregister_notify_func(FileDataNotifyFunc func, gpointer data) |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1618 { |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1619 GList *work = notify_func_list; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1620 |
806 | 1621 while (work) |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1622 { |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1623 NotifyData *nd = (NotifyData *)work->data; |
806 | 1624 |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1625 if (nd->func == func && nd->data == data) |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1626 { |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1627 notify_func_list = g_list_delete_link(notify_func_list, work); |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1628 g_free(nd); |
791 | 1629 DEBUG_1("Notify func unregistered: %p", nd); |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1630 return TRUE; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1631 } |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1632 work = work->next; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1633 } |
806 | 1634 |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1635 return FALSE; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1636 } |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1637 |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1638 |
792 | 1639 void file_data_send_notification(FileData *fd, NotifyType type) |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1640 { |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1641 GList *work = notify_func_list; |
806 | 1642 |
1643 while (work) | |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1644 { |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1645 NotifyData *nd = (NotifyData *)work->data; |
806 | 1646 |
791 | 1647 DEBUG_1("Notify func calling: %p %s", nd, fd->path); |
792 | 1648 nd->func(fd, type, nd->data); |
784
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1649 work = work->next; |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1650 } |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1651 } |
16b3a5c8aedc
new notification system (used only in vflist for now)
nadvornik
parents:
783
diff
changeset
|
1652 |
791 | 1653 static GHashTable *file_data_monitor_pool = NULL; |
1654 static gint realtime_monitor_id = -1; | |
1655 | |
1656 static void realtime_monitor_check_cb(gpointer key, gpointer value, gpointer data) | |
1657 { | |
1658 FileData *fd = key; | |
1659 | |
801 | 1660 file_data_check_changed_files(fd); |
791 | 1661 |
1662 DEBUG_1("monitor %s", fd->path); | |
1663 } | |
1664 | |
1665 static gboolean realtime_monitor_cb(gpointer data) | |
1666 { | |
1667 g_hash_table_foreach(file_data_monitor_pool, realtime_monitor_check_cb, NULL); | |
1668 return TRUE; | |
1669 } | |
1670 | |
1671 gint file_data_register_real_time_monitor(FileData *fd) | |
1672 { | |
1673 gint count = 0; | |
1674 | |
1675 file_data_ref(fd); | |
1676 | |
1677 if (!file_data_monitor_pool) | |
1678 file_data_monitor_pool = g_hash_table_new(g_direct_hash, g_direct_equal); | |
1679 | |
1680 count = GPOINTER_TO_INT(g_hash_table_lookup(file_data_monitor_pool, fd)); | |
1681 | |
1682 DEBUG_1("Register realtime %d %s", count, fd->path); | |
1683 | |
1684 count++; | |
1685 g_hash_table_insert(file_data_monitor_pool, fd, GINT_TO_POINTER(count)); | |
1686 | |
1687 if (realtime_monitor_id == -1) | |
1688 { | |
1689 realtime_monitor_id = g_timeout_add(5000, realtime_monitor_cb, NULL); | |
1690 } | |
806 | 1691 |
791 | 1692 return TRUE; |
1693 } | |
1694 | |
1695 gint file_data_unregister_real_time_monitor(FileData *fd) | |
1696 { | |
1697 gint count; | |
806 | 1698 |
791 | 1699 g_assert(file_data_monitor_pool); |
1700 | |
1701 count = GPOINTER_TO_INT(g_hash_table_lookup(file_data_monitor_pool, fd)); | |
1702 | |
1703 DEBUG_1("Unregister realtime %d %s", count, fd->path); | |
1704 | |
1705 g_assert(count > 0); | |
1706 | |
1707 count--; | |
1708 | |
1709 if (count == 0) | |
1710 g_hash_table_remove(file_data_monitor_pool, fd); | |
1711 else | |
1712 g_hash_table_insert(file_data_monitor_pool, fd, GINT_TO_POINTER(count)); | |
1713 | |
1714 file_data_unref(fd); | |
1715 | |
1716 if (g_hash_table_size(file_data_monitor_pool) == 0) | |
1717 { | |
1718 g_source_remove(realtime_monitor_id); | |
1719 realtime_monitor_id = -1; | |
1720 return FALSE; | |
1721 } | |
806 | 1722 |
791 | 1723 return TRUE; |
1724 } |