Mercurial > geeqie.yaz
annotate src/filelist.c @ 551:5b127951daa1
info_notebook_reordered_cb(): do not call info_tabs_sync(), it causes exif
info disappearing when moving the tab.
author | zas_ |
---|---|
date | Fri, 02 May 2008 23:08:18 +0000 |
parents | 985fdfebd89e |
children | 9dc0513837b5 |
rev | line source |
---|---|
1 | 1 /* |
196 | 2 * Geeqie |
79
528e3432e0c0
Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net>
gqview
parents:
53
diff
changeset
|
3 * (C) 2006 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
1 | 5 * |
6 * Author: John Ellis | |
7 * | |
9 | 8 * This software is released under the GNU General Public License (GNU GPL). |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
1 | 11 */ |
12 | |
13 | |
281 | 14 #include "main.h" |
9 | 15 #include "filelist.h" |
1 | 16 |
9 | 17 #include "cache.h" |
507 | 18 #include "debug.h" |
9 | 19 #include "rcfile.h" |
307
667e49f52168
Move secure save code to its own files: secure_save.{c,h}.
zas_
parents:
283
diff
changeset
|
20 #include "secure_save.h" |
79
528e3432e0c0
Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net>
gqview
parents:
53
diff
changeset
|
21 #include "thumb_standard.h" |
9 | 22 #include "ui_fileops.h" |
1 | 23 |
24 | |
25 /* | |
26 *----------------------------------------------------------------------------- | |
27 * file filtering | |
28 *----------------------------------------------------------------------------- | |
29 */ | |
30 | |
9 | 31 static GList *filter_list = NULL; |
32 static GList *extension_list = NULL; | |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
33 static GList *sidecar_ext_list = NULL; |
9 | 34 |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
35 static GList *file_class_extension_list[FILE_FORMAT_CLASSES]; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
36 |
240
cce347409480
Fix two more gcc warnings related to function declarations.
zas_
parents:
217
diff
changeset
|
37 static gint sidecar_file_priority(const gchar *path); |
cce347409480
Fix two more gcc warnings related to function declarations.
zas_
parents:
217
diff
changeset
|
38 |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
39 |
9 | 40 gint ishidden(const gchar *name) |
1 | 41 { |
42 if (name[0] != '.') return FALSE; | |
43 if (name[1] == '\0' || (name[1] == '.' && name[2] == '\0')) return FALSE; | |
44 return TRUE; | |
45 } | |
46 | |
9 | 47 static FilterEntry *filter_entry_new(const gchar *key, const gchar *description, |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
48 const gchar *extensions, FileFormatClass file_class, gint enabled) |
9 | 49 { |
50 FilterEntry *fe; | |
51 | |
52 fe = g_new0(FilterEntry, 1); | |
53 fe->key = g_strdup(key); | |
54 fe->description = g_strdup(description); | |
55 fe->extensions = g_strdup(extensions); | |
56 fe->enabled = enabled; | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
57 fe->file_class = file_class; |
442 | 58 |
9 | 59 return fe; |
60 } | |
61 | |
62 static void filter_entry_free(FilterEntry *fe) | |
63 { | |
64 if (!fe) return; | |
65 | |
66 g_free(fe->key); | |
67 g_free(fe->description); | |
68 g_free(fe->extensions); | |
69 g_free(fe); | |
70 } | |
71 | |
72 GList *filter_get_list(void) | |
73 { | |
74 return filter_list; | |
75 } | |
76 | |
77 void filter_remove_entry(FilterEntry *fe) | |
78 { | |
79 if (!g_list_find(filter_list, fe)) return; | |
80 | |
81 filter_list = g_list_remove(filter_list, fe); | |
82 filter_entry_free(fe); | |
83 } | |
84 | |
85 static gint filter_key_exists(const gchar *key) | |
86 { | |
87 GList *work; | |
88 | |
89 if (!key) return FALSE; | |
90 | |
91 work = filter_list; | |
92 while (work) | |
93 { | |
94 FilterEntry *fe = work->data; | |
95 work = work->next; | |
96 | |
97 if (strcmp(fe->key, key) == 0) return TRUE; | |
98 } | |
99 | |
100 return FALSE; | |
101 } | |
102 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
103 void filter_add(const gchar *key, const gchar *description, const gchar *extensions, FileFormatClass file_class, gint enabled) |
9 | 104 { |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
105 filter_list = g_list_append(filter_list, filter_entry_new(key, description, extensions, file_class, enabled)); |
9 | 106 } |
107 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
108 void filter_add_unique(const gchar *description, const gchar *extensions, FileFormatClass file_class, gint enabled) |
9 | 109 { |
110 gchar *key; | |
111 gint n; | |
112 | |
113 key = g_strdup("user0"); | |
114 n = 1; | |
115 while (filter_key_exists(key)) | |
116 { | |
117 g_free(key); | |
118 if (n > 999) return; | |
119 key = g_strdup_printf("user%d", n); | |
120 n++; | |
121 } | |
122 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
123 filter_add(key, description, extensions, file_class, enabled); |
9 | 124 g_free(key); |
125 } | |
126 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
127 static void filter_add_if_missing(const gchar *key, const gchar *description, const gchar *extensions, FileFormatClass file_class, gint enabled) |
9 | 128 { |
129 GList *work; | |
130 | |
131 if (!key) return; | |
132 | |
133 work = filter_list; | |
134 while (work) | |
135 { | |
136 FilterEntry *fe = work->data; | |
137 work = work->next; | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
138 if (fe->key && strcmp(fe->key, key) == 0) |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
139 { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
140 if (fe->file_class == FORMAT_CLASS_UNKNOWN) |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
141 fe->file_class = file_class; /* for compatibility */ |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
142 return; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
143 } |
9 | 144 } |
145 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
146 filter_add(key, description, extensions, file_class, enabled); |
9 | 147 } |
148 | |
149 void filter_reset(void) | |
1 | 150 { |
151 GList *work; | |
9 | 152 |
153 work = filter_list; | |
154 while (work) | |
155 { | |
156 FilterEntry *fe = work->data; | |
157 work = work->next; | |
158 filter_entry_free(fe); | |
159 } | |
160 | |
161 g_list_free(filter_list); | |
162 filter_list = NULL; | |
163 } | |
164 | |
165 void filter_add_defaults(void) | |
166 { | |
167 GSList *list, *work; | |
168 | |
169 list = gdk_pixbuf_get_formats(); | |
170 work = list; | |
171 while (work) | |
172 { | |
173 GdkPixbufFormat *format; | |
174 gchar *name; | |
175 gchar *desc; | |
176 gchar **extensions; | |
177 GString *filter = NULL; | |
178 gint i; | |
442 | 179 |
9 | 180 format = work->data; |
181 work = work->next; | |
182 | |
183 name = gdk_pixbuf_format_get_name(format); | |
184 desc = gdk_pixbuf_format_get_description(format); | |
185 extensions = gdk_pixbuf_format_get_extensions(format); | |
186 | |
187 i = 0; | |
188 while (extensions[i]) | |
189 { | |
190 if (!filter) | |
191 { | |
192 filter = g_string_new("."); | |
193 filter = g_string_append(filter, extensions[i]); | |
194 } | |
195 else | |
196 { | |
197 filter = g_string_append(filter, ";."); | |
198 filter = g_string_append(filter, extensions[i]); | |
199 } | |
200 i++; | |
201 } | |
202 | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
203 DEBUG_1("loader reported [%s] [%s] [%s]", name, desc, filter->str); |
9 | 204 |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
205 filter_add_if_missing(name, desc, filter->str, FORMAT_CLASS_IMAGE, TRUE); |
9 | 206 |
207 g_free(name); | |
208 g_free(desc); | |
209 g_strfreev(extensions); | |
210 g_string_free(filter, TRUE); | |
211 } | |
212 g_slist_free(list); | |
1 | 213 |
9 | 214 /* add defaults even if gdk-pixbuf does not have them, but disabled */ |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
215 filter_add_if_missing("jpeg", "JPEG group", ".jpg;.jpeg;.jpe", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
216 filter_add_if_missing("png", "Portable Network Graphic", ".png", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
217 filter_add_if_missing("tiff", "Tiff", ".tif;.tiff", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
218 filter_add_if_missing("pnm", "Packed Pixel formats", ".pbm;.pgm;.pnm;.ppm", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
219 filter_add_if_missing("gif", "Graphics Interchange Format", ".gif", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
220 filter_add_if_missing("xbm", "X bitmap", ".xbm", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
221 filter_add_if_missing("xpm", "X pixmap", ".xpm", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
222 filter_add_if_missing("bmp", "Bitmap", ".bmp", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
223 filter_add_if_missing("ico", "Icon file", ".ico;.cur", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
224 filter_add_if_missing("ras", "Raster", ".ras", FORMAT_CLASS_IMAGE, FALSE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
225 filter_add_if_missing("svg", "Scalable Vector Graphics", ".svg", FORMAT_CLASS_IMAGE, FALSE); |
442 | 226 |
202
f95654aeec4b
added all possible raw extensions that I could find
nadvornik
parents:
196
diff
changeset
|
227 /* non-image files that might be desirable to show */ |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
228 filter_add_if_missing("xmp", "XMP sidecar", ".xmp", FORMAT_CLASS_META, TRUE); |
43
ee03f36e9e4b
Sun May 15 21:40:26 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
229 |
ee03f36e9e4b
Sun May 15 21:40:26 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
230 /* These are the raw camera formats with embedded jpeg/exif. |
202
f95654aeec4b
added all possible raw extensions that I could find
nadvornik
parents:
196
diff
changeset
|
231 * (see format_raw.c and/or exiv2.cc) |
43
ee03f36e9e4b
Sun May 15 21:40:26 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
232 */ |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
233 filter_add_if_missing("arw", "Sony raw format", ".arw;.srf;.sr2", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
234 filter_add_if_missing("crw", "Canon raw format", ".crw;.cr2", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
235 filter_add_if_missing("kdc", "Kodak raw format", ".kdc;.dcr", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
236 filter_add_if_missing("raf", "Fujifilm raw format", ".raf", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
237 filter_add_if_missing("mef", "Mamiya raw format", ".mef;.mos", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
238 filter_add_if_missing("mrw", "Minolta raw format", ".mrw", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
239 filter_add_if_missing("nef", "Nikon raw format", ".nef", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
240 filter_add_if_missing("orf", "Olympus raw format", ".orf", FORMAT_CLASS_RAWIMAGE, TRUE); |
277 | 241 filter_add_if_missing("pef", "Pentax or Samsung raw format", ".pef;.ptx", FORMAT_CLASS_RAWIMAGE, TRUE); |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
242 filter_add_if_missing("dng", "Adobe Digital Negative raw format", ".dng", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
243 filter_add_if_missing("x3f", "Sigma raw format", ".x3f", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
244 filter_add_if_missing("raw", "Panasonic raw format", ".raw", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
245 filter_add_if_missing("r3d", "Red raw format", ".r3d", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
246 filter_add_if_missing("3fr", "Hasselblad raw format", ".3fr", FORMAT_CLASS_RAWIMAGE, TRUE); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
247 filter_add_if_missing("erf", "Epson raw format", ".erf", FORMAT_CLASS_RAWIMAGE, TRUE); |
9 | 248 } |
249 | |
147
b2266996fa83
added possibility to specify prefered file type for external commands
nadvornik
parents:
146
diff
changeset
|
250 GList *filter_to_list(const gchar *extensions) |
9 | 251 { |
252 GList *list = NULL; | |
253 const gchar *p; | |
254 | |
255 if (!extensions) return NULL; | |
256 | |
257 p = extensions; | |
258 while (*p != '\0') | |
259 { | |
260 const gchar *b; | |
261 gint l = 0; | |
262 | |
263 b = p; | |
264 while (*p != '\0' && *p != ';') | |
265 { | |
266 p++; | |
267 l++; | |
268 } | |
269 list = g_list_append(list, g_strndup(b, l)); | |
270 if (*p == ';') p++; | |
271 } | |
272 | |
273 return list; | |
274 } | |
275 | |
276 void filter_rebuild(void) | |
277 { | |
278 GList *work; | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
279 gint i; |
9 | 280 |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
281 string_list_free(extension_list); |
9 | 282 extension_list = NULL; |
283 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
284 for (i = 0; i < FILE_FORMAT_CLASSES; i++) |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
285 { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
286 string_list_free(file_class_extension_list[i]); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
287 file_class_extension_list[i] = NULL; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
288 } |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
289 |
9 | 290 work = filter_list; |
291 while (work) | |
292 { | |
293 FilterEntry *fe; | |
294 | |
295 fe = work->data; | |
296 work = work->next; | |
297 | |
298 if (fe->enabled) | |
299 { | |
300 GList *ext; | |
301 | |
302 ext = filter_to_list(fe->extensions); | |
303 if (ext) extension_list = g_list_concat(extension_list, ext); | |
442 | 304 |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
305 if (fe->file_class >= 0 && fe->file_class < FILE_FORMAT_CLASSES) |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
306 { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
307 ext = filter_to_list(fe->extensions); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
308 if (ext) file_class_extension_list[fe->file_class] = g_list_concat(file_class_extension_list[fe->file_class], ext); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
309 } |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
310 else |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
311 { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
312 printf("WARNING: invalid file class %d\n", fe->file_class); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
313 } |
9 | 314 } |
315 } | |
316 } | |
317 | |
318 gint filter_name_exists(const gchar *name) | |
319 { | |
320 GList *work; | |
215 | 321 gint ln; |
322 | |
332 | 323 if (!extension_list || options->file_filter.disable) return TRUE; |
9 | 324 |
215 | 325 ln = strlen(name); |
9 | 326 work = extension_list; |
1 | 327 while (work) |
328 { | |
329 gchar *filter = work->data; | |
330 gint lf = strlen(filter); | |
215 | 331 |
1 | 332 if (ln >= lf) |
333 { | |
334 if (strncasecmp(name + ln - lf, filter, lf) == 0) return TRUE; | |
335 } | |
336 work = work->next; | |
337 } | |
338 | |
339 return FALSE; | |
340 } | |
341 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
342 gint filter_file_class(const gchar *name, FileFormatClass file_class) |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
343 { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
344 GList *work; |
215 | 345 gint ln; |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
346 |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
347 if (file_class < 0 || file_class >= FILE_FORMAT_CLASSES) |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
348 { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
349 printf("WARNING: invalid file class %d\n", file_class); |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
350 return FALSE; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
351 } |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
352 |
215 | 353 ln = strlen(name); |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
354 work = file_class_extension_list[file_class]; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
355 while (work) |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
356 { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
357 gchar *filter = work->data; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
358 gint lf = strlen(filter); |
215 | 359 |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
360 if (ln >= lf) |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
361 { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
362 if (strncasecmp(name + ln - lf, filter, lf) == 0) return TRUE; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
363 } |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
364 work = work->next; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
365 } |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
366 |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
367 return FALSE; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
368 } |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
202
diff
changeset
|
369 |
276 | 370 void filter_write_list(SecureSaveInfo *ssi) |
1 | 371 { |
9 | 372 GList *work; |
373 | |
374 work = filter_list; | |
375 while (work) | |
376 { | |
377 FilterEntry *fe = work->data; | |
378 work = work->next; | |
442 | 379 |
217 | 380 gchar *extensions = escquote_value(fe->extensions); |
381 gchar *description = escquote_value(fe->description); | |
9 | 382 |
370 | 383 secure_fprintf(ssi, "file_filter.ext: \"%s%s\" %s %s %d\n", |
276 | 384 (fe->enabled) ? "" : "#", |
370 | 385 fe->key, extensions, description, fe->file_class); |
217 | 386 g_free(extensions); |
387 g_free(description); | |
9 | 388 } |
1 | 389 } |
390 | |
9 | 391 void filter_parse(const gchar *text) |
1 | 392 { |
9 | 393 const gchar *p; |
394 gchar *key; | |
395 gchar *ext; | |
396 gchar *desc; | |
397 gint enabled = TRUE; | |
370 | 398 gint file_class; |
9 | 399 |
400 if (!text || text[0] != '"') return; | |
401 | |
217 | 402 key = quoted_value(text, &p); |
9 | 403 if (!key) return; |
404 | |
217 | 405 ext = quoted_value(p, &p); |
406 desc = quoted_value(p, &p); | |
442 | 407 |
370 | 408 file_class = strtol(p, NULL, 10); |
442 | 409 |
370 | 410 if (file_class < 0 || file_class >= FILE_FORMAT_CLASSES) file_class = FORMAT_CLASS_UNKNOWN; |
9 | 411 |
412 if (key && key[0] == '#') | |
413 { | |
414 gchar *tmp; | |
415 tmp = g_strdup(key + 1); | |
416 g_free(key); | |
417 key = tmp; | |
418 | |
419 enabled = FALSE; | |
1 | 420 } |
421 | |
370 | 422 if (key && strlen(key) > 0 && ext) filter_add(key, desc, ext, file_class, enabled); |
9 | 423 |
424 g_free(key); | |
425 g_free(ext); | |
426 g_free(desc); | |
427 } | |
1 | 428 |
9 | 429 GList *path_list_filter(GList *list, gint is_dir_list) |
430 { | |
431 GList *work; | |
432 | |
356 | 433 if (!is_dir_list && options->file_filter.disable && options->file_filter.show_hidden_files) return list; |
9 | 434 |
435 work = list; | |
436 while (work) | |
1 | 437 { |
9 | 438 gchar *name = work->data; |
439 const gchar *base; | |
440 | |
441 base = filename_from_path(name); | |
442 | |
356 | 443 if ((!options->file_filter.show_hidden_files && ishidden(base)) || |
9 | 444 (!is_dir_list && !filter_name_exists(base)) || |
283 | 445 (is_dir_list && base[0] == '.' && (strcmp(base, GQ_CACHE_LOCAL_THUMB) == 0 || |
446 strcmp(base, GQ_CACHE_LOCAL_METADATA) == 0)) ) | |
9 | 447 { |
448 GList *link = work; | |
449 work = work->next; | |
450 list = g_list_remove_link(list, link); | |
451 g_free(name); | |
452 g_list_free(link); | |
453 } | |
454 else | |
1 | 455 { |
9 | 456 work = work->next; |
1 | 457 } |
458 } | |
9 | 459 |
460 return list; | |
461 } | |
462 | |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
463 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
464 /* |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
465 *----------------------------------------------------------------------------- |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
466 * sidecar extension list |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
467 *----------------------------------------------------------------------------- |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
468 */ |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
469 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
470 static GList *sidecar_ext_get_list(void) |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
471 { |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
472 return sidecar_ext_list; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
473 } |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
474 |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
475 void sidecar_ext_parse(const gchar *text, gint quoted) |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
476 { |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
477 GList *work; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
478 gchar *value; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
479 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
480 work = sidecar_ext_list; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
481 while (work) |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
482 { |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
483 gchar *ext = work->data; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
484 work = work->next; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
485 g_free(ext); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
486 } |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
487 g_list_free(sidecar_ext_list); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
488 sidecar_ext_list = NULL; |
442 | 489 |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
490 if (quoted) |
217 | 491 value = quoted_value(text, NULL); |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
492 else |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
493 value = g_strdup(text); |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
494 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
495 if (value == NULL) return; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
496 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
497 sidecar_ext_list = filter_to_list(value); |
442 | 498 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
499 g_free(value); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
500 } |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
501 |
276 | 502 void sidecar_ext_write(SecureSaveInfo *ssi) |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
503 { |
347 | 504 secure_fprintf(ssi, "sidecar.ext: \"%s\"\n", sidecar_ext_to_string()); |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
505 } |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
506 |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
507 char *sidecar_ext_to_string() |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
508 { |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
509 GList *work; |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
510 GString *str = g_string_new(""); |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
511 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
512 work = sidecar_ext_list; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
513 while (work) |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
514 { |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
515 gchar *ext = work->data; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
516 work = work->next; |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
517 g_string_append(str, ext); |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
518 if (work) g_string_append(str, ";"); |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
519 } |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
167
diff
changeset
|
520 return g_string_free(str, FALSE); |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
521 } |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
522 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
523 void sidecar_ext_add_defaults() |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
524 { |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
172
diff
changeset
|
525 sidecar_ext_parse(".jpg;.cr2;.nef;.crw;.xmp", FALSE); |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
526 } |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
527 |
9 | 528 /* |
529 *----------------------------------------------------------------------------- | |
530 * path list recursive | |
531 *----------------------------------------------------------------------------- | |
532 */ | |
533 | |
534 static gint path_list_sort_cb(gconstpointer a, gconstpointer b) | |
535 { | |
536 return CASE_SORT((gchar *)a, (gchar *)b); | |
537 } | |
538 | |
539 GList *path_list_sort(GList *list) | |
540 { | |
541 return g_list_sort(list, path_list_sort_cb); | |
542 } | |
543 | |
544 static void path_list_recursive_append(GList **list, GList *dirs) | |
545 { | |
546 GList *work; | |
547 | |
548 work = dirs; | |
549 while (work) | |
550 { | |
551 const gchar *path = work->data; | |
552 GList *f = NULL; | |
553 GList *d = NULL; | |
554 | |
555 if (path_list(path, &f, &d)) | |
556 { | |
557 f = path_list_filter(f, FALSE); | |
558 f = path_list_sort(f); | |
559 *list = g_list_concat(*list, f); | |
560 | |
561 d = path_list_filter(d, TRUE); | |
562 d = path_list_sort(d); | |
563 path_list_recursive_append(list, d); | |
52
a210a19f26da
Sun Jun 5 03:05:39 2005 John Ellis <johne@verizon.net>
gqview
parents:
45
diff
changeset
|
564 path_list_free(d); |
9 | 565 } |
566 | |
567 work = work->next; | |
568 } | |
569 } | |
570 | |
571 GList *path_list_recursive(const gchar *path) | |
572 { | |
573 GList *list = NULL; | |
574 GList *d = NULL; | |
575 | |
576 if (!path_list(path, &list, &d)) return NULL; | |
577 list = path_list_filter(list, FALSE); | |
578 list = path_list_sort(list); | |
579 | |
580 d = path_list_filter(d, TRUE); | |
581 d = path_list_sort(d); | |
582 path_list_recursive_append(&list, d); | |
583 path_list_free(d); | |
584 | |
585 return list; | |
1 | 586 } |
587 | |
588 /* | |
589 *----------------------------------------------------------------------------- | |
9 | 590 * text conversion utils |
1 | 591 *----------------------------------------------------------------------------- |
592 */ | |
593 | |
9 | 594 gchar *text_from_size(gint64 size) |
1 | 595 { |
9 | 596 gchar *a, *b; |
597 gchar *s, *d; | |
598 gint l, n, i; | |
599 | |
600 /* what I would like to use is printf("%'d", size) | |
601 * BUT: not supported on every libc :( | |
602 */ | |
603 if (size > G_MAXUINT) | |
604 { | |
605 /* the %lld conversion is not valid in all libcs, so use a simple work-around */ | |
606 a = g_strdup_printf("%d%09d", (guint)(size / 1000000000), (guint)(size % 1000000000)); | |
607 } | |
608 else | |
609 { | |
610 a = g_strdup_printf("%d", (guint)size); | |
611 } | |
612 l = strlen(a); | |
613 n = (l - 1)/ 3; | |
614 if (n < 1) return a; | |
615 | |
616 b = g_new(gchar, l + n + 1); | |
617 | |
618 s = a; | |
619 d = b; | |
620 i = l - n * 3; | |
621 while (*s != '\0') | |
622 { | |
623 if (i < 1) | |
624 { | |
625 i = 3; | |
626 *d = ','; | |
627 d++; | |
628 } | |
629 | |
630 *d = *s; | |
631 s++; | |
632 d++; | |
633 i--; | |
634 } | |
635 *d = '\0'; | |
636 | |
637 g_free(a); | |
638 return b; | |
639 } | |
640 | |
641 gchar *text_from_size_abrev(gint64 size) | |
642 { | |
643 if (size < (gint64)1024) | |
644 { | |
645 return g_strdup_printf(_("%d bytes"), (gint)size); | |
646 } | |
647 if (size < (gint64)1048576) | |
648 { | |
15
3263965d5f9e
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
649 return g_strdup_printf(_("%.1f K"), (double)size / 1024.0); |
9 | 650 } |
651 if (size < (gint64)1073741824) | |
652 { | |
15
3263965d5f9e
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
653 return g_strdup_printf(_("%.1f MB"), (double)size / 1048576.0); |
9 | 654 } |
655 | |
15
3263965d5f9e
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
656 /* to avoid overflowing the double, do division in two steps */ |
3263965d5f9e
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
657 size /= 1048576; |
3263965d5f9e
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
658 return g_strdup_printf(_("%.1f GB"), (double)size / 1024.0); |
9 | 659 } |
660 | |
661 /* note: returned string is valid until next call to text_from_time() */ | |
662 const gchar *text_from_time(time_t t) | |
663 { | |
664 static gchar *ret = NULL; | |
665 gchar buf[128]; | |
666 gint buflen; | |
667 struct tm *btime; | |
668 GError *error = NULL; | |
669 | |
670 btime = localtime(&t); | |
671 | |
672 /* the %x warning about 2 digit years is not an error */ | |
673 buflen = strftime(buf, sizeof(buf), "%x %H:%M", btime); | |
674 if (buflen < 1) return ""; | |
675 | |
676 g_free(ret); | |
677 ret = g_locale_to_utf8(buf, buflen, NULL, NULL, &error); | |
678 if (error) | |
679 { | |
680 printf("Error converting locale strftime to UTF-8: %s\n", error->message); | |
681 g_error_free(error); | |
682 return ""; | |
683 } | |
684 | |
685 return ret; | |
1 | 686 } |
687 | |
9 | 688 /* |
689 *----------------------------------------------------------------------------- | |
690 * file info struct | |
691 *----------------------------------------------------------------------------- | |
692 */ | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
693 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
694 FileData *file_data_merge_sidecar_files(FileData *target, FileData *source); |
167 | 695 static void file_data_check_sidecars(FileData *fd); |
696 FileData *file_data_disconnect_sidecar_file(FileData *target, FileData *sfd); | |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
697 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
698 |
138 | 699 static void file_data_set_path(FileData *fd, const gchar *path) |
700 { | |
9 | 701 |
138 | 702 if (strcmp(path, "/") == 0) |
703 { | |
704 fd->path = g_strdup(path); | |
705 fd->name = fd->path; | |
706 fd->extension = fd->name + 1; | |
707 return; | |
708 } | |
709 | |
710 fd->path = g_strdup(path); | |
711 fd->name = filename_from_path(fd->path); | |
712 | |
713 if (strcmp(fd->name, "..") == 0) | |
714 { | |
442 | 715 gchar *dir = remove_level_from_path(path); |
138 | 716 g_free(fd->path); |
717 fd->path = remove_level_from_path(dir); | |
718 g_free(dir); | |
719 fd->name = ".."; | |
720 fd->extension = fd->name + 2; | |
442 | 721 return; |
138 | 722 } |
723 else if (strcmp(fd->name, ".") == 0) | |
724 { | |
725 g_free(fd->path); | |
726 fd->path = remove_level_from_path(path); | |
727 fd->name = "."; | |
728 fd->extension = fd->name + 1; | |
729 return; | |
730 } | |
731 | |
732 fd->extension = extension_from_path(fd->path); | |
442 | 733 if (fd->extension == NULL) |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
734 fd->extension = fd->name + strlen(fd->name); |
138 | 735 } |
736 | |
167 | 737 static void file_data_check_changed_files(FileData *fd, struct stat *st) |
164 | 738 { |
167 | 739 GList *work; |
164 | 740 if (fd->size != st->st_size || |
741 fd->date != st->st_mtime) | |
742 { | |
743 fd->size = st->st_size; | |
744 fd->date = st->st_mtime; | |
745 if (fd->pixbuf) g_object_unref(fd->pixbuf); | |
746 fd->pixbuf = NULL; | |
747 } | |
167 | 748 |
749 work = fd->sidecar_files; | |
750 while (work) | |
751 { | |
752 FileData *sfd = work->data; | |
753 struct stat st; | |
754 | |
755 if (!stat_utf8(sfd->path, &st)) | |
756 { | |
757 file_data_disconnect_sidecar_file(fd, sfd); | |
758 } | |
442 | 759 |
167 | 760 file_data_check_changed_files(sfd, &st); |
761 work = work->next; | |
762 } | |
164 | 763 } |
764 | |
138 | 765 static GHashTable *file_data_pool = NULL; |
766 | |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
767 static FileData *file_data_new(const gchar *path_utf8, struct stat *st, gboolean check_sidecars) |
9 | 768 { |
769 FileData *fd; | |
770 | |
510 | 771 DEBUG_2("file_data_new: '%s' %d", path_utf8, check_sidecars); |
442 | 772 |
138 | 773 if (!file_data_pool) |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
510
diff
changeset
|
774 file_data_pool = g_hash_table_new(g_str_hash, g_str_equal); |
442 | 775 |
138 | 776 fd = g_hash_table_lookup(file_data_pool, path_utf8); |
777 if (fd) | |
778 { | |
167 | 779 file_data_check_changed_files(fd, st); |
510 | 780 DEBUG_2("file_data_pool hit: '%s'", fd->path); |
138 | 781 return file_data_ref(fd); |
782 } | |
442 | 783 |
9 | 784 fd = g_new0(FileData, 1); |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
785 |
138 | 786 file_data_set_path(fd, path_utf8); |
442 | 787 |
138 | 788 fd->original_path = g_strdup(path_utf8); |
9 | 789 fd->size = st->st_size; |
790 fd->date = st->st_mtime; | |
791 fd->pixbuf = NULL; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
792 fd->sidecar_files = NULL; |
138 | 793 fd->ref = 1; |
794 fd->magick = 0x12345678; | |
442 | 795 |
138 | 796 g_hash_table_insert(file_data_pool, fd->original_path, fd); |
442 | 797 |
798 if (check_sidecars && sidecar_file_priority(fd->extension)) | |
146 | 799 file_data_check_sidecars(fd); |
9 | 800 return fd; |
801 } | |
802 | |
146 | 803 static void file_data_check_sidecars(FileData *fd) |
804 { | |
805 int base_len = fd->extension - fd->path; | |
806 GString *fname = g_string_new_len(fd->path, base_len); | |
807 FileData *parent_fd = NULL; | |
808 GList *work = sidecar_ext_get_list(); | |
442 | 809 while (work) |
146 | 810 { |
811 /* check for possible sidecar files; | |
812 the sidecar files created here are referenced only via fd->sidecar_files or fd->parent, | |
813 they have fd->ref set to 0 and file_data unref must chack and free them all together | |
814 (using fd->ref would cause loops and leaks) | |
815 */ | |
442 | 816 |
146 | 817 FileData *new_fd; |
442 | 818 |
146 | 819 gchar *ext = work->data; |
820 work = work->next; | |
442 | 821 |
146 | 822 if (strcmp(ext, fd->extension) == 0) |
823 { | |
824 new_fd = fd; /* processing the original file */ | |
825 } | |
826 else | |
827 { | |
828 struct stat nst; | |
829 g_string_truncate(fname, base_len); | |
830 g_string_append(fname, ext); | |
442 | 831 |
146 | 832 if (!stat_utf8(fname->str, &nst)) |
833 continue; | |
442 | 834 |
146 | 835 new_fd = file_data_new(fname->str, &nst, FALSE); |
836 new_fd->ref--; /* do not use ref here */ | |
837 } | |
442 | 838 |
146 | 839 if (!parent_fd) |
840 parent_fd = new_fd; /* parent is the one with the highest prio, found first */ | |
841 else | |
842 file_data_merge_sidecar_files(parent_fd, new_fd); | |
843 } | |
844 g_string_free(fname, TRUE); | |
845 } | |
846 | |
847 | |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
848 static FileData *file_data_new_local(const gchar *path, struct stat *st, gboolean check_sidecars) |
138 | 849 { |
850 gchar *path_utf8 = path_to_utf8(path); | |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
851 FileData *ret = file_data_new(path_utf8, st, check_sidecars); |
138 | 852 g_free(path_utf8); |
853 return ret; | |
854 } | |
855 | |
856 FileData *file_data_new_simple(const gchar *path_utf8) | |
9 | 857 { |
858 struct stat st; | |
859 | |
138 | 860 if (!stat_utf8(path_utf8, &st)) |
9 | 861 { |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
862 st.st_size = 0; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
863 st.st_mtime = 0; |
9 | 864 } |
865 | |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
866 return file_data_new(path_utf8, &st, TRUE); |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
867 } |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
868 |
141 | 869 FileData *file_data_add_sidecar_file(FileData *target, FileData *sfd) |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
870 { |
141 | 871 sfd->parent = target; |
146 | 872 if(!g_list_find(target->sidecar_files, sfd)) |
873 target->sidecar_files = g_list_prepend(target->sidecar_files, sfd); | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
874 return target; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
875 } |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
876 |
167 | 877 |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
878 FileData *file_data_merge_sidecar_files(FileData *target, FileData *source) |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
879 { |
141 | 880 GList *work; |
881 file_data_add_sidecar_file(target, source); | |
442 | 882 |
141 | 883 work = source->sidecar_files; |
884 while (work) | |
885 { | |
886 FileData *sfd = work->data; | |
146 | 887 file_data_add_sidecar_file(target, sfd); |
141 | 888 work = work->next; |
889 } | |
890 | |
146 | 891 g_list_free(source->sidecar_files); |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
892 source->sidecar_files = NULL; |
167 | 893 |
442 | 894 target->sidecar_files = filelist_sort(target->sidecar_files, SORT_NAME, TRUE); |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
895 return target; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
896 } |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
897 |
167 | 898 |
899 | |
138 | 900 FileData *file_data_ref(FileData *fd) |
901 { | |
902 if (fd == NULL) return NULL; | |
903 | |
904 // return g_memdup(fd, sizeof(FileData)); | |
905 g_assert(fd->magick == 0x12345678); | |
906 fd->ref++; | |
907 return fd; | |
908 } | |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
909 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
910 static void file_data_free(FileData *fd) |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
911 { |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
912 g_assert(fd->magick == 0x12345678); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
913 g_assert(fd->ref == 0); |
442 | 914 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
915 g_hash_table_remove(file_data_pool, fd->original_path); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
916 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
917 g_free(fd->path); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
918 g_free(fd->original_path); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
919 if (fd->pixbuf) g_object_unref(fd->pixbuf); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
920 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
921 |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
922 g_assert(fd->sidecar_files == NULL); /* sidecar files must be freed before calling this */ |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
923 |
442 | 924 file_data_change_info_free(NULL, fd); |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
925 g_free(fd); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
926 } |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
927 |
138 | 928 void file_data_unref(FileData *fd) |
929 { | |
930 if (fd == NULL) return; | |
931 g_assert(fd->magick == 0x12345678); | |
442 | 932 |
138 | 933 fd->ref--; |
510 | 934 DEBUG_2("file_data_unref (%d): '%s'", fd->ref, fd->path); |
425
10efd67e5d3c
file_dat_unref: display number of references as well of path (debug only).
zas_
parents:
370
diff
changeset
|
935 |
138 | 936 if (fd->ref == 0) |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
937 { |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
938 FileData *parent = fd->parent ? fd->parent : fd; |
442 | 939 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
940 GList *work; |
442 | 941 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
942 if (parent->ref > 0) |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
943 return; |
442 | 944 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
945 work = parent->sidecar_files; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
946 while (work) |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
947 { |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
948 FileData *sfd = work->data; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
949 if (sfd->ref > 0) |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
950 return; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
951 work = work->next; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
952 } |
442 | 953 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
954 /* none of parent/children is referenced, we can free everything */ |
442 | 955 |
510 | 956 DEBUG_2("file_data_unref: deleting '%s', parent '%s'", fd->path, parent->path); |
442 | 957 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
958 work = parent->sidecar_files; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
959 while (work) |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
960 { |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
961 FileData *sfd = work->data; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
962 file_data_free(sfd); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
963 work = work->next; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
964 } |
442 | 965 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
966 g_list_free(parent->sidecar_files); |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
967 parent->sidecar_files = NULL; |
442 | 968 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
969 file_data_free(parent); |
442 | 970 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
971 } |
138 | 972 } |
973 | |
167 | 974 FileData *file_data_disconnect_sidecar_file(FileData *target, FileData *sfd) |
975 { | |
976 sfd->parent = target; | |
977 g_assert(g_list_find(target->sidecar_files, sfd)); | |
978 | |
979 target->sidecar_files = g_list_remove(target->sidecar_files, sfd); | |
980 sfd->parent = NULL; | |
981 | |
982 if (sfd->ref == 0) { | |
983 file_data_free(sfd); | |
984 return NULL; | |
985 } | |
986 | |
987 return sfd; | |
988 } | |
989 | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
990 /* compare name without extension */ |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
991 gint file_data_compare_name_without_ext(FileData *fd1, FileData *fd2) |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
992 { |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
993 size_t len1 = fd1->extension - fd1->name; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
994 size_t len2 = fd2->extension - fd2->name; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
995 |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
996 if (len1 < len2) return -1; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
997 if (len1 > len2) return 1; |
442 | 998 |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
999 return strncmp(fd1->name, fd2->name, len1); |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1000 } |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1001 |
240
cce347409480
Fix two more gcc warnings related to function declarations.
zas_
parents:
217
diff
changeset
|
1002 void file_data_do_change(FileData *fd) |
138 | 1003 { |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1004 //FIXME sidecars |
138 | 1005 g_assert(fd->change); |
1006 g_free(fd->path); | |
1007 g_hash_table_remove(file_data_pool, fd->original_path); | |
1008 g_free(fd->original_path); | |
1009 file_data_set_path(fd, fd->change->dest); | |
1010 fd->original_path = g_strdup(fd->change->dest); | |
1011 g_hash_table_insert(file_data_pool, fd->original_path, fd); | |
1012 | |
1013 } | |
1014 | |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1015 gboolean file_data_add_change_info(FileData *fd, FileDataChangeType type, const gchar *src, const gchar *dest) |
138 | 1016 { |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1017 |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1018 FileDataChangeInfo *fdci; |
442 | 1019 |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1020 if (fd->change) return FALSE; |
442 | 1021 |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1022 fdci = g_new0(FileDataChangeInfo, 1); |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1023 |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1024 fdci->type = type; |
138 | 1025 |
1026 if (src) | |
1027 fdci->source = g_strdup(src); | |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1028 else |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1029 fdci->source = g_strdup(fd->path); |
442 | 1030 |
138 | 1031 if (dest) |
1032 fdci->dest = g_strdup(dest); | |
442 | 1033 |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1034 fd->change = fdci; |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
1035 return TRUE; |
138 | 1036 } |
1037 | |
1038 void file_data_change_info_free(FileDataChangeInfo *fdci, FileData *fd) | |
1039 { | |
1040 if (!fdci && fd) | |
1041 fdci = fd->change; | |
442 | 1042 |
138 | 1043 if (!fdci) |
1044 return; | |
442 | 1045 |
138 | 1046 g_free(fdci->source); |
1047 g_free(fdci->dest); | |
442 | 1048 |
138 | 1049 g_free(fdci); |
442 | 1050 |
138 | 1051 if (fd) |
1052 fd->change = NULL; | |
1053 } | |
139 | 1054 |
1055 | |
1056 | |
442 | 1057 |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1058 /* |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1059 *----------------------------------------------------------------------------- |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1060 * sidecar file info struct |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1061 *----------------------------------------------------------------------------- |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1062 */ |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1063 |
9 | 1064 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1065 |
240
cce347409480
Fix two more gcc warnings related to function declarations.
zas_
parents:
217
diff
changeset
|
1066 static gint sidecar_file_priority(const gchar *path) |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1067 { |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1068 const char *extension = extension_from_path(path); |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1069 int i = 1; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1070 GList *work; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1071 if (extension == NULL) |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1072 return 0; |
442 | 1073 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1074 work = sidecar_ext_get_list(); |
442 | 1075 |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1076 while (work) { |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1077 gchar *ext = work->data; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1078 work = work->next; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1079 if (strcmp(extension, ext) == 0) return i; |
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1080 i++; |
442 | 1081 } |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1082 return 0; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1083 } |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1084 |
139 | 1085 gchar *sidecar_file_data_list_to_string(FileData *fd) |
1086 { | |
1087 GList *work; | |
1088 GString *result = g_string_new(""); | |
1089 | |
1090 work = fd->sidecar_files; | |
1091 while (work) | |
1092 { | |
141 | 1093 FileData *sfd = work->data; |
139 | 1094 result = g_string_append(result, "+ "); |
1095 result = g_string_append(result, sfd->extension); | |
1096 work = work->next; | |
1097 if (work) result = g_string_append_c(result, ' '); | |
1098 } | |
1099 | |
1100 return g_string_free(result, FALSE); | |
1101 } | |
1102 | |
9 | 1103 /* |
1104 *----------------------------------------------------------------------------- | |
1105 * load file list | |
1106 *----------------------------------------------------------------------------- | |
1107 */ | |
1108 | |
1109 static SortType filelist_sort_method = SORT_NONE; | |
1110 static gint filelist_sort_ascend = TRUE; | |
1111 | |
138 | 1112 |
1113 gint filelist_sort_compare_filedata(FileData *fa, FileData *fb) | |
9 | 1114 { |
1115 if (!filelist_sort_ascend) | |
1116 { | |
138 | 1117 FileData *tmp = fa; |
1118 fa = fb; | |
1119 fb = tmp; | |
9 | 1120 } |
1121 | |
1122 switch (filelist_sort_method) | |
1123 { | |
1124 case SORT_SIZE: | |
1125 if (fa->size < fb->size) return -1; | |
1126 if (fa->size > fb->size) return 1; | |
167 | 1127 return CASE_SORT(fa->name, fb->name); /* fall back to name */ |
9 | 1128 break; |
1129 case SORT_TIME: | |
1130 if (fa->date < fb->date) return -1; | |
1131 if (fa->date > fb->date) return 1; | |
167 | 1132 return CASE_SORT(fa->name, fb->name); /* fall back to name */ |
9 | 1133 break; |
1134 #ifdef HAVE_STRVERSCMP | |
1135 case SORT_NUMBER: | |
1136 return strverscmp(fa->name, fb->name); | |
1137 break; | |
1138 #endif | |
1139 case SORT_NAME: | |
1140 default: | |
1141 return CASE_SORT(fa->name, fb->name); | |
1142 break; | |
1143 } | |
1144 } | |
1145 | |
167 | 1146 gint filelist_sort_compare_filedata_full(FileData *fa, FileData *fb, SortType method, gint ascend) |
1147 { | |
1148 filelist_sort_method = method; | |
1149 filelist_sort_ascend = ascend; | |
1150 return filelist_sort_compare_filedata(fa, fb); | |
1151 } | |
1152 | |
138 | 1153 static gint filelist_sort_file_cb(void *a, void *b) |
1154 { | |
1155 return filelist_sort_compare_filedata(a, b); | |
1156 } | |
1157 | |
1158 GList *filelist_sort_full(GList *list, SortType method, gint ascend, GCompareFunc cb) | |
9 | 1159 { |
1160 filelist_sort_method = method; | |
1161 filelist_sort_ascend = ascend; | |
138 | 1162 return g_list_sort(list, cb); |
1163 } | |
1164 | |
1165 GList *filelist_insert_sort_full(GList *list, void *data, SortType method, gint ascend, GCompareFunc cb) | |
1166 { | |
1167 filelist_sort_method = method; | |
1168 filelist_sort_ascend = ascend; | |
1169 return g_list_insert_sorted(list, data, cb); | |
1170 } | |
1171 | |
1172 GList *filelist_sort(GList *list, SortType method, gint ascend) | |
1173 { | |
1174 return filelist_sort_full(list, method, ascend, (GCompareFunc) filelist_sort_file_cb); | |
9 | 1175 } |
1176 | |
1177 GList *filelist_insert_sort(GList *list, FileData *fd, SortType method, gint ascend) | |
1178 { | |
138 | 1179 return filelist_insert_sort_full(list, fd, method, ascend, (GCompareFunc) filelist_sort_file_cb); |
9 | 1180 } |
1181 | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
101
diff
changeset
|
1182 |
148 | 1183 static GList *filelist_filter_out_sidecars(GList *flist) |
1184 { | |
1185 GList *work = flist; | |
1186 GList *flist_filtered = NULL; | |
442 | 1187 |
148 | 1188 while (work) |
1189 { | |
1190 FileData *fd = work->data; | |
1191 work = work->next; | |
1192 if (fd->parent) /* remove fd's that are children */ | |
442 | 1193 file_data_unref(fd); |
148 | 1194 else |
1195 flist_filtered = g_list_prepend(flist_filtered, fd); | |
1196 } | |
1197 g_list_free(flist); | |
1198 return flist_filtered; | |
1199 } | |
1200 | |
138 | 1201 static gint filelist_read_real(const gchar *path, GList **files, GList **dirs, gint follow_symlinks) |
1 | 1202 { |
1203 DIR *dp; | |
1204 struct dirent *dir; | |
1205 struct stat ent_sbuf; | |
9 | 1206 gchar *pathl; |
1207 GList *dlist; | |
1208 GList *flist; | |
1 | 1209 |
9 | 1210 dlist = NULL; |
1211 flist = NULL; | |
1212 | |
1213 pathl = path_from_utf8(path); | |
1214 if (!pathl || (dp = opendir(pathl)) == NULL) | |
1 | 1215 { |
9 | 1216 g_free(pathl); |
1217 if (files) *files = NULL; | |
1218 if (dirs) *dirs = NULL; | |
1219 return FALSE; | |
1 | 1220 } |
1221 | |
9 | 1222 /* root dir fix */ |
1223 if (pathl[0] == '/' && pathl[1] == '\0') | |
1224 { | |
1225 g_free(pathl); | |
1226 pathl = g_strdup(""); | |
1227 } | |
1 | 1228 |
1229 while ((dir = readdir(dp)) != NULL) | |
1230 { | |
9 | 1231 gchar *name = dir->d_name; |
356 | 1232 if (options->file_filter.show_hidden_files || !ishidden(name)) |
1 | 1233 { |
9 | 1234 gchar *filepath = g_strconcat(pathl, "/", name, NULL); |
442 | 1235 if ((follow_symlinks ? |
138 | 1236 stat(filepath, &ent_sbuf) : |
1237 lstat(filepath, &ent_sbuf)) >= 0) | |
1 | 1238 { |
9 | 1239 if (S_ISDIR(ent_sbuf.st_mode)) |
1 | 1240 { |
9 | 1241 /* we ignore the .thumbnails dir for cleanliness */ |
1242 if ((dirs) && | |
1243 !(name[0] == '.' && (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'))) && | |
283 | 1244 strcmp(name, GQ_CACHE_LOCAL_THUMB) != 0 && |
1245 strcmp(name, GQ_CACHE_LOCAL_METADATA) != 0 && | |
79
528e3432e0c0
Thu Oct 19 07:23:37 2006 John Ellis <johne@verizon.net>
gqview
parents:
53
diff
changeset
|
1246 strcmp(name, THUMB_FOLDER_LOCAL) != 0) |
9 | 1247 { |
145
8be2cc687304
fixed grouping sidecar files and made it configurable via config file
nadvornik
parents:
143
diff
changeset
|
1248 dlist = g_list_prepend(dlist, file_data_new_local(filepath, &ent_sbuf, FALSE)); |
9 | 1249 } |
1 | 1250 } |
1251 else | |
1252 { | |
9 | 1253 if ((files) && filter_name_exists(name)) |
1254 { | |
148 | 1255 flist = g_list_prepend(flist, file_data_new_local(filepath, &ent_sbuf, TRUE)); |
9 | 1256 } |
1 | 1257 } |
1258 } | |
9 | 1259 g_free(filepath); |
1 | 1260 } |
1261 } | |
1262 | |
1263 closedir(dp); | |
1264 | |
9 | 1265 g_free(pathl); |
1 | 1266 |
148 | 1267 flist = filelist_filter_out_sidecars(flist); |
1268 | |
9 | 1269 if (dirs) *dirs = dlist; |
1270 if (files) *files = flist; | |
1 | 1271 |
9 | 1272 return TRUE; |
1 | 1273 } |
1274 | |
138 | 1275 gint filelist_read(const gchar *path, GList **files, GList **dirs) |
1276 { | |
1277 return filelist_read_real(path, files, dirs, TRUE); | |
1278 } | |
1279 | |
1280 gint filelist_read_lstat(const gchar *path, GList **files, GList **dirs) | |
1281 { | |
1282 return filelist_read_real(path, files, dirs, FALSE); | |
1283 } | |
1284 | |
9 | 1285 void filelist_free(GList *list) |
1 | 1286 { |
9 | 1287 GList *work; |
3 | 1288 |
9 | 1289 work = list; |
1290 while (work) | |
1 | 1291 { |
138 | 1292 file_data_unref((FileData *)work->data); |
1 | 1293 work = work->next; |
1294 } | |
1295 | |
9 | 1296 g_list_free(list); |
3 | 1297 } |
1298 | |
1 | 1299 |
138 | 1300 GList *filelist_copy(GList *list) |
1301 { | |
1302 GList *new_list = NULL; | |
1303 GList *work; | |
1304 | |
1305 work = list; | |
1306 while (work) | |
1307 { | |
1308 FileData *fd; | |
442 | 1309 |
138 | 1310 fd = work->data; |
1311 work = work->next; | |
442 | 1312 |
138 | 1313 new_list = g_list_prepend(new_list, file_data_ref(fd)); |
1314 } | |
442 | 1315 |
138 | 1316 return g_list_reverse(new_list); |
1317 } | |
1318 | |
1319 GList *filelist_from_path_list(GList *list) | |
1320 { | |
1321 GList *new_list = NULL; | |
1322 GList *work; | |
1323 | |
1324 work = list; | |
1325 while (work) | |
1326 { | |
1327 gchar *path; | |
442 | 1328 |
138 | 1329 path = work->data; |
1330 work = work->next; | |
442 | 1331 |
138 | 1332 new_list = g_list_prepend(new_list, file_data_new_simple(path)); |
1333 } | |
442 | 1334 |
138 | 1335 return g_list_reverse(new_list); |
1336 } | |
1337 | |
1338 GList *filelist_to_path_list(GList *list) | |
1339 { | |
1340 GList *new_list = NULL; | |
1341 GList *work; | |
1342 | |
1343 work = list; | |
1344 while (work) | |
1345 { | |
1346 FileData *fd; | |
442 | 1347 |
138 | 1348 fd = work->data; |
1349 work = work->next; | |
442 | 1350 |
138 | 1351 new_list = g_list_prepend(new_list, g_strdup(fd->path)); |
1352 } | |
442 | 1353 |
138 | 1354 return g_list_reverse(new_list); |
1355 } | |
1356 | |
1357 GList *filelist_filter(GList *list, gint is_dir_list) | |
1358 { | |
1359 GList *work; | |
1360 | |
356 | 1361 if (!is_dir_list && options->file_filter.disable && options->file_filter.show_hidden_files) return list; |
138 | 1362 |
1363 work = list; | |
1364 while (work) | |
1365 { | |
1366 FileData *fd = (FileData *)(work->data); | |
1367 const gchar *name = fd->name; | |
1368 | |
356 | 1369 if ((!options->file_filter.show_hidden_files && ishidden(name)) || |
138 | 1370 (!is_dir_list && !filter_name_exists(name)) || |
283 | 1371 (is_dir_list && name[0] == '.' && (strcmp(name, GQ_CACHE_LOCAL_THUMB) == 0 || |
1372 strcmp(name, GQ_CACHE_LOCAL_METADATA) == 0)) ) | |
138 | 1373 { |
1374 GList *link = work; | |
1375 work = work->next; | |
1376 list = g_list_remove_link(list, link); | |
1377 file_data_unref(fd); | |
1378 g_list_free(link); | |
1379 } | |
1380 else | |
1381 { | |
1382 work = work->next; | |
1383 } | |
1384 } | |
1385 | |
1386 return list; | |
1387 } | |
1388 | |
1389 /* | |
1390 *----------------------------------------------------------------------------- | |
1391 * filelist recursive | |
1392 *----------------------------------------------------------------------------- | |
1393 */ | |
1394 | |
1395 static gint filelist_sort_path_cb(gconstpointer a, gconstpointer b) | |
1396 { | |
1397 return CASE_SORT(((FileData *)a)->path, ((FileData *)b)->path); | |
1398 } | |
1399 | |
1400 GList *filelist_sort_path(GList *list) | |
1401 { | |
1402 return g_list_sort(list, filelist_sort_path_cb); | |
1403 } | |
1404 | |
1405 static void filelist_recursive_append(GList **list, GList *dirs) | |
1406 { | |
1407 GList *work; | |
1408 | |
1409 work = dirs; | |
1410 while (work) | |
1411 { | |
1412 FileData *fd = (FileData *)(work->data); | |
1413 const gchar *path = fd->path; | |
1414 GList *f = NULL; | |
1415 GList *d = NULL; | |
1416 | |
1417 if (filelist_read(path, &f, &d)) | |
1418 { | |
1419 f = filelist_filter(f, FALSE); | |
1420 f = filelist_sort_path(f); | |
1421 *list = g_list_concat(*list, f); | |
1422 | |
1423 d = filelist_filter(d, TRUE); | |
1424 d = filelist_sort_path(d); | |
1425 filelist_recursive_append(list, d); | |
1426 filelist_free(d); | |
1427 } | |
1428 | |
1429 work = work->next; | |
1430 } | |
1431 } | |
1432 | |
1433 GList *filelist_recursive(const gchar *path) | |
1434 { | |
1435 GList *list = NULL; | |
1436 GList *d = NULL; | |
1437 | |
1438 if (!filelist_read(path, &list, &d)) return NULL; | |
1439 list = filelist_filter(list, FALSE); | |
1440 list = filelist_sort_path(list); | |
1441 | |
1442 d = filelist_filter(d, TRUE); | |
1443 d = filelist_sort_path(d); | |
1444 filelist_recursive_append(&list, d); | |
1445 filelist_free(d); | |
1446 | |
1447 return list; | |
1448 } |