str.c revision 1.5 1 1.1 cgd /*-
2 1.1 cgd * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
3 1.1 cgd * Copyright (c) 1988, 1989 by Adam de Boor
4 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
5 1.1 cgd * All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Adam de Boor.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd */
38 1.1 cgd
39 1.1 cgd #ifndef lint
40 1.4 cgd /* from: static char sccsid[] = "@(#)str.c 5.8 (Berkeley) 6/1/90"; */
41 1.5 jtc static char *rcsid = "$Id: str.c,v 1.5 1994/03/23 00:52:13 jtc Exp $";
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.1 cgd #include "make.h"
45 1.1 cgd
46 1.1 cgd /*-
47 1.1 cgd * str_concat --
48 1.1 cgd * concatenate the two strings, inserting a space or slash between them,
49 1.1 cgd * freeing them if requested.
50 1.1 cgd *
51 1.1 cgd * returns --
52 1.1 cgd * the resulting string in allocated space.
53 1.1 cgd */
54 1.1 cgd char *
55 1.1 cgd str_concat(s1, s2, flags)
56 1.1 cgd char *s1, *s2;
57 1.1 cgd int flags;
58 1.1 cgd {
59 1.1 cgd register int len1, len2;
60 1.1 cgd register char *result;
61 1.1 cgd
62 1.1 cgd /* get the length of both strings */
63 1.1 cgd len1 = strlen(s1);
64 1.1 cgd len2 = strlen(s2);
65 1.1 cgd
66 1.1 cgd /* allocate length plus separator plus EOS */
67 1.1 cgd result = emalloc((u_int)(len1 + len2 + 2));
68 1.1 cgd
69 1.1 cgd /* copy first string into place */
70 1.4 cgd memcpy(result, s1, len1);
71 1.1 cgd
72 1.1 cgd /* add separator character */
73 1.1 cgd if (flags & STR_ADDSPACE) {
74 1.1 cgd result[len1] = ' ';
75 1.1 cgd ++len1;
76 1.1 cgd } else if (flags & STR_ADDSLASH) {
77 1.1 cgd result[len1] = '/';
78 1.1 cgd ++len1;
79 1.1 cgd }
80 1.1 cgd
81 1.1 cgd /* copy second string plus EOS into place */
82 1.4 cgd memcpy(result + len1, s2, len2 + 1);
83 1.1 cgd
84 1.1 cgd /* free original strings */
85 1.1 cgd if (flags & STR_DOFREE) {
86 1.1 cgd (void)free(s1);
87 1.1 cgd (void)free(s2);
88 1.1 cgd }
89 1.1 cgd return(result);
90 1.1 cgd }
91 1.1 cgd
92 1.1 cgd /*-
93 1.1 cgd * brk_string --
94 1.1 cgd * Fracture a string into an array of words (as delineated by tabs or
95 1.1 cgd * spaces) taking quotation marks into account. Leading tabs/spaces
96 1.1 cgd * are ignored.
97 1.1 cgd *
98 1.1 cgd * returns --
99 1.1 cgd * Pointer to the array of pointers to the words. To make life easier,
100 1.1 cgd * the first word is always the value of the .MAKE variable.
101 1.1 cgd */
102 1.1 cgd char **
103 1.1 cgd brk_string(str, store_argc)
104 1.1 cgd register char *str;
105 1.1 cgd int *store_argc;
106 1.1 cgd {
107 1.1 cgd static int argmax, curlen;
108 1.1 cgd static char **argv, *buf;
109 1.1 cgd register int argc, ch;
110 1.1 cgd register char inquote, *p, *start, *t;
111 1.1 cgd int len;
112 1.1 cgd
113 1.1 cgd /* save off pmake variable */
114 1.1 cgd if (!argv) {
115 1.1 cgd argv = (char **)emalloc((argmax = 50) * sizeof(char *));
116 1.1 cgd argv[0] = Var_Value(".MAKE", VAR_GLOBAL);
117 1.1 cgd }
118 1.1 cgd
119 1.4 cgd /* skip leading space chars. */
120 1.4 cgd for (; *str == ' ' || *str == '\t'; ++str)
121 1.4 cgd continue;
122 1.1 cgd
123 1.1 cgd /* allocate room for a copy of the string */
124 1.1 cgd if ((len = strlen(str) + 1) > curlen)
125 1.1 cgd buf = emalloc(curlen = len);
126 1.1 cgd
127 1.1 cgd /*
128 1.1 cgd * copy the string; at the same time, parse backslashes,
129 1.1 cgd * quotes and build the argument list.
130 1.1 cgd */
131 1.1 cgd argc = 1;
132 1.1 cgd inquote = '\0';
133 1.1 cgd for (p = str, start = t = buf;; ++p) {
134 1.1 cgd switch(ch = *p) {
135 1.1 cgd case '"':
136 1.1 cgd case '\'':
137 1.1 cgd if (inquote)
138 1.1 cgd if (inquote == ch)
139 1.4 cgd inquote = '\0';
140 1.1 cgd else
141 1.1 cgd break;
142 1.1 cgd else
143 1.4 cgd inquote = (char) ch;
144 1.1 cgd continue;
145 1.1 cgd case ' ':
146 1.1 cgd case '\t':
147 1.1 cgd if (inquote)
148 1.1 cgd break;
149 1.1 cgd if (!start)
150 1.1 cgd continue;
151 1.1 cgd /* FALLTHROUGH */
152 1.1 cgd case '\n':
153 1.1 cgd case '\0':
154 1.1 cgd /*
155 1.1 cgd * end of a token -- make sure there's enough argv
156 1.1 cgd * space and save off a pointer.
157 1.1 cgd */
158 1.1 cgd *t++ = '\0';
159 1.1 cgd if (argc == argmax) {
160 1.1 cgd argmax *= 2; /* ramp up fast */
161 1.1 cgd if (!(argv = (char **)realloc(argv,
162 1.1 cgd argmax * sizeof(char *))))
163 1.1 cgd enomem();
164 1.1 cgd }
165 1.1 cgd argv[argc++] = start;
166 1.1 cgd start = (char *)NULL;
167 1.1 cgd if (ch == '\n' || ch == '\0')
168 1.1 cgd goto done;
169 1.1 cgd continue;
170 1.1 cgd case '\\':
171 1.1 cgd switch (ch = *++p) {
172 1.1 cgd case '\0':
173 1.1 cgd case '\n':
174 1.1 cgd /* hmmm; fix it up as best we can */
175 1.1 cgd ch = '\\';
176 1.1 cgd --p;
177 1.1 cgd break;
178 1.1 cgd case 'b':
179 1.1 cgd ch = '\b';
180 1.1 cgd break;
181 1.1 cgd case 'f':
182 1.1 cgd ch = '\f';
183 1.1 cgd break;
184 1.1 cgd case 'n':
185 1.1 cgd ch = '\n';
186 1.1 cgd break;
187 1.1 cgd case 'r':
188 1.1 cgd ch = '\r';
189 1.1 cgd break;
190 1.1 cgd case 't':
191 1.1 cgd ch = '\t';
192 1.1 cgd break;
193 1.1 cgd }
194 1.1 cgd break;
195 1.1 cgd }
196 1.1 cgd if (!start)
197 1.1 cgd start = t;
198 1.4 cgd *t++ = (char) ch;
199 1.1 cgd }
200 1.1 cgd done: argv[argc] = (char *)NULL;
201 1.1 cgd *store_argc = argc;
202 1.1 cgd return(argv);
203 1.1 cgd }
204 1.1 cgd
205 1.1 cgd /*
206 1.1 cgd * Str_FindSubstring -- See if a string contains a particular substring.
207 1.1 cgd *
208 1.1 cgd * Results: If string contains substring, the return value is the location of
209 1.1 cgd * the first matching instance of substring in string. If string doesn't
210 1.1 cgd * contain substring, the return value is NULL. Matching is done on an exact
211 1.1 cgd * character-for-character basis with no wildcards or special characters.
212 1.1 cgd *
213 1.1 cgd * Side effects: None.
214 1.1 cgd */
215 1.1 cgd char *
216 1.1 cgd Str_FindSubstring(string, substring)
217 1.1 cgd register char *string; /* String to search. */
218 1.1 cgd char *substring; /* Substring to find in string */
219 1.1 cgd {
220 1.1 cgd register char *a, *b;
221 1.1 cgd
222 1.1 cgd /*
223 1.1 cgd * First scan quickly through the two strings looking for a single-
224 1.1 cgd * character match. When it's found, then compare the rest of the
225 1.1 cgd * substring.
226 1.1 cgd */
227 1.1 cgd
228 1.1 cgd for (b = substring; *string != 0; string += 1) {
229 1.1 cgd if (*string != *b)
230 1.1 cgd continue;
231 1.1 cgd a = string;
232 1.1 cgd for (;;) {
233 1.1 cgd if (*b == 0)
234 1.1 cgd return(string);
235 1.1 cgd if (*a++ != *b++)
236 1.1 cgd break;
237 1.1 cgd }
238 1.1 cgd b = substring;
239 1.1 cgd }
240 1.1 cgd return((char *) NULL);
241 1.1 cgd }
242 1.1 cgd
243 1.1 cgd /*
244 1.1 cgd * Str_Match --
245 1.1 cgd *
246 1.1 cgd * See if a particular string matches a particular pattern.
247 1.1 cgd *
248 1.1 cgd * Results: Non-zero is returned if string matches pattern, 0 otherwise. The
249 1.1 cgd * matching operation permits the following special characters in the
250 1.1 cgd * pattern: *?\[] (see the man page for details on what these mean).
251 1.1 cgd *
252 1.1 cgd * Side effects: None.
253 1.1 cgd */
254 1.4 cgd int
255 1.1 cgd Str_Match(string, pattern)
256 1.1 cgd register char *string; /* String */
257 1.1 cgd register char *pattern; /* Pattern */
258 1.1 cgd {
259 1.1 cgd char c2;
260 1.1 cgd
261 1.1 cgd for (;;) {
262 1.1 cgd /*
263 1.1 cgd * See if we're at the end of both the pattern and the
264 1.1 cgd * string. If, we succeeded. If we're at the end of the
265 1.1 cgd * pattern but not at the end of the string, we failed.
266 1.1 cgd */
267 1.1 cgd if (*pattern == 0)
268 1.1 cgd return(!*string);
269 1.1 cgd if (*string == 0 && *pattern != '*')
270 1.1 cgd return(0);
271 1.1 cgd /*
272 1.1 cgd * Check for a "*" as the next pattern character. It matches
273 1.1 cgd * any substring. We handle this by calling ourselves
274 1.1 cgd * recursively for each postfix of string, until either we
275 1.1 cgd * match or we reach the end of the string.
276 1.1 cgd */
277 1.1 cgd if (*pattern == '*') {
278 1.1 cgd pattern += 1;
279 1.1 cgd if (*pattern == 0)
280 1.1 cgd return(1);
281 1.1 cgd while (*string != 0) {
282 1.1 cgd if (Str_Match(string, pattern))
283 1.1 cgd return(1);
284 1.1 cgd ++string;
285 1.1 cgd }
286 1.1 cgd return(0);
287 1.1 cgd }
288 1.1 cgd /*
289 1.1 cgd * Check for a "?" as the next pattern character. It matches
290 1.1 cgd * any single character.
291 1.1 cgd */
292 1.1 cgd if (*pattern == '?')
293 1.1 cgd goto thisCharOK;
294 1.1 cgd /*
295 1.1 cgd * Check for a "[" as the next pattern character. It is
296 1.1 cgd * followed by a list of characters that are acceptable, or
297 1.1 cgd * by a range (two characters separated by "-").
298 1.1 cgd */
299 1.1 cgd if (*pattern == '[') {
300 1.1 cgd ++pattern;
301 1.1 cgd for (;;) {
302 1.1 cgd if ((*pattern == ']') || (*pattern == 0))
303 1.1 cgd return(0);
304 1.1 cgd if (*pattern == *string)
305 1.1 cgd break;
306 1.1 cgd if (pattern[1] == '-') {
307 1.1 cgd c2 = pattern[2];
308 1.1 cgd if (c2 == 0)
309 1.1 cgd return(0);
310 1.1 cgd if ((*pattern <= *string) &&
311 1.1 cgd (c2 >= *string))
312 1.1 cgd break;
313 1.1 cgd if ((*pattern >= *string) &&
314 1.1 cgd (c2 <= *string))
315 1.1 cgd break;
316 1.1 cgd pattern += 2;
317 1.1 cgd }
318 1.1 cgd ++pattern;
319 1.1 cgd }
320 1.1 cgd while ((*pattern != ']') && (*pattern != 0))
321 1.1 cgd ++pattern;
322 1.1 cgd goto thisCharOK;
323 1.1 cgd }
324 1.1 cgd /*
325 1.1 cgd * If the next pattern character is '/', just strip off the
326 1.1 cgd * '/' so we do exact matching on the character that follows.
327 1.1 cgd */
328 1.1 cgd if (*pattern == '\\') {
329 1.1 cgd ++pattern;
330 1.1 cgd if (*pattern == 0)
331 1.1 cgd return(0);
332 1.1 cgd }
333 1.1 cgd /*
334 1.1 cgd * There's no special character. Just make sure that the
335 1.1 cgd * next characters of each string match.
336 1.1 cgd */
337 1.1 cgd if (*pattern != *string)
338 1.1 cgd return(0);
339 1.1 cgd thisCharOK: ++pattern;
340 1.1 cgd ++string;
341 1.1 cgd }
342 1.4 cgd }
343 1.4 cgd
344 1.4 cgd
345 1.4 cgd /*-
346 1.4 cgd *-----------------------------------------------------------------------
347 1.4 cgd * Str_SYSVMatch --
348 1.4 cgd * Check word against pattern for a match (% is wild),
349 1.4 cgd *
350 1.4 cgd * Results:
351 1.4 cgd * Returns the beginning position of a match or null. The number
352 1.4 cgd * of characters matched is returned in len.
353 1.4 cgd *
354 1.4 cgd * Side Effects:
355 1.4 cgd * None
356 1.4 cgd *
357 1.4 cgd *-----------------------------------------------------------------------
358 1.4 cgd */
359 1.4 cgd char *
360 1.4 cgd Str_SYSVMatch(word, pattern, len)
361 1.4 cgd char *word; /* Word to examine */
362 1.4 cgd char *pattern; /* Pattern to examine against */
363 1.4 cgd int *len; /* Number of characters to substitute */
364 1.4 cgd {
365 1.4 cgd char *p = pattern;
366 1.4 cgd char *w = word;
367 1.4 cgd char *m;
368 1.4 cgd
369 1.5 jtc if (*p == '\0') {
370 1.5 jtc /* Null pattern is the whole string */
371 1.5 jtc *len = strlen(w);
372 1.5 jtc return w;
373 1.5 jtc }
374 1.4 cgd
375 1.4 cgd if ((m = strchr(p, '%')) != NULL) {
376 1.4 cgd /* check that the prefix matches */
377 1.4 cgd for (; p != m && *w && *w == *p; w++, p++)
378 1.4 cgd continue;
379 1.4 cgd
380 1.4 cgd if (p != m)
381 1.4 cgd return NULL; /* No match */
382 1.4 cgd
383 1.4 cgd if (*++p == '\0') {
384 1.4 cgd /* No more pattern, return the rest of the string */
385 1.4 cgd *len = strlen(w);
386 1.4 cgd return w;
387 1.4 cgd }
388 1.4 cgd }
389 1.4 cgd
390 1.4 cgd m = w;
391 1.4 cgd
392 1.4 cgd /* Find a matching tail */
393 1.4 cgd do
394 1.4 cgd if (strcmp(p, w) == 0) {
395 1.4 cgd *len = w - m;
396 1.4 cgd return m;
397 1.4 cgd }
398 1.4 cgd while (*w++ != '\0');
399 1.4 cgd
400 1.4 cgd return NULL;
401 1.4 cgd }
402 1.4 cgd
403 1.4 cgd
404 1.4 cgd /*-
405 1.4 cgd *-----------------------------------------------------------------------
406 1.4 cgd * Str_SYSVSubst --
407 1.4 cgd * Substitute '%' on the pattern with len characters from src.
408 1.4 cgd * If the pattern does not contain a '%' prepend len characters
409 1.4 cgd * from src.
410 1.4 cgd *
411 1.4 cgd * Results:
412 1.4 cgd * None
413 1.4 cgd *
414 1.4 cgd * Side Effects:
415 1.4 cgd * Places result on buf
416 1.4 cgd *
417 1.4 cgd *-----------------------------------------------------------------------
418 1.4 cgd */
419 1.4 cgd void
420 1.4 cgd Str_SYSVSubst(buf, pat, src, len)
421 1.4 cgd Buffer buf;
422 1.4 cgd char *pat;
423 1.4 cgd char *src;
424 1.4 cgd int len;
425 1.4 cgd {
426 1.4 cgd char *m;
427 1.4 cgd
428 1.4 cgd if ((m = strchr(pat, '%')) != NULL) {
429 1.4 cgd /* Copy the prefix */
430 1.4 cgd Buf_AddBytes(buf, m - pat, (Byte *) pat);
431 1.4 cgd /* skip the % */
432 1.4 cgd pat = m + 1;
433 1.4 cgd }
434 1.4 cgd
435 1.4 cgd /* Copy the pattern */
436 1.4 cgd Buf_AddBytes(buf, len, (Byte *) src);
437 1.4 cgd
438 1.4 cgd /* append the rest */
439 1.4 cgd Buf_AddBytes(buf, strlen(pat), (Byte *) pat);
440 1.1 cgd }
441