2 Copyright (C) 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
4 Written 1994, 1995, 1996 by:
5 Miguel de Icaza, Janne Kukonlehto, Dugan Porter,
6 Jakub Jelinek, Mauricio Plaza.
8 The file_date routine is mostly from GNU's fileutils package,
9 written by Richard Stallman and David MacKenzie.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
26 * \brief Source: various utilities
39 #include <sys/types.h>
43 #include "lib/global.h"
44 #include "lib/tty/win.h" /* xterm_flag */
45 #include "lib/mcconfig.h"
46 #include "lib/fileloc.h"
47 #include "lib/vfs/mc-vfs/vfs.h"
48 #include "lib/strutil.h"
51 #include "src/filemanager/filegui.h"
52 #include "src/filemanager/file.h" /* copy_file_file() */
53 #include "src/main.h" /* eight_bit_clean */
55 /*** global variables ****************************************************************************/
57 /*** file scope macro definitions ****************************************************************/
59 #define ismode(n,m) ((n & m) == m)
61 /* Number of attempts to create a temporary file */
66 #define TMP_SUFFIX ".tmp"
68 #define ASCII_A (0x40 + 1)
69 #define ASCII_Z (0x40 + 26)
70 #define ASCII_a (0x60 + 1)
71 #define ASCII_z (0x60 + 26)
73 /*** file scope type declarations ****************************************************************/
75 /*** file scope variables ************************************************************************/
77 /*** file scope functions ************************************************************************/
78 /* --------------------------------------------------------------------------------------------- */
81 is_7bit_printable (unsigned char c
)
83 return (c
> 31 && c
< 127);
86 /* --------------------------------------------------------------------------------------------- */
89 is_iso_printable (unsigned char c
)
91 return ((c
> 31 && c
< 127) || c
>= 160);
94 /* --------------------------------------------------------------------------------------------- */
97 is_8bit_printable (unsigned char c
)
99 /* "Full 8 bits output" doesn't work on xterm */
101 return is_iso_printable (c
);
103 return (c
> 31 && c
!= 127 && c
!= 155);
106 /* --------------------------------------------------------------------------------------------- */
109 resolve_symlinks (const char *path
)
111 char *buf
, *buf2
, *q
, *r
, c
;
116 if (*path
!= PATH_SEP
)
118 r
= buf
= g_malloc (MC_MAXPATHLEN
);
119 buf2
= g_malloc (MC_MAXPATHLEN
);
125 q
= strchr (p
+ 1, PATH_SEP
);
128 q
= strchr (p
+ 1, 0);
134 if (mc_lstat (path
, &mybuf
) < 0)
141 if (!S_ISLNK (mybuf
.st_mode
))
145 len
= mc_readlink (path
, buf2
, MC_MAXPATHLEN
- 1);
154 if (*buf2
== PATH_SEP
)
159 canonicalize_pathname (buf
);
161 if (!*r
|| *(r
- 1) != PATH_SEP
)
172 strcpy (buf
, PATH_SEP_STR
);
173 else if (*(r
- 1) == PATH_SEP
&& r
!= buf
+ 1)
179 /* --------------------------------------------------------------------------------------------- */
182 mc_util_write_backup_content (const char *from_file_name
, const char *to_file_name
)
187 gboolean ret1
= TRUE
;
189 if (!g_file_get_contents (from_file_name
, &contents
, &length
, NULL
))
192 backup_fd
= fopen (to_file_name
, "w");
193 if (backup_fd
== NULL
)
199 if (fwrite ((const void *) contents
, 1, length
, backup_fd
) != length
)
203 ret2
= fflush (backup_fd
);
204 ret2
= fclose (backup_fd
);
210 /* --------------------------------------------------------------------------------------------- */
211 /*** public functions ****************************************************************************/
212 /* --------------------------------------------------------------------------------------------- */
220 /* "Display bits" is ignored, since the user controls the output
221 by setting the output codepage */
222 return is_8bit_printable (c
);
224 if (!eight_bit_clean
)
225 return is_7bit_printable (c
);
229 return is_8bit_printable (c
);
232 return is_iso_printable (c
);
233 #endif /* !HAVE_CHARSET */
236 /* --------------------------------------------------------------------------------------------- */
238 * Quote the filename for the purpose of inserting it into the command
239 * line. If quote_percent is 1, replace "%" with "%%" - the percent is
240 * processed by the mc command line.
243 name_quote (const char *s
, int quote_percent
)
247 d
= ret
= g_malloc (strlen (s
) * 2 + 2 + 1);
299 /* --------------------------------------------------------------------------------------------- */
302 fake_name_quote (const char *s
, int quote_percent
)
304 (void) quote_percent
;
308 /* --------------------------------------------------------------------------------------------- */
310 * path_trunc() is the same as str_trunc() but
311 * it deletes possible password from path for security
316 path_trunc (const char *path
, size_t trunc_len
)
318 char *secure_path
= strip_password (g_strdup (path
), 1);
320 const char *ret
= str_trunc (secure_path
, trunc_len
);
321 g_free (secure_path
);
326 /* --------------------------------------------------------------------------------------------- */
329 size_trunc (uintmax_t size
, gboolean use_si
)
331 static char x
[BUF_TINY
];
332 uintmax_t divisor
= 1;
333 const char *xtra
= "";
335 if (size
> 999999999UL)
337 divisor
= use_si
? 1000 : 1024;
338 xtra
= use_si
? "k" : "K";
339 if (size
/ divisor
> 999999999UL)
341 divisor
= use_si
? (1000 * 1000) : (1024 * 1024);
342 xtra
= use_si
? "m" : "M";
345 g_snprintf (x
, sizeof (x
), "%.0f%s", 1.0 * size
/ divisor
, xtra
);
349 /* --------------------------------------------------------------------------------------------- */
352 size_trunc_sep (uintmax_t size
, gboolean use_si
)
359 p
= y
= size_trunc (size
, use_si
);
361 d
= x
+ sizeof (x
) - 1;
363 while (p
>= y
&& isalpha ((unsigned char) *p
))
365 for (count
= 0; p
>= y
; count
++)
380 /* --------------------------------------------------------------------------------------------- */
382 * Print file SIZE to BUFFER, but don't exceed LEN characters,
383 * not including trailing 0. BUFFER should be at least LEN+1 long.
384 * This function is called for every file on panels, so avoid
385 * floating point by any means.
387 * Units: size units (filesystem sizes are 1K blocks)
388 * 0=bytes, 1=Kbytes, 2=Mbytes, etc.
392 size_trunc_len (char *buffer
, unsigned int len
, uintmax_t size
, int units
, gboolean use_si
)
394 /* Avoid taking power for every file. */
395 static const uintmax_t power10
[] = {
396 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000
398 static const char *const suffix
[] = { "", "K", "M", "G", "T", "P", "E", "Z", "Y", NULL
};
399 static const char *const suffix_lc
[] = { "", "k", "m", "g", "t", "p", "e", "z", "y", NULL
};
407 * recalculate from 1024 base to 1000 base if units>0
408 * We can't just multiply by 1024 - that might cause overflow
409 * if off_t type is too small
412 for (j
= 0; j
< units
; j
++)
414 size_remain
= ((size
% 125) * 1024) / 1000; /* size mod 125, recalculated */
415 size
= size
/ 125; /* 128/125 = 1024/1000 */
416 size
= size
* 128; /* This will convert size from multiple of 1024 to multiple of 1000 */
417 size
+= size_remain
; /* Re-add remainder lost by division/multiplication */
420 for (j
= units
; suffix
[j
] != NULL
; j
++)
426 /* Empty files will print "0" even with minimal width. */
427 g_snprintf (buffer
, len
+ 1, "0");
431 /* Use "~K" or just "K" if len is 1. Use "B" for bytes. */
432 g_snprintf (buffer
, len
+ 1, (len
> 1) ? "~%s" : "%s",
433 (j
> 1) ? (use_si
? suffix_lc
[j
- 1] : suffix
[j
- 1]) : "B");
437 if (size
< power10
[len
- (j
> 0)])
439 g_snprintf (buffer
, len
+ 1, "%" PRIuMAX
"%s", size
, use_si
? suffix_lc
[j
] : suffix
[j
]);
443 /* Powers of 1000 or 1024, with rounding. */
445 size
= (size
+ 500) / 1000;
447 size
= (size
+ 512) >> 10;
451 /* --------------------------------------------------------------------------------------------- */
454 string_perm (mode_t mode_bits
)
456 static char mode
[11];
458 strcpy (mode
, "----------");
459 if (S_ISDIR (mode_bits
))
461 if (S_ISCHR (mode_bits
))
463 if (S_ISBLK (mode_bits
))
465 if (S_ISLNK (mode_bits
))
467 if (S_ISFIFO (mode_bits
))
469 if (S_ISNAM (mode_bits
))
471 if (S_ISSOCK (mode_bits
))
473 if (S_ISDOOR (mode_bits
))
475 if (ismode (mode_bits
, S_IXOTH
))
477 if (ismode (mode_bits
, S_IWOTH
))
479 if (ismode (mode_bits
, S_IROTH
))
481 if (ismode (mode_bits
, S_IXGRP
))
483 if (ismode (mode_bits
, S_IWGRP
))
485 if (ismode (mode_bits
, S_IRGRP
))
487 if (ismode (mode_bits
, S_IXUSR
))
489 if (ismode (mode_bits
, S_IWUSR
))
491 if (ismode (mode_bits
, S_IRUSR
))
494 if (ismode (mode_bits
, S_ISUID
))
495 mode
[3] = (mode
[3] == 'x') ? 's' : 'S';
498 if (ismode (mode_bits
, S_ISGID
))
499 mode
[6] = (mode
[6] == 'x') ? 's' : 'S';
502 if (ismode (mode_bits
, S_ISVTX
))
503 mode
[9] = (mode
[9] == 'x') ? 't' : 'T';
508 /* --------------------------------------------------------------------------------------------- */
510 * p: string which might contain an url with a password (this parameter is
511 * modified in place).
512 * has_prefix = 0: The first parameter is an url without a prefix
513 * (user[:pass]@]machine[:port][remote-dir). Delete
515 * has_prefix = 1: Search p for known url prefixes. If found delete
516 * the password from the url.
517 * Caveat: only the first url is found
521 strip_password (char *p
, int has_prefix
)
540 char *at
, *inner_colon
, *dir
;
544 for (i
= 0; i
< sizeof (prefixes
) / sizeof (prefixes
[0]); i
++)
550 q
= strstr (p
, prefixes
[i
].name
);
554 p
= q
+ prefixes
[i
].len
;
557 dir
= strchr (p
, PATH_SEP
);
561 /* search for any possible user */
562 at
= strrchr (p
, '@');
567 /* We have a username */
570 inner_colon
= memchr (p
, ':', at
- p
);
572 memmove (inner_colon
, at
, strlen (at
) + 1);
579 /* --------------------------------------------------------------------------------------------- */
582 strip_home_and_password (const char *dir
)
585 static char newdir
[MC_MAXPATHLEN
];
587 len
= strlen (mc_config_get_home_dir ());
588 if (mc_config_get_home_dir () != NULL
&& strncmp (dir
, mc_config_get_home_dir (), len
) == 0 &&
589 (dir
[len
] == PATH_SEP
|| dir
[len
] == '\0'))
592 g_strlcpy (&newdir
[1], &dir
[len
], sizeof (newdir
) - 1);
596 /* We do not strip homes in /#ftp tree, I do not like ~'s there
598 g_strlcpy (newdir
, dir
, sizeof (newdir
));
599 strip_password (newdir
, 1);
603 /* --------------------------------------------------------------------------------------------- */
606 extension (const char *filename
)
608 const char *d
= strrchr (filename
, '.');
609 return (d
!= NULL
) ? d
+ 1 : "";
612 /* --------------------------------------------------------------------------------------------- */
615 check_for_default (const char *default_file
, const char *file
)
617 if (!exist_file (file
))
620 FileOpTotalContext
*tctx
;
622 if (!exist_file (default_file
))
625 ctx
= file_op_context_new (OP_COPY
);
626 tctx
= file_op_total_context_new ();
627 file_op_context_create_ui (ctx
, 0, FALSE
);
628 copy_file_file (tctx
, ctx
, default_file
, file
);
629 file_op_total_context_destroy (tctx
);
630 file_op_context_destroy (ctx
);
636 /* --------------------------------------------------------------------------------------------- */
639 load_mc_home_file (const char *from
, const char *filename
, char **allocated_filename
)
641 char *hintfile_base
, *hintfile
;
645 hintfile_base
= g_build_filename (from
, filename
, (char *) NULL
);
646 lang
= guess_message_value ();
648 hintfile
= g_strconcat (hintfile_base
, ".", lang
, (char *) NULL
);
649 if (!g_file_get_contents (hintfile
, &data
, NULL
, NULL
))
651 /* Fall back to the two-letter language code */
652 if (lang
[0] != '\0' && lang
[1] != '\0')
655 hintfile
= g_strconcat (hintfile_base
, ".", lang
, (char *) NULL
);
656 if (!g_file_get_contents (hintfile
, &data
, NULL
, NULL
))
659 hintfile
= hintfile_base
;
660 g_file_get_contents (hintfile_base
, &data
, NULL
, NULL
);
666 if (hintfile
!= hintfile_base
)
667 g_free (hintfile_base
);
669 if (allocated_filename
!= NULL
)
670 *allocated_filename
= hintfile
;
677 /* --------------------------------------------------------------------------------------------- */
680 extract_line (const char *s
, const char *top
)
682 static char tmp_line
[BUF_MEDIUM
];
685 while (*s
&& *s
!= '\n' && (size_t) (t
- tmp_line
) < sizeof (tmp_line
) - 1 && s
< top
)
691 /* --------------------------------------------------------------------------------------------- */
693 * The basename routine
697 x_basename (const char *s
)
700 return ((where
= strrchr (s
, PATH_SEP
))) ? where
+ 1 : s
;
703 /* --------------------------------------------------------------------------------------------- */
706 unix_error_string (int error_num
)
708 static char buffer
[BUF_LARGE
];
709 gchar
*strerror_currentlocale
;
711 strerror_currentlocale
= g_locale_from_utf8 (g_strerror (error_num
), -1, NULL
, NULL
, NULL
);
712 g_snprintf (buffer
, sizeof (buffer
), "%s (%d)", strerror_currentlocale
, error_num
);
713 g_free (strerror_currentlocale
);
718 /* --------------------------------------------------------------------------------------------- */
721 skip_separators (const char *s
)
725 for (; *su
; str_cnext_char (&su
))
726 if (*su
!= ' ' && *su
!= '\t' && *su
!= ',')
732 /* --------------------------------------------------------------------------------------------- */
735 skip_numbers (const char *s
)
739 for (; *su
; str_cnext_char (&su
))
740 if (!str_isdigit (su
))
746 /* --------------------------------------------------------------------------------------------- */
748 * Remove all control sequences from the argument string. We define
749 * "control sequence", in a sort of pidgin BNF, as follows:
751 * control-seq = Esc non-'['
752 * | Esc '[' (0 or more digits or ';' or '?') (any other char)
754 * This scheme works for all the terminals described in my termcap /
755 * terminfo databases, except the Hewlett-Packard 70092 and some Wyse
756 * terminals. If I hear from a single person who uses such a terminal
757 * with MC, I'll be glad to add support for it. (Dugan)
758 * Non-printable characters are also removed.
762 strip_ctrl_codes (char *s
)
764 char *w
; /* Current position where the stripped data is written */
765 char *r
; /* Current position where the original data is read */
771 for (w
= s
, r
= s
; *r
;)
775 /* Skip the control sequence's arguments */ ;
776 /* '(' need to avoid strange 'B' letter in *Suse (if mc runs under root user) */
777 if (*(++r
) == '[' || *r
== '(')
779 /* strchr() matches trailing binary 0 */
780 while (*(++r
) && strchr ("0123456789;?", *r
));
785 * Skip xterm's OSC (Operating System Command)
786 * http://www.xfree86.org/current/ctlseqs.html
792 for (; *new_r
; ++new_r
)
802 if (*(new_r
+ 1) == '\\')
813 * Now we are at the last character of the sequence.
814 * Skip it unless it's binary 0.
821 n
= str_get_next_char (r
);
824 memmove (w
, r
, n
- r
);
833 /* --------------------------------------------------------------------------------------------- */
835 enum compression_type
836 get_compression_type (int fd
, const char *name
)
838 unsigned char magic
[16];
841 /* Read the magic signature */
842 if (mc_read (fd
, (char *) magic
, 4) != 4)
843 return COMPRESSION_NONE
;
845 /* GZIP_MAGIC and OLD_GZIP_MAGIC */
846 if (magic
[0] == 037 && (magic
[1] == 0213 || magic
[1] == 0236))
848 return COMPRESSION_GZIP
;
852 if (magic
[0] == 0120 && magic
[1] == 0113 && magic
[2] == 003 && magic
[3] == 004)
854 /* Read compression type */
855 mc_lseek (fd
, 8, SEEK_SET
);
856 if (mc_read (fd
, (char *) magic
, 2) != 2)
857 return COMPRESSION_NONE
;
859 /* Gzip can handle only deflated (8) or stored (0) files */
860 if ((magic
[0] != 8 && magic
[0] != 0) || magic
[1] != 0)
861 return COMPRESSION_NONE
;
863 /* Compatible with gzip */
864 return COMPRESSION_GZIP
;
867 /* PACK_MAGIC and LZH_MAGIC and compress magic */
868 if (magic
[0] == 037 && (magic
[1] == 036 || magic
[1] == 0240 || magic
[1] == 0235))
870 /* Compatible with gzip */
871 return COMPRESSION_GZIP
;
874 /* BZIP and BZIP2 files */
875 if ((magic
[0] == 'B') && (magic
[1] == 'Z') && (magic
[3] >= '1') && (magic
[3] <= '9'))
880 return COMPRESSION_BZIP
;
882 return COMPRESSION_BZIP2
;
886 /* Support for LZMA (only utils format with magic in header).
887 * This is the default format of LZMA utils 4.32.1 and later. */
889 if (mc_read (fd
, (char *) magic
+ 4, 2) != 2)
890 return COMPRESSION_NONE
;
892 /* LZMA utils format */
895 && magic
[2] == 'Z' && magic
[3] == 'M' && magic
[4] == 'A' && magic
[5] == 0x00)
896 return COMPRESSION_LZMA
;
898 /* XZ compression magic */
901 && magic
[2] == 0x7A && magic
[3] == 0x58 && magic
[4] == 0x5A && magic
[5] == 0x00)
902 return COMPRESSION_XZ
;
904 str_len
= strlen (name
);
905 /* HACK: we must belive to extention of LZMA file :) ... */
906 if ((str_len
> 5 && strcmp (&name
[str_len
- 5], ".lzma") == 0) ||
907 (str_len
> 4 && strcmp (&name
[str_len
- 4], ".tlz") == 0))
908 return COMPRESSION_LZMA
;
910 return COMPRESSION_NONE
;
913 /* --------------------------------------------------------------------------------------------- */
916 decompress_extension (int type
)
920 case COMPRESSION_GZIP
:
922 case COMPRESSION_BZIP
:
924 case COMPRESSION_BZIP2
:
926 case COMPRESSION_LZMA
:
931 /* Should never reach this place */
932 fprintf (stderr
, "Fatal: decompress_extension called with an unknown argument\n");
936 /* --------------------------------------------------------------------------------------------- */
939 wipe_password (char *passwd
)
950 /* --------------------------------------------------------------------------------------------- */
952 * Convert "\E" -> esc character and ^x to control-x key and ^^ to ^ key
953 * @returns a newly allocated string
957 convert_controls (const char *p
)
959 char *valcopy
= g_strdup (p
);
962 /* Parse the escape special character */
963 for (q
= valcopy
; *p
;)
968 if ((*p
== 'e') || (*p
== 'E'))
983 char c
= (*p
| 0x20);
984 if (c
>= 'a' && c
<= 'z')
1001 /* --------------------------------------------------------------------------------------------- */
1003 * Finds out a relative path from first to second, i.e. goes as many ..
1004 * as needed up in first and then goes down using second
1008 diff_two_paths (const char *first
, const char *second
)
1010 char *p
, *q
, *r
, *s
, *buf
= NULL
;
1011 int i
, j
, prevlen
= -1, currlen
;
1012 char *my_first
= NULL
, *my_second
= NULL
;
1014 my_first
= resolve_symlinks (first
);
1015 if (my_first
== NULL
)
1017 my_second
= resolve_symlinks (second
);
1018 if (my_second
== NULL
)
1023 for (j
= 0; j
< 2; j
++)
1029 r
= strchr (p
, PATH_SEP
);
1030 s
= strchr (q
, PATH_SEP
);
1050 for (i
= 0; (p
= strchr (p
+ 1, PATH_SEP
)) != NULL
; i
++);
1051 currlen
= (i
+ 1) * 3 + strlen (q
) + 1;
1054 if (currlen
< prevlen
)
1063 p
= buf
= g_malloc (currlen
);
1065 for (; i
>= 0; i
--, p
+= 3)
1074 /* --------------------------------------------------------------------------------------------- */
1076 * If filename is NULL, then we just append PATH_SEP to the dir
1080 concat_dir_and_file (const char *dir
, const char *file
)
1082 int i
= strlen (dir
);
1084 if (dir
[i
- 1] == PATH_SEP
)
1085 return g_strconcat (dir
, file
, (char *) NULL
);
1087 return g_strconcat (dir
, PATH_SEP_STR
, file
, (char *) NULL
);
1090 /* --------------------------------------------------------------------------------------------- */
1092 * Append text to GList, remove all entries with the same text
1096 list_append_unique (GList
* list
, char *text
)
1101 * Go to the last position and traverse the list backwards
1102 * starting from the second last entry to make sure that we
1103 * are not removing the current link.
1105 list
= g_list_append (list
, text
);
1106 list
= g_list_last (list
);
1107 lc_link
= g_list_previous (list
);
1109 while (lc_link
!= NULL
)
1113 newlink
= g_list_previous (lc_link
);
1114 if (strcmp ((char *) lc_link
->data
, text
) == 0)
1118 g_free (lc_link
->data
);
1119 tmp
= g_list_remove_link (list
, lc_link
);
1120 g_list_free_1 (lc_link
);
1128 /* --------------------------------------------------------------------------------------------- */
1129 /* Following code heavily borrows from libiberty, mkstemps.c */
1132 * pname (output) - pointer to the name of the temp file (needs g_free).
1133 * NULL if the function fails.
1134 * prefix - part of the filename before the random part.
1135 * Prepend $TMPDIR or /tmp if there are no path separators.
1136 * suffix - if not NULL, part of the filename after the random part.
1139 * handle of the open file or -1 if couldn't open any.
1143 mc_mkstemps (char **pname
, const char *prefix
, const char *suffix
)
1145 static const char letters
[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
1146 static unsigned long value
;
1153 if (strchr (prefix
, PATH_SEP
) == NULL
)
1155 /* Add prefix first to find the position of XXXXXX */
1156 tmpbase
= concat_dir_and_file (mc_tmpdir (), prefix
);
1160 tmpbase
= g_strdup (prefix
);
1163 tmpname
= g_strconcat (tmpbase
, "XXXXXX", suffix
, (char *) NULL
);
1165 XXXXXX
= &tmpname
[strlen (tmpbase
)];
1168 /* Get some more or less random data. */
1169 gettimeofday (&tv
, NULL
);
1170 value
+= (tv
.tv_usec
<< 16) ^ tv
.tv_sec
^ getpid ();
1172 for (count
= 0; count
< TMP_MAX
; ++count
)
1174 unsigned long v
= value
;
1177 /* Fill in the random bits. */
1178 XXXXXX
[0] = letters
[v
% 62];
1180 XXXXXX
[1] = letters
[v
% 62];
1182 XXXXXX
[2] = letters
[v
% 62];
1184 XXXXXX
[3] = letters
[v
% 62];
1186 XXXXXX
[4] = letters
[v
% 62];
1188 XXXXXX
[5] = letters
[v
% 62];
1190 fd
= open (tmpname
, O_RDWR
| O_CREAT
| O_TRUNC
| O_EXCL
, S_IRUSR
| S_IWUSR
);
1193 /* Successfully created. */
1197 /* This is a random value. It is only necessary that the next
1198 TMP_MAX values generated by adding 7777 to VALUE are different
1199 with (module 2^32). */
1203 /* Unsuccessful. Free the filename. */
1210 /* --------------------------------------------------------------------------------------------- */
1212 * Read and restore position for the given filename.
1213 * If there is no stored data, return line 1 and col 0.
1217 load_file_position (const char *filename
, long *line
, long *column
, off_t
* offset
,
1218 GArray
** bookmarks
)
1222 char buf
[MC_MAXPATHLEN
+ 100];
1223 const size_t len
= strlen (filename
);
1230 /* open file with positions */
1231 fn
= g_build_filename (mc_config_get_cache_path (), MC_FILEPOS_FILE
, NULL
);
1232 f
= fopen (fn
, "r");
1237 /* prepare array for serialized bookmarks */
1238 *bookmarks
= g_array_sized_new (FALSE
, FALSE
, sizeof (size_t), MAX_SAVED_BOOKMARKS
);
1240 while (fgets (buf
, sizeof (buf
), f
) != NULL
)
1245 /* check if the filename matches the beginning of string */
1246 if (strncmp (buf
, filename
, len
) != 0)
1249 /* followed by single space */
1250 if (buf
[len
] != ' ')
1253 /* and string without spaces */
1255 if (strchr (p
, ' ') != NULL
)
1258 pos_tokens
= g_strsplit (p
, ";", 3 + MAX_SAVED_BOOKMARKS
);
1259 if (pos_tokens
[0] == NULL
)
1267 *line
= strtol (pos_tokens
[0], NULL
, 10);
1268 if (pos_tokens
[1] == NULL
)
1275 *column
= strtol (pos_tokens
[1], NULL
, 10);
1276 if (pos_tokens
[2] == NULL
)
1282 *offset
= strtoll (pos_tokens
[2], NULL
, 10);
1284 for (i
= 0; i
< MAX_SAVED_BOOKMARKS
&& pos_tokens
[3 + i
] != NULL
; i
++)
1288 val
= strtoul (pos_tokens
[3 + i
], NULL
, 10);
1289 g_array_append_val (*bookmarks
, val
);
1295 g_strfreev (pos_tokens
);
1301 /* --------------------------------------------------------------------------------------------- */
1303 * Save position for the given file
1307 save_file_position (const char *filename
, long line
, long column
, off_t offset
, GArray
* bookmarks
)
1309 static size_t filepos_max_saved_entries
= 0;
1312 char buf
[MC_MAXPATHLEN
+ 100];
1314 const size_t len
= strlen (filename
);
1315 gboolean src_error
= FALSE
;
1317 if (filepos_max_saved_entries
== 0)
1318 filepos_max_saved_entries
= mc_config_get_int (mc_main_config
, CONFIG_APP_SECTION
,
1319 "filepos_max_saved_entries", 1024);
1321 fn
= g_build_filename (mc_config_get_cache_path (), MC_FILEPOS_FILE
, NULL
);
1325 mc_util_make_backup_if_possible (fn
, TMP_SUFFIX
);
1328 f
= fopen (fn
, "w");
1330 goto open_target_error
;
1332 tmp_fn
= g_strdup_printf ("%s" TMP_SUFFIX
, fn
);
1333 tmp_f
= fopen (tmp_fn
, "r");
1337 goto open_source_error
;
1340 /* put the new record */
1341 if (line
!= 1 || column
!= 0 || bookmarks
!= NULL
)
1343 if (fprintf (f
, "%s %ld;%ld;%" PRIuMAX
, filename
, line
, column
, (uintmax_t) offset
) < 0)
1344 goto write_position_error
;
1345 if (bookmarks
!= NULL
)
1346 for (i
= 0; i
< bookmarks
->len
&& i
< MAX_SAVED_BOOKMARKS
; i
++)
1347 if (fprintf (f
, ";%zu", g_array_index (bookmarks
, size_t, i
)) < 0)
1348 goto write_position_error
;
1350 if (fprintf (f
, "\n") < 0)
1351 goto write_position_error
;
1355 while (fgets (buf
, sizeof (buf
), tmp_f
) != NULL
)
1357 if (buf
[len
] == ' ' && strncmp (buf
, filename
, len
) == 0
1358 && strchr (&buf
[len
+ 1], ' ') == NULL
)
1361 fprintf (f
, "%s", buf
);
1362 if (++i
> filepos_max_saved_entries
)
1366 write_position_error
:
1372 mc_util_restore_from_backup_if_possible (fn
, TMP_SUFFIX
);
1374 mc_util_unlink_backup_if_possible (fn
, TMP_SUFFIX
);
1378 if (bookmarks
!= NULL
)
1379 g_array_free (bookmarks
, TRUE
);
1382 /* --------------------------------------------------------------------------------------------- */
1385 ascii_alpha_to_cntrl (int ch
)
1387 if ((ch
>= ASCII_A
&& ch
<= ASCII_Z
) || (ch
>= ASCII_a
&& ch
<= ASCII_z
))
1394 /* --------------------------------------------------------------------------------------------- */
1399 const char *result
, *sep
;
1402 sep
= strchr (result
, '|');
1403 return (sep
!= NULL
) ? sep
+ 1 : result
;
1406 /* --------------------------------------------------------------------------------------------- */
1409 mc_util_make_backup_if_possible (const char *file_name
, const char *backup_suffix
)
1411 struct stat stat_buf
;
1414 if (!exist_file (file_name
))
1417 backup_path
= g_strdup_printf ("%s%s", file_name
, backup_suffix
);
1419 if (backup_path
== NULL
)
1422 ret
= mc_util_write_backup_content (file_name
, backup_path
);
1426 /* Backup file will have same ownership with main file. */
1427 if (stat (file_name
, &stat_buf
) == 0)
1428 chmod (backup_path
, stat_buf
.st_mode
);
1430 chmod (backup_path
, S_IRUSR
| S_IWUSR
);
1433 g_free (backup_path
);
1438 /* --------------------------------------------------------------------------------------------- */
1441 mc_util_restore_from_backup_if_possible (const char *file_name
, const char *backup_suffix
)
1446 backup_path
= g_strdup_printf ("%s%s", file_name
, backup_suffix
);
1447 if (backup_path
== NULL
)
1450 ret
= mc_util_write_backup_content (backup_path
, file_name
);
1451 g_free (backup_path
);
1456 /* --------------------------------------------------------------------------------------------- */
1459 mc_util_unlink_backup_if_possible (const char *file_name
, const char *backup_suffix
)
1463 backup_path
= g_strdup_printf ("%s%s", file_name
, backup_suffix
);
1464 if (backup_path
== NULL
)
1467 if (exist_file (backup_path
))
1468 mc_unlink (backup_path
);
1470 g_free (backup_path
);
1474 /* --------------------------------------------------------------------------------------------- */
1476 * partly taken from dcigettext.c, returns "" for default locale
1477 * value should be freed by calling function g_free()
1481 guess_message_value (void)
1483 static const char *const var
[] = {
1484 /* Setting of LC_ALL overwrites all other. */
1485 /* Do not use LANGUAGE for check user locale and drowing hints */
1487 /* Next comes the name of the desired category. */
1489 /* Last possibility is the LANG environment variable. */
1491 /* NULL exit loops */
1496 const char *locale
= NULL
;
1498 while (var
[i
] != NULL
)
1500 locale
= getenv (var
[i
]);
1501 if (locale
!= NULL
&& locale
[0] != '\0')
1509 return g_strdup (locale
);
1512 /* --------------------------------------------------------------------------------------------- */