]> git.ipfire.org Git - thirdparty/bash.git/blame - subst.h
Bash-4.3 patch 32
[thirdparty/bash.git] / subst.h
CommitLineData
726f6388
JA
1/* subst.h -- Names of externally visible functions in subst.c. */
2
495aee44 3/* Copyright (C) 1993-2010 Free Software Foundation, Inc.
726f6388
JA
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
3185942a
JA
7 Bash 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.
726f6388 11
3185942a
JA
12 Bash 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.
726f6388 16
3185942a
JA
17 You should have received a copy of the GNU General Public License
18 along with Bash. If not, see <http://www.gnu.org/licenses/>.
19*/
726f6388
JA
20
21#if !defined (_SUBST_H_)
22#define _SUBST_H_
23
24#include "stdc.h"
25
28ef6c31
JA
26/* Constants which specify how to handle backslashes and quoting in
27 expand_word_internal (). Q_DOUBLE_QUOTES means to use the function
28 slashify_in_quotes () to decide whether the backslash should be
29 retained. Q_HERE_DOCUMENT means slashify_in_here_document () to
30 decide whether to retain the backslash. Q_KEEP_BACKSLASH means
7117c2d2
JA
31 to unconditionally retain the backslash. Q_PATQUOTE means that we're
32 expanding a pattern ${var%#[#%]pattern} in an expansion surrounded
495aee44
CR
33 by double quotes. Q_DOLBRACE means we are expanding a ${...} word, so
34 backslashes should also escape { and } and be removed. */
95732b49
JA
35#define Q_DOUBLE_QUOTES 0x01
36#define Q_HERE_DOCUMENT 0x02
37#define Q_KEEP_BACKSLASH 0x04
38#define Q_PATQUOTE 0x08
28ef6c31
JA
39#define Q_QUOTED 0x10
40#define Q_ADDEDQUOTES 0x20
41#define Q_QUOTEDNULL 0x40
495aee44 42#define Q_DOLBRACE 0x80
28ef6c31 43
95732b49 44/* Flag values controlling how assignment statements are treated. */
ac50fbac
CR
45#define ASS_APPEND 0x0001
46#define ASS_MKLOCAL 0x0002
47#define ASS_MKASSOC 0x0004
48#define ASS_MKGLOBAL 0x0008 /* force global assignment */
49#define ASS_NAMEREF 0x0010 /* assigning to nameref variable */
f9d85604 50#define ASS_FROMREF 0x0020 /* assigning from value of nameref variable */
3185942a
JA
51
52/* Flags for the string extraction functions. */
495aee44
CR
53#define SX_NOALLOC 0x0001 /* just skip; don't return substring */
54#define SX_VARNAME 0x0002 /* variable name; for string_extract () */
55#define SX_REQMATCH 0x0004 /* closing/matching delimiter required */
56#define SX_COMMAND 0x0008 /* extracting a shell script/command */
57#define SX_NOCTLESC 0x0010 /* don't honor CTLESC quoting */
58#define SX_NOESCCTLNUL 0x0020 /* don't let CTLESC quote CTLNUL */
59#define SX_NOLONGJMP 0x0040 /* don't longjmp on fatal error */
60#define SX_ARITHSUB 0x0080 /* extracting $(( ... )) (currently unused) */
61#define SX_POSIXEXP 0x0100 /* extracting new Posix pattern removal expansions in extract_dollar_brace_string */
49ed961b 62#define SX_WORD 0x0200 /* extracting word in ${param op word} */
95732b49 63
726f6388
JA
64/* Remove backslashes which are quoting backquotes from STRING. Modifies
65 STRING, and returns a pointer to it. */
66extern char * de_backslash __P((char *));
67
68/* Replace instances of \! in a string with !. */
69extern void unquote_bang __P((char *));
70
71/* Extract the $( construct in STRING, and return a new string.
72 Start extracting at (SINDEX) as if we had just seen "$(".
3185942a
JA
73 Make (SINDEX) get the position just after the matching ")".
74 XFLAGS is additional flags to pass to other extraction functions, */
75extern char *extract_command_subst __P((char *, int *, int));
726f6388
JA
76
77/* Extract the $[ construct in STRING, and return a new string.
78 Start extracting at (SINDEX) as if we had just seen "$[".
79 Make (SINDEX) get the position just after the matching "]". */
80extern char *extract_arithmetic_subst __P((char *, int *));
81
82#if defined (PROCESS_SUBSTITUTION)
83/* Extract the <( or >( construct in STRING, and return a new string.
84 Start extracting at (SINDEX) as if we had just seen "<(".
85 Make (SINDEX) get the position just after the matching ")". */
85b94814 86extern char *extract_process_subst __P((char *, char *, int *, int));
726f6388
JA
87#endif /* PROCESS_SUBSTITUTION */
88
89/* Extract the name of the variable to bind to from the assignment string. */
90extern char *assignment_name __P((char *));
91
7117c2d2
JA
92/* Return a single string of all the words present in LIST, separating
93 each word with SEP. */
94extern char *string_list_internal __P((WORD_LIST *, char *));
95
726f6388
JA
96/* Return a single string of all the words present in LIST, separating
97 each word with a space. */
98extern char *string_list __P((WORD_LIST *));
99
f73dda09
JA
100/* Turn $* into a single string, obeying POSIX rules. */
101extern char *string_list_dollar_star __P((WORD_LIST *));
102
103/* Expand $@ into a single string, obeying POSIX rules. */
104extern char *string_list_dollar_at __P((WORD_LIST *, int));
105
3185942a
JA
106/* Turn the positional paramters into a string, understanding quoting and
107 the various subtleties of using the first character of $IFS as the
108 separator. Calls string_list_dollar_at, string_list_dollar_star, and
109 string_list as appropriate. */
110extern char *string_list_pos_params __P((int, WORD_LIST *, int));
111
726f6388
JA
112/* Perform quoted null character removal on each element of LIST.
113 This modifies LIST. */
114extern void word_list_remove_quoted_nulls __P((WORD_LIST *));
115
116/* This performs word splitting and quoted null character removal on
117 STRING. */
118extern WORD_LIST *list_string __P((char *, char *, int));
119
3185942a 120extern char *ifs_firstchar __P((int *));
726f6388
JA
121extern char *get_word_from_string __P((char **, char *, char **));
122extern char *strip_trailing_ifs_whitespace __P((char *, char *, int));
123
124/* Given STRING, an assignment string, get the value of the right side
125 of the `=', and bind it to the left side. If EXPAND is true, then
95732b49
JA
126 perform tilde expansion, parameter expansion, command substitution,
127 and arithmetic expansion on the right-hand side. Do not perform word
128 splitting on the result of expansion. */
129extern int do_assignment __P((char *));
130extern int do_assignment_no_expand __P((char *));
495aee44 131extern int do_word_assignment __P((WORD_DESC *, int));
ccc6cda3 132
726f6388
JA
133/* Append SOURCE to TARGET at INDEX. SIZE is the current amount
134 of space allocated to TARGET. SOURCE can be NULL, in which
135 case nothing happens. Gets rid of SOURCE by free ()ing it.
136 Returns TARGET in case the location has changed. */
137extern char *sub_append_string __P((char *, char *, int *, int *));
138
139/* Append the textual representation of NUMBER to TARGET.
140 INDEX and SIZE are as in SUB_APPEND_STRING. */
7117c2d2 141extern char *sub_append_number __P((intmax_t, char *, int *, int *));
726f6388
JA
142
143/* Return the word list that corresponds to `$*'. */
144extern WORD_LIST *list_rest_of_args __P((void));
145
146/* Make a single large string out of the dollar digit variables,
147 and the rest_of_args. If DOLLAR_STAR is 1, then obey the special
148 case of "$*" with respect to IFS. */
149extern char *string_rest_of_args __P((int));
150
ccc6cda3
JA
151extern int number_of_args __P((void));
152
726f6388
JA
153/* Expand STRING by performing parameter expansion, command substitution,
154 and arithmetic expansion. Dequote the resulting WORD_LIST before
155 returning it, but do not perform word splitting. The call to
f73dda09 156 remove_quoted_nulls () is made here because word splitting normally
726f6388
JA
157 takes care of quote removal. */
158extern WORD_LIST *expand_string_unsplit __P((char *, int));
159
95732b49
JA
160/* Expand the rhs of an assignment statement. */
161extern WORD_LIST *expand_string_assignment __P((char *, int));
162
bb70624e 163/* Expand a prompt string. */
f1be666c 164extern WORD_LIST *expand_prompt_string __P((char *, int, int));
bb70624e 165
726f6388
JA
166/* Expand STRING just as if you were expanding a word. This also returns
167 a list of words. Note that filename globbing is *NOT* done for word
168 or string expansion, just when the shell is expanding a command. This
169 does parameter expansion, command substitution, arithmetic expansion,
170 and word splitting. Dequote the resultant WORD_LIST before returning. */
171extern WORD_LIST *expand_string __P((char *, int));
172
f73dda09
JA
173/* Convenience functions that expand strings to strings, taking care of
174 converting the WORD_LIST * returned by the expand_string* functions
175 to a string and deallocating the WORD_LIST *. */
176extern char *expand_string_to_string __P((char *, int));
177extern char *expand_string_unsplit_to_string __P((char *, int));
95732b49 178extern char *expand_assignment_string_to_string __P((char *, int));
f73dda09 179
0628567a
JA
180/* Expand an arithmetic expression string */
181extern char *expand_arith_string __P((char *, int));
182
183/* De-quote quoted characters in STRING. */
726f6388
JA
184extern char *dequote_string __P((char *));
185
3185942a
JA
186/* De-quote CTLESC-escaped CTLESC or CTLNUL characters in STRING. */
187extern char *dequote_escapes __P((char *));
188
0628567a
JA
189/* De-quote quoted characters in each word in LIST. */
190extern WORD_LIST *dequote_list __P((WORD_LIST *));
191
726f6388
JA
192/* Expand WORD, performing word splitting on the result. This does
193 parameter expansion, command substitution, arithmetic expansion,
194 word splitting, and quote removal. */
195extern WORD_LIST *expand_word __P((WORD_DESC *, int));
196
197/* Expand WORD, but do not perform word splitting on the result. This
198 does parameter expansion, command substitution, arithmetic expansion,
199 and quote removal. */
28ef6c31 200extern WORD_LIST *expand_word_unsplit __P((WORD_DESC *, int));
726f6388
JA
201extern WORD_LIST *expand_word_leave_quoted __P((WORD_DESC *, int));
202
203/* Return the value of a positional parameter. This handles values > 10. */
7117c2d2 204extern char *get_dollar_var_value __P((intmax_t));
726f6388 205
ccc6cda3
JA
206/* Quote a string to protect it from word splitting. */
207extern char *quote_string __P((char *));
208
f73dda09
JA
209/* Quote escape characters (characters special to interals of expansion)
210 in a string. */
211extern char *quote_escapes __P((char *));
212
3185942a
JA
213/* And remove such quoted special characters. */
214extern char *remove_quoted_escapes __P((char *));
215
216/* Remove CTLNUL characters from STRING unless they are quoted with CTLESC. */
217extern char *remove_quoted_nulls __P((char *));
218
726f6388
JA
219/* Perform quote removal on STRING. If QUOTED > 0, assume we are obeying the
220 backslash quoting rules for within double quotes. */
221extern char *string_quote_removal __P((char *, int));
222
223/* Perform quote removal on word WORD. This allocates and returns a new
224 WORD_DESC *. */
225extern WORD_DESC *word_quote_removal __P((WORD_DESC *, int));
226
227/* Perform quote removal on all words in LIST. If QUOTED is non-zero,
228 the members of the list are treated as if they are surrounded by
229 double quotes. Return a new list, or NULL if LIST is NULL. */
230extern WORD_LIST *word_list_quote_removal __P((WORD_LIST *, int));
231
7117c2d2
JA
232/* Called when IFS is changed to maintain some private variables. */
233extern void setifs __P((SHELL_VAR *));
234
235/* Return the value of $IFS, or " \t\n" if IFS is unset. */
236extern char *getifs __P((void));
237
726f6388
JA
238/* This splits a single word into a WORD LIST on $IFS, but only if the word
239 is not quoted. list_string () performs quote removal for us, even if we
240 don't do any splitting. */
7117c2d2 241extern WORD_LIST *word_split __P((WORD_DESC *, char *));
726f6388
JA
242
243/* Take the list of words in LIST and do the various substitutions. Return
244 a new list of words which is the expanded list, and without things like
245 variable assignments. */
246extern WORD_LIST *expand_words __P((WORD_LIST *));
247
248/* Same as expand_words (), but doesn't hack variable or environment
249 variables. */
250extern WORD_LIST *expand_words_no_vars __P((WORD_LIST *));
251
cce855bc
JA
252/* Perform the `normal shell expansions' on a WORD_LIST. These are
253 brace expansion, tilde expansion, parameter and variable substitution,
254 command substitution, arithmetic expansion, and word splitting. */
255extern WORD_LIST *expand_words_shellexp __P((WORD_LIST *));
726f6388 256
3185942a 257extern WORD_DESC *command_substitute __P((char *, int));
ccc6cda3
JA
258extern char *pat_subst __P((char *, char *, char *, int));
259
f1be666c 260extern int fifos_pending __P((void));
495aee44 261extern int num_fifos __P((void));
ccc6cda3 262extern void unlink_fifo_list __P((void));
495aee44
CR
263extern void unlink_fifo __P((int));
264
265extern char *copy_fifo_list __P((int *));
266extern void unlink_new_fifos __P((char *, int));
267extern void close_new_fifos __P((char *, int));
ccc6cda3 268
bb70624e
JA
269extern WORD_LIST *list_string_with_quotes __P((char *));
270
ccc6cda3 271#if defined (ARRAY_VARS)
ccc6cda3
JA
272extern char *extract_array_assignment_list __P((char *, int *));
273#endif
274
cce855bc
JA
275#if defined (COND_COMMAND)
276extern char *remove_backslashes __P((char *));
277extern char *cond_expand_word __P((WORD_DESC *, int));
ccc6cda3
JA
278#endif
279
3185942a
JA
280/* Flags for skip_to_delim */
281#define SD_NOJMP 0x01 /* don't longjmp on fatal error. */
282#define SD_INVERT 0x02 /* look for chars NOT in passed set */
0001803f
CR
283#define SD_NOQUOTEDELIM 0x04 /* don't let single or double quotes act as delimiters */
284#define SD_NOSKIPCMD 0x08 /* don't skip over $(, <(, or >( command/process substitution */
495aee44 285#define SD_EXTGLOB 0x10 /* skip over extended globbing patterns if appropriate */
ac50fbac
CR
286#define SD_IGNOREQUOTE 0x20 /* single and double quotes are not special */
287#define SD_GLOB 0x40 /* skip over glob patterns like bracket expressions */
3185942a
JA
288
289extern int skip_to_delim __P((char *, int, char *, int));
290
bb70624e
JA
291#if defined (READLINE)
292extern int char_is_quoted __P((char *, int));
293extern int unclosed_pair __P((char *, int, char *));
0001803f 294extern WORD_LIST *split_at_delims __P((char *, int, char *, int, int, int *, int *));
bb70624e
JA
295#endif
296
7117c2d2
JA
297/* Variables used to keep track of the characters in IFS. */
298extern SHELL_VAR *ifs_var;
299extern char *ifs_value;
300extern unsigned char ifs_cmap[];
95732b49
JA
301
302#if defined (HANDLE_MULTIBYTE)
303extern unsigned char ifs_firstc[];
304extern size_t ifs_firstc_len;
305#else
7117c2d2 306extern unsigned char ifs_firstc;
95732b49 307#endif
7117c2d2
JA
308
309/* Evaluates to 1 if C is a character in $IFS. */
310#define isifs(c) (ifs_cmap[(unsigned char)(c)] != 0)
311
ccc6cda3
JA
312/* How to determine the quoted state of the character C. */
313#define QUOTED_CHAR(c) ((c) == CTLESC)
314
315/* Is the first character of STRING a quoted NULL character? */
316#define QUOTED_NULL(string) ((string)[0] == CTLNUL && (string)[1] == '\0')
317
726f6388 318#endif /* !_SUBST_H_ */