panel.h: remove unused variable declaration.
[midnight-commander.git] / lib / util.h
blob9c972ed25f410d0da589e8908aa1ac3eb43c6401
1 /** \file lib/util.h
2 * \brief Header: various utilities
3 */
5 #ifndef MC_UTIL_H
6 #define MC_UTIL_H
8 #include <sys/types.h>
9 #include <sys/stat.h>
10 #include <inttypes.h> /* uintmax_t */
11 #include <unistd.h>
13 #include "lib/global.h" /* include <glib.h> */
15 #include "lib/vfs/vfs.h"
17 /*** typedefs(not structures) and defined constants **********************************************/
19 #ifndef MAXSYMLINKS
20 #define MAXSYMLINKS 32
21 #endif
23 #define MAX_SAVED_BOOKMARKS 10
25 #define MC_PTR_FREE(ptr) do { g_free (ptr); (ptr) = NULL; } while (0)
27 #define mc_return_if_error(mcerror) do { if (mcerror != NULL && *mcerror != NULL) return; } while (0)
28 #define mc_return_val_if_error(mcerror, mcvalue) do { if (mcerror != NULL && *mcerror != NULL) return mcvalue; } while (0)
30 #define MC_PIPE_BUFSIZE BUF_8K
31 #define MC_PIPE_STREAM_EOF 0
32 #define MC_PIPE_STREAM_UNREAD -1
33 #define MC_PIPE_ERROR_CREATE_PIPE -2
34 #define MC_PIPE_ERROR_PARSE_COMMAND -3
35 #define MC_PIPE_ERROR_CREATE_PIPE_STREAM -4
36 #define MC_PIPE_ERROR_READ -5
38 /*** enums ***************************************************************************************/
40 /* Pathname canonicalization */
41 typedef enum
43 CANON_PATH_JOINSLASHES = 1L << 0, /* Multiple '/'s are collapsed to a single '/'. */
44 CANON_PATH_REMSLASHDOTS = 1L << 1, /* Leading './'s, '/'s and trailing '/.'s are removed. */
45 CANON_PATH_REMDOUBLEDOTS = 1L << 3, /* Non-leading '../'s and trailing '..'s are handled by removing */
46 CANON_PATH_GUARDUNC = 1L << 4, /* Detect and preserve UNC paths: //server/... */
47 CANON_PATH_ALL = CANON_PATH_JOINSLASHES
48 | CANON_PATH_REMSLASHDOTS | CANON_PATH_REMDOUBLEDOTS | CANON_PATH_GUARDUNC
49 } CANON_PATH_FLAGS;
51 enum compression_type
53 COMPRESSION_NONE,
54 COMPRESSION_GZIP,
55 COMPRESSION_BZIP,
56 COMPRESSION_BZIP2,
57 COMPRESSION_LZMA,
58 COMPRESSION_XZ
61 /* stdout or stderr stream of child process */
62 typedef struct
64 /* file descriptor */
65 int fd;
66 /* data read from fd */
67 char buf[MC_PIPE_BUFSIZE];
68 /* positive: length of data in buf as before read as after;
69 * zero or negative before read: do not read drom fd;
70 * MC_PIPE_STREAM_EOF after read: EOF of fd;
71 * MC_PIPE_STREAM_UNREAD after read: there was not read from fd;
72 * MC_PIPE_ERROR_READ after read: reading error from fd.
74 ssize_t len;
75 /* whether buf is null-terminated or not */
76 gboolean null_term;
77 /* error code in case of len == MC_PIPE_ERROR_READ */
78 int error;
79 } mc_pipe_stream_t;
81 /* Pipe descriptor for child process */
82 typedef struct
84 /* PID of child process */
85 GPid child_pid;
86 /* stdout of child process */
87 mc_pipe_stream_t out;
88 /* stderr of child process */
89 mc_pipe_stream_t err;
90 } mc_pipe_t;
92 /*** structures declarations (and typedefs of structures)*****************************************/
94 /* keys are set only during sorting */
95 typedef struct
97 /* File attributes */
98 size_t fnamelen;
99 char *fname;
100 struct stat st;
101 /* key used for comparing names */
102 char *sort_key;
103 /* key used for comparing extensions */
104 char *second_sort_key;
106 /* Flags */
107 struct
109 unsigned int marked:1; /* File marked in pane window */
110 unsigned int link_to_dir:1; /* If this is a link, does it point to directory? */
111 unsigned int stale_link:1; /* If this is a symlink and points to Charon's land */
112 unsigned int dir_size_computed:1; /* Size of directory was computed with dirsizes_cmd */
113 } f;
114 } file_entry_t;
116 /*** global variables defined in .c file *********************************************************/
118 extern struct sigaction startup_handler;
120 /*** declarations of public functions ************************************************************/
122 int is_printable (int c);
124 /* Quote the filename for the purpose of inserting it into the command
125 * line. If quote_percent is 1, replace "%" with "%%" - the percent is
126 * processed by the mc command line. */
127 char *name_quote (const char *c, gboolean quote_percent);
129 /* returns a duplicate of c. */
130 char *fake_name_quote (const char *c, gboolean quote_percent);
132 /* path_trunc() is the same as str_trunc() but
133 * it deletes possible password from path for security
134 * reasons. */
135 const char *path_trunc (const char *path, size_t trunc_len);
137 /* return a static string representing size, appending "K" or "M" for
138 * big sizes.
139 * NOTE: uses the same static buffer as size_trunc_sep. */
140 const char *size_trunc (uintmax_t size, gboolean use_si);
142 /* return a static string representing size, appending "K" or "M" for
143 * big sizes. Separates every three digits by ",".
144 * NOTE: uses the same static buffer as size_trunc. */
145 const char *size_trunc_sep (uintmax_t size, gboolean use_si);
147 /* Print file SIZE to BUFFER, but don't exceed LEN characters,
148 * not including trailing 0. BUFFER should be at least LEN+1 long.
150 * Units: size units (0=bytes, 1=Kbytes, 2=Mbytes, etc.) */
151 void size_trunc_len (char *buffer, unsigned int len, uintmax_t size, int units, gboolean use_si);
152 const char *string_perm (mode_t mode_bits);
154 const char *extension (const char *);
155 const char *unix_error_string (int error_num);
156 const char *skip_separators (const char *s);
157 const char *skip_numbers (const char *s);
158 char *strip_ctrl_codes (char *s);
160 /* Replaces "\\E" and "\\e" with "\033". Replaces "^" + [a-z] with
161 * ((char) 1 + (c - 'a')). The same goes for "^" + [A-Z].
162 * Returns a newly allocated string. */
163 char *convert_controls (const char *s);
165 /* overwrites passwd with '\0's and frees it. */
166 void wipe_password (char *passwd);
168 char *diff_two_paths (const vfs_path_t * vpath1, const vfs_path_t * vpath2);
170 /* Returns the basename of fname. The result is a pointer into fname. */
171 const char *x_basename (const char *fname);
173 char *load_mc_home_file (const char *from, const char *filename, char **allocated_filename);
175 /* uid/gid managing */
176 void init_groups (void);
177 void destroy_groups (void);
178 int get_user_permissions (struct stat *buf);
180 void init_uid_gid_cache (void);
181 const char *get_group (gid_t gid);
182 const char *get_owner (uid_t uid);
184 /* Returns a copy of *s until a \n is found and is below top */
185 const char *extract_line (const char *s, const char *top);
187 /* Error pipes */
188 void open_error_pipe (void);
189 void check_error_pipe (void);
190 int close_error_pipe (int error, const char *text);
192 /* Process spawning */
193 int my_system (int flags, const char *shell, const char *command);
194 int my_systeml (int flags, const char *shell, ...);
195 int my_systemv (const char *command, char *const argv[]);
196 int my_systemv_flags (int flags, const char *command, char *const argv[]);
198 mc_pipe_t *mc_popen (const char *command, GError ** error);
199 void mc_pread (mc_pipe_t * p, GError ** error);
200 void mc_pclose (mc_pipe_t * p, GError ** error);
202 void my_exit (int status);
203 void save_stop_handler (void);
205 /* Tilde expansion */
206 char *tilde_expand (const char *);
208 void custom_canonicalize_pathname (char *, CANON_PATH_FLAGS);
209 void canonicalize_pathname (char *);
211 #ifdef HAVE_REALPATH
212 #define mc_realpath realpath
213 #else
214 char *mc_realpath (const char *path, char *resolved_path);
215 #endif
217 /* Looks for "magic" bytes at the start of the VFS file to guess the
218 * compression type. Side effect: modifies the file position. */
219 enum compression_type get_compression_type (int fd, const char *);
220 const char *decompress_extension (int type);
222 GList *list_append_unique (GList * list, char *text);
224 /* Position saving and restoring */
225 /* Load position for the given filename */
226 void load_file_position (const vfs_path_t * filename_vpath, long *line, long *column,
227 off_t * offset, GArray ** bookmarks);
228 /* Save position for the given filename */
229 void save_file_position (const vfs_path_t * filename_vpath, long line, long column, off_t offset,
230 GArray * bookmarks);
233 /* if ch is in [A-Za-z], returns the corresponding control character,
234 * else returns the argument. */
235 extern int ascii_alpha_to_cntrl (int ch);
237 #undef Q_
238 const char *Q_ (const char *s);
240 gboolean mc_util_make_backup_if_possible (const char *, const char *);
241 gboolean mc_util_restore_from_backup_if_possible (const char *, const char *);
242 gboolean mc_util_unlink_backup_if_possible (const char *, const char *);
244 char *guess_message_value (void);
246 char *mc_build_filename (const char *first_element, ...);
247 char *mc_build_filenamev (const char *first_element, va_list args);
249 /* *INDENT-OFF* */
250 void mc_propagate_error (GError ** dest, int code, const char *format, ...) G_GNUC_PRINTF (3, 4);
251 void mc_replace_error (GError ** dest, int code, const char *format, ...) G_GNUC_PRINTF (3, 4);
252 /* *INDENT-ON* */
254 gboolean mc_time_elapsed (guint64 * timestamp, guint64 delay);
256 /*** inline functions **************************************************/
258 static inline gboolean
259 exist_file (const char *name)
261 return (access (name, R_OK) == 0);
264 static inline gboolean
265 is_exe (mode_t mode)
267 return (gboolean) ((S_IXUSR & mode) || (S_IXGRP & mode) || (S_IXOTH & mode));
270 #endif /* MC_UTIL_H */