NetBSD/bin/csh/str.c

443 lines
8.7 KiB
C
Raw Normal View History

2002-05-26 03:29:16 +04:00
/* $NetBSD: str.c,v 1.12 2002/05/25 23:29:17 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) 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[] = "@(#)str.c 8.1 (Berkeley) 5/31/93";
#else
2002-05-26 03:29:16 +04:00
__RCSID("$NetBSD: str.c,v 1.12 2002/05/25 23:29:17 wiz Exp $");
1995-03-21 12:01:59 +03:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#define MALLOC_INCR 128
1994-09-21 04:10:23 +04:00
1993-03-21 12:45:37 +03:00
/*
* tc.str.c: Short string package
1994-09-21 04:10:23 +04:00
* This has been a lesson of how to write buggy code!
1993-03-21 12:45:37 +03:00
*/
1994-09-21 04:10:23 +04:00
#include <sys/types.h>
2002-05-26 03:29:16 +04:00
#include <stdarg.h>
#include <vis.h>
1993-03-21 12:45:37 +03:00
#include "csh.h"
#include "extern.h"
1994-09-21 04:10:23 +04:00
#ifdef SHORT_STRINGS
Char **
blk2short(char **src)
1993-03-21 12:45:37 +03:00
{
Char **dst, **sdst;
size_t n;
1993-03-21 12:45:37 +03:00
/*
* Count
*/
1994-09-21 04:10:23 +04:00
for (n = 0; src[n] != NULL; n++)
continue;
sdst = dst = (Char **)xmalloc((size_t)((n + 1) * sizeof(Char *)));
1993-03-21 12:45:37 +03:00
for (; *src != NULL; src++)
*dst++ = SAVE(*src);
*dst = NULL;
return (sdst);
}
char **
short2blk(Char **src)
1993-03-21 12:45:37 +03:00
{
char **dst, **sdst;
size_t n;
1993-03-21 12:45:37 +03:00
/*
* Count
*/
1994-09-21 04:10:23 +04:00
for (n = 0; src[n] != NULL; n++)
continue;
sdst = dst = (char **)xmalloc((size_t)((n + 1) * sizeof(char *)));
1993-03-21 12:45:37 +03:00
for (; *src != NULL; src++)
*dst++ = strsave(short2str(*src));
*dst = NULL;
return (sdst);
}
Char *
str2short(const char *src)
1993-03-21 12:45:37 +03:00
{
static Char *sdst;
1997-01-13 20:53:15 +03:00
Char *dst, *edst;
static size_t dstsize = 0;
1993-03-21 12:45:37 +03:00
if (src == NULL)
return (NULL);
if (sdst == (NULL)) {
dstsize = MALLOC_INCR;
sdst = (Char *)xmalloc((size_t)dstsize * sizeof(Char));
1993-03-21 12:45:37 +03:00
}
dst = sdst;
edst = &dst[dstsize];
while (*src) {
*dst++ = (Char) ((unsigned char) *src++);
if (dst == edst) {
dstsize += MALLOC_INCR;
sdst = (Char *)xrealloc((ptr_t)sdst,
(size_t)dstsize * sizeof(Char));
1993-03-21 12:45:37 +03:00
edst = &sdst[dstsize];
dst = &edst[-MALLOC_INCR];
}
}
*dst = 0;
return (sdst);
}
char *
short2str(Char *src)
1993-03-21 12:45:37 +03:00
{
static char *sdst = NULL;
static size_t dstsize = 0;
1997-01-13 20:53:15 +03:00
char *dst, *edst;
1993-03-21 12:45:37 +03:00
if (src == NULL)
return (NULL);
if (sdst == NULL) {
dstsize = MALLOC_INCR;
sdst = (char *)xmalloc((size_t)dstsize * sizeof(char));
1993-03-21 12:45:37 +03:00
}
dst = sdst;
edst = &dst[dstsize];
while (*src) {
*dst++ = (char) *src++;
if (dst == edst) {
dstsize += MALLOC_INCR;
sdst = (char *)xrealloc((ptr_t)sdst,
(size_t)dstsize * sizeof(char));
1993-03-21 12:45:37 +03:00
edst = &sdst[dstsize];
dst = &edst[-MALLOC_INCR];
}
}
*dst = 0;
return (sdst);
}
Char *
s_strcpy(Char *dst, Char *src)
1993-03-21 12:45:37 +03:00
{
1997-01-13 20:53:15 +03:00
Char *sdst;
1993-03-21 12:45:37 +03:00
sdst = dst;
1994-09-21 04:10:23 +04:00
while ((*dst++ = *src++) != '\0')
continue;
1993-03-21 12:45:37 +03:00
return (sdst);
}
Char *
s_strncpy(Char *dst, Char *src, size_t n)
1993-03-21 12:45:37 +03:00
{
1997-01-13 20:53:15 +03:00
Char *sdst;
1993-03-21 12:45:37 +03:00
if (n == 0)
return(dst);
sdst = dst;
1994-09-21 04:10:23 +04:00
do
1993-03-21 12:45:37 +03:00
if ((*dst++ = *src++) == '\0') {
while (--n != 0)
*dst++ = '\0';
return(sdst);
}
while (--n != 0);
return (sdst);
}
Char *
s_strcat(Char *dst, Char *src)
1993-03-21 12:45:37 +03:00
{
1997-01-13 20:53:15 +03:00
short *sdst;
1993-03-21 12:45:37 +03:00
sdst = dst;
1994-09-21 04:10:23 +04:00
while (*dst++)
continue;
1993-03-21 12:45:37 +03:00
--dst;
1994-09-21 04:10:23 +04:00
while ((*dst++ = *src++) != '\0')
continue;
1993-03-21 12:45:37 +03:00
return (sdst);
}
#ifdef NOTUSED
Char *
s_strncat(Char *dst, Char *src, size_t n)
1993-03-21 12:45:37 +03:00
{
1997-01-13 20:53:15 +03:00
Char *sdst;
1993-03-21 12:45:37 +03:00
1994-09-21 04:10:23 +04:00
if (n == 0)
1993-03-21 12:45:37 +03:00
return (dst);
sdst = dst;
1994-09-21 04:10:23 +04:00
while (*dst++)
continue;
1993-03-21 12:45:37 +03:00
--dst;
1994-09-21 04:10:23 +04:00
do
1993-03-21 12:45:37 +03:00
if ((*dst++ = *src++) == '\0')
return(sdst);
1994-09-21 04:10:23 +04:00
while (--n != 0)
continue;
1993-03-21 12:45:37 +03:00
*dst = '\0';
return (sdst);
}
#endif
Char *
s_strchr(Char *str, int ch)
1993-03-21 12:45:37 +03:00
{
do
if (*str == ch)
return (str);
while (*str++);
return (NULL);
}
Char *
s_strrchr(Char *str, int ch)
1993-03-21 12:45:37 +03:00
{
1997-01-13 20:53:15 +03:00
Char *rstr;
1993-03-21 12:45:37 +03:00
rstr = NULL;
do
if (*str == ch)
rstr = str;
while (*str++);
return (rstr);
}
size_t
s_strlen(Char *str)
1993-03-21 12:45:37 +03:00
{
1997-01-13 20:53:15 +03:00
size_t n;
1993-03-21 12:45:37 +03:00
1994-09-21 04:10:23 +04:00
for (n = 0; *str++; n++)
continue;
1993-03-21 12:45:37 +03:00
return (n);
}
int
s_strcmp(Char *str1, Char *str2)
1993-03-21 12:45:37 +03:00
{
1994-09-21 04:10:23 +04:00
for (; *str1 && *str1 == *str2; str1++, str2++)
continue;
1993-03-21 12:45:37 +03:00
/*
* The following case analysis is necessary so that characters which look
* negative collate low against normal characters but high against the
* end-of-string NUL.
*/
if (*str1 == '\0' && *str2 == '\0')
return (0);
else if (*str1 == '\0')
return (-1);
else if (*str2 == '\0')
return (1);
else
return (*str1 - *str2);
}
int
s_strncmp(Char *str1, Char *str2, size_t n)
1993-03-21 12:45:37 +03:00
{
if (n == 0)
return (0);
do {
1994-09-21 04:10:23 +04:00
if (*str1 != *str2) {
/*
* The following case analysis is necessary so that characters
* which look negative collate low against normal characters
* but high against the end-of-string NUL.
*/
if (*str1 == '\0')
return (-1);
else if (*str2 == '\0')
return (1);
else
return (*str1 - *str2);
}
if (*str1 == '\0')
return(0);
1993-03-21 12:45:37 +03:00
str1++, str2++;
} while (--n != 0);
return(0);
}
Char *
s_strsave(Char *s)
1993-03-21 12:45:37 +03:00
{
Char *n, *p;
1993-03-21 12:45:37 +03:00
if (s == 0)
s = STRNULL;
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 *
s_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 = STRNULL;
if (!dp)
dp = STRNULL;
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++) != '\0';)
continue;
for (p--, q = dp; (*p++ = *q++) != '\0';)
continue;
1993-03-21 12:45:37 +03:00
return (ep);
}
Char *
s_strend(Char *cp)
1993-03-21 12:45:37 +03:00
{
if (!cp)
return (cp);
while (*cp)
cp++;
return (cp);
}
Char *
s_strstr(Char *s, Char *t)
1993-03-21 12:45:37 +03:00
{
do {
1997-01-13 20:53:15 +03:00
Char *ss = s;
Char *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 /* SHORT_STRINGS */
1994-09-21 04:10:23 +04:00
char *
short2qstr(Char *src)
1994-09-21 04:10:23 +04:00
{
static char *sdst = NULL;
static size_t dstsize = 0;
1997-01-13 20:53:15 +03:00
char *dst, *edst;
1994-09-21 04:10:23 +04:00
if (src == NULL)
return (NULL);
if (sdst == NULL) {
dstsize = MALLOC_INCR;
sdst = (char *)xmalloc((size_t)dstsize * sizeof(char));
1994-09-21 04:10:23 +04:00
}
dst = sdst;
edst = &dst[dstsize];
while (*src) {
if (*src & QUOTE) {
*dst++ = '\\';
if (dst == edst) {
dstsize += MALLOC_INCR;
sdst = (char *)xrealloc((ptr_t) sdst,
(size_t)dstsize * sizeof(char));
1994-09-21 04:10:23 +04:00
edst = &sdst[dstsize];
dst = &edst[-MALLOC_INCR];
}
}
*dst++ = (char) *src++;
if (dst == edst) {
dstsize += MALLOC_INCR;
sdst = (char *)xrealloc((ptr_t) sdst,
(size_t)dstsize * sizeof(char));
1994-09-21 04:10:23 +04:00
edst = &sdst[dstsize];
dst = &edst[-MALLOC_INCR];
}
}
*dst = 0;
return (sdst);
}
/*
* XXX: Should we worry about QUOTE'd chars?
*/
char *
vis_str(Char *cp)
1994-09-21 04:10:23 +04:00
{
static char *sdst = NULL;
static size_t dstsize = 0;
Char *dp;
size_t n;
1994-09-21 04:10:23 +04:00
if (cp == NULL)
return (NULL);
for (dp = cp; *dp++;)
continue;
n = ((dp - cp) << 2) + 1; /* 4 times + NULL */
if (dstsize < n) {
sdst = (char *) (dstsize ?
xrealloc(sdst, (size_t)n * sizeof(char)) :
xmalloc((size_t)n * sizeof(char)));
1994-09-21 04:10:23 +04:00
dstsize = n;
}
/*
* XXX: When we are in AsciiOnly we want all characters >= 0200 to
* be encoded, but currently there is no way in vis to do that.
*/
(void)strvis(sdst, short2str(cp), VIS_NOSLASH);
1994-09-21 04:10:23 +04:00
return (sdst);
}