Fix #314: Remote commands for thumbnail maintenance
[geeqie.git] / src / filedata.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 FILEDATA_H
23 #define FILEDATA_H
24
25 #ifdef DEBUG
26 #define DEBUG_FILEDATA
27 #endif
28
29 #define FD_MAGICK 0x12345678u
30
31 gchar *text_from_size(gint64 size);
32 gchar *text_from_size_abrev(gint64 size);
33 const gchar *text_from_time(time_t t);
34
35 /* scan for sidecar files - expensive */
36 FileData *file_data_new_group(const gchar *path_utf8);
37
38 /* should be used on helper files which can't have sidecars */
39 FileData *file_data_new_no_grouping(const gchar *path_utf8);
40
41 /* should be used on dirs */
42 FileData *file_data_new_dir(const gchar *path_utf8);
43
44 FileData *file_data_new_simple(const gchar *path_utf8);
45
46 #ifdef DEBUG_FILEDATA
47 FileData *file_data_ref_debug(const gchar *file, gint line, FileData *fd);
48 void file_data_unref_debug(const gchar *file, gint line, FileData *fd);
49 #define file_data_ref(fd) file_data_ref_debug(__FILE__, __LINE__, fd)
50 #define file_data_unref(fd) file_data_unref_debug(__FILE__, __LINE__, fd)
51 #else
52 FileData *file_data_ref(FileData *fd);
53 void file_data_unref(FileData *fd);
54 #endif
55
56 void file_data_lock(FileData *fd);
57 void file_data_unlock(FileData *fd);
58 void file_data_lock_list(GList *list);
59 void file_data_unlock_list(GList *list);
60
61 gboolean file_data_check_changed_files(FileData *fd);
62
63 void file_data_increment_version(FileData *fd);
64
65 gboolean file_data_add_change_info(FileData *fd, FileDataChangeType type, const gchar *src, const gchar *dest);
66 void file_data_change_info_free(FileDataChangeInfo *fdci, FileData *fd);
67
68 void file_data_disable_grouping(FileData *fd, gboolean disable);
69 void file_data_disable_grouping_list(GList *fd_list, gboolean disable);
70
71 gint filelist_sort_compare_filedata(FileData *fa, FileData *fb);
72 gint filelist_sort_compare_filedata_full(FileData *fa, FileData *fb, SortType method, gboolean ascend);
73 GList *filelist_sort(GList *list, SortType method, gboolean ascend);
74 GList *filelist_insert_sort(GList *list, FileData *fd, SortType method, gboolean ascend);
75 GList *filelist_sort_full(GList *list, SortType method, gboolean ascend, GCompareFunc cb);
76 GList *filelist_insert_sort_full(GList *list, gpointer data, SortType method, gboolean ascend, GCompareFunc cb);
77
78 gboolean filelist_read(FileData *dir_fd, GList **files, GList **dirs);
79 gboolean filelist_read_lstat(FileData *dir_fd, GList **files, GList **dirs);
80 void filelist_free(GList *list);
81 GList *filelist_copy(GList *list);
82 GList *filelist_from_path_list(GList *list);
83 GList *filelist_to_path_list(GList *list);
84
85 GList *filelist_filter(GList *list, gboolean is_dir_list);
86
87 GList *filelist_sort_path(GList *list);
88 GList *filelist_recursive(FileData *dir_fd);
89
90 typedef gboolean (* FileDataGetMarkFunc)(FileData *fd, gint n, gpointer data);
91 typedef gboolean (* FileDataSetMarkFunc)(FileData *fd, gint n, gboolean value, gpointer data);
92 gboolean file_data_register_mark_func(gint n, FileDataGetMarkFunc get_mark_func, FileDataSetMarkFunc set_mark_func, gpointer data, GDestroyNotify notify);
93 void file_data_get_registered_mark_func(gint n, FileDataGetMarkFunc *get_mark_func, FileDataSetMarkFunc *set_mark_func, gpointer *data);
94
95
96 gboolean file_data_get_mark(FileData *fd, gint n);
97 guint file_data_get_marks(FileData *fd);
98 void file_data_set_mark(FileData *fd, gint n, gboolean value);
99 gboolean file_data_filter_marks(FileData *fd, guint filter);
100 GList *file_data_filter_marks_list(GList *list, guint filter);
101
102 gint file_data_get_user_orientation(FileData *fd);
103 void file_data_set_user_orientation(FileData *fd, gint value);
104
105 gchar *file_data_sc_list_to_string(FileData *fd);
106
107 gchar *file_data_get_sidecar_path(FileData *fd, gboolean existing_only);
108
109
110 gboolean file_data_add_ci(FileData *fd, FileDataChangeType type, const gchar *src, const gchar *dest);
111 gboolean file_data_sc_add_ci_copy(FileData *fd, const gchar *dest_path);
112 gboolean file_data_sc_add_ci_move(FileData *fd, const gchar *dest_path);
113 gboolean file_data_sc_add_ci_rename(FileData *fd, const gchar *dest_path);
114 gboolean file_data_sc_add_ci_delete(FileData *fd);
115 gboolean file_data_sc_add_ci_unspecified(FileData *fd, const gchar *dest_path);
116
117 gboolean file_data_sc_add_ci_delete_list(GList *fd_list);
118 gboolean file_data_sc_add_ci_copy_list(GList *fd_list, const gchar *dest);
119 gboolean file_data_sc_add_ci_move_list(GList *fd_list, const gchar *dest);
120 gboolean file_data_sc_add_ci_rename_list(GList *fd_list, const gchar *dest);
121 gboolean file_data_sc_add_ci_unspecified_list(GList *fd_list, const gchar *dest);
122 gboolean file_data_add_ci_write_metadata_list(GList *fd_list);
123
124 gboolean file_data_sc_update_ci_copy_list(GList *fd_list, const gchar *dest);
125 gboolean file_data_sc_update_ci_move_list(GList *fd_list, const gchar *dest);
126 gboolean file_data_sc_update_ci_unspecified_list(GList *fd_list, const gchar *dest);
127
128
129 gboolean file_data_sc_update_ci_copy(FileData *fd, const gchar *dest_path);
130 gboolean file_data_sc_update_ci_move(FileData *fd, const gchar *dest_path);
131 gboolean file_data_sc_update_ci_rename(FileData *fd, const gchar *dest_path);
132 gboolean file_data_sc_update_ci_unspecified(FileData *fd, const gchar *dest_path);
133
134 gchar *file_data_get_error_string(gint error);
135
136 gint file_data_verify_ci(FileData *fd, GList *list);
137 gint file_data_verify_ci_list(GList *list, gchar **desc, gboolean with_sidecars);
138
139 gboolean file_data_perform_ci(FileData *fd);
140 gboolean file_data_apply_ci(FileData *fd);
141 void file_data_free_ci(FileData *fd);
142 void file_data_free_ci_list(GList *fd_list);
143
144 void file_data_set_regroup_when_finished(FileData *fd, gboolean enable);
145
146 gint file_data_sc_verify_ci(FileData *fd, GList *list);
147
148 gboolean file_data_sc_perform_ci(FileData *fd);
149 gboolean file_data_sc_apply_ci(FileData *fd);
150 void file_data_sc_free_ci(FileData *fd);
151 void file_data_sc_free_ci_list(GList *fd_list);
152
153 GList *file_data_process_groups_in_selection(GList *list, gboolean ungroup, GList **ungrouped);
154
155
156 typedef void (*FileDataNotifyFunc)(FileData *fd, NotifyType type, gpointer data);
157 gboolean file_data_register_notify_func(FileDataNotifyFunc func, gpointer data, NotifyPriority priority);
158 gboolean file_data_unregister_notify_func(FileDataNotifyFunc func, gpointer data);
159 void file_data_send_notification(FileData *fd, NotifyType type);
160
161 gboolean file_data_register_real_time_monitor(FileData *fd);
162 gboolean file_data_unregister_real_time_monitor(FileData *fd);
163
164 void read_exif_time_data(FileData *file);
165 #endif
166 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */