]> git.ipfire.org Git - thirdparty/bash.git/blame - array.h
commit bash-20080807 snapshot
[thirdparty/bash.git] / array.h
CommitLineData
ccc6cda3
JA
1/* array.h -- definitions for the interface exported by array.c that allows
2 the rest of the shell to manipulate array variables. */
bb70624e 3
4ac1ff98 4/* Copyright (C) 1997-2008 Free Software Foundation, Inc.
bb70624e
JA
5
6 This file is part of GNU Bash, the Bourne Again SHell.
7
8 Bash is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
12
13 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License along
19 with Bash; see the file COPYING. If not, write to the Free Software
20 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
21
ccc6cda3
JA
22#ifndef _ARRAY_H_
23#define _ARRAY_H_
24
25#include "stdc.h"
26
7117c2d2 27typedef intmax_t arrayind_t;
ccc6cda3
JA
28
29enum atype {array_indexed, array_assoc};
30
31typedef struct array {
32 enum atype type;
7117c2d2 33 arrayind_t max_index, num_elements;
ccc6cda3
JA
34 struct array_element *head;
35} ARRAY;
36
37typedef struct array_element {
38 arrayind_t ind;
39 char *value;
40 struct array_element *next, *prev;
41} ARRAY_ELEMENT;
42
d3a24ed2 43typedef int sh_ae_map_func_t __P((ARRAY_ELEMENT *, void *));
f73dda09 44
7117c2d2
JA
45/* Basic operations on entire arrays */
46extern ARRAY *array_create __P((void));
47extern void array_flush __P((ARRAY *));
48extern void array_dispose __P((ARRAY *));
49extern ARRAY *array_copy __P((ARRAY *));
50extern ARRAY *array_slice __P((ARRAY *, ARRAY_ELEMENT *, ARRAY_ELEMENT *));
d3a24ed2 51extern void array_walk __P((ARRAY *, sh_ae_map_func_t *, void *));
ccc6cda3 52
7117c2d2
JA
53extern ARRAY_ELEMENT *array_shift __P((ARRAY *, int, int));
54extern int array_rshift __P((ARRAY *, int, char *));
d3a24ed2
CR
55extern ARRAY_ELEMENT *array_unshift_element __P((ARRAY *));
56extern int array_shift_element __P((ARRAY *, char *));
09767ff0 57
7117c2d2 58extern ARRAY *array_quote __P((ARRAY *));
d3ad40de 59extern ARRAY *array_quote_escapes __P((ARRAY *));
09767ff0
CR
60extern ARRAY *array_dequote __P((ARRAY *));
61extern ARRAY *array_dequote_escapes __P((ARRAY *));
62extern ARRAY *array_remove_quoted_nulls __P((ARRAY *));
ccc6cda3 63
d3a24ed2 64extern char *array_subrange __P((ARRAY *, arrayind_t, arrayind_t, int, int));
7117c2d2 65extern char *array_patsub __P((ARRAY *, char *, char *, int));
4ac1ff98 66extern char *array_modcase __P((ARRAY *, char *, int, int));
ccc6cda3 67
7117c2d2
JA
68/* Basic operations on array elements. */
69extern ARRAY_ELEMENT *array_create_element __P((arrayind_t, char *));
70extern ARRAY_ELEMENT *array_copy_element __P((ARRAY_ELEMENT *));
71extern void array_dispose_element __P((ARRAY_ELEMENT *));
ccc6cda3 72
7117c2d2
JA
73extern int array_insert __P((ARRAY *, arrayind_t, char *));
74extern ARRAY_ELEMENT *array_remove __P((ARRAY *, arrayind_t));
75extern char *array_reference __P((ARRAY *, arrayind_t));
76
77/* Converting to and from arrays */
ccc6cda3 78extern WORD_LIST *array_to_word_list __P((ARRAY *));
7117c2d2 79extern ARRAY *array_from_word_list __P((WORD_LIST *));
d3a24ed2
CR
80extern WORD_LIST *array_keys_to_word_list __P((ARRAY *));
81
7117c2d2 82extern ARRAY *array_assign_list __P((ARRAY *, WORD_LIST *));
ccc6cda3 83
bb70624e
JA
84extern char **array_to_argv __P((ARRAY *));
85
7117c2d2 86extern char *array_to_assign __P((ARRAY *, int));
ccc6cda3 87extern char *array_to_string __P((ARRAY *, char *, int));
7117c2d2 88extern ARRAY *array_from_string __P((char *, char *));
ccc6cda3 89
7117c2d2
JA
90/* Flags for array_shift */
91#define AS_DISPOSE 0x01
ccc6cda3
JA
92
93#define array_num_elements(a) ((a)->num_elements)
94#define array_max_index(a) ((a)->max_index)
95#define array_head(a) ((a)->head)
96#define array_empty(a) ((a)->num_elements == 0)
97
98#define element_value(ae) ((ae)->value)
99#define element_index(ae) ((ae)->ind)
100#define element_forw(ae) ((ae)->next)
101#define element_back(ae) ((ae)->prev)
102
d3a24ed2
CR
103/* Convenience */
104#define array_push(a,v) \
105 do { array_rshift ((a), 1, (v)); } while (0)
106#define array_pop(a) \
107 do { array_dispose_element (array_shift ((a), 1, 0)); } while (0)
108
109#define GET_ARRAY_FROM_VAR(n, v, a) \
110 do { \
111 (v) = find_variable (n); \
112 (a) = ((v) && array_p ((v))) ? array_cell (v) : (ARRAY *)0; \
113 } while (0)
114
ccc6cda3
JA
115#define ALL_ELEMENT_SUB(c) ((c) == '@' || (c) == '*')
116
117#endif /* _ARRAY_H_ */