Uses custom hash/equals functions so that we can actually fetch equivalent FileDatas...
[geeqie.git] / src / filecluster.c
1 /*
2  * Copyright (C) 2008 - 2016 The Geeqie Team
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include "filecluster.h"
20
21 #include "filedata.h"
22
23 static gboolean check_list_contains_sublist(GList *haystack, GList *needle)
24 {
25         // TODO(xsdg): Optimize this!  Sort, then scan?
26         GList *h_work, *n_work;
27         for (n_work = needle; n_work; n_work = n_work->next)
28         {
29                 gboolean found = FALSE;
30                 for (h_work = haystack; h_work; h_work = h_work->next)
31                 {
32                         if (n_work == h_work)
33                                 {
34                                 found = TRUE;
35                                 break;
36                                 }
37                 }
38
39                 if (!found) return FALSE;
40         }
41
42         return TRUE;
43 }
44
45 static gboolean filecluster_fd_equal(gconstpointer ptr_a, gconstpointer ptr_b)
46 {
47         // TODO(xsdg): Is there anything we can/should do to validate inputs?
48         FileData *fd_a = (FileData *)ptr_a;
49         FileData *fd_b = (FileData *)ptr_b;
50         return !filelist_sort_compare_filedata(fd_a, fd_b);
51 }
52
53 // TODO(xsdg): Move this into filedata.h
54 static guint filecluster_fd_hash(gconstpointer ptr)
55 {
56         if (!ptr) return 1;
57         FileData *fd = (FileData *)ptr;
58         return 7 * g_str_hash(fd->original_path);
59 }
60
61 FileClusterList *fileclusterlist_new()
62 {
63         FileClusterList *fcl = g_new0(FileClusterList, 1);
64         fcl->clusters = g_hash_table_new(&filecluster_fd_hash, &filecluster_fd_equal);
65 }
66
67 FileCluster *filecluster_new()
68 {
69         FileCluster *fc = g_new0(FileCluster, 1);
70         fc->show_children = FALSE;
71 }
72
73 void fileclusterlist_free(FileClusterList *fcl)
74 {
75         // TODO(xsdg): don't leak stuff
76         // if (fcl->fd_list) g_list_free_full(fcl->fd_list, (GDestroyNotify)&filecluster_free);
77         g_hash_table_destroy(fcl->clusters);
78         g_free(fcl);
79 }
80
81 void filecluster_free(FileCluster *fc)
82 {
83         filelist_free(fc->items);
84         g_free(fc);
85 }
86
87 gboolean filecluster_toggle_show_children(FileCluster *fc)
88 {
89         fc->show_children = !fc->show_children;
90         return fc->show_children;
91 }
92
93 FileCluster *fileclusterlist_create_cluster(FileClusterList *fcl, GList *fd_items)
94 {
95         GList *work;
96
97         // Check preconditions.
98         if (!fd_items) return NULL;
99         for (work = fd_items; work; work = work->next)
100                 {
101                 FileData *fd = work->data;
102                 if (g_hash_table_contains(fcl->clusters, fd))
103                         {
104                         // TODO(xsdg): Show this warning in the UI.
105                         g_warning("Tried to create a cluster with a file that is already clustered.");
106                         return NULL;
107                         }
108                 }
109
110         FileCluster *new_fc = filecluster_new();
111         new_fc->items = filelist_copy(fd_items);
112         new_fc->head = new_fc->items;
113
114         for (GList *item = new_fc->items; item; item = item->next)
115                 {
116                 FileData *fd = item->data;
117                 g_hash_table_insert(fcl->clusters, fd, new_fc);
118                 }
119
120         return new_fc;
121 }
122
123 gboolean fileclusterlist_has_head(FileClusterList *fcl, FileData *fd)
124 {
125         FileCluster *fc = g_hash_table_lookup(fcl->clusters, fd);
126         if (!fc) return FALSE;
127         return fc->head->data == fd;
128 }
129
130 gboolean fileclusterlist_has_child(FileClusterList *fcl, FileData *fd)
131 {
132         FileCluster *fc = g_hash_table_lookup(fcl->clusters, fd);
133         if (!fc) return FALSE;
134         return fc->head->data != fd;
135 }
136
137 static gboolean fileclusterlist_should_hide(FileClusterList *fcl, FileData *fd)
138 {
139         FileCluster *fc = g_hash_table_lookup(fcl->clusters, fd);
140         if (!fc) return FALSE;
141         if (fc->show_children) return FALSE;  // TODO(xsdg): new function "should_show"
142         return fc->head->data != fd;
143 }
144
145 // TODO(xsdg): pick a better name for this function
146 GList *fileclusterlist_next_non_child(FileClusterList *fcl, GList *list)
147 {
148         // Check for no-ops
149         if (!list || !g_hash_table_size(fcl->clusters)) return list;
150
151         // Clusters are being used, so we have to actually check things.
152         for (; list; list = list->next)
153         {
154                 FileData *fd = list->data;
155                 if (!fileclusterlist_has_child(fcl, fd)) return list;
156         }
157
158         return NULL;
159 }
160
161 GList *fileclusterlist_remove_children_from_list(FileClusterList *fcl, GList *list)
162 {
163         GList *work = list;
164
165         while (work)
166         {
167                 FileData *fd = work->data;
168                 GList *link = work;
169                 // Advance early in case link needs to be removed/freed.
170                 work = work->next;
171
172                 if (fileclusterlist_should_hide(fcl, fd))
173                 {
174                         list = g_list_remove_link(list, link);
175                         file_data_unref(fd);
176                         g_list_free(link);
177                 }
178         }
179
180         return list;
181 }