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