Ticket 3948: can't create network link from panel...
[midnight-commander.git] / lib / util.h
blob46ac1f0b482dff3c364f118ff49be85849ae0dcb
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 whitespace(c) ((c) == ' ' || (c) == '\t')
31 #define whiteness(c) (whitespace (c) || (c) == '\n')
33 #define MC_PIPE_BUFSIZE BUF_8K
34 #define MC_PIPE_STREAM_EOF 0
35 #define MC_PIPE_STREAM_UNREAD -1
36 #define MC_PIPE_ERROR_CREATE_PIPE -2
37 #define MC_PIPE_ERROR_PARSE_COMMAND -3
38 #define MC_PIPE_ERROR_CREATE_PIPE_STREAM -4
39 #define MC_PIPE_ERROR_READ -5
41 /*** enums ***************************************************************************************/
43 /* Pathname canonicalization */
44 typedef enum
46 CANON_PATH_JOINSLASHES = 1L << 0, /* Multiple '/'s are collapsed to a single '/'. */
47 CANON_PATH_REMSLASHDOTS = 1L << 1, /* Leading './'s, '/'s and trailing '/.'s are removed. */
48 CANON_PATH_REMDOUBLEDOTS = 1L << 3, /* Non-leading '../'s and trailing '..'s are handled by removing */
49 CANON_PATH_GUARDUNC = 1L << 4, /* Detect and preserve UNC paths: //server/... */
50 CANON_PATH_ALL = CANON_PATH_JOINSLASHES
51 | CANON_PATH_REMSLASHDOTS | CANON_PATH_REMDOUBLEDOTS | CANON_PATH_GUARDUNC
52 } CANON_PATH_FLAGS;
54 enum compression_type
56 COMPRESSION_NONE,
57 COMPRESSION_GZIP,
58 COMPRESSION_BZIP,
59 COMPRESSION_BZIP2,
60 COMPRESSION_LZIP,
61 COMPRESSION_LZ4,
62 COMPRESSION_LZMA,
63 COMPRESSION_XZ,
64 COMPRESSION_ZSTD,
67 /* stdout or stderr stream of child process */
68 typedef struct
70 /* file descriptor */
71 int fd;
72 /* data read from fd */
73 char buf[MC_PIPE_BUFSIZE];
74 /* positive: length of data in buf as before read as after;
75 * zero or negative before read: do not read drom fd;
76 * MC_PIPE_STREAM_EOF after read: EOF of fd;
77 * MC_PIPE_STREAM_UNREAD after read: there was not read from fd;
78 * MC_PIPE_ERROR_READ after read: reading error from fd.
80 ssize_t len;
81 /* whether buf is null-terminated or not */
82 gboolean null_term;
83 /* error code in case of len == MC_PIPE_ERROR_READ */
84 int error;
85 } mc_pipe_stream_t;
87 /* Pipe descriptor for child process */
88 typedef struct
90 /* PID of child process */
91 GPid child_pid;
92 /* stdout of child process */
93 mc_pipe_stream_t out;
94 /* stderr of child process */
95 mc_pipe_stream_t err;
96 } mc_pipe_t;
98 /*** structures declarations (and typedefs of structures)*****************************************/
100 /* keys are set only during sorting */
101 typedef struct
103 /* File attributes */
104 size_t fnamelen;
105 char *fname;
106 struct stat st;
107 /* key used for comparing names */
108 char *sort_key;
109 /* key used for comparing extensions */
110 char *second_sort_key;
112 /* Flags */
113 struct
115 unsigned int marked:1; /* File marked in pane window */
116 unsigned int link_to_dir:1; /* If this is a link, does it point to directory? */
117 unsigned int stale_link:1; /* If this is a symlink and points to Charon's land */
118 unsigned int dir_size_computed:1; /* Size of directory was computed with dirsizes_cmd */
119 } f;
120 } file_entry_t;
122 /*** global variables defined in .c file *********************************************************/
124 extern struct sigaction startup_handler;
126 /*** declarations of public functions ************************************************************/
128 int is_printable (int c);
130 /* Quote the filename for the purpose of inserting it into the command
131 * line. If quote_percent is 1, replace "%" with "%%" - the percent is
132 * processed by the mc command line. */
133 char *name_quote (const char *c, gboolean quote_percent);
135 /* returns a duplicate of c. */
136 char *fake_name_quote (const char *c, gboolean quote_percent);
138 /* path_trunc() is the same as str_trunc() but
139 * it deletes possible password from path for security
140 * reasons. */
141 const char *path_trunc (const char *path, size_t trunc_len);
143 /* return a static string representing size, appending "K" or "M" for
144 * big sizes.
145 * NOTE: uses the same static buffer as size_trunc_sep. */
146 const char *size_trunc (uintmax_t size, gboolean use_si);
148 /* return a static string representing size, appending "K" or "M" for
149 * big sizes. Separates every three digits by ",".
150 * NOTE: uses the same static buffer as size_trunc. */
151 const char *size_trunc_sep (uintmax_t size, gboolean use_si);
153 /* Print file SIZE to BUFFER, but don't exceed LEN characters,
154 * not including trailing 0. BUFFER should be at least LEN+1 long.
156 * Units: size units (0=bytes, 1=Kbytes, 2=Mbytes, etc.) */
157 void size_trunc_len (char *buffer, unsigned int len, uintmax_t size, int units, gboolean use_si);
158 const char *string_perm (mode_t mode_bits);
160 const char *extension (const char *);
161 const char *unix_error_string (int error_num);
162 const char *skip_separators (const char *s);
163 const char *skip_numbers (const char *s);
164 char *strip_ctrl_codes (char *s);
166 /* Replaces "\\E" and "\\e" with "\033". Replaces "^" + [a-z] with
167 * ((char) 1 + (c - 'a')). The same goes for "^" + [A-Z].
168 * Returns a newly allocated string. */
169 char *convert_controls (const char *s);
171 /* overwrites passwd with '\0's and frees it. */
172 void wipe_password (char *passwd);
174 char *diff_two_paths (const vfs_path_t * vpath1, const vfs_path_t * vpath2);
176 /* Returns the basename of fname. The result is a pointer into fname. */
177 const char *x_basename (const char *fname);
179 char *load_mc_home_file (const char *from, const char *filename, char **allocated_filename,
180 size_t * length);
182 /* uid/gid managing */
183 void init_groups (void);
184 void destroy_groups (void);
185 int get_user_permissions (struct stat *buf);
187 void init_uid_gid_cache (void);
188 const char *get_group (gid_t gid);
189 const char *get_owner (uid_t uid);
191 /* Returns a copy of *s until a \n is found and is below top */
192 const char *extract_line (const char *s, const char *top);
194 /* Error pipes */
195 void open_error_pipe (void);
196 void check_error_pipe (void);
197 int close_error_pipe (int error, const char *text);
199 /* Process spawning */
200 int my_system (int flags, const char *shell, const char *command);
201 int my_systeml (int flags, const char *shell, ...);
202 int my_systemv (const char *command, char *const argv[]);
203 int my_systemv_flags (int flags, const char *command, char *const argv[]);
205 mc_pipe_t *mc_popen (const char *command, GError ** error);
206 void mc_pread (mc_pipe_t * p, GError ** error);
207 void mc_pclose (mc_pipe_t * p, GError ** error);
209 void my_exit (int status);
210 void save_stop_handler (void);
212 /* Tilde expansion */
213 char *tilde_expand (const char *);
215 void custom_canonicalize_pathname (char *, CANON_PATH_FLAGS);
216 void canonicalize_pathname (char *);
218 char *mc_realpath (const char *path, char *resolved_path);
220 /* Looks for "magic" bytes at the start of the VFS file to guess the
221 * compression type. Side effect: modifies the file position. */
222 enum compression_type get_compression_type (int fd, const char *);
223 const char *decompress_extension (int type);
225 GList *list_append_unique (GList * list, char *text);
227 /* Position saving and restoring */
228 /* Load position for the given filename */
229 void load_file_position (const vfs_path_t * filename_vpath, long *line, long *column,
230 off_t * offset, GArray ** bookmarks);
231 /* Save position for the given filename */
232 void save_file_position (const vfs_path_t * filename_vpath, long line, long column, off_t offset,
233 GArray * bookmarks);
236 /* if ch is in [A-Za-z], returns the corresponding control character,
237 * else returns the argument. */
238 extern int ascii_alpha_to_cntrl (int ch);
240 #undef Q_
241 const char *Q_ (const char *s);
243 gboolean mc_util_make_backup_if_possible (const char *, const char *);
244 gboolean mc_util_restore_from_backup_if_possible (const char *, const char *);
245 gboolean mc_util_unlink_backup_if_possible (const char *, const char *);
247 char *guess_message_value (void);
249 char *mc_build_filename (const char *first_element, ...);
250 char *mc_build_filenamev (const char *first_element, va_list args);
252 const char *mc_get_profile_root (void);
254 /* *INDENT-OFF* */
255 void mc_propagate_error (GError ** dest, int code, const char *format, ...) G_GNUC_PRINTF (3, 4);
256 void mc_replace_error (GError ** dest, int code, const char *format, ...) G_GNUC_PRINTF (3, 4);
257 /* *INDENT-ON* */
259 gboolean mc_time_elapsed (guint64 * timestamp, guint64 delay);
261 /*** inline functions **************************************************/
263 static inline gboolean
264 exist_file (const char *name)
266 return (access (name, R_OK) == 0);
269 static inline gboolean
270 is_exe (mode_t mode)
272 return (gboolean) ((S_IXUSR & mode) || (S_IXGRP & mode) || (S_IXOTH & mode));
275 #endif /* MC_UTIL_H */