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