1 /* stringvec.c - functions for managing arrays of strings. */
3 /* Copyright (C) 2000-2002 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/>.
23 #include <bushtypes.h>
25 #if defined (HAVE_UNISTD_H)
31 #include <chartypes.h>
35 /* Allocate an array of strings with room for N members. */
40 return ((char **)xmalloc ((n
) * sizeof (char *)));
43 /* Allocate an array of strings with room for N members. */
48 return ((char **)malloc ((n
) * sizeof (char *)));
52 strvec_resize (array
, nsize
)
56 return ((char **)xrealloc (array
, nsize
* sizeof (char *)));
60 strvec_mresize (array
, nsize
)
64 return ((char **)realloc (array
, nsize
* sizeof (char *)));
67 /* Return the length of ARRAY, a NULL terminated array of char *. */
74 for (i
= 0; array
[i
]; i
++);
78 /* Free the contents of ARRAY, a NULL terminated array of char *. */
88 for (i
= 0; array
[i
]; i
++)
93 strvec_dispose (array
)
104 strvec_remove (array
, name
)
113 for (i
= 0; array
[i
]; i
++)
114 if (STREQ (name
, array
[i
]))
117 for (j
= i
; array
[j
]; j
++)
118 array
[j
] = array
[j
+ 1];
125 /* Find NAME in ARRAY. Return the index of NAME, or -1 if not present.
126 ARRAY should be NULL terminated. */
128 strvec_search (array
, name
)
133 for (i
= 0; array
[i
]; i
++)
134 if (STREQ (name
, array
[i
]))
140 /* Allocate and return a new copy of ARRAY and its contents. */
149 len
= strvec_len (array
);
151 ret
= (char **)xmalloc ((len
+ 1) * sizeof (char *));
152 for (i
= 0; array
[i
]; i
++)
153 ret
[i
] = savestring (array
[i
]);
154 ret
[i
] = (char *)NULL
;
159 /* Comparison routine for use by qsort that conforms to the new Posix
160 requirements (http://austingroupbugs.net/view.php?id=1070).
162 Perform a bytewise comparison if *S1 and *S2 collate equally. */
164 strvec_posixcmp (s1
, s2
)
165 register char **s1
, **s2
;
169 #if defined (HAVE_STRCOLL)
170 result
= strcoll (*s1
, *s2
);
175 if ((result
= **s1
- **s2
) == 0)
176 result
= strcmp (*s1
, *s2
);
181 /* Comparison routine for use with qsort() on arrays of strings. Uses
182 strcoll(3) if available, otherwise it uses strcmp(3). */
184 strvec_strcmp (s1
, s2
)
185 register char **s1
, **s2
;
187 #if defined (HAVE_STRCOLL)
188 return (strcoll (*s1
, *s2
));
189 #else /* !HAVE_STRCOLL */
192 if ((result
= **s1
- **s2
) == 0)
193 result
= strcmp (*s1
, *s2
);
196 #endif /* !HAVE_STRCOLL */
199 /* Sort ARRAY, a null terminated array of pointers to strings. */
201 strvec_sort (array
, posix
)
206 qsort (array
, strvec_len (array
), sizeof (char *), (QSFUNC
*)strvec_posixcmp
);
208 qsort (array
, strvec_len (array
), sizeof (char *), (QSFUNC
*)strvec_strcmp
);
211 /* Cons up a new array of words. The words are taken from LIST,
212 which is a WORD_LIST *. If ALLOC is true, everything is malloc'ed,
213 so you should free everything in this array when you are done.
214 The array is NULL terminated. If IP is non-null, it gets the
215 number of words in the returned array. STARTING_INDEX says where
216 to start filling in the returned array; it can be used to reserve
217 space at the beginning of the array. */
220 strvec_from_word_list (list
, alloc
, starting_index
, ip
)
222 int alloc
, starting_index
, *ip
;
227 count
= list_length (list
);
228 array
= (char **)xmalloc ((1 + count
+ starting_index
) * sizeof (char *));
230 for (count
= 0; count
< starting_index
; count
++)
231 array
[count
] = (char *)NULL
;
232 for (count
= starting_index
; list
; count
++, list
= list
->next
)
233 array
[count
] = alloc
? savestring (list
->word
->word
) : list
->word
->word
;
234 array
[count
] = (char *)NULL
;
241 /* Convert an array of strings into the form used internally by the shell.
242 ALLOC means to allocate new storage for each WORD_DESC in the returned
243 list rather than copy the values in ARRAY. STARTING_INDEX says where
244 in ARRAY to begin. */
247 strvec_to_word_list (array
, alloc
, starting_index
)
249 int alloc
, starting_index
;
255 if (array
== 0 || array
[0] == 0)
256 return (WORD_LIST
*)NULL
;
258 for (count
= 0; array
[count
]; count
++)
261 for (i
= starting_index
, list
= (WORD_LIST
*)NULL
; i
< count
; i
++)
263 w
= make_bare_word (alloc
? array
[i
] : "");
269 list
= make_word_list (w
, list
);
271 return (REVERSE_LIST (list
, WORD_LIST
*));