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 * 3. 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$");
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
)
147 struct alias
*ap
= *hashalias(name
);
149 for (; ap
; ap
= ap
->next
) {
150 if (equal(name
, ap
->name
)) {
151 if (check
&& (ap
->flag
& ALIASINUSE
))
161 comparealiases(const void *p1
, const void *p2
)
163 const struct alias
*const *a1
= p1
;
164 const struct alias
*const *a2
= p2
;
166 return strcmp((*a1
)->name
, (*a2
)->name
);
170 printalias(const struct alias
*a
)
172 out1fmt("%s=", a
->name
);
181 struct alias
**sorted
, *ap
;
184 sorted
= ckmalloc(aliases
* sizeof(*sorted
));
186 for (i
= 0; i
< ATABSIZE
; i
++)
187 for (ap
= atab
[i
]; ap
; ap
= ap
->next
)
188 if (*ap
->name
!= '\0')
190 qsort(sorted
, aliases
, sizeof(*sorted
), comparealiases
);
191 for (i
= 0; i
< aliases
; i
++) {
192 printalias(sorted
[i
]);
201 aliascmd(int argc __unused
, char **argv __unused
)
209 if (*argptr
== NULL
) {
213 while ((n
= *argptr
++) != NULL
) {
214 if ((v
= strchr(n
+1, '=')) == NULL
) /* n+1: funny ksh stuff */
215 if ((ap
= lookupalias(n
, 0)) == NULL
) {
216 warning("%s: not found", n
);
230 unaliascmd(int argc __unused
, char **argv __unused
)
234 while ((i
= nextopt("a")) != '\0') {
240 for (i
= 0; *argptr
; argptr
++)
241 i
|= unalias(*argptr
);
246 static struct alias
**
247 hashalias(const char *p
)
249 unsigned int hashval
;
254 return &atab
[hashval
% ATABSIZE
];