3 * \brief Header: various utilities
9 #include "global.h" /* include <glib.h> */
13 #include <sys/types.h>
17 /* Returns its argument as a "modifiable" string. This function is
18 * intended to pass strings to legacy libraries that don't know yet
19 * about the "const" modifier. The return value of this function
20 * MUST NOT be modified. */
21 extern char *str_unconst (const char *);
23 /* String managing functions */
25 extern const char *cstrcasestr (const char *haystack
, const char *needle
);
26 extern const char *cstrstr (const char *haystack
, const char *needle
);
28 void str_replace(char *s
, char from
, char to
);
29 int is_printable (int c
);
30 void msglen (const char *text
, /*@out@*/ int *lines
, /*@out@*/ int *columns
);
32 /* Copy from s to d, and trim the beginning if necessary, and prepend
33 * "..." in this case. The destination string can have at most len
34 * bytes, not counting trailing 0. */
35 char *trim (const char *s
, char *d
, int len
);
37 /* Quote the filename for the purpose of inserting it into the command
38 * line. If quote_percent is 1, replace "%" with "%%" - the percent is
39 * processed by the mc command line. */
40 char *name_quote (const char *c
, int quote_percent
);
42 /* returns a duplicate of c. */
43 char *fake_name_quote (const char *c
, int quote_percent
);
45 /* Remove the middle part of the string to fit given length.
46 * Use "~" to show where the string was truncated.
47 * Return static buffer, no need to free() it. */
48 const char *name_trunc (const char *txt
, size_t trunc_len
);
50 /* path_trunc() is the same as name_trunc() above but
51 * it deletes possible password from path for security
53 const char *path_trunc (const char *path
, size_t trunc_len
);
55 /* return a static string representing size, appending "K" or "M" for
57 * NOTE: uses the same static buffer as size_trunc_sep. */
58 const char *size_trunc (double size
);
60 /* return a static string representing size, appending "K" or "M" for
61 * big sizes. Separates every three digits by ",".
62 * NOTE: uses the same static buffer as size_trunc. */
63 const char *size_trunc_sep (double size
);
65 /* Print file SIZE to BUFFER, but don't exceed LEN characters,
66 * not including trailing 0. BUFFER should be at least LEN+1 long.
68 * Units: size units (0=bytes, 1=Kbytes, 2=Mbytes, etc.) */
69 void size_trunc_len (char *buffer
, int len
, off_t size
, int units
);
70 int is_exe (mode_t mode
);
71 const char *string_perm (mode_t mode_bits
);
73 /* @modifies path. @returns pointer into path. */
74 char *strip_password (char *path
, int has_prefix
);
76 /* @returns a pointer into a static buffer. */
77 const char *strip_home_and_password (const char *dir
);
79 const char *extension (const char *);
80 char *concat_dir_and_file (const char *dir
, const char *file
);
81 const char *unix_error_string (int error_num
);
82 const char *skip_separators (const char *s
);
83 const char *skip_numbers (const char *s
);
84 char *strip_ctrl_codes (char *s
);
86 /* Replaces "\\E" and "\\e" with "\033". Replaces "^" + [a-z] with
87 * ((char) 1 + (c - 'a')). The same goes for "^" + [A-Z].
88 * Returns a newly allocated string. */
89 char *convert_controls (const char *s
);
91 /* overwrites passwd with '\0's and frees it. */
92 void wipe_password (char *passwd
);
94 char *diff_two_paths (const char *first
, const char *second
);
96 /* Returns the basename of fname. The result is a pointer into fname. */
97 const char *x_basename (const char *fname
);
99 char *load_file (const char *filename
);
100 char *load_mc_home_file (const char *filename
, char ** allocated_filename
);
102 /* uid/gid managing */
103 void init_groups (void);
104 void destroy_groups (void);
105 int get_user_permissions (struct stat
*buf
);
107 void init_uid_gid_cache (void);
108 char *get_group (int);
109 char *get_owner (int);
111 #define MAX_I18NTIMELENGTH 14
112 #define MIN_I18NTIMELENGTH 10
113 #define STD_I18NTIMELENGTH 12
115 size_t i18n_checktimelength (void);
116 const char *file_date (time_t);
118 int exist_file (const char *name
);
120 /* Check if the file exists. If not copy the default */
121 int check_for_default (const char *default_file
, const char *file
);
123 /* Returns a copy of *s until a \n is found and is below top */
124 const char *extract_line (const char *s
, const char *top
);
128 match_file
, /* match a filename, use easy_patterns */
129 match_normal
, /* match pattern, use easy_patterns */
130 match_regex
/* match pattern, force using regex */
133 extern int easy_patterns
;
136 void open_error_pipe (void);
137 void check_error_pipe (void);
138 int close_error_pipe (int error
, const char *text
);
140 /* Process spawning */
141 int my_system (int flags
, const char *shell
, const char *command
);
142 void save_stop_handler (void);
143 extern struct sigaction startup_handler
;
145 /* Tilde expansion */
146 char *tilde_expand (const char *);
148 /* Pathname canonicalization */
149 void canonicalize_pathname (char *);
151 /* Misc Unix functions */
152 char *get_current_wd (char *buffer
, int size
);
153 int my_mkdir (const char *s
, mode_t mode
);
154 int my_rmdir (const char *s
);
156 /* Rotating dash routines */
157 void use_dash (int flag
); /* Disable/Enable rotate_dash routines */
158 void rotate_dash (void);
160 /* Creating temporary files safely */
161 const char *mc_tmpdir (void);
162 int mc_mkstemps(char **pname
, const char *prefix
, const char *suffix
);
165 #ifdef _POSIX_VERSION
166 #define PATH_MAX _POSIX_PATH_MAX
169 #define PATH_MAX MAXPATHLEN
171 #define PATH_MAX 1024
177 #define MAXSYMLINKS 32
180 char *mc_realpath(const char *path
, char resolved_path
[]);
182 enum compression_type
{
191 /* Looks for ``magic'' bytes at the start of the VFS file to guess the
192 * compression type. Side effect: modifies the file position. */
193 enum compression_type
get_compression_type (int fd
);
194 const char *decompress_extension (int type
);
198 typedef struct hook
{
199 void (*hook_fn
)(void *);
204 void add_hook (Hook
**hook_list
, void (*hook_fn
)(void *), void *data
);
205 void execute_hooks (Hook
*hook_list
);
206 void delete_hook (Hook
**hook_list
, void (*hook_fn
)(void *));
207 int hook_present (Hook
*hook_list
, void (*hook_fn
)(void *));
209 GList
*list_append_unique (GList
*list
, char *text
);
211 /* Position saving and restoring */
213 /* file where positions are stored */
214 #define MC_FILEPOS ".mc/filepos"
216 #define MC_FILEPOS_TMP ".mc/filepos.tmp"
217 /* maximum entries in MC_FILEPOS */
218 #define MC_FILEPOS_ENTRIES 1024
219 /* Load position for the given filename */
220 void load_file_position (const char *filename
, long *line
, long *column
);
221 /* Save position for the given filename */
222 void save_file_position (const char *filename
, long line
, long column
);
225 /* OS specific defines */
227 #define PATH_SEP_STR "/"
228 #define PATH_ENV_SEP ':'
229 #define TMPDIR_DEFAULT "/tmp"
230 #define SCRIPT_SUFFIX ""
231 #define get_default_editor() "vi"
232 #define OS_SORT_CASE_SENSITIVE_DEFAULT 1
233 #define STRCOMP strcmp
234 #define STRNCOMP strncmp
235 #define MC_ARCH_FLAGS 0
237 /* taken from regex.c: */
238 /* Jim Meyering writes:
240 "... Some ctype macros are valid only for character codes that
241 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
242 using /bin/cc or gcc but without giving an ansi option). So, all
243 ctype uses should be through macros like ISPRINT... If
244 STDC_HEADERS is defined, then autoconf has verified that the ctype
245 macros don't need to be guarded with references to isascii. ...
246 Defining isascii to 1 should let any compiler worth its salt
247 eliminate the && through constant folding." */
249 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
252 #define ISASCII(c) isascii(c)
255 /* usage: str_cmp ("foo", !=, "bar") */
256 #define str_cmp(a,rel,b) (strcmp ((a), (b)) rel 0)
258 /* if ch is in [A-Za-z], returns the corresponding control character,
259 * else returns the argument. */
260 extern int ascii_alpha_to_cntrl (int ch
);
263 const char *Q_ (const char *s
);
265 #define str_dup_range(s_start, s_bound) (g_strndup(s_start, s_bound - s_start))
268 * strcpy is unsafe on overlapping memory areas, so define memmove-alike
270 * Have sense only when:
273 * * dest and str are pointers to one object (as Roland Illig pointed).
275 * We can't use str*cpy funs here:
276 * http://kerneltrap.org/mailarchive/openbsd-misc/2008/5/27/1951294
278 static inline char * str_move(char * dest
, const char * src
)
284 n
= strlen (src
) + 1; /* + '\0' */
286 return memmove (dest
, src
, n
);
289 #define MC_PTR_FREE(ptr) do { g_free(ptr); (ptr) = NULL; } while (0)