clang-tidy: use using
[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 "similar.h"
26
27 /** @typedef DupeMatchType
28  *  match methods
29  */
30 enum DupeMatchType
31 {
32         DUPE_MATCH_NONE = 0,
33         DUPE_MATCH_NAME = 1 << 0,
34         DUPE_MATCH_SIZE = 1 << 1,
35         DUPE_MATCH_DATE = 1 << 2,
36         DUPE_MATCH_DIM  = 1 << 3,       /**< image dimensions */
37         DUPE_MATCH_SUM  = 1 << 4,       /**< MD5sum */
38         DUPE_MATCH_PATH = 1 << 5,
39         DUPE_MATCH_SIM_HIGH = 1 << 6,   /**< similarity */
40         DUPE_MATCH_SIM_MED  = 1 << 7,
41         DUPE_MATCH_SIM_LOW  = 1 << 8,
42         DUPE_MATCH_SIM_CUSTOM = 1 << 9,
43         DUPE_MATCH_NAME_CI = 1 << 10,   /**< same as name, but case insensitive */
44         DUPE_MATCH_NAME_CONTENT = 1 << 11,      /**< same name, but different content */
45         DUPE_MATCH_NAME_CI_CONTENT = 1 << 12,   /**< same name - case insensitive, but different content */
46         DUPE_MATCH_ALL = 1 << 13 /**< N.B. this is used as a clamp value in rcfile.cc */
47 };
48
49 enum DupeSelectType
50 {
51         DUPE_SELECT_NONE,
52         DUPE_SELECT_GROUP1,
53         DUPE_SELECT_GROUP2
54 };
55
56 struct DupeItem
57 {
58         CollectionData *collection;     /**< NULL if from #DupeWindow->files */
59         CollectInfo *info;
60
61         FileData *fd;
62
63         gchar *md5sum;
64         gint width;
65         gint height;
66         gint dimensions; /**< Computed as (#DupeItem->width << 16) + #DupeItem->height */
67
68         ImageSimilarityData *simd;
69
70         GdkPixbuf *pixbuf; /**< thumb */
71
72         GList *group;           /**< List of match data (#DupeMatch) */
73         gdouble group_rank;     /**< (sum of all child ranks) / n */
74
75         gint second;
76 };
77
78 struct DupeMatch
79 {
80         DupeItem *di;
81         gdouble rank;
82 };
83
84 struct DupeWindow
85 {
86         GList *list;    /**< one entry for each dropped file in 1st set window (#DupeItem) */
87         GList *dupes;                   /**< list of dupes (#DupeItem, grouping the #DupeMatch-es) */
88         DupeMatchType match_mask;       /**< mask of things to check for match */
89
90         GtkWidget *window;
91         GtkWidget *table;
92         GtkWidget *listview;
93         GtkWidget *combo;
94         GtkWidget *status_label;
95         GtkWidget *extra_label; /**< Progress bar widget */
96         GtkWidget *button_thumbs;
97         GtkWidget *button_rotation_invariant;
98         GtkWidget *custom_threshold;
99         GList *add_files_queue;
100         guint add_files_queue_id;
101         GHashTable *list_cache; /**< Caches the #DupeItem-s of all items in list. Used when ensuring #FileData-s are unique */
102         GHashTable *second_list_cache; /**< Caches the #DupeItem-s of all items in second_list. Used when ensuring #FileData-s are unique */
103         GtkWidget *controls_box;
104
105         gboolean show_thumbs;
106
107         guint idle_id; /**< event source id */
108         GList *working;
109         gint setup_done; /**< Boolean. Set TRUE when all checksums/dimensions/similarity data have been read or created */
110         gint setup_count; /**< length of set1 or if 2 sets, total length of both */
111         gint setup_n;                   /**< Set to zero on start/reset. These are merely for speed optimization */
112         GList *setup_point;             /**< these are merely for speed optimization */
113         DupeMatchType setup_mask;       /**< these are merely for speed optimization */
114         guint64 setup_time; /**< Time in µsec since Epoch, restored at each phase of operation */
115         guint64 setup_time_count; /**< Time in µsec since time-to-go status display was updated */
116
117         DupeItem *click_item;           /**< for popup menu */
118
119         ThumbLoader *thumb_loader;
120         DupeItem *thumb_item;
121
122         ImageLoader *img_loader;
123
124         GtkTreeSortable *sortable;
125         gint set_count; /**< Index/counter for number of duplicate sets found */
126
127         /* second set comparison stuff */
128
129         gboolean second_set;            /**< second set enabled ? */
130         GList *second_list;             /**< second set dropped files */
131         gboolean second_drop;           /**< drop is on second set */
132
133         GtkWidget *second_vbox;         /**< box of second widgets */
134         GtkWidget *second_listview;
135         GtkWidget *second_status_label;
136
137         gboolean color_frozen;
138
139         /* required for similarity threads */
140         GThreadPool *dupe_comparison_thread_pool;
141         GList *search_matches; /**< List of similarity matches (#DupeSearchMatch) */
142         GMutex search_matches_mutex;
143         GList *search_matches_sorted; /**< \a search_matches sorted by order of entry into thread pool */
144         gint queue_count; /**< Incremented each time an item is pushed onto the similarity thread pool */
145         gint thread_count; /**< Incremented each time a similarity check thread item is completed */
146         GMutex thread_count_mutex;
147         gboolean abort; /**< Stop the similarity check thread queue */
148 };
149
150
151 DupeWindow *dupe_window_new(void);
152
153 void dupe_window_clear(DupeWindow *dw);
154 void dupe_window_close(DupeWindow *dw);
155
156 void dupe_window_add_collection(DupeWindow *dw, CollectionData *collection);
157 void dupe_window_add_files(DupeWindow *dw, GList *list, gboolean recurse);
158
159 void cell_renderer_height_override(GtkCellRenderer *renderer); /**< cell max with/height hack utility */
160
161 #endif
162 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */