improve of cmpl.
[bush.git] / mydoc / var-name / general.h
blobac19cbdc3aa265098a0cf7ee8ee6118d71976a85
1 /* general.h -- defines that everybody likes to use. */
3 /* Copyright (C) 1993-2020 Free Software Foundation, Inc.
5 This file is part of GNU Bush, the Bourne Again SHell.
7 Bush is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 Bush is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bush. If not, see <http://www.gnu.org/licenses/>.
21 #if !defined (_GENERAL_H_)
22 #define _GENERAL_H_
24 #include "stdc.h"
26 #include "bushtypes.h"
27 #include "chartypes.h"
29 #if defined (HAVE_SYS_RESOURCE_H) && defined (RLIMTYPE)
30 # if defined (HAVE_SYS_TIME_H)
31 # include <sys/time.h>
32 # endif
33 # include <sys/resource.h>
34 #endif
36 #if defined (HAVE_STRING_H)
37 # include <string.h>
38 #else
39 # include <strings.h>
40 #endif /* !HAVE_STRING_H */
42 #if defined (HAVE_LIMITS_H)
43 # include <limits.h>
44 #endif
46 #include "xmalloc.h"
48 /* NULL pointer type. */
49 #if !defined (NULL)
50 # if defined (__STDC__)
51 # define NULL ((void *) 0)
52 # else
53 # define NULL 0x0
54 # endif /* !__STDC__ */
55 #endif /* !NULL */
57 /* Hardly used anymore */
58 #define pointer_to_int(x) (int)((char *)x - (char *)0)
60 #if defined (alpha) && defined (__GNUC__) && !defined (strchr) && !defined (__STDC__)
61 extern char *strchr (), *strrchr ();
62 #endif
64 #if !defined (strcpy) && (defined (HAVE_DECL_STRCPY) && !HAVE_DECL_STRCPY)
65 extern char *strcpy PARAMS((char *, const char *));
66 #endif
68 #if !defined (savestring)
69 # define savestring(x) (char *)strcpy (xmalloc (1 + strlen (x)), (x))
70 #endif
72 #ifndef member
73 # define member(c, s) ((c) ? ((char *)mbschr ((s), (c)) != (char *)NULL) : 0)
74 #endif
76 #ifndef whitespace
77 #define whitespace(c) (((c) == ' ') || ((c) == '\t'))
78 #endif
80 #ifndef CHAR_MAX
81 # ifdef __CHAR_UNSIGNED__
82 # define CHAR_MAX 0xff
83 # else
84 # define CHAR_MAX 0x7f
85 # endif
86 #endif
88 #ifndef CHAR_BIT
89 # define CHAR_BIT 8
90 #endif
92 /* Nonzero if the integer type T is signed. */
93 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
95 /* The width in bits of the integer type or expression T.
96 Padding bits are not supported; this is checked at compile-time below. */
97 #define TYPE_WIDTH(t) (sizeof (t) * CHAR_BIT)
99 /* Bound on length of the string representing an unsigned integer
100 value representable in B bits. log10 (2.0) < 146/485. The
101 smallest value of B where this bound is not tight is 2621. */
102 #define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485)
104 /* Bound on length of the string representing an integer value of type T.
105 Subtract one for the sign bit if T is signed;
106 302 / 1000 is log10 (2) rounded up;
107 add one for integer division truncation;
108 add one more for a minus sign if t is signed. */
109 #define INT_STRLEN_BOUND(t) \
110 ((TYPE_WIDTH (t) - TYPE_SIGNED (t)) * 302 / 1000 \
111 + 1 + TYPE_SIGNED (t))
113 /* Updated version adapted from gnulib/intprops.h, not used right now.
114 Changes the approximation of log10(2) from 302/1000 to 146/485. */
115 #if 0
116 #define INT_STRLEN_BOUND(t) \
117 (INT_BITS_STRLEN_BOUND (TYPE_WIDTH (t) - TYPE_SIGNED (t)) + TYPE_SIGNED(t))
118 #endif
120 /* Bound on buffer size needed to represent an integer type or expression T,
121 including the terminating null. */
122 #define INT_BUFSIZE_BOUND(t) (INT_STRLEN_BOUND (t) + 1)
124 /* Define exactly what a legal shell identifier consists of. */
125 #define org_legal_variable_starter(c) (ISALPHA(c) || (c == '_'))
126 #define org_legal_variable_char(c) (ISALNUM(c) || c == '_')
128 #define legal_variable_starter(c) (ISALPHA(c) || (c == '_') || c == ':')
129 #define legal_variable_char(c) (ISALNUM(c) || c == '_' || c == ':')
130 #define legal_variable_dual_char(c,cc) ((c == ':' && cc == ':') || (c == ':'))
132 /* Definitions used in subst.c and by the `read' builtin for field
133 splitting. */
134 #define spctabnl(c) ((c) == ' ' || (c) == '\t' || (c) == '\n')
136 /* All structs which contain a `next' field should have that field
137 as the first field in the struct. This means that functions
138 can be written to handle the general case for linked lists. */
139 typedef struct g_list {
140 struct g_list *next;
141 } GENERIC_LIST;
143 /* Here is a generic structure for associating character strings
144 with integers. It is used in the parser for shell tokenization. */
145 typedef struct {
146 char *word;
147 int token;
148 } STRING_INT_ALIST;
150 /* A macro to avoid making an unnecessary function call. */
151 #define REVERSE_LIST(list, type) \
152 ((list && list->next) ? (type)list_reverse ((GENERIC_LIST *)list) \
153 : (type)(list))
155 #if __GNUC__ > 1
156 # define FASTCOPY(s, d, n) __builtin_memcpy ((d), (s), (n))
157 #else /* !__GNUC__ */
158 # if !defined (HAVE_BCOPY)
159 # if !defined (HAVE_MEMMOVE)
160 # define FASTCOPY(s, d, n) memcpy ((d), (s), (n))
161 # else
162 # define FASTCOPY(s, d, n) memmove ((d), (s), (n))
163 # endif /* !HAVE_MEMMOVE */
164 # else /* HAVE_BCOPY */
165 # define FASTCOPY(s, d, n) bcopy ((s), (d), (n))
166 # endif /* HAVE_BCOPY */
167 #endif /* !__GNUC__ */
169 /* String comparisons that possibly save a function call each. */
170 #define STREQ(a, b) ((a)[0] == (b)[0] && strcmp(a, b) == 0)
171 #define STREQN(a, b, n) ((n == 0) ? (1) \
172 : ((a)[0] == (b)[0] && strncmp(a, b, n) == 0))
174 /* More convenience definitions that possibly save system or libc calls. */
175 #define STRLEN(s) (((s) && (s)[0]) ? ((s)[1] ? ((s)[2] ? strlen(s) : 2) : 1) : 0)
176 #define FREE(s) do { if (s) free (s); } while (0)
177 #define MEMBER(c, s) (((c) && c == (s)[0] && !(s)[1]) || (member(c, s)))
179 /* A fairly hairy macro to check whether an allocated string has more room,
180 and to resize it using xrealloc if it does not.
181 STR is the string (char *)
182 CIND is the current index into the string (int)
183 ROOM is the amount of additional room we need in the string (int)
184 CSIZE is the currently-allocated size of STR (int)
185 SINCR is how much to increment CSIZE before calling xrealloc (int) */
187 #define RESIZE_MALLOCED_BUFFER(str, cind, room, csize, sincr) \
188 do { \
189 if ((cind) + (room) >= csize) \
191 while ((cind) + (room) >= csize) \
192 csize += (sincr); \
193 str = xrealloc (str, csize); \
195 } while (0)
197 /* Function pointers can be declared as (Function *)foo. */
198 #if !defined (_FUNCTION_DEF)
199 # define _FUNCTION_DEF
200 typedef int Function ();
201 typedef void VFunction ();
202 typedef char *CPFunction (); /* no longer used */
203 typedef char **CPPFunction (); /* no longer used */
204 #endif /* _FUNCTION_DEF */
206 #ifndef SH_FUNCTION_TYPEDEF
207 # define SH_FUNCTION_TYPEDEF
209 /* Shell function typedefs with prototypes */
210 /* `Generic' function pointer typedefs */
212 typedef int sh_intfunc_t PARAMS((int));
213 typedef int sh_ivoidfunc_t PARAMS((void));
214 typedef int sh_icpfunc_t PARAMS((char *));
215 typedef int sh_icppfunc_t PARAMS((char **));
216 typedef int sh_iptrfunc_t PARAMS((PTR_T));
218 typedef void sh_voidfunc_t PARAMS((void));
219 typedef void sh_vintfunc_t PARAMS((int));
220 typedef void sh_vcpfunc_t PARAMS((char *));
221 typedef void sh_vcppfunc_t PARAMS((char **));
222 typedef void sh_vptrfunc_t PARAMS((PTR_T));
224 typedef int sh_wdesc_func_t PARAMS((WORD_DESC *));
225 typedef int sh_wlist_func_t PARAMS((WORD_LIST *));
227 typedef int sh_glist_func_t PARAMS((GENERIC_LIST *));
229 typedef char *sh_string_func_t PARAMS((char *)); /* like savestring, et al. */
231 typedef int sh_msg_func_t PARAMS((const char *, ...)); /* printf(3)-like */
232 typedef void sh_vmsg_func_t PARAMS((const char *, ...)); /* printf(3)-like */
234 /* Specific function pointer typedefs. Most of these could be done
235 with #defines. */
236 typedef void sh_sv_func_t PARAMS((char *)); /* sh_vcpfunc_t */
237 typedef void sh_free_func_t PARAMS((PTR_T)); /* sh_vptrfunc_t */
238 typedef void sh_resetsig_func_t PARAMS((int)); /* sh_vintfunc_t */
240 typedef int sh_ignore_func_t PARAMS((const char *)); /* sh_icpfunc_t */
242 typedef int sh_assign_func_t PARAMS((const char *));
243 typedef int sh_wassign_func_t PARAMS((WORD_DESC *, int));
245 typedef int sh_load_func_t PARAMS((char *));
246 typedef void sh_unload_func_t PARAMS((char *));
248 typedef int sh_builtin_func_t PARAMS((WORD_LIST *)); /* sh_wlist_func_t */
250 #endif /* SH_FUNCTION_TYPEDEF */
252 #define NOW ((time_t) time ((time_t *) 0))
253 #define GETTIME(tv) gettimeofday(&(tv), NULL)
255 /* Some defines for calling file status functions. */
256 #define FS_EXISTS 0x1
257 #define FS_EXECABLE 0x2
258 #define FS_EXEC_PREFERRED 0x4
259 #define FS_EXEC_ONLY 0x8
260 #define FS_DIRECTORY 0x10
261 #define FS_NODIRS 0x20
262 #define FS_READABLE 0x40
264 /* Default maximum for move_to_high_fd */
265 #define HIGH_FD_MAX 256
267 /* The type of function passed as the fourth argument to qsort(3). */
268 #ifdef __STDC__
269 typedef int QSFUNC (const void *, const void *);
270 #else
271 typedef int QSFUNC ();
272 #endif
274 /* Some useful definitions for Unix pathnames. Argument convention:
275 x == string, c == character */
277 #if !defined (__CYGWIN__)
278 # define ABSPATH(x) ((x)[0] == '/')
279 # define RELPATH(x) ((x)[0] != '/')
280 #else /* __CYGWIN__ */
281 # define ABSPATH(x) (((x)[0] && ISALPHA((unsigned char)(x)[0]) && (x)[1] == ':') || ISDIRSEP((x)[0]))
282 # define RELPATH(x) (ABSPATH(x) == 0)
283 #endif /* __CYGWIN__ */
285 #define ROOTEDPATH(x) (ABSPATH(x))
287 #define DIRSEP '/'
288 #if !defined (__CYGWIN__)
289 # define ISDIRSEP(c) ((c) == '/')
290 #else
291 # define ISDIRSEP(c) ((c) == '/' || (c) == '\\')
292 #endif /* __CYGWIN__ */
293 #define PATHSEP(c) (ISDIRSEP(c) || (c) == 0)
295 #define DOT_OR_DOTDOT(s) (s[0] == '.' && (s[1] == 0 || (s[1] == '.' && s[2] == 0)))
296 #if defined (HANDLE_MULTIBYTE)
297 #define WDOT_OR_DOTDOT(w) (w[0] == L'.' && (w[1] == L'\0' || (w[1] == L'.' && w[2] == L'\0')))
298 #endif
300 #if 0
301 /* Declarations for functions defined in xmalloc.c */
302 extern PTR_T xmalloc PARAMS((size_t));
303 extern PTR_T xrealloc PARAMS((void *, size_t));
304 extern void xfree PARAMS((void *));
305 #endif
307 /* Declarations for functions defined in general.c */
308 extern void posix_initialize PARAMS((int));
310 extern int num_posix_options PARAMS((void));
311 extern char *get_posix_options PARAMS((char *));
312 extern void set_posix_options PARAMS((const char *));
314 extern void save_posix_options PARAMS((void));
316 #if defined (RLIMTYPE)
317 extern RLIMTYPE string_to_rlimtype PARAMS((char *));
318 extern void print_rlimtype PARAMS((RLIMTYPE, int));
319 #endif
321 extern int all_digits PARAMS((const char *));
322 extern int legal_number PARAMS((const char *, intmax_t *));
323 extern int legal_identifier PARAMS((const char *));
324 extern int importable_function_name PARAMS((const char *, size_t));
325 extern int exportable_function_name PARAMS((const char *));
326 extern int check_identifier PARAMS((WORD_DESC *, int));
327 extern int valid_nameref_value PARAMS((const char *, int));
328 extern int check_selfref PARAMS((const char *, char *, int));
329 extern int legal_alias_name PARAMS((const char *, int));
330 extern int line_isblank PARAMS((const char *));
331 extern int assignment PARAMS((const char *, int));
333 extern int sh_unset_nodelay_mode PARAMS((int));
334 extern int sh_setclexec PARAMS((int));
335 extern int sh_validfd PARAMS((int));
336 extern int fd_ispipe PARAMS((int));
337 extern void check_dev_tty PARAMS((void));
338 extern int move_to_high_fd PARAMS((int, int, int));
339 extern int check_binary_file PARAMS((const char *, int));
341 #ifdef _POSIXSTAT_H_
342 extern int same_file PARAMS((const char *, const char *, struct stat *, struct stat *));
343 #endif
345 extern int sh_openpipe PARAMS((int *));
346 extern int sh_closepipe PARAMS((int *));
348 extern int file_exists PARAMS((const char *));
349 extern int file_isdir PARAMS((const char *));
350 extern int file_iswdir PARAMS((const char *));
351 extern int path_dot_or_dotdot PARAMS((const char *));
352 extern int absolute_pathname PARAMS((const char *));
353 extern int absolute_program PARAMS((const char *));
355 extern char *make_absolute PARAMS((const char *, const char *));
356 extern char *base_pathname PARAMS((char *));
357 extern char *full_pathname PARAMS((char *));
358 extern char *polite_directory_format PARAMS((char *));
359 extern char *trim_pathname PARAMS((char *, int));
360 extern char *printable_filename PARAMS((char *, int));
362 extern char *extract_colon_unit PARAMS((char *, int *));
364 extern void tilde_initialize PARAMS((void));
365 extern char *bush_tilde_find_word PARAMS((const char *, int, int *));
366 extern char *bush_tilde_expand PARAMS((const char *, int));
368 extern int group_member PARAMS((gid_t));
369 extern char **get_group_list PARAMS((int *));
370 extern int *get_group_array PARAMS((int *));
372 extern char *conf_standard_path PARAMS((void));
373 extern int default_columns PARAMS((void));
375 #endif /* _GENERAL_H_ */