blob: c2bbb98a66586514197b0fb5fef3116a40535146 [file] [log] [blame]
Jari Aaltof73dda02001-11-13 17:56:06 +00001/* arrayfunc.h -- declarations for miscellaneous array functions in arrayfunc.c */
2
Chet Ramey8868eda2020-12-06 15:51:17 -05003/* Copyright (C) 2001-2020 Free Software Foundation, Inc.
Jari Aaltof73dda02001-11-13 17:56:06 +00004
5 This file is part of GNU Bash, the Bourne Again SHell.
6
Jari Aalto31859422009-01-12 13:36:28 +00007 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.
Jari Aaltof73dda02001-11-13 17:56:06 +000011
Jari Aalto31859422009-01-12 13:36:28 +000012 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.
Jari Aaltof73dda02001-11-13 17:56:06 +000016
17 You should have received a copy of the GNU General Public License
Jari Aalto31859422009-01-12 13:36:28 +000018 along with Bash. If not, see <http://www.gnu.org/licenses/>.
19*/
Jari Aaltof73dda02001-11-13 17:56:06 +000020
21#if !defined (_ARRAYFUNC_H_)
22#define _ARRAYFUNC_H_
23
24/* Must include variables.h before including this file. */
25
26#if defined (ARRAY_VARS)
27
Chet Rameyd233b482019-01-07 09:27:52 -050028/* This variable means to not expand associative array subscripts more than
29 once, when performing variable expansion. */
30extern int assoc_expand_once;
31
32/* The analog for indexed array subscripts */
33extern int array_expand_once;
34
Chet Ramey495aee42011-11-22 19:11:26 -050035/* Flags for array_value_internal and callers array_value/get_array_value */
36#define AV_ALLOWALL 0x001
37#define AV_QUOTED 0x002
38#define AV_USEIND 0x004
Chet Rameya0c0a002016-09-15 16:59:08 -040039#define AV_USEVAL 0x008 /* XXX - should move this */
40#define AV_ASSIGNRHS 0x010 /* no splitting, special case ${a[@]} */
Chet Rameyd233b482019-01-07 09:27:52 -050041#define AV_NOEXPAND 0x020 /* don't run assoc subscripts through word expansion */
42
43/* Flags for valid_array_reference. Value 1 is reserved for skipsubscript() */
44#define VA_NOEXPAND 0x001
45#define VA_ONEWORD 0x002
Chet Ramey495aee42011-11-22 19:11:26 -050046
Chet Ramey8868eda2020-12-06 15:51:17 -050047extern SHELL_VAR *convert_var_to_array PARAMS((SHELL_VAR *));
48extern SHELL_VAR *convert_var_to_assoc PARAMS((SHELL_VAR *));
Jari Aaltof73dda02001-11-13 17:56:06 +000049
Chet Ramey8868eda2020-12-06 15:51:17 -050050extern char *make_array_variable_value PARAMS((SHELL_VAR *, arrayind_t, char *, char *, int));
Chet Rameyac50fba2014-02-26 09:36:43 -050051
Chet Ramey8868eda2020-12-06 15:51:17 -050052extern SHELL_VAR *bind_array_variable PARAMS((char *, arrayind_t, char *, int));
53extern SHELL_VAR *bind_array_element PARAMS((SHELL_VAR *, arrayind_t, char *, int));
54extern SHELL_VAR *assign_array_element PARAMS((char *, char *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +000055
Chet Ramey8868eda2020-12-06 15:51:17 -050056extern SHELL_VAR *bind_assoc_variable PARAMS((SHELL_VAR *, char *, char *, char *, int));
Chet Ramey00018032011-11-21 20:51:19 -050057
Chet Ramey8868eda2020-12-06 15:51:17 -050058extern SHELL_VAR *find_or_make_array_variable PARAMS((char *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +000059
Chet Ramey8868eda2020-12-06 15:51:17 -050060extern SHELL_VAR *assign_array_from_string PARAMS((char *, char *, int));
61extern SHELL_VAR *assign_array_var_from_word_list PARAMS((SHELL_VAR *, WORD_LIST *, int));
Jari Aalto06285672006-10-10 14:15:34 +000062
Chet Ramey8868eda2020-12-06 15:51:17 -050063extern WORD_LIST *expand_compound_array_assignment PARAMS((SHELL_VAR *, char *, int));
64extern void assign_compound_array_list PARAMS((SHELL_VAR *, WORD_LIST *, int));
65extern SHELL_VAR *assign_array_var_from_string PARAMS((SHELL_VAR *, char *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +000066
Chet Ramey8868eda2020-12-06 15:51:17 -050067extern char *expand_and_quote_assoc_word PARAMS((char *, int));
68extern void quote_compound_array_list PARAMS((WORD_LIST *, int));
Jari Aalto31859422009-01-12 13:36:28 +000069
Chet Ramey8868eda2020-12-06 15:51:17 -050070extern int unbind_array_element PARAMS((SHELL_VAR *, char *, int));
71extern int skipsubscript PARAMS((const char *, int, int));
Jari Aaltof73dda02001-11-13 17:56:06 +000072
Chet Ramey8868eda2020-12-06 15:51:17 -050073extern void print_array_assignment PARAMS((SHELL_VAR *, int));
74extern void print_assoc_assignment PARAMS((SHELL_VAR *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +000075
Chet Ramey8868eda2020-12-06 15:51:17 -050076extern arrayind_t array_expand_index PARAMS((SHELL_VAR *, char *, int, int));
77extern int valid_array_reference PARAMS((const char *, int));
78extern char *array_value PARAMS((const char *, int, int, int *, arrayind_t *));
79extern char *get_array_value PARAMS((const char *, int, int *, arrayind_t *));
Jari Aaltob80f6442004-07-27 13:29:18 +000080
Chet Ramey8868eda2020-12-06 15:51:17 -050081extern char *array_keys PARAMS((char *, int, int));
82
83extern char *array_variable_name PARAMS((const char *, int, char **, int *));
84extern SHELL_VAR *array_variable_part PARAMS((const char *, int, char **, int *));
Jari Aaltof73dda02001-11-13 17:56:06 +000085
Chet Rameyac50fba2014-02-26 09:36:43 -050086#else
87
88#define AV_ALLOWALL 0
89#define AV_QUOTED 0
90#define AV_USEIND 0
Chet Rameya0c0a002016-09-15 16:59:08 -040091#define AV_ASSIGNRHS 0
Chet Rameyac50fba2014-02-26 09:36:43 -050092
Chet Rameyd233b482019-01-07 09:27:52 -050093#define VA_ONEWORD 0
94
Jari Aaltof73dda02001-11-13 17:56:06 +000095#endif
96
97#endif /* !_ARRAYFUNC_H_ */