Cleanup main.h header
[geeqie.git] / src / dupe.h
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef DUPE_H
23 #define DUPE_H
24
25 #include <gtk/gtk.h>
26
27 #include "similar.h"
28
29 struct CollectInfo;
30 struct CollectionData;
31 struct FileData;
32 struct ImageLoader;
33 struct ThumbLoader;
34
35 /** @enum DupeMatchType
36  *  match methods
37  */
38 enum DupeMatchType
39 {
40         DUPE_MATCH_NONE = 0,
41         DUPE_MATCH_NAME = 1 << 0,
42         DUPE_MATCH_SIZE = 1 << 1,
43         DUPE_MATCH_DATE = 1 << 2,
44         DUPE_MATCH_DIM  = 1 << 3,       /**< image dimensions */
45         DUPE_MATCH_SUM  = 1 << 4,       /**< MD5sum */
46         DUPE_MATCH_PATH = 1 << 5,
47         DUPE_MATCH_SIM_HIGH = 1 << 6,   /**< similarity */
48         DUPE_MATCH_SIM_MED  = 1 << 7,
49         DUPE_MATCH_SIM_LOW  = 1 << 8,
50         DUPE_MATCH_SIM_CUSTOM = 1 << 9,
51         DUPE_MATCH_NAME_CI = 1 << 10,   /**< same as name, but case insensitive */
52         DUPE_MATCH_NAME_CONTENT = 1 << 11,      /**< same name, but different content */
53         DUPE_MATCH_NAME_CI_CONTENT = 1 << 12,   /**< same name - case insensitive, but different content */
54         DUPE_MATCH_ALL = 1 << 13 /**< N.B. this is used as a clamp value in rcfile.cc */
55 };
56
57 enum DupeSelectType
58 {
59         DUPE_SELECT_NONE,
60         DUPE_SELECT_GROUP1,
61         DUPE_SELECT_GROUP2
62 };
63
64 struct DupeItem
65 {
66         CollectionData *collection;     /**< NULL if from #DupeWindow->files */
67         CollectInfo *info;
68
69         FileData *fd;
70
71         gchar *md5sum;
72         gint width;
73         gint height;
74         gint dimensions; /**< Computed as (#DupeItem->width << 16) + #DupeItem->height */
75
76         ImageSimilarityData *simd;
77
78         GdkPixbuf *pixbuf; /**< thumb */
79
80         GList *group;           /**< List of match data (#DupeMatch) */
81         gdouble group_rank;     /**< (sum of all child ranks) / n */
82
83         gint second;
84 };
85
86 struct DupeMatch
87 {
88         DupeItem *di;
89         gdouble rank;
90 };
91
92 struct DupeWindow
93 {
94         GList *list;    /**< one entry for each dropped file in 1st set window (#DupeItem) */
95         GList *dupes;                   /**< list of dupes (#DupeItem, grouping the #DupeMatch-es) */
96         DupeMatchType match_mask;       /**< mask of things to check for match */
97
98         GtkWidget *window;
99         GtkWidget *table;
100         GtkWidget *listview;
101         GtkWidget *combo;
102         GtkWidget *status_label;
103         GtkWidget *extra_label; /**< Progress bar widget */
104         GtkWidget *button_thumbs;
105         GtkWidget *button_rotation_invariant;
106         GtkWidget *custom_threshold;
107         GList *add_files_queue;
108         guint add_files_queue_id;
109         GHashTable *list_cache; /**< Caches the #DupeItem-s of all items in list. Used when ensuring #FileData-s are unique */
110         GHashTable *second_list_cache; /**< Caches the #DupeItem-s of all items in second_list. Used when ensuring #FileData-s are unique */
111         GtkWidget *controls_box;
112
113         gboolean show_thumbs;
114
115         guint idle_id; /**< event source id */
116         GList *working;
117         gint setup_done; /**< Boolean. Set TRUE when all checksums/dimensions/similarity data have been read or created */
118         gint setup_count; /**< length of set1 or if 2 sets, total length of both */
119         gint setup_n;                   /**< Set to zero on start/reset. These are merely for speed optimization */
120         GList *setup_point;             /**< these are merely for speed optimization */
121         DupeMatchType setup_mask;       /**< these are merely for speed optimization */
122         guint64 setup_time; /**< Time in µsec since Epoch, restored at each phase of operation */
123         guint64 setup_time_count; /**< Time in µsec since time-to-go status display was updated */
124
125         DupeItem *click_item;           /**< for popup menu */
126
127         ThumbLoader *thumb_loader;
128         DupeItem *thumb_item;
129
130         ImageLoader *img_loader;
131
132         GtkTreeSortable *sortable;
133         gint set_count; /**< Index/counter for number of duplicate sets found */
134
135         /* second set comparison stuff */
136
137         gboolean second_set;            /**< second set enabled ? */
138         GList *second_list;             /**< second set dropped files */
139         gboolean second_drop;           /**< drop is on second set */
140
141         GtkWidget *second_vbox;         /**< box of second widgets */
142         GtkWidget *second_listview;
143         GtkWidget *second_status_label;
144
145         gboolean color_frozen;
146
147         /* required for similarity threads */
148         GThreadPool *dupe_comparison_thread_pool;
149         GList *search_matches; /**< List of similarity matches (#DupeSearchMatch) */
150         GMutex search_matches_mutex;
151         GList *search_matches_sorted; /**< \a search_matches sorted by order of entry into thread pool */
152         gint queue_count; /**< Incremented each time an item is pushed onto the similarity thread pool */
153         gint thread_count; /**< Incremented each time a similarity check thread item is completed */
154         GMutex thread_count_mutex;
155         gboolean abort; /**< Stop the similarity check thread queue */
156 };
157
158
159 DupeWindow *dupe_window_new();
160
161 void dupe_window_clear(DupeWindow *dw);
162 void dupe_window_close(DupeWindow *dw);
163
164 void dupe_window_add_collection(DupeWindow *dw, CollectionData *collection);
165 void dupe_window_add_files(DupeWindow *dw, GList *list, gboolean recurse);
166
167 void cell_renderer_height_override(GtkCellRenderer *renderer); /**< cell max with/height hack utility */
168
169 #endif
170 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */