NetBSD/bin/csh/misc.c

401 lines
6.8 KiB
C
Raw Normal View History

2002-05-26 03:29:16 +04:00
/* $NetBSD: misc.c,v 1.13 2002/05/25 23:29:16 wiz Exp $ */
1995-03-21 12:01:59 +03:00
1993-03-21 12:45:37 +03:00
/*-
1994-09-21 04:10:23 +04:00
* Copyright (c) 1980, 1991, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1995-03-21 12:01:59 +03:00
#if 0
static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 5/31/93";
#else
2002-05-26 03:29:16 +04:00
__RCSID("$NetBSD: misc.c,v 1.13 2002/05/25 23:29:16 wiz Exp $");
1995-03-21 12:01:59 +03:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/param.h>
2002-05-26 03:29:16 +04:00
#include <stdarg.h>
1993-03-21 12:45:37 +03:00
#include <stdlib.h>
#include <unistd.h>
1993-03-21 12:45:37 +03:00
#include "csh.h"
#include "extern.h"
static int renum(int, int);
1993-03-21 12:45:37 +03:00
int
any(char *s, int c)
1993-03-21 12:45:37 +03:00
{
if (!s)
return (0); /* Check for nil pointer */
while (*s)
if (*s++ == c)
return (1);
return (0);
}
char *
strsave(char *s)
1993-03-21 12:45:37 +03:00
{
char *n, *p;
1993-03-21 12:45:37 +03:00
if (s == NULL)
s = "";
1994-09-21 04:10:23 +04:00
for (p = s; *p++;)
continue;
n = p = (char *)xmalloc((size_t)((p - s) * sizeof(char)));
1994-09-21 04:10:23 +04:00
while ((*p++ = *s++) != '\0')
continue;
1993-03-21 12:45:37 +03:00
return (n);
}
Char **
blkend(Char **up)
1993-03-21 12:45:37 +03:00
{
while (*up)
up++;
return (up);
}
void
blkpr(FILE *fp, Char **av)
1993-03-21 12:45:37 +03:00
{
for (; *av; av++) {
(void)fprintf(fp, "%s", vis_str(*av));
1993-03-21 12:45:37 +03:00
if (av[1])
(void)fprintf(fp, " ");
1993-03-21 12:45:37 +03:00
}
}
int
blklen(Char **av)
1993-03-21 12:45:37 +03:00
{
int i;
1993-03-21 12:45:37 +03:00
i = 0;
1993-03-21 12:45:37 +03:00
while (*av++)
i++;
return (i);
}
Char **
blkcpy(Char **oav, Char **bv)
1993-03-21 12:45:37 +03:00
{
Char **av;
1993-03-21 12:45:37 +03:00
av = oav;
1994-09-21 04:10:23 +04:00
while ((*av++ = *bv++) != NULL)
1993-03-21 12:45:37 +03:00
continue;
return (oav);
}
Char **
blkcat(Char **up, Char **vp)
1993-03-21 12:45:37 +03:00
{
(void)blkcpy(blkend(up), vp);
1993-03-21 12:45:37 +03:00
return (up);
}
void
blkfree(Char **av0)
1993-03-21 12:45:37 +03:00
{
Char **av;
1993-03-21 12:45:37 +03:00
av = av0;
1993-03-21 12:45:37 +03:00
if (!av0)
return;
for (; *av; av++)
xfree((ptr_t) * av);
xfree((ptr_t) av0);
}
Char **
saveblk(Char **v)
1993-03-21 12:45:37 +03:00
{
Char **newv, **onewv;
1993-03-21 12:45:37 +03:00
newv = (Char **)xcalloc((size_t)(blklen(v) + 1), sizeof(Char **));
onewv = newv;
1993-03-21 12:45:37 +03:00
while (*v)
*newv++ = Strsave(*v++);
return (onewv);
}
#ifdef NOTUSED
char *
strstr(char *s, char *t)
1993-03-21 12:45:37 +03:00
{
do {
char *ss;
char *tt;
ss = s;
tt = t;
1993-03-21 12:45:37 +03:00
do
if (*tt == '\0')
return (s);
while (*ss++ == *tt++);
} while (*s++ != '\0');
return (NULL);
}
#endif /* NOTUSED */
#ifndef SHORT_STRINGS
char *
strspl(char *cp, char *dp)
1993-03-21 12:45:37 +03:00
{
char *ep, *p, *q;
1993-03-21 12:45:37 +03:00
if (!cp)
cp = "";
if (!dp)
dp = "";
1994-09-21 04:10:23 +04:00
for (p = cp; *p++;)
continue;
for (q = dp; *q++;)
continue;
ep = (char *) xmalloc((size_t)(((p - cp) + (q - dp) - 1) * sizeof(char)));
1994-09-21 04:10:23 +04:00
for (p = ep, q = cp; *p++ = *q++;)
continue;
for (p--, q = dp; *p++ = *q++;)
continue;
1993-03-21 12:45:37 +03:00
return (ep);
}
#endif
Char **
blkspl(Char **up, Char **vp)
1993-03-21 12:45:37 +03:00
{
Char **wp;
1993-03-21 12:45:37 +03:00
wp = (Char **)xcalloc((size_t)(blklen(up) + blklen(vp) + 1),
sizeof(Char **));
(void)blkcpy(wp, up);
1993-03-21 12:45:37 +03:00
return (blkcat(wp, vp));
}
Char
lastchr(Char *cp)
1993-03-21 12:45:37 +03:00
{
if (!cp)
return (0);
if (!*cp)
return (0);
while (cp[1])
cp++;
return (*cp);
}
/*
* This routine is called after an error to close up
* any units which may have been left open accidentally.
*/
void
closem(void)
1993-03-21 12:45:37 +03:00
{
1997-01-13 20:53:15 +03:00
int f;
1993-03-21 12:45:37 +03:00
for (f = 0; f < NOFILE; f++)
1994-09-21 04:10:23 +04:00
if (f != SHIN && f != SHOUT && f != SHERR && f != OLDSTD &&
1993-03-21 12:45:37 +03:00
f != FSHTTY)
(void) close(f);
}
void
donefds(void)
1993-03-21 12:45:37 +03:00
{
(void)close(0);
(void)close(1);
(void)close(2);
1994-09-21 04:10:23 +04:00
1993-03-21 12:45:37 +03:00
didfds = 0;
}
/*
* Move descriptor i to j.
* If j is -1 then we just want to get i to a safe place,
* i.e. to a unit > 2. This also happens in dcopy.
*/
int
dmove(int i, int j)
1993-03-21 12:45:37 +03:00
{
if (i == j || i < 0)
return (i);
if (j >= 0) {
(void)dup2(i, j);
1993-03-21 12:45:37 +03:00
if (j != i)
(void)close(i);
1993-03-21 12:45:37 +03:00
return (j);
}
j = dcopy(i, j);
if (j != i)
(void)close(i);
1993-03-21 12:45:37 +03:00
return (j);
}
int
dcopy(int i, int j)
1993-03-21 12:45:37 +03:00
{
1994-09-21 04:10:23 +04:00
if (i == j || i < 0 || (j < 0 && i > 2))
1993-03-21 12:45:37 +03:00
return (i);
if (j >= 0) {
(void)dup2(i, j);
1993-03-21 12:45:37 +03:00
return (j);
}
(void)close(j);
1993-03-21 12:45:37 +03:00
return (renum(i, j));
}
static int
renum(int i, int j)
1993-03-21 12:45:37 +03:00
{
int k;
1993-03-21 12:45:37 +03:00
k = dup(i);
1993-03-21 12:45:37 +03:00
if (k < 0)
return (-1);
if (j == -1 && k > 2)
return (k);
if (k != j) {
j = renum(k, j);
(void)close(k);
1993-03-21 12:45:37 +03:00
return (j);
}
return (k);
}
/*
* Left shift a command argument list, discarding
* the first c arguments. Used in "shift" commands
* as well as by commands like "repeat".
*/
void
lshift(Char **v, int c)
1993-03-21 12:45:37 +03:00
{
1997-01-13 20:53:15 +03:00
Char **u;
1993-03-21 12:45:37 +03:00
1994-09-21 04:10:23 +04:00
for (u = v; *u && --c >= 0; u++)
xfree((ptr_t) *u);
(void)blkcpy(v, u);
1993-03-21 12:45:37 +03:00
}
int
number(Char *cp)
1993-03-21 12:45:37 +03:00
{
if (!cp)
return(0);
if (*cp == '-') {
cp++;
if (!Isdigit(*cp))
return (0);
cp++;
}
while (*cp && Isdigit(*cp))
cp++;
return (*cp == 0);
}
Char **
copyblk(Char **v)
1993-03-21 12:45:37 +03:00
{
Char **nv;
nv = (Char **)xcalloc((size_t)(blklen(v) + 1), sizeof(Char **));
1993-03-21 12:45:37 +03:00
return (blkcpy(nv, v));
}
#ifndef SHORT_STRINGS
char *
strend(char *cp)
1993-03-21 12:45:37 +03:00
{
if (!cp)
return (cp);
while (*cp)
cp++;
return (cp);
}
1994-09-21 04:10:23 +04:00
#endif /* SHORT_STRINGS */
1993-03-21 12:45:37 +03:00
Char *
strip(Char *cp)
1993-03-21 12:45:37 +03:00
{
Char *dp;
1993-03-21 12:45:37 +03:00
dp = cp;
1993-03-21 12:45:37 +03:00
if (!cp)
return (cp);
1994-09-21 04:10:23 +04:00
while ((*dp++ &= TRIM) != '\0')
1993-03-21 12:45:37 +03:00
continue;
return (cp);
}
Char *
quote(Char *cp)
{
Char *dp;
dp = cp;
if (!cp)
return (cp);
while (*dp != '\0')
*dp++ |= QUOTE;
return (cp);
}
1993-03-21 12:45:37 +03:00
void
udvar(Char *name)
1993-03-21 12:45:37 +03:00
{
1994-09-21 04:10:23 +04:00
setname(vis_str(name));
1993-03-21 12:45:37 +03:00
stderror(ERR_NAME | ERR_UNDVAR);
1998-07-28 06:23:37 +04:00
/* NOTREACHED */
1993-03-21 12:45:37 +03:00
}
int
prefix(Char *sub, Char *str)
1993-03-21 12:45:37 +03:00
{
for (;;) {
if (*sub == 0)
return (1);
if (*str == 0)
return (0);
if (*sub++ != *str++)
return (0);
}
}