Update base version to 4.6.1.
[midnight-commander.git] / src / util.h
blob3b9b79ad33a9fbfcfe102c4cdadc9c2af116995e
1 #ifndef MC_UTIL_H
2 #define MC_UTIL_H
4 #include <sys/types.h>
6 /* Returns its argument as a "modifiable" string. This function is
7 * intended to pass strings to legacy libraries that don't know yet
8 * about the "const" modifier. The return value of this function
9 * MUST NOT be modified. */
10 #ifdef INLINE_STR_UNCONST
11 static inline char *str_unconst_inlined (const char *s)
13 return (char *) s;
15 #define str_unconst(s) str_unconst_inlined(s)
16 #else
17 extern char *str_unconst (const char *);
18 #endif
20 /* String managing functions */
22 extern const char *cstrcasestr (const char *haystack, const char *needle);
23 extern const char *cstrstr (const char *haystack, const char *needle);
25 void str_replace(char *s, char from, char to);
26 int is_printable (int c);
27 void msglen (const char *text, /*@out@*/ int *lines, /*@out@*/ int *columns);
29 /* Copy from s to d, and trim the beginning if necessary, and prepend
30 * "..." in this case. The destination string can have at most len
31 * bytes, not counting trailing 0. */
32 char *trim (const char *s, char *d, int len);
34 /* Quote the filename for the purpose of inserting it into the command
35 * line. If quote_percent is 1, replace "%" with "%%" - the percent is
36 * processed by the mc command line. */
37 char *name_quote (const char *c, int quote_percent);
39 /* returns a duplicate of c. */
40 char *fake_name_quote (const char *c, int quote_percent);
42 /* Remove the middle part of the string to fit given length.
43 * Use "~" to show where the string was truncated.
44 * Return static buffer, no need to free() it. */
45 const char *name_trunc (const char *txt, int trunc_len);
47 /* path_trunc() is the same as name_trunc() above but
48 * it deletes possible password from path for security
49 * reasons. */
50 const char *path_trunc (const char *path, int trunc_len);
52 /* return a static string representing size, appending "K" or "M" for
53 * big sizes.
54 * NOTE: uses the same static buffer as size_trunc_sep. */
55 const char *size_trunc (double size);
57 /* return a static string representing size, appending "K" or "M" for
58 * big sizes. Separates every three digits by ",".
59 * NOTE: uses the same static buffer as size_trunc. */
60 const char *size_trunc_sep (double size);
62 /* Print file SIZE to BUFFER, but don't exceed LEN characters,
63 * not including trailing 0. BUFFER should be at least LEN+1 long.
65 * Units: size units (0=bytes, 1=Kbytes, 2=Mbytes, etc.) */
66 void size_trunc_len (char *buffer, int len, off_t size, int units);
67 int is_exe (mode_t mode);
68 const char *string_perm (mode_t mode_bits);
70 /* @modifies path. @returns pointer into path. */
71 char *strip_password (char *path, int has_prefix);
73 /* @returns a pointer into a static buffer. */
74 const char *strip_home_and_password (const char *dir);
76 const char *extension (const char *);
77 char *concat_dir_and_file (const char *dir, const char *file);
78 const char *unix_error_string (int error_num);
79 const char *skip_separators (const char *s);
80 const char *skip_numbers (const char *s);
81 char *strip_ctrl_codes (char *s);
83 /* Replaces "\\E" and "\\e" with "\033". Replaces "^" + [a-z] with
84 * ((char) 1 + (c - 'a')). The same goes for "^" + [A-Z].
85 * Returns a newly allocated string. */
86 char *convert_controls (const char *s);
88 /* overwrites passwd with '\0's and frees it. */
89 void wipe_password (char *passwd);
91 char *diff_two_paths (const char *first, const char *second);
93 /* Returns the basename of fname. The result is a pointer into fname. */
94 const char *x_basename (const char *fname);
96 /* Profile managing functions */
97 int set_int (const char *, const char *, int);
98 int get_int (const char *, const char *, int);
100 char *load_file (const char *filename);
101 char *load_mc_home_file (const char *filename, char ** allocated_filename);
103 /* uid/gid managing */
104 void init_groups (void);
105 void destroy_groups (void);
106 int get_user_permissions (struct stat *buf);
108 void init_uid_gid_cache (void);
109 char *get_group (int);
110 char *get_owner (int);
112 #define MAX_I18NTIMELENGTH 14
113 #define MIN_I18NTIMELENGTH 10
114 #define STD_I18NTIMELENGTH 12
116 size_t i18n_checktimelength (void);
117 const char *file_date (time_t);
119 int exist_file (const char *name);
121 /* Returns a copy of *s until a \n is found and is below top */
122 const char *extract_line (const char *s, const char *top);
123 const char *_icase_search (const char *text, const char *data, int *lng);
124 #define icase_search(T,D) _icase_search((T), (D), NULL)
126 /* Matching */
127 enum {
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;
134 char *convert_pattern (const char *pattern, int match_type, int do_group);
135 int regexp_match (const char *pattern, const char *string, int match_type);
137 /* Error pipes */
138 void open_error_pipe (void);
139 void check_error_pipe (void);
140 int close_error_pipe (int error, const char *text);
142 /* Process spawning */
143 int my_system (int flags, const char *shell, const char *command);
144 void save_stop_handler (void);
145 extern struct sigaction startup_handler;
147 /* Tilde expansion */
148 char *tilde_expand (const char *);
150 /* Pathname canonicalization */
151 void canonicalize_pathname (char *);
153 /* Misc Unix functions */
154 char *get_current_wd (char *buffer, int size);
155 int my_mkdir (const char *s, mode_t mode);
156 int my_rmdir (const char *s);
158 /* Rotating dash routines */
159 void use_dash (int flag); /* Disable/Enable rotate_dash routines */
160 void rotate_dash (void);
162 /* Creating temporary files safely */
163 const char *mc_tmpdir (void);
164 int mc_mkstemps(char **pname, const char *prefix, const char *suffix);
166 #ifndef PATH_MAX
167 #ifdef _POSIX_VERSION
168 #define PATH_MAX _POSIX_PATH_MAX
169 #else
170 #ifdef MAXPATHLEN
171 #define PATH_MAX MAXPATHLEN
172 #else
173 #define PATH_MAX 1024
174 #endif
175 #endif
176 #endif
178 #ifndef MAXSYMLINKS
179 #define MAXSYMLINKS 32
180 #endif
182 char *mc_realpath(const char *path, char resolved_path[]);
184 enum compression_type {
185 COMPRESSION_NONE,
186 COMPRESSION_GZIP,
187 COMPRESSION_BZIP,
188 COMPRESSION_BZIP2
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);
196 /* Hook functions */
198 typedef struct hook {
199 void (*hook_fn)(void *);
200 void *hook_data;
201 struct hook *next;
202 } Hook;
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"
215 /* temporary file */
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 */
226 #define PATH_SEP '/'
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))
250 #define ISASCII(c) 1
251 #else
252 #define ISASCII(c) isascii(c)
253 #endif
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);
262 /* translates the string and returns the part after the first occurence
263 * of the ``|'' character. */
264 extern const char *gettext_ui (const char *);
266 #endif