NetBSD/usr.bin/wc/wc.c

355 lines
7.8 KiB
C
Raw Normal View History

2011-09-16 19:39:25 +04:00
/* $NetBSD: wc.c,v 1.35 2011/09/16 15:39:30 joerg Exp $ */
1997-01-09 23:18:21 +03:00
1993-03-21 12:45:37 +03:00
/*
1997-10-18 20:48:29 +04:00
* Copyright (c) 1980, 1987, 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. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
* 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
__COPYRIGHT("@(#) Copyright (c) 1980, 1987, 1991, 1993\
The Regents of the University of California. All rights reserved.");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#ifndef lint
1997-10-18 20:48:29 +04:00
#if 0
static char sccsid[] = "@(#)wc.c 8.2 (Berkeley) 5/2/95";
#else
2011-09-16 19:39:25 +04:00
__RCSID("$NetBSD: wc.c,v 1.35 2011/09/16 15:39:30 joerg Exp $");
1997-10-18 20:48:29 +04:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
/* wc line, word, char count and optionally longest line. */
1993-03-21 12:45:37 +03:00
1997-10-18 20:48:29 +04:00
#include <sys/param.h>
#include <sys/file.h>
1997-10-18 20:48:29 +04:00
#include <sys/stat.h>
#include <ctype.h>
1997-10-18 20:48:29 +04:00
#include <fcntl.h>
#include <err.h>
1997-10-18 20:48:29 +04:00
#include <errno.h>
#include <locale.h>
#include <stdbool.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <wchar.h>
#include <wctype.h>
1993-03-21 12:45:37 +03:00
#ifdef NO_QUAD
typedef u_long wc_count_t;
# define WCFMT " %7lu"
# define WCCAST unsigned long
#else
typedef u_quad_t wc_count_t;
# define WCFMT " %7llu"
# define WCCAST unsigned long long
#endif
static wc_count_t tlinect, twordct, tcharct, tlongest;
static bool doline, doword, dobyte, dochar, dolongest;
1998-10-13 21:03:39 +04:00
static int rval = 0;
1993-03-21 12:45:37 +03:00
static void cnt(const char *);
static void print_counts(wc_count_t, wc_count_t, wc_count_t, wc_count_t,
const char *);
2011-09-16 19:39:25 +04:00
__dead static void usage(void);
2006-01-04 04:58:05 +03:00
static size_t do_mb(wchar_t *, const char *, size_t, mbstate_t *,
size_t *, const char *);
1997-10-18 20:48:29 +04:00
int
2006-01-04 04:58:05 +03:00
main(int argc, char *argv[])
1993-03-21 12:45:37 +03:00
{
int ch;
setlocale(LC_ALL, "");
while ((ch = getopt(argc, argv, "lwcmL")) != -1)
switch (ch) {
case 'l':
doline = true;
break;
case 'w':
doword = true;
break;
case 'm':
dochar = true;
dobyte = 0;
break;
case 'c':
dochar = 0;
dobyte = true;
break;
case 'L':
dolongest = true;
break;
case '?':
default:
1997-10-18 20:48:29 +04:00
usage();
}
argv += optind;
argc -= optind;
1993-03-21 12:45:37 +03:00
1997-10-18 20:48:29 +04:00
/* Wc's flags are on by default. */
if (!(doline || doword || dobyte || dochar || dolongest))
doline = doword = dobyte = true;
1993-03-21 12:45:37 +03:00
if (*argv == NULL) {
1997-10-18 20:48:29 +04:00
cnt(NULL);
} else {
bool dototal = (argc > 1);
do {
cnt(*argv);
} while(*++argv);
if (dototal) {
print_counts(tlinect, twordct, tcharct, tlongest,
"total");
}
1993-03-21 12:45:37 +03:00
}
exit(rval);
1993-03-21 12:45:37 +03:00
}
static size_t
do_mb(wchar_t *wc, const char *p, size_t len, mbstate_t *st,
size_t *retcnt, const char *file)
{
size_t r;
size_t c = 0;
do {
r = mbrtowc(wc, p, len, st);
if (r == (size_t)-1) {
warnx("%s: invalid byte sequence", file);
rval = 1;
/* XXX skip 1 byte */
len--;
2002-03-24 00:20:21 +03:00
p++;
memset(st, 0, sizeof(*st));
continue;
2002-03-24 00:20:21 +03:00
} else if (r == (size_t)-2)
break;
else if (r == 0)
r = 1;
2002-03-24 00:20:21 +03:00
c++;
if (wc)
2002-03-24 00:20:21 +03:00
wc++;
len -= r;
p += r;
} while (len > 0);
*retcnt = c;
return (r);
}
2002-03-24 00:20:21 +03:00
static void
cnt(const char *file)
1993-03-21 12:45:37 +03:00
{
u_char buf[MAXBSIZE];
wchar_t wbuf[MAXBSIZE];
struct stat sb;
wc_count_t charct, linect, wordct, longest;
mbstate_t st;
u_char *C;
wchar_t *WC;
const char *name; /* filename or <stdin> */
size_t r = 0;
int fd, len = 0;
1993-03-21 12:45:37 +03:00
linect = wordct = charct = longest = 0;
if (file != NULL) {
1993-03-21 12:45:37 +03:00
if ((fd = open(file, O_RDONLY, 0)) < 0) {
1997-10-18 20:48:29 +04:00
warn("%s", file);
rval = 1;
return;
1993-03-21 12:45:37 +03:00
}
name = file;
2002-03-24 00:20:21 +03:00
} else {
fd = STDIN_FILENO;
name = "<stdin>";
}
if (dochar || doword || dolongest)
(void)memset(&st, 0, sizeof(st));
2002-03-24 00:20:21 +03:00
if (!(doword || dolongest)) {
/*
* line counting is split out because it's a lot
* faster to get lines than to get words, since
* the word count requires some logic.
*/
if (doline || dochar) {
1997-10-18 20:48:29 +04:00
while ((len = read(fd, buf, MAXBSIZE)) > 0) {
if (dochar) {
size_t wlen;
2002-03-24 00:20:21 +03:00
r = do_mb(0, (char *)buf, (size_t)len,
&st, &wlen, name);
charct += wlen;
2002-03-24 00:20:21 +03:00
} else if (dobyte)
charct += len;
if (doline) {
for (C = buf; len--; ++C) {
if (*C == '\n')
++linect;
}
}
}
}
1993-03-21 12:45:37 +03:00
/*
* if all we need is the number of characters and
* it's a directory or a regular or linked file, just
* stat the puppy. We avoid testing for it not being
* a special device in case someone adds a new type
* of inode.
*/
else if (dobyte) {
1997-10-18 20:48:29 +04:00
if (fstat(fd, &sb)) {
warn("%s", name);
rval = 1;
} else {
1997-10-19 23:27:40 +04:00
if (S_ISREG(sb.st_mode) ||
S_ISLNK(sb.st_mode) ||
S_ISDIR(sb.st_mode)) {
1997-10-18 20:48:29 +04:00
charct = sb.st_size;
} else {
2002-03-24 00:20:21 +03:00
while ((len =
read(fd, buf, MAXBSIZE)) > 0)
charct += len;
1993-03-21 12:45:37 +03:00
}
}
}
2002-03-24 00:20:21 +03:00
} else {
/* do it the hard way... */
wc_count_t linelen;
bool gotsp;
linelen = 0;
gotsp = true;
while ((len = read(fd, buf, MAXBSIZE)) > 0) {
size_t wlen;
2002-03-24 00:20:21 +03:00
r = do_mb(wbuf, (char *)buf, (size_t)len, &st, &wlen,
name);
if (dochar) {
charct += wlen;
} else if (dobyte) {
charct += len;
}
for (WC = wbuf; wlen--; ++WC) {
if (iswspace(*WC)) {
gotsp = true;
if (*WC == L'\n') {
++linect;
if (linelen > longest)
longest = linelen;
linelen = 0;
} else {
linelen++;
}
} else {
/*
* This line implements the POSIX
* spec, i.e. a word is a "maximal
* string of characters delimited by
* whitespace." Notice nothing was
* said about a character being
* printing or non-printing.
*/
if (gotsp) {
gotsp = false;
++wordct;
}
linelen++;
}
1993-03-21 12:45:37 +03:00
}
}
}
if (len == -1) {
warn("%s", name);
rval = 1;
}
if (dochar && r == (size_t)-2) {
warnx("%s: incomplete multibyte character", name);
rval = 1;
1993-03-21 12:45:37 +03:00
}
print_counts(linect, wordct, charct, longest, file);
2002-03-24 00:20:21 +03:00
/*
* don't bother checkint doline, doword, or dobyte --- speeds
* up the common case
*/
tlinect += linect;
twordct += wordct;
tcharct += charct;
if (dolongest && longest > tlongest)
tlongest = longest;
if (close(fd)) {
warn("%s", name);
rval = 1;
1993-03-21 12:45:37 +03:00
}
}
1997-10-18 20:48:29 +04:00
static void
print_counts(wc_count_t lines, wc_count_t words, wc_count_t chars,
wc_count_t longest, const char *name)
{
if (doline)
(void)printf(WCFMT, (WCCAST)lines);
if (doword)
(void)printf(WCFMT, (WCCAST)words);
if (dobyte || dochar)
(void)printf(WCFMT, (WCCAST)chars);
if (dolongest)
(void)printf(WCFMT, (WCCAST)longest);
if (name != NULL)
(void)printf(" %s\n", name);
else
(void)putchar('\n');
1997-10-18 20:48:29 +04:00
}
static void
2006-01-04 04:58:05 +03:00
usage(void)
1997-10-18 20:48:29 +04:00
{
2002-03-24 00:20:21 +03:00
(void)fprintf(stderr, "usage: wc [-c | -m] [-Llw] [file ...]\n");
1997-10-18 20:48:29 +04:00
exit(1);
1993-03-21 12:45:37 +03:00
}