clang-tidy: bugprone-integer-division
[geeqie.git] / src / ui-fileops.cc
1 /*
2  * Copyright (C) 2006 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 #include <cstdio>
23 #include <cstdlib>
24 #include <cstring>
25 #include <memory>
26
27 #include <unistd.h>
28 #include <utime.h>
29
30 #include "main.h"
31 #include "ui-fileops.h"
32
33 #include "md5-util.h"
34 #include "filefilter.h"
35 #include "layout.h"
36 #include "utilops.h"
37 #include "secure-save.h"
38
39 /*
40  *-----------------------------------------------------------------------------
41  * generic file information and manipulation routines (public)
42  *-----------------------------------------------------------------------------
43  */
44
45
46
47 void print_term(gboolean err, const gchar *text_utf8)
48 {
49         gchar *text_l;
50
51         text_l = g_locale_from_utf8(text_utf8, -1, nullptr, nullptr, nullptr);
52         if (err)
53                 {
54                 fputs((text_l) ? text_l : text_utf8, stderr);
55                 }
56         else
57                 {
58                 fputs((text_l) ? text_l : text_utf8, stdout);
59                 }
60         if(command_line && command_line->ssi)
61                 secure_fputs(command_line->ssi, (text_l) ? text_l : text_utf8);
62         g_free(text_l);
63 }
64
65 static void encoding_dialog(const gchar *path)
66 {
67         static gboolean warned_user = FALSE;
68         GenericDialog *gd;
69         GString *string;
70         const gchar *lc;
71         const gchar *bf;
72
73         if (warned_user) return;
74         warned_user = TRUE;
75
76         lc = getenv("LANG");
77         bf = getenv("G_BROKEN_FILENAMES");
78
79         string = g_string_new(_("One or more filenames are not encoded with the preferred locale character set.\n"));
80         g_string_append_printf(string, _("Operations on, and display of these files with %s may not succeed.\n"), PACKAGE);
81         g_string_append(string, "\n");
82         g_string_append(string, _("If your filenames are not encoded in utf-8, try setting the environment variable G_BROKEN_FILENAMES=1\n"));
83         if (bf)
84                 g_string_append_printf(string, _("It appears G_BROKEN_FILENAMES is set to %s\n"), bf);
85         else
86                 g_string_append(string, _("It appears G_BROKEN_FILENAMES is not set\n"));
87         g_string_append(string, "\n");
88         g_string_append_printf(string, _("The locale appears to be set to \"%s\"\n(set by the LANG environment variable)\n"), (lc) ? lc : "undefined");
89         if (lc && (strstr(lc, "UTF-8") || strstr(lc, "utf-8")))
90                 {
91                 gchar *name;
92                 name = g_convert(path, -1, "UTF-8", "ISO-8859-1", nullptr, nullptr, nullptr);
93                 string = g_string_append(string, _("\nPreferred encoding appears to be UTF-8, however the file:\n"));
94                 g_string_append_printf(string, "\"%s\"\n", (name) ? name : _("[name not displayable]"));
95
96                 if (g_utf8_validate(path, -1, nullptr))
97                         g_string_append_printf(string, _("\"%s\" is encoded in valid UTF-8."), (name) ? name : _("[name not displayable]"));
98                 else
99                         g_string_append_printf(string, _("\"%s\" is not encoded in valid UTF-8."), (name) ? name : _("[name not displayable]"));
100                 g_string_append(string, "\n");
101                 g_free(name);
102                 }
103
104         gd = generic_dialog_new(_("Filename encoding locale mismatch"),
105                                 "locale warning", nullptr, TRUE, nullptr, nullptr);
106         generic_dialog_add_button(gd, GQ_ICON_CLOSE, _("Close"), nullptr, TRUE);
107
108         generic_dialog_add_message(gd, GQ_ICON_DIALOG_WARNING,
109                                    _("Filename encoding locale mismatch"), string->str, TRUE);
110
111         gtk_widget_show(gd->dialog);
112
113         g_string_free(string, TRUE);
114 }
115
116 #if GQ_DEBUG_PATH_UTF8
117 gchar *path_to_utf8_debug(const gchar *path, const gchar *file, gint line)
118 #else
119 gchar *path_to_utf8(const gchar *path)
120 #endif
121 {
122         gchar *utf8;
123         GError *error = nullptr;
124
125         if (!path) return nullptr;
126
127         utf8 = g_filename_to_utf8(path, -1, nullptr, nullptr, &error);
128         if (error)
129                 {
130 #if GQ_DEBUG_PATH_UTF8
131                 log_printf("%s:%d: Unable to convert filename to UTF-8:\n%s\n%s\n", file, line, path, error->message);
132 #else
133                 log_printf("Unable to convert filename to UTF-8:\n%s\n%s\n", path, error->message);
134 #endif
135                 g_error_free(error);
136                 encoding_dialog(path);
137                 }
138         if (!utf8)
139                 {
140                 /* just let it through, but bad things may happen */
141                 utf8 = g_strdup(path);
142                 }
143
144         return utf8;
145 }
146
147 #if GQ_DEBUG_PATH_UTF8
148 gchar *path_from_utf8_debug(const gchar *utf8, const gchar *file, gint line)
149 #else
150 gchar *path_from_utf8(const gchar *utf8)
151 #endif
152 {
153         gchar *path;
154         GError *error = nullptr;
155
156         if (!utf8) return nullptr;
157
158         path = g_filename_from_utf8(utf8, -1, nullptr, nullptr, &error);
159         if (error)
160                 {
161 #if GQ_DEBUG_PATH_UTF8
162                 log_printf("%s:%d: Unable to convert filename to locale from UTF-8:\n%s\n%s\n", file, line, utf8, error->message);
163 #else
164                 log_printf("Unable to convert filename to locale from UTF-8:\n%s\n%s\n", utf8, error->message);
165 #endif
166                 g_error_free(error);
167                 }
168         if (!path)
169                 {
170                 /* if invalid UTF-8, text probably still in original form, so just copy it */
171                 path = g_strdup(utf8);
172                 }
173
174         return path;
175 }
176
177 /* first we try the HOME environment var, if that doesn't work, we try g_get_homedir(). */
178 const gchar *homedir()
179 {
180         static gchar *home = nullptr;
181
182         if (!home)
183                 home = path_to_utf8(getenv("HOME"));
184
185         if (!home)
186                 home = path_to_utf8(g_get_home_dir());
187
188         DEBUG_1("Home directory: %s", home);
189
190         return home;
191 }
192
193 static gchar *xdg_dir_get(const gchar *key, const gchar *fallback)
194 {
195         gchar *dir = getenv(key);
196
197         if (!dir || dir[0] == '\0')
198                 {
199                 return g_build_filename(homedir(), fallback, NULL);
200                 }
201
202         DEBUG_1("Got xdg %s: %s", key, dir);
203
204         return path_to_utf8(dir);
205 }
206
207 const gchar *xdg_data_home_get()
208 {
209         static const gchar *xdg_data_home = nullptr;
210
211         if (xdg_data_home) return xdg_data_home;
212
213         xdg_data_home = xdg_dir_get("XDG_DATA_HOME", ".local/share");
214
215         return xdg_data_home;
216 }
217
218 const gchar *xdg_config_home_get()
219 {
220         static const gchar *xdg_config_home = nullptr;
221
222         if (xdg_config_home) return xdg_config_home;
223
224         xdg_config_home = xdg_dir_get("XDG_CONFIG_HOME", ".config");
225
226         return xdg_config_home;
227 }
228
229 const gchar *xdg_cache_home_get()
230 {
231         static const gchar *xdg_cache_home = nullptr;
232
233         if (xdg_cache_home) return xdg_cache_home;
234
235         xdg_cache_home = xdg_dir_get("XDG_CACHE_HOME", ".cache");
236
237         return xdg_cache_home;
238 }
239
240 const gchar *get_rc_dir()
241 {
242         static gchar *rc_dir = nullptr;
243
244         if (rc_dir) return rc_dir;
245
246         if (USE_XDG)
247                 {
248                 rc_dir = g_build_filename(xdg_config_home_get(), GQ_APPNAME_LC, NULL);
249                 }
250         else
251                 {
252                 rc_dir = g_build_filename(homedir(), GQ_RC_DIR, NULL);
253                 }
254
255         return rc_dir;
256 }
257
258 const gchar *get_collections_dir()
259 {
260         static gchar *collections_dir = nullptr;
261
262         if (collections_dir) return collections_dir;
263
264         if (USE_XDG)
265                 {
266                 collections_dir = g_build_filename(xdg_data_home_get(), GQ_APPNAME_LC, GQ_COLLECTIONS_DIR, NULL);
267                 }
268         else
269                 {
270                 collections_dir = g_build_filename(get_rc_dir(), GQ_COLLECTIONS_DIR, NULL);
271                 }
272
273         return collections_dir;
274 }
275
276 const gchar *get_trash_dir()
277 {
278         static gchar *trash_dir = nullptr;
279
280         if (trash_dir) return trash_dir;
281
282         if (USE_XDG)
283                 {
284                 trash_dir = g_build_filename(xdg_data_home_get(), GQ_APPNAME_LC, GQ_TRASH_DIR, NULL);
285                 }
286         else
287                 {
288                 trash_dir = g_build_filename(get_rc_dir(), GQ_TRASH_DIR, NULL);
289         }
290
291         return trash_dir;
292 }
293
294 const gchar *get_window_layouts_dir()
295 {
296         static gchar *window_layouts_dir = nullptr;
297
298         if (window_layouts_dir) return window_layouts_dir;
299
300         if (USE_XDG)
301                 {
302                 window_layouts_dir = g_build_filename(xdg_config_home_get(), GQ_APPNAME_LC, GQ_WINDOW_LAYOUTS_DIR, NULL);
303                 }
304         else
305                 {
306                 window_layouts_dir = g_build_filename(get_rc_dir(), GQ_WINDOW_LAYOUTS_DIR, NULL);
307                 }
308
309         return window_layouts_dir;
310 }
311
312 gboolean stat_utf8(const gchar *s, struct stat *st)
313 {
314         gchar *sl;
315         gboolean ret;
316
317         if (!s) return FALSE;
318         sl = path_from_utf8(s);
319         ret = (stat(sl, st) == 0);
320         g_free(sl);
321
322         return ret;
323 }
324
325 gboolean lstat_utf8(const gchar *s, struct stat *st)
326 {
327         gchar *sl;
328         gboolean ret;
329
330         if (!s) return FALSE;
331         sl = path_from_utf8(s);
332         ret = (lstat(sl, st) == 0);
333         g_free(sl);
334
335         return ret;
336 }
337
338 gboolean isname(const gchar *s)
339 {
340         struct stat st;
341
342         return stat_utf8(s, &st);
343 }
344
345 gboolean isfile(const gchar *s)
346 {
347         struct stat st;
348
349         return (stat_utf8(s, &st) && S_ISREG(st.st_mode));
350 }
351
352 gboolean isdir(const gchar *s)
353 {
354         struct stat st;
355
356         return (stat_utf8(s, &st) && S_ISDIR(st.st_mode));
357 }
358
359 gboolean islink(const gchar *s)
360 {
361         struct stat st;
362
363         return (lstat_utf8(s, &st) && S_ISLNK(st.st_mode));
364 }
365
366 gint64 filesize(const gchar *s)
367 {
368         struct stat st;
369
370         if (!stat_utf8(s, &st)) return 0;
371         return st.st_size;
372 }
373
374 time_t filetime(const gchar *s)
375 {
376         struct stat st;
377
378         if (!stat_utf8(s, &st)) return 0;
379         return st.st_mtime;
380 }
381
382 gboolean filetime_set(const gchar *s, time_t tval)
383 {
384         gboolean ret = FALSE;
385
386         if (tval > 0)
387                 {
388                 struct utimbuf ut;
389                 gchar *sl;
390
391                 ut.actime = ut.modtime = tval;
392
393                 sl = path_from_utf8(s);
394                 ret = (utime(sl, &ut) == 0);
395                 g_free(sl);
396                 }
397
398         return ret;
399 }
400
401 gboolean is_readable_file(const gchar *s)
402 {
403         if (!s || !s[0] || !isfile(s)) return FALSE;
404         return access_file(s, R_OK);
405 }
406
407 gboolean access_file(const gchar *s, gint mode)
408 {
409         gchar *sl;
410         gint ret;
411
412         if (!s || !s[0]) return FALSE;
413
414         sl = path_from_utf8(s);
415         ret = (access(sl, mode) == 0);
416         g_free(sl);
417
418         return ret;
419 }
420
421 gboolean unlink_file(const gchar *s)
422 {
423         gchar *sl;
424         gboolean ret;
425
426         if (!s) return FALSE;
427
428         sl = path_from_utf8(s);
429         ret = (unlink(sl) == 0);
430         g_free(sl);
431
432         return ret;
433 }
434
435 #pragma GCC diagnostic push
436 #pragma GCC diagnostic ignored "-Wunused-function"
437 gboolean symlink_utf8_unused(const gchar *source, const gchar *target)
438 {
439         gchar *sl;
440         gchar *tl;
441         gboolean ret;
442
443         if (!source || !target) return FALSE;
444
445         sl = path_from_utf8(source);
446         tl = path_from_utf8(target);
447
448         ret = (symlink(sl, tl) == 0);
449
450         g_free(sl);
451         g_free(tl);
452
453         return ret;
454 }
455 #pragma GCC diagnostic pop
456
457 gboolean mkdir_utf8(const gchar *s, gint mode)
458 {
459         gchar *sl;
460         gboolean ret;
461
462         if (!s) return FALSE;
463
464         sl = path_from_utf8(s);
465         ret = (mkdir(sl, mode) == 0);
466         g_free(sl);
467         return ret;
468 }
469
470 gboolean rmdir_utf8(const gchar *s)
471 {
472         gchar *sl;
473         gboolean ret;
474
475         if (!s) return FALSE;
476
477         sl = path_from_utf8(s);
478         ret = (rmdir(sl) == 0);
479         g_free(sl);
480
481         return ret;
482 }
483
484 gboolean copy_file_attributes(const gchar *s, const gchar *t, gint perms, gint mtime)
485 {
486         struct stat st;
487         gchar *sl, *tl;
488         gboolean ret = FALSE;
489
490         if (!s || !t) return FALSE;
491
492         sl = path_from_utf8(s);
493         tl = path_from_utf8(t);
494
495         if (stat(sl, &st) == 0)
496                 {
497                 struct utimbuf tb;
498
499                 ret = TRUE;
500
501                 /* set the dest file attributes to that of source (ignoring errors) */
502
503                 if (perms)
504                         {
505                         ret = chown(tl, st.st_uid, st.st_gid);
506                         /* Ignores chown errors, while still doing chown
507                            (so root still can copy files preserving ownership) */
508                         ret = TRUE;
509                         if (chmod(tl, st.st_mode) < 0) {
510                             struct stat st2;
511                             if (stat(tl, &st2) != 0 || st2.st_mode != st.st_mode) {
512                                 ret = FALSE;
513                             }
514                         }
515                         }
516
517                 tb.actime = st.st_atime;
518                 tb.modtime = st.st_mtime;
519                 if (mtime && utime(tl, &tb) < 0) ret = FALSE;
520                 }
521
522         g_free(sl);
523         g_free(tl);
524
525         return ret;
526 }
527
528 /* paths are in filesystem encoding */
529 static gboolean hard_linked(const gchar *a, const gchar *b)
530 {
531         struct stat sta;
532         struct stat stb;
533
534         if (stat(a, &sta) !=  0 || stat(b, &stb) != 0) return FALSE;
535
536         return (sta.st_dev == stb.st_dev &&
537                 sta.st_ino == stb.st_ino);
538 }
539
540 static void fclose_safe(FILE *fp)
541 {
542         if (fp) fclose(fp);
543 }
544
545 gboolean copy_file(const gchar *s, const gchar *t)
546 {
547         gchar buf[16384];
548         size_t b;
549         gint fd = -1;
550
551         std::unique_ptr<gchar, decltype(&g_free)> sl{path_from_utf8(s), g_free};
552         std::unique_ptr<gchar, decltype(&g_free)> tl{path_from_utf8(t), g_free};
553
554         if (hard_linked(sl.get(), tl.get()))
555                 {
556                 return TRUE;
557                 }
558
559         /* Do not dereference absolute symlinks, but copy them "as is".
560         * For a relative symlink, we don't know how to properly change it when
561         * copied/moved to another dir to keep pointing it to same target as
562         * a relative symlink, so we turn it into absolute symlink using
563         * realpath() instead. */
564         auto copy_symlink = [](const gchar *sl, const gchar *tl) -> gboolean
565                 {
566                 struct stat st;
567                 if (!lstat_utf8(sl, &st) && S_ISLNK(st.st_mode))
568                         {
569                         return FALSE;
570                         }
571
572                 gchar *link_target;
573                 ssize_t i;
574
575                 link_target = static_cast<gchar *>(g_malloc(st.st_size + 1));
576                 i = readlink(sl, link_target, st.st_size);
577                 if (i<0)
578                         {
579                         g_free(link_target);
580                         return FALSE;  // try a "normal" copy
581                         }
582                 link_target[st.st_size] = '\0';
583
584                 if (link_target[0] != G_DIR_SEPARATOR) // if it is a relative symlink
585                         {
586                         gchar *absolute;
587
588                         const gchar *lastslash = strrchr(sl, G_DIR_SEPARATOR);
589                         gint len = lastslash - sl + 1;
590
591                         absolute = static_cast<gchar *>(g_malloc(len + st.st_size + 1));
592                         strncpy(absolute, sl, len);
593                         strcpy(absolute + len, link_target);
594                         g_free(link_target);
595                         link_target = absolute;
596
597                         gchar *realPath;
598                         realPath = realpath(link_target, nullptr);
599
600                         if (realPath != nullptr) // successfully resolved into an absolute path
601                                 {
602                                 g_free(link_target);
603                                 link_target = g_strdup(realPath);
604                                 g_free(realPath);
605                                 }
606                         else                 // could not get absolute path, got some error instead
607                                 {
608                                 g_free(link_target);
609                                 return FALSE;  // so try a "normal" copy
610                                 }
611                         }
612
613                 if (stat_utf8(tl, &st)) unlink(tl); // first try to remove directory entry in destination directory if such entry exists
614
615                 gint success = (symlink(link_target, tl) == 0);
616                 g_free(link_target);
617
618                 return success;
619                 };
620
621         if (copy_symlink(sl.get(), tl.get()))
622                 {
623                 return TRUE;
624                 }
625
626         // if symlink did not succeed, continue on to try a copy procedure
627         std::unique_ptr<FILE, decltype(&fclose_safe)> fi{fopen(sl.get(), "rb"), fclose_safe};
628         if (!fi)
629                 {
630                 return FALSE;
631                 }
632
633         /* First we write to a temporary file, then we rename it on success,
634            and attributes from original file are copied */
635         std::unique_ptr<gchar, decltype(&g_free)> randname{g_strconcat(tl.get(), ".tmp_XXXXXX", NULL), g_free};
636         if (!randname)
637                 {
638                 return FALSE;
639                 }
640
641         fd = g_mkstemp(randname.get());
642         if (fd == -1)
643                 {
644                 return FALSE;
645                 }
646
647         std::unique_ptr<FILE, decltype(&fclose_safe)> fo{fdopen(fd, "wb"), fclose_safe};
648         if (!fo) {
649                 close(fd);
650                 return FALSE;
651         }
652
653         while ((b = fread(buf, sizeof(gchar), sizeof(buf), fi.get())) && b != 0)
654                 {
655                 if (fwrite(buf, sizeof(gchar), b, fo.get()) != b)
656                         {
657                         unlink(randname.get());
658                         return FALSE;
659                         }
660                 }
661
662         if (rename(randname.get(), tl.get()) < 0) {
663                 unlink(randname.get());
664                 return FALSE;
665         }
666
667         return copy_file_attributes(s, t, TRUE, TRUE);
668 }
669
670 gboolean move_file(const gchar *s, const gchar *t)
671 {
672         gchar *sl, *tl;
673         gboolean ret = TRUE;
674
675         if (!s || !t) return FALSE;
676
677         sl = path_from_utf8(s);
678         tl = path_from_utf8(t);
679         if (rename(sl, tl) < 0)
680                 {
681                 /* this may have failed because moving a file across filesystems
682                 was attempted, so try copy and delete instead */
683                 if (copy_file(s, t))
684                         {
685                         if (unlink(sl) < 0)
686                                 {
687                                 /* err, now we can't delete the source file so return FALSE */
688                                 ret = FALSE;
689                                 }
690                         }
691                 else
692                         {
693                         ret = FALSE;
694                         }
695                 }
696         g_free(sl);
697         g_free(tl);
698
699         return ret;
700 }
701
702 gboolean rename_file(const gchar *s, const gchar *t)
703 {
704         gchar *sl, *tl;
705         gboolean ret;
706
707         if (!s || !t) return FALSE;
708
709         sl = path_from_utf8(s);
710         tl = path_from_utf8(t);
711         ret = (rename(sl, tl) == 0);
712         g_free(sl);
713         g_free(tl);
714
715         return ret;
716 }
717
718 gchar *get_current_dir()
719 {
720         gchar *pathl;
721         gchar *path8;
722
723         pathl = g_get_current_dir();
724         path8 = path_to_utf8(pathl);
725         g_free(pathl);
726
727         return path8;
728 }
729
730 void string_list_free(GList *list)
731 {
732         g_list_free_full(list, g_free);
733 }
734
735 GList *string_list_copy(const GList *list)
736 {
737         GList *new_list = nullptr;
738         auto work = const_cast<GList *>(list);
739
740         while (work)
741                 {
742                 gchar *path;
743
744                 path = static_cast<gchar *>(work->data);
745                 work = work->next;
746
747                 new_list = g_list_prepend(new_list, g_strdup(path));
748                 }
749
750         return g_list_reverse(new_list);
751 }
752
753 gchar *unique_filename(const gchar *path, const gchar *ext, const gchar *divider, gboolean pad)
754 {
755         gchar *unique;
756         gint n = 1;
757
758         if (!ext) ext = "";
759         if (!divider) divider = "";
760
761         unique = g_strconcat(path, ext, NULL);
762         while (isname(unique))
763                 {
764                 g_free(unique);
765                 if (pad)
766                         {
767                         unique = g_strdup_printf("%s%s%03d%s", path, divider, n, ext);
768                         }
769                 else
770                         {
771                         unique = g_strdup_printf("%s%s%d%s", path, divider, n, ext);
772                         }
773                 n++;
774                 if (n > 999)
775                         {
776                         /* well, we tried */
777                         g_free(unique);
778                         return nullptr;
779                         }
780                 }
781
782         return unique;
783 }
784
785 #pragma GCC diagnostic push
786 #pragma GCC diagnostic ignored "-Wunused-function"
787 gchar *unique_filename_simple_unused(const gchar *path)
788 {
789         gchar *unique;
790         const gchar *name;
791         const gchar *ext;
792
793         if (!path) return nullptr;
794
795         name = filename_from_path(path);
796         if (!name) return nullptr;
797
798         ext = registered_extension_from_path(name);
799
800         if (!ext)
801                 {
802                 unique = unique_filename(path, nullptr, "_", TRUE);
803                 }
804         else
805                 {
806                 gchar *base;
807
808                 base = remove_extension_from_path(path);
809                 unique = unique_filename(base, ext, "_", TRUE);
810                 g_free(base);
811                 }
812
813         return unique;
814 }
815 #pragma GCC diagnostic pop
816
817 const gchar *filename_from_path(const gchar *path)
818 {
819         const gchar *base;
820
821         if (!path) return nullptr;
822
823         base = strrchr(path, G_DIR_SEPARATOR);
824         if (base) return base + 1;
825
826         return path;
827 }
828
829 gchar *remove_level_from_path(const gchar *path)
830 {
831         const gchar *base;
832
833         if (!path) return g_strdup("");
834
835         base = strrchr(path, G_DIR_SEPARATOR);
836         /* Take account of a file being in the root ( / ) folder - ensure the returned value
837          * is at least one character long */
838         if (base) return g_strndup(path, (strlen(path)-strlen(base)) == 0 ? 1 : (strlen(path)-strlen(base)));
839
840         return g_strdup("");
841 }
842
843 gboolean file_extension_match(const gchar *path, const gchar *ext)
844 {
845         gint p;
846         gint e;
847
848         if (!path) return FALSE;
849         if (!ext) return TRUE;
850
851         p = strlen(path);
852         e = strlen(ext);
853
854         /** @FIXME utf8 */
855         return (p > e && g_ascii_strncasecmp(path + p - e, ext, e) == 0);
856 }
857
858 gchar *remove_extension_from_path(const gchar *path)
859 {
860         const gchar *reg_ext;
861
862         if (!path) return nullptr;
863
864         reg_ext = registered_extension_from_path(path);
865
866         return g_strndup(path, strlen(path) - (reg_ext == nullptr ? 0 : strlen(reg_ext)));
867 }
868
869 void parse_out_relatives(gchar *path)
870 {
871         gint s, t;
872
873         if (!path) return;
874
875         s = t = 0;
876
877         while (path[s] != '\0')
878                 {
879                 if (path[s] == G_DIR_SEPARATOR && path[s+1] == '.')
880                         {
881                         /* /. occurrence, let's see more */
882                         gint p = s + 2;
883
884                         if (path[p] == G_DIR_SEPARATOR || path[p] == '\0')
885                                 {
886                                 /* /./ or /., just skip this part */
887                                 s = p;
888                                 continue;
889                                 }
890
891                         if (path[p] == '.' && (path[p+1] == G_DIR_SEPARATOR || path[p+1] == '\0'))
892                                 {
893                                 /* /../ or /.., remove previous part, ie. /a/b/../ becomes /a/ */
894                                 s = p + 1;
895                                 if (t > 0) t--;
896                                 while (path[t] != G_DIR_SEPARATOR && t > 0) t--;
897                                 continue;
898                                 }
899                         }
900
901                 if (s != t) path[t] = path[s];
902                 t++;
903                 s++;
904                 }
905
906         if (t == 0 && path[t] == G_DIR_SEPARATOR) t++;
907         if (t > 1 && path[t-1] == G_DIR_SEPARATOR) t--;
908         path[t] = '\0';
909 }
910
911 gboolean file_in_path(const gchar *name)
912 {
913         gchar *path;
914         gchar *namel;
915         gint p, l;
916         gboolean ret = FALSE;
917
918         if (!name) return FALSE;
919         path = g_strdup(getenv("PATH"));
920         if (!path) return FALSE;
921         namel = path_from_utf8(name);
922
923         p = 0;
924         l = strlen(path);
925         while (p < l && !ret)
926                 {
927                 gchar *f;
928                 gint e = p;
929                 while (path[e] != ':' && path[e] != '\0') e++;
930                 path[e] = '\0';
931                 e++;
932                 f = g_build_filename(path + p, namel, NULL);
933                 if (isfile(f)) ret = TRUE;
934                 g_free(f);
935                 p = e;
936                 }
937         g_free(namel);
938         g_free(path);
939
940         return ret;
941 }
942
943 gboolean recursive_mkdir_if_not_exists(const gchar *path, mode_t mode)
944 {
945         if (!path) return FALSE;
946
947         if (!isdir(path))
948                 {
949                 gchar *npath = g_strdup(path);
950                 gchar *p = npath;
951
952                 while (p[0] != '\0')
953                         {
954                         p++;
955                         if (p[0] == G_DIR_SEPARATOR || p[0] == '\0')
956                                 {
957                                 gboolean end = TRUE;
958
959                                 if (p[0] != '\0')
960                                         {
961                                         p[0] = '\0';
962                                         end = FALSE;
963                                         }
964
965                                 if (!isdir(npath))
966                                         {
967                                         DEBUG_1("creating sub dir:%s", npath);
968                                         if (!mkdir_utf8(npath, mode))
969                                                 {
970                                                 log_printf("create dir failed: %s\n", npath);
971                                                 g_free(npath);
972                                                 return FALSE;
973                                                 }
974                                         }
975
976                                 if (!end) p[0] = G_DIR_SEPARATOR;
977                                 }
978                         }
979                 g_free(npath);
980                 }
981
982         return TRUE;
983 }
984
985 /* does filename utf8 to filesystem encoding first */
986 gboolean md5_get_digest_from_file_utf8(const gchar *path, guchar digest[16])
987 {
988         gboolean success;
989         gchar *pathl;
990
991         pathl = path_from_utf8(path);
992         success = md5_get_digest_from_file(pathl, digest);
993         g_free(pathl);
994
995         return success;
996 }
997
998
999 gchar *md5_text_from_file_utf8(const gchar *path, const gchar *error_text)
1000 {
1001         std::unique_ptr<gchar, decltype(&g_free)> pathl{path_from_utf8(path), g_free};
1002
1003         auto md5_text = md5_get_string_from_file(pathl.get());
1004
1005         return md5_text ? md5_text : g_strdup(error_text);
1006 }
1007
1008 /* Download web file
1009  */
1010 struct WebData
1011 {
1012         GenericDialog *gd;
1013         GCancellable *cancellable;
1014         LayoutWindow *lw;
1015
1016         GtkWidget *progress;
1017         GFile *tmp_g_file;
1018         GFile *web_file;
1019 };
1020
1021 static void web_file_async_ready_cb(GObject *source_object, GAsyncResult *res, gpointer data)
1022 {
1023         GError *error = nullptr;
1024         auto web = static_cast<WebData *>(data);
1025         gchar *tmp_filename;
1026
1027         if (!g_cancellable_is_cancelled(web->cancellable))
1028                 {
1029                 generic_dialog_close(web->gd);
1030                 }
1031
1032         if (g_file_copy_finish(G_FILE(source_object), res, &error))
1033                 {
1034                 tmp_filename = g_file_get_parse_name(web->tmp_g_file);
1035                 g_free(tmp_filename);
1036                 layout_set_path(web->lw, g_file_get_path(web->tmp_g_file));
1037                 }
1038         else
1039                 {
1040                 file_util_warning_dialog(_("Web file download failed"), error->message, GQ_ICON_DIALOG_ERROR, nullptr);
1041                 }
1042
1043         g_object_unref(web->tmp_g_file);
1044         web->tmp_g_file = nullptr;
1045         g_object_unref(web->cancellable);
1046         g_object_unref(web->web_file);
1047 }
1048
1049 static void web_file_progress_cb(goffset current_num_bytes, goffset total_num_bytes, gpointer data)
1050 {
1051         auto web = static_cast<WebData *>(data);
1052
1053         if (!g_cancellable_is_cancelled(web->cancellable))
1054                 {
1055                 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(web->progress), static_cast<gdouble>(current_num_bytes) / total_num_bytes);
1056                 }
1057 }
1058
1059 static void download_web_file_cancel_button_cb(GenericDialog *, gpointer data)
1060 {
1061         auto web = static_cast<WebData *>(data);
1062
1063         g_cancellable_cancel(web->cancellable);
1064 }
1065
1066 gboolean download_web_file(const gchar *text, gboolean minimized, gpointer data)
1067 {
1068         gchar *scheme;
1069         auto lw = static_cast<LayoutWindow *>(data);
1070         gchar *tmp_dir;
1071         GError *error = nullptr;
1072         WebData *web;
1073         gchar *base;
1074         gboolean ret = FALSE;
1075         gchar *message;
1076         FileFormatClass format_class;
1077
1078         scheme = g_uri_parse_scheme(text);
1079         if (g_strcmp0("http", scheme) == 0 || g_strcmp0("https", scheme) == 0)
1080                 {
1081                 format_class = filter_file_get_class(text);
1082
1083                 if (format_class == FORMAT_CLASS_IMAGE || format_class == FORMAT_CLASS_RAWIMAGE || format_class == FORMAT_CLASS_VIDEO || format_class == FORMAT_CLASS_DOCUMENT)
1084                         {
1085                         tmp_dir = g_dir_make_tmp("geeqie_XXXXXX", &error);
1086                         if (error)
1087                                 {
1088                                 log_printf("Error: could not create temporary file n%s\n", error->message);
1089                                 g_error_free(error);
1090                                 error = nullptr;
1091                                 ret = TRUE;
1092                                 }
1093                         else
1094                                 {
1095                                 web = g_new0(WebData, 1);
1096                                 web->lw = lw;
1097
1098                                 web->web_file = g_file_new_for_uri(text);
1099
1100                                 base = g_strdup(g_file_get_basename(web->web_file));
1101                                 web->tmp_g_file = g_file_new_for_path(g_build_filename(tmp_dir, base, NULL));
1102
1103                                 web->gd = generic_dialog_new(_("Download web file"), "download_web_file", nullptr, TRUE, download_web_file_cancel_button_cb, web);
1104
1105                                 message = g_strconcat(_("Downloading "), base, NULL);
1106                                 generic_dialog_add_message(web->gd, GQ_ICON_DIALOG_INFO, message, nullptr, FALSE);
1107
1108                                 web->progress = gtk_progress_bar_new();
1109                                 gq_gtk_box_pack_start(GTK_BOX(web->gd->vbox), web->progress, FALSE, FALSE, 0);
1110                                 gtk_widget_show(web->progress);
1111                                 if (minimized)
1112                                         {
1113                                         gtk_window_iconify(GTK_WINDOW(web->gd->dialog));
1114                                         }
1115
1116                                 gtk_widget_show(web->gd->dialog);
1117                                 web->cancellable = g_cancellable_new();
1118                                 g_file_copy_async(web->web_file, web->tmp_g_file, G_FILE_COPY_OVERWRITE, G_PRIORITY_LOW, web->cancellable, web_file_progress_cb, web, web_file_async_ready_cb, web);
1119
1120                                 g_free(base);
1121                                 g_free(message);
1122                                 ret = TRUE;
1123                                 }
1124                         }
1125                 }
1126         else
1127                 {
1128                 ret = FALSE;
1129                 }
1130
1131         g_free(scheme);
1132         return ret;
1133
1134 }
1135
1136 gboolean rmdir_recursive(GFile *file, GCancellable *cancellable, GError **error)
1137 {
1138         g_autoptr(GFileEnumerator) enumerator = nullptr;
1139
1140         enumerator = g_file_enumerate_children(file, G_FILE_ATTRIBUTE_STANDARD_NAME, G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS, cancellable, nullptr);
1141
1142         while (enumerator != nullptr)
1143                 {
1144                  GFile *child;
1145
1146                 if (!g_file_enumerator_iterate(enumerator, nullptr, &child, cancellable, error))
1147                         return FALSE;
1148                 if (child == nullptr)
1149                         break;
1150                 if (!rmdir_recursive(child, cancellable, error))
1151                         return FALSE;
1152                 }
1153
1154         return g_file_delete(file, cancellable, error);
1155 }
1156
1157 /**
1158  * @brief Retrieves the internal scale factor that maps from window coordinates to the actual device pixels
1159  * @param  -
1160  * @returns scale factor
1161  *
1162  *
1163  */
1164 gint scale_factor()
1165 {
1166         LayoutWindow *lw = nullptr;
1167
1168         layout_valid(&lw);
1169         return gtk_widget_get_scale_factor(lw->window);
1170 }
1171 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */