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