blob: 189d646f2b012bc66986a2b7824b9dd305d05103 [file] [log] [blame]
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001/* array.h -- definitions for the interface exported by array.c that allows
2 the rest of the shell to manipulate array variables. */
Jari Aaltobb706242000-03-17 21:46:59 +00003
Chet Ramey8868eda2020-12-06 15:51:17 -05004/* Copyright (C) 1997-2020 Free Software Foundation, Inc.
Jari Aaltobb706242000-03-17 21:46:59 +00005
6 This file is part of GNU Bash, the Bourne Again SHell.
7
Jari Aalto31859422009-01-12 13:36:28 +00008 Bash is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
Jari Aaltobb706242000-03-17 21:46:59 +000012
Jari Aalto31859422009-01-12 13:36:28 +000013 Bash is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
Jari Aaltobb706242000-03-17 21:46:59 +000017
Jari Aalto31859422009-01-12 13:36:28 +000018 You should have received a copy of the GNU General Public License
19 along with Bash. If not, see <http://www.gnu.org/licenses/>.
20*/
21
Jari Aaltobb706242000-03-17 21:46:59 +000022
Jari Aaltoccc6cda1996-12-23 17:02:34 +000023#ifndef _ARRAY_H_
24#define _ARRAY_H_
25
26#include "stdc.h"
27
Jari Aalto7117c2d2002-07-17 14:10:11 +000028typedef intmax_t arrayind_t;
Jari Aaltoccc6cda1996-12-23 17:02:34 +000029
Chet Ramey8868eda2020-12-06 15:51:17 -050030enum atype {array_indexed, array_assoc}; /* only array_indexed used */
Jari Aaltoccc6cda1996-12-23 17:02:34 +000031
32typedef struct array {
33 enum atype type;
Chet Ramey00018032011-11-21 20:51:19 -050034 arrayind_t max_index;
35 int num_elements;
Jari Aaltoccc6cda1996-12-23 17:02:34 +000036 struct array_element *head;
Chet Ramey8868eda2020-12-06 15:51:17 -050037 struct array_element *lastref;
Jari Aaltoccc6cda1996-12-23 17:02:34 +000038} ARRAY;
39
40typedef struct array_element {
41 arrayind_t ind;
42 char *value;
43 struct array_element *next, *prev;
44} ARRAY_ELEMENT;
45
Chet Ramey8868eda2020-12-06 15:51:17 -050046typedef int sh_ae_map_func_t PARAMS((ARRAY_ELEMENT *, void *));
Jari Aaltof73dda02001-11-13 17:56:06 +000047
Jari Aalto7117c2d2002-07-17 14:10:11 +000048/* Basic operations on entire arrays */
Chet Ramey8868eda2020-12-06 15:51:17 -050049extern ARRAY *array_create PARAMS((void));
50extern void array_flush PARAMS((ARRAY *));
51extern void array_dispose PARAMS((ARRAY *));
52extern ARRAY *array_copy PARAMS((ARRAY *));
53extern ARRAY *array_slice PARAMS((ARRAY *, ARRAY_ELEMENT *, ARRAY_ELEMENT *));
54extern void array_walk PARAMS((ARRAY *, sh_ae_map_func_t *, void *));
Jari Aaltoccc6cda1996-12-23 17:02:34 +000055
Chet Ramey8868eda2020-12-06 15:51:17 -050056extern ARRAY_ELEMENT *array_shift PARAMS((ARRAY *, int, int));
57extern int array_rshift PARAMS((ARRAY *, int, char *));
58extern ARRAY_ELEMENT *array_unshift_element PARAMS((ARRAY *));
59extern int array_shift_element PARAMS((ARRAY *, char *));
Jari Aalto31859422009-01-12 13:36:28 +000060
Chet Ramey8868eda2020-12-06 15:51:17 -050061extern ARRAY *array_quote PARAMS((ARRAY *));
62extern ARRAY *array_quote_escapes PARAMS((ARRAY *));
63extern ARRAY *array_dequote PARAMS((ARRAY *));
64extern ARRAY *array_dequote_escapes PARAMS((ARRAY *));
65extern ARRAY *array_remove_quoted_nulls PARAMS((ARRAY *));
Jari Aaltoccc6cda1996-12-23 17:02:34 +000066
Chet Ramey8868eda2020-12-06 15:51:17 -050067extern char *array_subrange PARAMS((ARRAY *, arrayind_t, arrayind_t, int, int, int));
68extern char *array_patsub PARAMS((ARRAY *, char *, char *, int));
69extern char *array_modcase PARAMS((ARRAY *, char *, int, int));
Jari Aaltoccc6cda1996-12-23 17:02:34 +000070
Jari Aalto7117c2d2002-07-17 14:10:11 +000071/* Basic operations on array elements. */
Chet Ramey8868eda2020-12-06 15:51:17 -050072extern ARRAY_ELEMENT *array_create_element PARAMS((arrayind_t, char *));
73extern ARRAY_ELEMENT *array_copy_element PARAMS((ARRAY_ELEMENT *));
74extern void array_dispose_element PARAMS((ARRAY_ELEMENT *));
Jari Aaltoccc6cda1996-12-23 17:02:34 +000075
Chet Ramey8868eda2020-12-06 15:51:17 -050076extern int array_insert PARAMS((ARRAY *, arrayind_t, char *));
77extern ARRAY_ELEMENT *array_remove PARAMS((ARRAY *, arrayind_t));
78extern char *array_reference PARAMS((ARRAY *, arrayind_t));
Jari Aalto7117c2d2002-07-17 14:10:11 +000079
80/* Converting to and from arrays */
Chet Ramey8868eda2020-12-06 15:51:17 -050081extern WORD_LIST *array_to_word_list PARAMS((ARRAY *));
82extern ARRAY *array_from_word_list PARAMS((WORD_LIST *));
83extern WORD_LIST *array_keys_to_word_list PARAMS((ARRAY *));
Jari Aaltob80f6442004-07-27 13:29:18 +000084
Chet Ramey8868eda2020-12-06 15:51:17 -050085extern ARRAY *array_assign_list PARAMS((ARRAY *, WORD_LIST *));
Jari Aaltoccc6cda1996-12-23 17:02:34 +000086
Chet Ramey8868eda2020-12-06 15:51:17 -050087extern char **array_to_argv PARAMS((ARRAY *, int *));
Jari Aaltobb706242000-03-17 21:46:59 +000088
Chet Ramey8868eda2020-12-06 15:51:17 -050089extern char *array_to_kvpair PARAMS((ARRAY *, int));
90extern char *array_to_assign PARAMS((ARRAY *, int));
91extern char *array_to_string PARAMS((ARRAY *, char *, int));
92extern ARRAY *array_from_string PARAMS((char *, char *));
Jari Aaltoccc6cda1996-12-23 17:02:34 +000093
Jari Aalto7117c2d2002-07-17 14:10:11 +000094/* Flags for array_shift */
95#define AS_DISPOSE 0x01
Jari Aaltoccc6cda1996-12-23 17:02:34 +000096
97#define array_num_elements(a) ((a)->num_elements)
98#define array_max_index(a) ((a)->max_index)
Chet Rameyd233b482019-01-07 09:27:52 -050099#define array_first_index(a) ((a)->head->next->ind)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000100#define array_head(a) ((a)->head)
101#define array_empty(a) ((a)->num_elements == 0)
102
103#define element_value(ae) ((ae)->value)
104#define element_index(ae) ((ae)->ind)
105#define element_forw(ae) ((ae)->next)
106#define element_back(ae) ((ae)->prev)
107
Chet Rameyd233b482019-01-07 09:27:52 -0500108#define set_element_value(ae, val) ((ae)->value = (val))
109
Jari Aaltob80f6442004-07-27 13:29:18 +0000110/* Convenience */
111#define array_push(a,v) \
112 do { array_rshift ((a), 1, (v)); } while (0)
113#define array_pop(a) \
114 do { array_dispose_element (array_shift ((a), 1, 0)); } while (0)
115
116#define GET_ARRAY_FROM_VAR(n, v, a) \
117 do { \
118 (v) = find_variable (n); \
119 (a) = ((v) && array_p ((v))) ? array_cell (v) : (ARRAY *)0; \
120 } while (0)
121
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000122#define ALL_ELEMENT_SUB(c) ((c) == '@' || (c) == '*')
123
Chet Ramey8868eda2020-12-06 15:51:17 -0500124/* In eval.c, but uses ARRAY * */
125extern int execute_array_command PARAMS((ARRAY *, void *));
126
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000127#endif /* _ARRAY_H_ */