annotate src/filedata.c @ 1708:8213f95b65c9

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