collection_load(): accept whitespaces at start of lines.
[geeqie.git] / src / collect-io.c
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  *
5  * Author: John Ellis
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11
12
13 #include "main.h"
14 #include "collect-io.h"
15
16 #include "collect.h"
17 #include "filelist.h"
18 #include "layout_util.h"
19 #include "rcfile.h"
20 #include "secure_save.h"
21 #include "thumb.h"
22 #include "ui_fileops.h"
23
24
25 #define GQ_COLLECTION_MARKER "#" GQ_APPNAME
26
27 #define GQ_COLLECTION_FAIL_MIN     300
28 #define GQ_COLLECTION_FAIL_PERCENT 98
29 #define GQ_COLLECTION_READ_BUFSIZE 4096
30
31 typedef struct _CollectManagerEntry CollectManagerEntry;
32
33 static void collection_load_thumb_step(CollectionData *cd);
34 static gint collection_save_private(CollectionData *cd, const gchar *path);
35
36 static CollectManagerEntry *collect_manager_get_entry(const gchar *path);
37 static void collect_manager_entry_reset(CollectManagerEntry *entry);
38 static gint collect_manager_process_action(CollectManagerEntry *entry, gchar **path_ptr);
39
40
41 static gint scan_geometry(gchar *buffer, gint *x, gint *y, gint *w, gint *h)
42 {
43         gint nx, ny, nw, nh;
44
45         if(sscanf(buffer, "%d %d %d %d", &nx, &ny, &nw, &nh) != 4) return FALSE;
46
47         *x = nx;
48         *y = ny;
49         *w = nw;
50         *h = nh;
51
52         return TRUE;
53 }
54
55 static gint collection_load_private(CollectionData *cd, const gchar *path, CollectionLoadFlags flags)
56 {
57         gchar s_buf[GQ_COLLECTION_READ_BUFSIZE];
58         FILE *f;
59         gchar *pathl;
60         gint limit_failures = TRUE;
61         gint success = TRUE;
62         guint total = 0;
63         guint fail = 0;
64         gboolean changed = FALSE;
65         CollectManagerEntry *entry = NULL;
66         guint flush = flags & COLLECTION_LOAD_FLUSH;
67         guint append = flags & COLLECTION_LOAD_APPEND;
68         guint only_geometry = flags & COLLECTION_LOAD_GEOMETRY;
69
70         if (!only_geometry)
71                 {
72                 collection_load_stop(cd);
73
74                 if (flush)
75                         collect_manager_flush();
76                 else
77                         entry = collect_manager_get_entry(path);
78
79                 if (!append)
80                         {
81                         collection_list_free(cd->list);
82                         cd->list = NULL;
83                         }
84                 }
85
86         if (!path && !cd->path) return FALSE;
87
88         if (!path) path = cd->path;
89         
90         if (debug) printf("collection load: append=%d flush=%d only_geometry=%d path=%s\n",
91                           append, flush, only_geometry, path);
92
93         /* load it */
94         pathl = path_from_utf8(path);
95         f = fopen(pathl, "r");
96         g_free(pathl);
97         if (!f)
98                 {
99                 printf("Failed to open collection file: \"%s\"\n", path);
100                 return FALSE;
101                 }
102
103         while (fgets(s_buf, sizeof(s_buf), f))
104                 {
105                 gchar *buf;
106                 gchar *p = s_buf;
107
108                 /* Skip whitespaces and empty lines */
109                 while (*p && g_ascii_isspace(*p)) p++;
110                 if (*p == '\n' || *p == '\r') continue;
111
112                 /* Parse comments */
113                 if (*p == '#')
114                         {
115                         if (strncasecmp(p, GQ_COLLECTION_MARKER, strlen(GQ_COLLECTION_MARKER)) == 0)
116                                 {
117                                 /* Looks like an official collection, allow unchecked input.
118                                  * All this does is allow adding files that may not exist,
119                                  * which is needed for the collection manager to work.
120                                  * Also unofficial files abort after too many invalid entries.
121                                  */
122                                 limit_failures = FALSE;
123                                 }
124                         else if (strncmp(p, "#geometry:", 10 ) == 0 &&
125                             scan_geometry(p + 10, &cd->window_x, &cd->window_y, &cd->window_w, &cd->window_h) )
126                                 {
127                                 cd->window_read = TRUE;
128                                 if (only_geometry)
129                                         {
130                                         fclose(f);
131                                         return TRUE;
132                                         }
133                                 }
134                         else if (strncasecmp(p, "GQview collection", strlen("GQview collection")) == 0)
135                                 {
136                                 /* As 2008/04/15 there is no difference between our collection file format
137                                  * and GQview 2.1.5 collection file format so ignore failures as well. */
138                                 limit_failures = FALSE;
139                                 }
140                         continue;
141                         }
142
143                 /* Read filenames */
144                 buf = quoted_value(p, NULL);
145                 if (buf)
146                         {
147                         gint valid;
148                         
149                         if (!flush)
150                                 changed |= collect_manager_process_action(entry, &buf);
151                         
152                         valid = (buf[0] == '/' && collection_add_check(cd, file_data_new_simple(buf), FALSE, TRUE));
153                         if (debug && !valid) printf("collection invalid file: %s\n", buf);
154                         g_free(buf);
155
156                         total++;
157                         if (!valid && limit_failures)
158                                 {
159                                 fail++;
160                                 if (fail > GQ_COLLECTION_FAIL_MIN &&
161                                     fail * 100 / total > GQ_COLLECTION_FAIL_PERCENT)
162                                         {
163                                         printf("%d invalid filenames in unoffical collection file, closing: %s\n", fail, path);
164                                         success = FALSE;
165                                         break;
166                                         }
167                                 }
168                         }
169                 }
170
171         if (debug) printf("collection files: total = %d fail = %d\n", total, fail); 
172
173         fclose(f);
174         if (only_geometry) return FALSE;
175
176         if (!flush)
177                 {
178                 gchar *buf = NULL;
179                 while (collect_manager_process_action(entry, &buf))
180                         {
181                         collection_add_check(cd, file_data_new_simple(buf), FALSE, TRUE);
182                         changed = TRUE;
183                         g_free(buf);
184                         }
185                 }
186
187         cd->list = collection_list_sort(cd->list, cd->sort_method);
188         
189         if (!flush && changed && success)
190                 collection_save_private(cd, path);
191                 
192         if (!flush)
193                 collect_manager_entry_reset(entry);
194         
195         if (!append) cd->changed = FALSE;
196
197         return success;
198 }
199
200 gint collection_load(CollectionData *cd, const gchar *path, CollectionLoadFlags flags)
201 {
202         if (collection_load_private(cd, path, flags | COLLECTION_LOAD_FLUSH))
203                 {
204                 layout_recent_add_path(cd->path);
205                 return TRUE;
206                 }
207
208         return FALSE;
209 }
210
211 static void collection_load_thumb_do(CollectionData *cd)
212 {
213         GdkPixbuf *pixbuf;
214
215         if (!cd->thumb_loader || !g_list_find(cd->list, cd->thumb_info)) return;
216
217         pixbuf = thumb_loader_get_pixbuf(cd->thumb_loader, TRUE);
218         collection_info_set_thumb(cd->thumb_info, pixbuf);
219         g_object_unref(pixbuf);
220
221         if (cd->info_updated_func) cd->info_updated_func(cd, cd->thumb_info, cd->info_updated_data);
222 }
223
224 static void collection_load_thumb_error_cb(ThumbLoader *tl, gpointer data)
225 {
226         CollectionData *cd = data;
227
228         collection_load_thumb_do(cd);
229         collection_load_thumb_step(cd);
230 }
231
232 static void collection_load_thumb_done_cb(ThumbLoader *tl, gpointer data)
233 {
234         CollectionData *cd = data;
235
236         collection_load_thumb_do(cd);
237         collection_load_thumb_step(cd);
238 }
239
240 static void collection_load_thumb_step(CollectionData *cd)
241 {
242         GList *work;
243         CollectInfo *ci;
244
245         if (!cd->list)
246                 {
247                 collection_load_stop(cd);
248                 return;
249                 }
250
251         work = cd->list;
252         ci = work->data;
253         work = work->next;
254         /* find first unloaded thumb */
255         while (work && ci->pixbuf)
256                 {
257                 ci = work->data;
258                 work = work->next;
259                 }
260
261         if (!ci || ci->pixbuf)
262                 {
263                 /* done */
264                 collection_load_stop(cd);
265
266                 /* send a NULL CollectInfo to notify end */
267                 if (cd->info_updated_func) cd->info_updated_func(cd, NULL, cd->info_updated_data);
268
269                 return;
270                 }
271
272         /* setup loader and call it */
273         cd->thumb_info = ci;
274         thumb_loader_free(cd->thumb_loader);
275         cd->thumb_loader = thumb_loader_new(options->thumbnails.max_width, options->thumbnails.max_height);
276         thumb_loader_set_callbacks(cd->thumb_loader,
277                                    collection_load_thumb_done_cb,
278                                    collection_load_thumb_error_cb,
279                                    NULL,
280                                    cd);
281
282         /* start it */
283         if (!thumb_loader_start(cd->thumb_loader, ci->fd->path))
284                 {
285                 /* error, handle it, do next */
286                 if (debug) printf("error loading thumb for %s\n", ci->fd->path);
287                 collection_load_thumb_do(cd);
288                 collection_load_thumb_step(cd);
289                 }
290 }
291
292 void collection_load_thumb_idle(CollectionData *cd)
293 {
294         if (!cd->thumb_loader) collection_load_thumb_step(cd);
295 }
296
297 gint collection_load_begin(CollectionData *cd, const gchar *path, CollectionLoadFlags flags)
298 {
299         if (!collection_load(cd, path, flags)) return FALSE;
300
301         collection_load_thumb_idle(cd);
302
303         return TRUE;
304 }
305
306 void collection_load_stop(CollectionData *cd)
307 {
308         if (!cd->thumb_loader) return;
309
310         thumb_loader_free(cd->thumb_loader);
311         cd->thumb_loader = NULL;
312 }
313
314 static gint collection_save_private(CollectionData *cd, const gchar *path)
315 {
316         SecureSaveInfo *ssi;
317         GList *work;
318         gchar *pathl;
319
320         if (!path && !cd->path) return FALSE;
321
322         if (!path)
323                 {
324                 path = cd->path;
325                 }
326
327
328         pathl = path_from_utf8(path);
329         ssi = secure_open(pathl);
330         g_free(pathl);
331         if (!ssi)
332                 {
333                 gchar *buf;
334
335                 buf = g_strdup_printf(_("failed to open collection (write) \"%s\"\n"), path);
336                 print_term(buf);
337                 g_free(buf);
338                 return FALSE;
339                 }
340
341         secure_fprintf(ssi, "%s collection\n", GQ_COLLECTION_MARKER);
342         secure_fprintf(ssi, "#created with %s version %s\n", GQ_APPNAME, VERSION);
343
344         collection_update_geometry(cd);
345         if (cd->window_read)
346                 {
347                 secure_fprintf(ssi, "#geometry: %d %d %d %d\n", cd->window_x, cd->window_y, cd->window_w, cd->window_h);
348                 }
349
350         work = cd->list;
351         while (work && secsave_errno == SS_ERR_NONE)
352                 {
353                 CollectInfo *ci = work->data;
354                 secure_fprintf(ssi, "\"%s\"\n", ci->fd->path);
355                 work = work->next;
356                 }
357
358         secure_fprintf(ssi, "#end\n");
359
360         if (secure_close(ssi))
361                 {
362                 gchar *buf;
363
364                 buf = g_strdup_printf(_("error saving collection file: %s\nerror: %s\n"), path,
365                                       secsave_strerror(secsave_errno));
366                 print_term(buf);
367                 g_free(buf);
368                 return FALSE;
369                 }
370
371         if (!cd->path || strcmp(path, cd->path) != 0)
372                 {
373                 gchar *buf = cd->path;
374                 cd->path = g_strdup(path);
375                 path = cd->path;
376                 g_free(buf);
377
378                 g_free(cd->name);
379                 cd->name = g_strdup(filename_from_path(cd->path));
380
381                 collection_path_changed(cd);
382                 }
383
384         cd->changed = FALSE;
385
386         return TRUE;
387 }
388
389 gint collection_save(CollectionData *cd, const gchar *path)
390 {
391         if (collection_save_private(cd, path))
392                 {
393                 layout_recent_add_path(cd->path);
394                 return TRUE;
395                 }
396
397         return FALSE;
398 }
399
400 gint collection_load_only_geometry(CollectionData *cd, const gchar *path)
401 {
402         return collection_load(cd, path, COLLECTION_LOAD_GEOMETRY);
403 }
404
405
406 /*
407  *-------------------------------------------------------------------
408  * collection manager
409  *-------------------------------------------------------------------
410  */
411
412 #define COLLECT_MANAGER_ACTIONS_PER_IDLE 1000
413 #define COLLECT_MANAGER_FLUSH_DELAY      10000
414
415 struct _CollectManagerEntry
416 {
417         gchar *path;
418         GList *add_list;
419         GHashTable *oldpath_hash;
420         GHashTable *newpath_hash;
421         gboolean empty;
422 };
423
424 typedef enum {
425         COLLECTION_MANAGER_UPDATE,
426         COLLECTION_MANAGER_ADD,
427         COLLECTION_MANAGER_REMOVE
428 } CollectManagerType;
429
430 typedef struct _CollectManagerAction CollectManagerAction;
431 struct _CollectManagerAction
432 {
433         gchar *oldpath;
434         gchar *newpath;
435
436         CollectManagerType type;
437
438         gint ref;
439 };
440
441
442 static GList *collection_manager_entry_list = NULL;
443 static GList *collection_manager_action_list = NULL;
444 static GList *collection_manager_action_tail = NULL;
445 static gint collection_manager_timer_id = -1;
446
447
448 static CollectManagerAction *collect_manager_action_new(const gchar *oldpath, const gchar *newpath,
449                                                         CollectManagerType type)
450 {
451         CollectManagerAction *action;
452
453         action = g_new0(CollectManagerAction, 1);
454         action->ref = 1;
455
456         action->oldpath = g_strdup(oldpath);
457         action->newpath = g_strdup(newpath);
458
459         action->type = type;
460
461         return action;
462 }
463
464 static void collect_manager_action_ref(CollectManagerAction *action)
465 {
466         action->ref++;
467 }
468
469 static void collect_manager_action_unref(CollectManagerAction *action)
470 {
471         action->ref--;
472
473         if (action->ref > 0) return;
474
475         g_free(action->oldpath);
476         g_free(action->newpath);
477         g_free(action);
478 }
479
480 static void collect_manager_entry_free_data(CollectManagerEntry *entry)
481 {
482         GList *work;
483
484         work = entry->add_list;
485         while (work)
486                 {
487                 CollectManagerAction *action;
488
489                 action = work->data;
490                 work = work->next;
491
492                 collect_manager_action_unref(action);
493                 }
494         g_list_free(entry->add_list);
495         g_hash_table_destroy(entry->oldpath_hash);
496         g_hash_table_destroy(entry->newpath_hash);
497 }
498
499 static void collect_manager_entry_init_data(CollectManagerEntry *entry)
500 {
501         entry->add_list = NULL;
502         entry->oldpath_hash = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, (GDestroyNotify) collect_manager_action_unref);
503         entry->newpath_hash = g_hash_table_new(g_str_hash, g_str_equal);
504         entry->empty = TRUE;
505
506 }
507
508 static CollectManagerEntry *collect_manager_entry_new(const gchar *path)
509 {
510         CollectManagerEntry *entry;
511
512         entry = g_new0(CollectManagerEntry, 1);
513         entry->path = g_strdup(path);
514         collect_manager_entry_init_data(entry);
515
516         collection_manager_entry_list = g_list_append(collection_manager_entry_list, entry);
517
518         return entry;
519 }
520
521
522 static void collect_manager_entry_free(CollectManagerEntry *entry)
523 {
524         collection_manager_entry_list = g_list_remove(collection_manager_entry_list, entry);
525
526         collect_manager_entry_free_data(entry);
527
528         g_free(entry->path);
529         g_free(entry);
530 }
531
532 static void collect_manager_entry_reset(CollectManagerEntry *entry)
533 {
534         collect_manager_entry_free_data(entry);
535         collect_manager_entry_init_data(entry);
536 }
537
538 static CollectManagerEntry *collect_manager_get_entry(const gchar *path)
539 {
540         GList *work;
541
542         work = collection_manager_entry_list;
543         while (work)
544                 {
545                 CollectManagerEntry *entry;
546
547                 entry = work->data;
548                 work = work->next;
549                 if (strcmp(entry->path, path) == 0) 
550                         {
551                         return entry;
552                         }
553                 }
554         return NULL;
555
556 }
557
558 static void collect_manager_entry_add_action(CollectManagerEntry *entry, CollectManagerAction *action)
559 {
560
561         CollectManagerAction *orig_action;
562         
563         entry->empty = FALSE; 
564         
565         if (action->oldpath == NULL)
566                 {
567                 /* add file */
568                 if (action->newpath == NULL)
569                         {
570                         return;
571                         }
572                 
573                 orig_action = g_hash_table_lookup(entry->newpath_hash, action->newpath);
574                 if (orig_action)
575                         {
576                         /* target already exists */
577                         printf("collection manager failed to add another action for target %s in collection %s\n",
578                                 action->newpath, entry->path);
579                         return;
580                         }
581                 entry->add_list = g_list_append(entry->add_list, action);
582                 g_hash_table_insert(entry->newpath_hash, action->newpath, action);
583                 collect_manager_action_ref(action);
584                 return;
585                 }
586
587         orig_action = g_hash_table_lookup(entry->newpath_hash, action->oldpath);
588         if (orig_action)
589                 {
590                 /* new action with the same file */
591                 CollectManagerAction *new_action = collect_manager_action_new(orig_action->oldpath, action->newpath, action->type);
592                 
593                 if (new_action->oldpath)
594                         {
595                         g_hash_table_steal(entry->oldpath_hash, orig_action->oldpath);
596                         g_hash_table_insert(entry->oldpath_hash, new_action->oldpath, new_action);
597                         }
598                 else
599                         {
600                         GList *work = g_list_find(entry->add_list, orig_action);
601                         work->data = new_action;
602                         }
603                 
604                 g_hash_table_steal(entry->newpath_hash, orig_action->newpath);
605                 if (new_action->newpath) 
606                         {
607                         g_hash_table_insert(entry->newpath_hash, new_action->newpath, new_action); 
608                         }
609                 collect_manager_action_unref(orig_action);
610                 return;
611                 }
612
613
614         orig_action = g_hash_table_lookup(entry->oldpath_hash, action->oldpath);
615         if (orig_action)
616                 {
617                 /* another action for the same source, ignore */
618                 printf("collection manager failed to add another action for source %s in collection %s\n",
619                         action->oldpath, entry->path);
620                 return;
621                 }
622         
623         g_hash_table_insert(entry->oldpath_hash, action->oldpath, action);
624         if (action->newpath)
625                 {
626                 g_hash_table_insert(entry->newpath_hash, action->newpath, action); 
627                 }
628         collect_manager_action_ref(action);
629 }
630
631 static gint collect_manager_process_action(CollectManagerEntry *entry, gchar **path_ptr)
632 {
633         gchar *path = *path_ptr;
634         CollectManagerAction *action;
635         
636         if (path == NULL)
637                 {
638                 /* get new files */
639                 if (entry->add_list)
640                         {
641                         action = entry->add_list->data;
642                         g_assert(action->oldpath == NULL);
643                         entry->add_list = g_list_remove(entry->add_list, action);
644                         path = g_strdup(action->newpath);
645                         g_hash_table_remove(entry->newpath_hash, path);
646                         collect_manager_action_unref(action);
647                         }
648                 *path_ptr = path;
649                 return (path != NULL);
650                 }
651                 
652         action = g_hash_table_lookup(entry->oldpath_hash, path);
653         
654         if (action)
655                 {
656                 g_free(path);
657                 path = g_strdup(action->newpath);
658                 *path_ptr = path;
659                 return TRUE;
660                 }
661
662         return FALSE; /* no change */
663 }
664
665 static void collect_manager_refresh(void)
666 {
667         GList *list = NULL;
668         GList *work;
669         gchar *base;
670
671         base = g_strconcat(homedir(), "/", GQ_RC_DIR_COLLECTIONS, NULL);
672         path_list(base, &list, NULL);
673         g_free(base);
674
675         work = collection_manager_entry_list;
676         while (work && list)
677                 {
678                 CollectManagerEntry *entry;
679                 GList *list_step;
680
681                 entry = work->data;
682                 work = work->next;
683
684                 list_step = list;
685                 while (list_step && entry)
686                         {
687                         gchar *path;
688
689                         path = list_step->data;
690                         list_step = list_step->next;
691
692                         if (strcmp(path, entry->path) == 0)
693                                 {
694                                 list = g_list_remove(list, path);
695                                 g_free(path);
696
697                                 entry = NULL;
698                                 }
699                         else
700                                 {
701                                 collect_manager_entry_free(entry);
702                                 }
703                         }
704                 }
705
706         work = list;
707         while (work)
708                 {
709                 gchar *path;
710
711                 path = work->data;
712                 work = work->next;
713
714                 collect_manager_entry_new(path);
715                 g_free(path);
716                 }
717
718         g_list_free(list);
719 }
720
721 static void collect_manager_process_actions(gint max)
722 {
723         if (debug && collection_manager_action_list)
724                 {
725                 printf("collection manager processing actions\n");
726                 }
727
728         while (collection_manager_action_list != NULL && max > 0)
729                 {
730                 CollectManagerAction *action;
731                 GList *work;
732
733                 action = collection_manager_action_list->data;
734                 work = collection_manager_entry_list;
735                 while (work)
736                         {
737                         CollectManagerEntry *entry;
738
739                         entry = work->data;
740                         work = work->next;
741
742                         if (action->type == COLLECTION_MANAGER_UPDATE)
743                                 {
744                                 collect_manager_entry_add_action(entry, action);
745                                 }
746                         else if (action->oldpath && action->newpath &&
747                                  strcmp(action->newpath, entry->path) == 0)
748                                 {
749                                 /* convert action to standard add format */
750                                 g_free(action->newpath);
751                                 if (action->type == COLLECTION_MANAGER_ADD)
752                                         {
753                                         action->newpath = action->oldpath;
754                                         action->oldpath = NULL;
755                                         }
756                                 else if (action->type == COLLECTION_MANAGER_REMOVE)
757                                         {
758                                         action->newpath = NULL;
759                                         }
760                                 collect_manager_entry_add_action(entry, action);
761                                 }
762
763                         max--;
764                         }
765
766                 if (action->type != COLLECTION_MANAGER_UPDATE &&
767                     action->oldpath && action->newpath)
768                         {
769                         printf("collection manager failed to %s %s for collection %s\n",
770                                 (action->type == COLLECTION_MANAGER_ADD) ? "add" : "remove",
771                                 action->oldpath, action->newpath);
772                         }
773
774                 if (collection_manager_action_tail == collection_manager_action_list)
775                         {
776                         collection_manager_action_tail = NULL;
777                         }
778                 collection_manager_action_list = g_list_remove(collection_manager_action_list, action);
779                 collect_manager_action_unref(action);
780                 }
781 }
782
783 static gint collect_manager_process_entry(CollectManagerEntry *entry)
784 {
785         CollectionData *cd;
786         gint success;
787
788         if (entry->empty) return FALSE;
789
790         cd = collection_new(entry->path);
791         success = collection_load_private(cd, entry->path, COLLECTION_LOAD_NONE);
792
793         collection_unref(cd);
794
795         return TRUE;
796 }
797
798 static gint collect_manager_process_entry_list(void)
799 {
800         GList *work;
801
802         work = collection_manager_entry_list;
803         while (work)
804                 {
805                 CollectManagerEntry *entry;
806
807                 entry = work->data;
808                 work = work->next;
809                 if (collect_manager_process_entry(entry)) return TRUE;
810                 }
811
812         return FALSE;
813 }
814
815
816
817 static gint collect_manager_process_cb(gpointer data)
818 {
819         if (collection_manager_action_list) collect_manager_refresh();
820         collect_manager_process_actions(COLLECT_MANAGER_ACTIONS_PER_IDLE);
821         if (collection_manager_action_list) return TRUE;
822
823         if (collect_manager_process_entry_list()) return TRUE;
824
825         if (debug) printf("collection manager is up to date\n");
826         return FALSE;
827 }
828
829 static gint collect_manager_timer_cb(gpointer data)
830 {
831         if (debug) printf("collection manager timer expired\n");
832
833         g_idle_add_full(G_PRIORITY_LOW, collect_manager_process_cb, NULL, NULL);
834
835         collection_manager_timer_id = -1;
836         return FALSE;
837 }
838
839 static void collect_manager_timer_push(gint stop)
840 {
841         if (collection_manager_timer_id != -1)
842                 {
843                 if (!stop) return;
844
845                 g_source_remove(collection_manager_timer_id);
846                 collection_manager_timer_id = -1;
847                 }
848
849         if (!stop)
850                 {
851                 collection_manager_timer_id = g_timeout_add(COLLECT_MANAGER_FLUSH_DELAY,
852                                                             collect_manager_timer_cb, NULL);
853                 if (debug) printf("collection manager timer started\n");
854                 }
855 }
856
857 static void collect_manager_add_action(CollectManagerAction *action)
858 {
859         if (!action) return;
860
861         /* we keep track of the list's tail to keep this a n(1) operation */
862
863         if (collection_manager_action_tail)
864                 {
865                 collection_manager_action_tail = g_list_append(collection_manager_action_tail, action);
866                 collection_manager_action_tail = collection_manager_action_tail->next;
867                 }
868         else
869                 {
870                 collection_manager_action_list = g_list_append(collection_manager_action_list, action);
871                 collection_manager_action_tail = collection_manager_action_list;
872                 }
873
874         collect_manager_timer_push(FALSE);
875 }
876
877 void collect_manager_moved(FileData *fd)
878 {
879         CollectManagerAction *action;
880         const gchar *oldpath = fd->change->source;
881         const gchar *newpath = fd->change->dest;
882
883         action = collect_manager_action_new(oldpath, newpath, COLLECTION_MANAGER_UPDATE);
884         collect_manager_add_action(action);
885 }
886
887 void collect_manager_add(FileData *fd, const gchar *collection)
888 {
889         CollectManagerAction *action;
890         CollectWindow *cw;
891
892         if (!fd || !collection) return;
893
894         cw = collection_window_find_by_path(collection);
895         if (cw)
896                 {
897                 if (collection_list_find(cw->cd->list, fd->path) == NULL)
898                         {
899                         collection_add(cw->cd, fd, FALSE);
900                         }
901                 return;
902                 }
903
904         action = collect_manager_action_new(fd->path, collection, COLLECTION_MANAGER_ADD);
905         collect_manager_add_action(action);
906 }
907
908 void collect_manager_remove(FileData *fd, const gchar *collection)
909 {
910         CollectManagerAction *action;
911         CollectWindow *cw;
912
913         if (!fd || !collection) return;
914
915         cw = collection_window_find_by_path(collection);
916         if (cw)
917                 {
918                 while (collection_remove(cw->cd, fd));
919                 return;
920                 }
921
922         action = collect_manager_action_new(fd->path, collection, COLLECTION_MANAGER_REMOVE);
923         collect_manager_add_action(action);
924 }
925
926 void collect_manager_flush(void)
927 {
928         collect_manager_timer_push(TRUE);
929
930         if (debug) printf("collection manager flushing\n");
931         while (collect_manager_process_cb(NULL));
932 }
933