]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/basename/basename.c
Partial merge of the SPDX changes
[FreeBSD/FreeBSD.git] / usr.bin / basename / basename.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1991, 1993, 1994
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 4. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31
32 #ifndef lint
33 static const char copyright[] =
34 "@(#) Copyright (c) 1991, 1993, 1994\n\
35         The Regents of the University of California.  All rights reserved.\n";
36 #endif
37
38 #if 0
39 #ifndef lint
40 static char sccsid[] = "@(#)basename.c  8.4 (Berkeley) 5/4/95";
41 #endif /* not lint */
42 #endif
43
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD$");
46
47 #include <err.h>
48 #include <libgen.h>
49 #include <limits.h>
50 #include <locale.h>
51 #include <stdio.h>
52 #include <stdlib.h>
53 #include <string.h>
54 #include <unistd.h>
55 #include <wchar.h>
56
57 void stripsuffix(char *, const char *, size_t);
58 void usage(void);
59
60 int
61 main(int argc, char **argv)
62 {
63         char *p, *suffix;
64         size_t suffixlen;
65         int aflag, ch;
66
67         setlocale(LC_ALL, "");
68
69         aflag = 0;
70         suffix = NULL;
71         suffixlen = 0;
72
73         while ((ch = getopt(argc, argv, "as:")) != -1)
74                 switch(ch) {
75                 case 'a':
76                         aflag = 1;
77                         break;
78                 case 's':
79                         suffix = optarg;
80                         break;
81                 case '?':
82                 default:
83                         usage();
84                 }
85         argc -= optind;
86         argv += optind;
87
88         if (argc < 1)
89                 usage();
90
91         if (!*argv[0]) {
92                 printf("\n");
93                 exit(0);
94         }
95         if ((p = basename(argv[0])) == NULL)
96                 err(1, "%s", argv[0]);
97         if ((suffix == NULL && !aflag) && argc == 2) {
98                 suffix = argv[1];
99                 argc--;
100         }
101         if (suffix != NULL)
102                 suffixlen = strlen(suffix);
103         while (argc--) {
104                 if ((p = basename(*argv)) == NULL)
105                         err(1, "%s", argv[0]);
106                 stripsuffix(p, suffix, suffixlen);
107                 argv++;
108                 (void)printf("%s\n", p);
109         }
110         exit(0);
111 }
112
113 void
114 stripsuffix(char *p, const char *suffix, size_t suffixlen)
115 {
116         char *q, *r;
117         mbstate_t mbs;
118         size_t n;
119
120         if (suffixlen && (q = strchr(p, '\0') - suffixlen) > p &&
121             strcmp(suffix, q) == 0) {
122                 /* Ensure that the match occurred on a character boundary. */
123                 memset(&mbs, 0, sizeof(mbs));
124                 for (r = p; r < q; r += n) {
125                         n = mbrlen(r, MB_LEN_MAX, &mbs);
126                         if (n == (size_t)-1 || n == (size_t)-2) {
127                                 memset(&mbs, 0, sizeof(mbs));
128                                 n = 1;
129                         }
130                 }
131                 /* Chop off the suffix. */
132                 if (q == r)
133                         *q = '\0';
134         }
135 }
136
137 void
138 usage(void)
139 {
140
141         (void)fprintf(stderr,
142 "usage: basename string [suffix]\n"
143 "       basename [-a] [-s suffix] string [...]\n");
144         exit(1);
145 }