NetBSD/usr.bin/wc/wc.c

276 lines
6.1 KiB
C
Raw Normal View History

/* $NetBSD: wc.c,v 1.16 1999/02/14 18:03:18 mjacob 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. 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
__COPYRIGHT("@(#) Copyright (c) 1980, 1987, 1991, 1993\n\
The Regents of the University of California. All rights reserved.\n");
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
__RCSID("$NetBSD: wc.c,v 1.16 1999/02/14 18:03:18 mjacob Exp $");
1997-10-18 20:48:29 +04:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
/* wc line, word and char count */
1997-10-18 20:48:29 +04:00
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/types.h>
1997-10-18 20:48:29 +04:00
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
1997-10-18 20:48:29 +04:00
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <ctype.h>
#include <errno.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/file.h>
#include <unistd.h>
#include <err.h>
1993-03-21 12:45:37 +03:00
static u_int64_t tlinect, twordct, tcharct;
1998-10-13 21:03:39 +04:00
static int doline, doword, dochar;
static int rval = 0;
static char *qfmt;
1993-03-21 12:45:37 +03:00
1997-10-18 20:48:29 +04:00
static void cnt __P((char *));
static void print_counts __P((u_int64_t, u_int64_t, u_int64_t, char *));
1997-10-18 20:48:29 +04:00
static void usage __P((void));
int main __P((int, char *[]));
1997-10-18 20:48:29 +04:00
int
1993-03-21 12:45:37 +03:00
main(argc, argv)
int argc;
1997-10-18 20:48:29 +04:00
char *argv[];
1993-03-21 12:45:37 +03:00
{
int ch;
setlocale(LC_ALL, "");
if (sizeof (u_int64_t) > 4)
qfmt = " %7u";
else
qfmt = " %7qu";
while ((ch = getopt(argc, argv, "lwcm")) != -1)
switch((char)ch) {
case 'l':
doline = 1;
break;
case 'w':
doword = 1;
break;
case 'c':
case 'm':
dochar = 1;
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 + dochar == 0)
1993-03-21 12:45:37 +03:00
doline = doword = dochar = 1;
if (!*argv) {
1997-10-18 20:48:29 +04:00
cnt(NULL);
} else {
int dototal = (argc > 1);
do {
cnt(*argv);
} while(*++argv);
if (dototal) {
1997-10-18 20:48:29 +04:00
print_counts(tlinect, twordct, tcharct, "total");
}
1993-03-21 12:45:37 +03:00
}
exit(rval);
1993-03-21 12:45:37 +03:00
}
static void
1993-03-21 12:45:37 +03:00
cnt(file)
char *file;
{
u_char *C;
short gotsp;
int len;
u_int64_t linect, wordct, charct;
1997-10-18 20:48:29 +04:00
struct stat sb;
1993-03-21 12:45:37 +03:00
int fd;
u_char buf[MAXBSIZE];
linect = wordct = charct = 0;
if (file) {
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
}
} else {
fd = STDIN_FILENO;
}
if (!doword) {
/*
* 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) {
1997-10-18 20:48:29 +04:00
while ((len = read(fd, buf, MAXBSIZE)) > 0) {
charct += len;
for (C = buf; len--; ++C)
if (*C == '\n')
++linect;
1993-03-21 12:45:37 +03:00
}
if (len == -1) {
warn ("%s", file);
rval = 1;
}
}
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 (dochar) {
1997-10-18 20:48:29 +04:00
if (fstat(fd, &sb)) {
warn("%s", file);
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 {
1997-10-18 20:48:29 +04:00
while ((len = read(fd, buf, MAXBSIZE)) > 0)
charct += len;
if (len == -1) {
warn ("%s", file);
rval = 1;
}
1993-03-21 12:45:37 +03:00
}
}
}
}
else
{
/* do it the hard way... */
gotsp = 1;
while ((len = read(fd, buf, MAXBSIZE)) > 0) {
charct += len;
for (C = buf; len--; ++C) {
1997-10-18 20:48:29 +04:00
if (isspace(*C)) {
gotsp = 1;
if (*C == '\n') {
++linect;
}
} 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 = 0;
++wordct;
}
}
1993-03-21 12:45:37 +03:00
}
}
if (len == -1) {
1997-10-18 20:48:29 +04:00
warn("%s", file);
rval = 1;
}
1993-03-21 12:45:37 +03:00
}
1997-10-18 20:48:29 +04:00
print_counts(linect, wordct, charct, file ? file : "");
/* don't bother checkint doline, doword, or dochar --- speeds
up the common case */
tlinect += linect;
twordct += wordct;
tcharct += charct;
if (close(fd)) {
warn ("%s", file);
rval = 1;
1993-03-21 12:45:37 +03:00
}
}
1997-10-18 20:48:29 +04:00
static void
print_counts(lines, words, chars, name)
u_int64_t lines;
u_int64_t words;
u_int64_t chars;
char *name;
{
if (doline)
printf(qfmt, lines);
if (doword)
printf(qfmt, words);
if (dochar)
printf(qfmt, chars);
1997-10-18 20:48:29 +04:00
printf(" %s\n", name);
}
static void
usage()
{
(void)fprintf(stderr, "usage: wc [-clw] [files]\n");
exit(1);
1993-03-21 12:45:37 +03:00
}