]>
git.saurik.com Git - apple/shell_cmds.git/blob - sh/alias.c
4eb6f9e55235a03fc37e4566545bb49e09eabcba
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static char sccsid
[] = "@(#)alias.c 8.3 (Berkeley) 5/4/95";
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD: head/bin/sh/alias.c 295868 2016-02-21 20:58:24Z jilles $");
48 #include "options.h" /* XXX for argptr (should remove?) */
53 static struct alias
*atab
[ATABSIZE
];
56 static void setalias(const char *, const char *);
57 static int unalias(const char *);
58 static struct alias
**hashalias(const char *);
62 setalias(const char *name
, const char *val
)
64 struct alias
*ap
, **app
;
66 app
= hashalias(name
);
67 for (ap
= *app
; ap
; ap
= ap
->next
) {
68 if (equal(name
, ap
->name
)) {
71 ap
->val
= savestr(val
);
78 ap
= ckmalloc(sizeof (struct alias
));
79 ap
->name
= savestr(name
);
80 ap
->val
= savestr(val
);
89 unalias(const char *name
)
91 struct alias
*ap
, **app
;
93 app
= hashalias(name
);
95 for (ap
= *app
; ap
; app
= &(ap
->next
), ap
= ap
->next
) {
96 if (equal(name
, ap
->name
)) {
98 * if the alias is currently in use (i.e. its
99 * buffer is being used by the input routine) we
100 * just null out the name instead of freeing it.
101 * We could clear it out later, but this situation
102 * is so rare that it hardly seems worth it.
104 if (ap
->flag
& ALIASINUSE
)
125 struct alias
*ap
, *tmp
;
129 for (i
= 0; i
< ATABSIZE
; i
++) {
145 lookupalias(const char *name
, int check
)
151 for (ap
= *hashalias(name
); ap
; ap
= ap
->next
) {
152 if (equal(name
, ap
->name
)) {
153 if (check
&& (ap
->flag
& ALIASINUSE
))
163 comparealiases(const void *p1
, const void *p2
)
165 const struct alias
*const *a1
= p1
;
166 const struct alias
*const *a2
= p2
;
168 return strcmp((*a1
)->name
, (*a2
)->name
);
172 printalias(const struct alias
*a
)
174 out1fmt("%s=", a
->name
);
183 struct alias
**sorted
, *ap
;
186 sorted
= ckmalloc(aliases
* sizeof(*sorted
));
188 for (i
= 0; i
< ATABSIZE
; i
++)
189 for (ap
= atab
[i
]; ap
; ap
= ap
->next
)
190 if (*ap
->name
!= '\0')
192 qsort(sorted
, aliases
, sizeof(*sorted
), comparealiases
);
193 for (i
= 0; i
< aliases
; i
++) {
194 printalias(sorted
[i
]);
203 aliascmd(int argc __unused
, char **argv __unused
)
211 if (*argptr
== NULL
) {
215 while ((n
= *argptr
++) != NULL
) {
216 if ((v
= strchr(n
+1, '=')) == NULL
) /* n+1: funny ksh stuff */
217 if ((ap
= lookupalias(n
, 0)) == NULL
) {
218 warning("%s: not found", n
);
232 unaliascmd(int argc __unused
, char **argv __unused
)
236 while ((i
= nextopt("a")) != '\0') {
242 for (i
= 0; *argptr
; argptr
++)
243 i
|= unalias(*argptr
);
248 static struct alias
**
249 hashalias(const char *p
)
251 unsigned int hashval
;
253 hashval
= (unsigned char)*p
<< 4;
256 return &atab
[hashval
% ATABSIZE
];