1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1980, 1987, 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
2002-03-07 10:06:00 +00:00
|
|
|
static const char copyright[] =
|
1994-05-27 12:33:43 +00:00
|
|
|
"@(#) Copyright (c) 1980, 1987, 1991, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
2002-02-28 11:02:49 +00:00
|
|
|
#endif /* not lint */
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-03-07 10:06:00 +00:00
|
|
|
#if 0
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifndef lint
|
2002-02-28 11:02:49 +00:00
|
|
|
static char sccsid[] = "@(#)wc.c 8.1 (Berkeley) 6/6/93";
|
|
|
|
#endif /* not lint */
|
1996-04-13 11:35:54 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-02-28 11:02:49 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
1996-04-13 11:35:54 +00:00
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <err.h>
|
2002-06-13 12:48:50 +00:00
|
|
|
#include <errno.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <fcntl.h>
|
1996-01-10 21:42:14 +00:00
|
|
|
#include <locale.h>
|
2002-02-28 11:02:49 +00:00
|
|
|
#include <stdint.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1996-04-13 11:35:54 +00:00
|
|
|
#include <unistd.h>
|
2004-04-09 11:17:29 +00:00
|
|
|
#include <wchar.h>
|
2002-08-11 10:52:13 +00:00
|
|
|
#include <wctype.h>
|
2014-11-05 04:02:25 +00:00
|
|
|
#include <libxo/xo.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2011-11-06 08:19:00 +00:00
|
|
|
static uintmax_t tlinect, twordct, tcharct, tlongline;
|
|
|
|
static int doline, doword, dochar, domulti, dolongline;
|
2010-05-17 19:13:49 +00:00
|
|
|
static volatile sig_atomic_t siginfo;
|
2014-11-05 04:02:25 +00:00
|
|
|
static xo_handle_t *stderr_handle;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2010-05-16 21:06:26 +00:00
|
|
|
static void show_cnt(const char *file, uintmax_t linect, uintmax_t wordct,
|
|
|
|
uintmax_t charct, uintmax_t llct);
|
2002-03-22 01:42:45 +00:00
|
|
|
static int cnt(const char *);
|
|
|
|
static void usage(void);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2010-05-16 21:06:26 +00:00
|
|
|
static void
|
|
|
|
siginfo_handler(int sig __unused)
|
|
|
|
{
|
|
|
|
|
|
|
|
siginfo = 1;
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
int
|
2004-12-27 22:27:56 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
1999-08-13 12:56:35 +00:00
|
|
|
int ch, errors, total;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1996-01-10 21:42:14 +00:00
|
|
|
(void) setlocale(LC_CTYPE, "");
|
|
|
|
|
2014-11-05 04:02:25 +00:00
|
|
|
argc = xo_parse_args(argc, argv);
|
|
|
|
if (argc < 0)
|
|
|
|
return (argc);
|
|
|
|
|
2008-12-06 19:21:56 +00:00
|
|
|
while ((ch = getopt(argc, argv, "clmwL")) != -1)
|
1994-05-27 12:33:43 +00:00
|
|
|
switch((char)ch) {
|
|
|
|
case 'l':
|
|
|
|
doline = 1;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
doword = 1;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
dochar = 1;
|
2002-06-13 12:48:50 +00:00
|
|
|
domulti = 0;
|
|
|
|
break;
|
2008-12-06 19:21:56 +00:00
|
|
|
case 'L':
|
|
|
|
dolongline = 1;
|
|
|
|
break;
|
2002-06-13 12:48:50 +00:00
|
|
|
case 'm':
|
|
|
|
domulti = 1;
|
|
|
|
dochar = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
argv += optind;
|
|
|
|
argc -= optind;
|
|
|
|
|
2010-05-16 21:06:26 +00:00
|
|
|
(void)signal(SIGINFO, siginfo_handler);
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/* Wc's flags are on by default. */
|
2008-12-06 19:21:56 +00:00
|
|
|
if (doline + doword + dochar + domulti + dolongline == 0)
|
1994-05-27 12:33:43 +00:00
|
|
|
doline = doword = dochar = 1;
|
|
|
|
|
2014-11-05 04:02:25 +00:00
|
|
|
stderr_handle = xo_create_to_file(stderr, XO_STYLE_TEXT, 0);
|
|
|
|
xo_open_container("wc");
|
|
|
|
xo_open_list("file");
|
|
|
|
|
1996-04-13 11:35:54 +00:00
|
|
|
errors = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
total = 0;
|
|
|
|
if (!*argv) {
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_open_instance("file");
|
1996-04-13 11:35:54 +00:00
|
|
|
if (cnt((char *)NULL) != 0)
|
|
|
|
++errors;
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_close_instance("file");
|
2010-05-16 21:06:26 +00:00
|
|
|
} else {
|
|
|
|
do {
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_open_instance("file");
|
2010-05-16 21:06:26 +00:00
|
|
|
if (cnt(*argv) != 0)
|
|
|
|
++errors;
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_close_instance("file");
|
2010-05-16 21:06:26 +00:00
|
|
|
++total;
|
|
|
|
} while(*++argv);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2015-02-11 17:56:24 +00:00
|
|
|
xo_close_list("file");
|
|
|
|
|
2014-11-05 04:02:25 +00:00
|
|
|
if (total > 1) {
|
|
|
|
xo_open_container("total");
|
2010-05-16 21:06:26 +00:00
|
|
|
show_cnt("total", tlinect, twordct, tcharct, tlongline);
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_close_container("total");
|
|
|
|
}
|
2015-02-11 17:56:24 +00:00
|
|
|
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_close_container("wc");
|
|
|
|
xo_finish();
|
1996-04-13 11:35:54 +00:00
|
|
|
exit(errors == 0 ? 0 : 1);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2010-05-16 21:06:26 +00:00
|
|
|
static void
|
|
|
|
show_cnt(const char *file, uintmax_t linect, uintmax_t wordct,
|
|
|
|
uintmax_t charct, uintmax_t llct)
|
|
|
|
{
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_handle_t *xop;
|
2010-05-16 21:06:26 +00:00
|
|
|
|
|
|
|
if (!siginfo)
|
2014-11-05 04:02:25 +00:00
|
|
|
xop = NULL;
|
2010-05-16 21:06:26 +00:00
|
|
|
else {
|
2014-11-05 04:02:25 +00:00
|
|
|
xop = stderr_handle;
|
2010-05-16 21:06:26 +00:00
|
|
|
siginfo = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (doline)
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_emit_h(xop, " {:lines/%7ju/%ju}", linect);
|
2010-05-16 21:06:26 +00:00
|
|
|
if (doword)
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_emit_h(xop, " {:words/%7ju/%ju}", wordct);
|
2010-05-16 21:06:26 +00:00
|
|
|
if (dochar || domulti)
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_emit_h(xop, " {:characters/%7ju/%ju}", charct);
|
2010-05-16 21:06:26 +00:00
|
|
|
if (dolongline)
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_emit_h(xop, " {:long-lines/%7ju/%ju}", llct);
|
2010-05-16 21:06:26 +00:00
|
|
|
if (file != NULL)
|
2014-11-07 01:36:20 +00:00
|
|
|
xo_emit_h(xop, " {:filename/%s}\n", file);
|
2010-05-16 21:06:26 +00:00
|
|
|
else
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_emit_h(xop, "\n");
|
2010-05-16 21:06:26 +00:00
|
|
|
}
|
|
|
|
|
2002-02-28 11:02:49 +00:00
|
|
|
static int
|
2004-12-27 22:27:56 +00:00
|
|
|
cnt(const char *file)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
struct stat sb;
|
2008-12-06 19:21:56 +00:00
|
|
|
uintmax_t linect, wordct, charct, llct, tmpll;
|
2004-04-09 11:17:29 +00:00
|
|
|
int fd, len, warned;
|
|
|
|
size_t clen;
|
1999-08-13 12:56:35 +00:00
|
|
|
short gotsp;
|
|
|
|
u_char *p;
|
2002-06-16 06:04:43 +00:00
|
|
|
u_char buf[MAXBSIZE];
|
2002-06-13 12:48:50 +00:00
|
|
|
wchar_t wch;
|
2004-04-09 11:17:29 +00:00
|
|
|
mbstate_t mbs;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2008-12-06 19:21:56 +00:00
|
|
|
linect = wordct = charct = llct = tmpll = 0;
|
2010-05-16 21:06:26 +00:00
|
|
|
if (file == NULL)
|
1996-04-13 11:35:54 +00:00
|
|
|
fd = STDIN_FILENO;
|
2010-05-16 21:06:26 +00:00
|
|
|
else {
|
1996-04-10 22:21:01 +00:00
|
|
|
if ((fd = open(file, O_RDONLY, 0)) < 0) {
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_warn("%s: open", file);
|
1996-04-13 11:35:54 +00:00
|
|
|
return (1);
|
1996-04-10 22:21:01 +00:00
|
|
|
}
|
2002-06-13 12:48:50 +00:00
|
|
|
if (doword || (domulti && MB_CUR_MAX != 1))
|
1994-05-27 12:33:43 +00:00
|
|
|
goto word;
|
|
|
|
/*
|
|
|
|
* 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-08-25 06:44:59 +00:00
|
|
|
while ((len = read(fd, buf, MAXBSIZE))) {
|
1996-04-13 11:35:54 +00:00
|
|
|
if (len == -1) {
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_warn("%s: read", file);
|
1996-04-13 11:35:54 +00:00
|
|
|
(void)close(fd);
|
|
|
|
return (1);
|
|
|
|
}
|
2010-05-16 21:06:26 +00:00
|
|
|
if (siginfo) {
|
|
|
|
show_cnt(file, linect, wordct, charct,
|
|
|
|
llct);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
charct += len;
|
|
|
|
for (p = buf; len--; ++p)
|
2008-12-06 19:21:56 +00:00
|
|
|
if (*p == '\n') {
|
|
|
|
if (tmpll > llct)
|
|
|
|
llct = tmpll;
|
|
|
|
tmpll = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
++linect;
|
2008-12-06 19:21:56 +00:00
|
|
|
} else
|
|
|
|
tmpll++;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
tlinect += linect;
|
2010-05-16 21:06:26 +00:00
|
|
|
if (dochar)
|
1994-05-27 12:33:43 +00:00
|
|
|
tcharct += charct;
|
2008-12-06 19:21:56 +00:00
|
|
|
if (dolongline) {
|
|
|
|
if (llct > tlongline)
|
|
|
|
tlongline = llct;
|
|
|
|
}
|
2010-05-16 21:06:26 +00:00
|
|
|
show_cnt(file, linect, wordct, charct, llct);
|
1994-05-27 12:33:43 +00:00
|
|
|
(void)close(fd);
|
1996-04-13 11:35:54 +00:00
|
|
|
return (0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If all we need is the number of characters and it's a
|
2002-06-15 08:31:19 +00:00
|
|
|
* regular file, just stat the puppy.
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
2002-06-13 12:48:50 +00:00
|
|
|
if (dochar || domulti) {
|
1996-04-13 11:35:54 +00:00
|
|
|
if (fstat(fd, &sb)) {
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_warn("%s: fstat", file);
|
1996-04-13 11:35:54 +00:00
|
|
|
(void)close(fd);
|
|
|
|
return (1);
|
|
|
|
}
|
2002-06-15 08:31:19 +00:00
|
|
|
if (S_ISREG(sb.st_mode)) {
|
2010-05-16 21:06:26 +00:00
|
|
|
charct = sb.st_size;
|
|
|
|
show_cnt(file, linect, wordct, charct, llct);
|
|
|
|
tcharct += charct;
|
1994-05-27 12:33:43 +00:00
|
|
|
(void)close(fd);
|
1996-04-13 11:35:54 +00:00
|
|
|
return (0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do it the hard way... */
|
2002-06-13 12:48:50 +00:00
|
|
|
word: gotsp = 1;
|
|
|
|
warned = 0;
|
2004-04-09 11:17:29 +00:00
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
while ((len = read(fd, buf, MAXBSIZE)) != 0) {
|
|
|
|
if (len == -1) {
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_warn("%s: read", file != NULL ? file : "stdin");
|
1996-04-13 11:35:54 +00:00
|
|
|
(void)close(fd);
|
|
|
|
return (1);
|
|
|
|
}
|
2002-06-13 12:48:50 +00:00
|
|
|
p = buf;
|
|
|
|
while (len > 0) {
|
2010-05-16 21:06:26 +00:00
|
|
|
if (siginfo)
|
|
|
|
show_cnt(file, linect, wordct, charct, llct);
|
2002-06-13 12:48:50 +00:00
|
|
|
if (!domulti || MB_CUR_MAX == 1) {
|
|
|
|
clen = 1;
|
|
|
|
wch = (unsigned char)*p;
|
2004-04-09 11:17:29 +00:00
|
|
|
} else if ((clen = mbrtowc(&wch, p, len, &mbs)) ==
|
|
|
|
(size_t)-1) {
|
|
|
|
if (!warned) {
|
|
|
|
errno = EILSEQ;
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_warn("%s",
|
2010-05-16 21:06:26 +00:00
|
|
|
file != NULL ? file : "stdin");
|
2004-04-09 11:17:29 +00:00
|
|
|
warned = 1;
|
2002-06-13 12:48:50 +00:00
|
|
|
}
|
2004-04-09 11:17:29 +00:00
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
clen = 1;
|
|
|
|
wch = (unsigned char)*p;
|
|
|
|
} else if (clen == (size_t)-2)
|
|
|
|
break;
|
|
|
|
else if (clen == 0)
|
|
|
|
clen = 1;
|
2002-06-13 12:48:50 +00:00
|
|
|
charct++;
|
2008-12-06 19:21:56 +00:00
|
|
|
if (wch != L'\n')
|
|
|
|
tmpll++;
|
2002-06-13 12:48:50 +00:00
|
|
|
len -= clen;
|
|
|
|
p += clen;
|
2008-12-06 19:21:56 +00:00
|
|
|
if (wch == L'\n') {
|
|
|
|
if (tmpll > llct)
|
|
|
|
llct = tmpll;
|
|
|
|
tmpll = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
++linect;
|
2008-12-06 19:21:56 +00:00
|
|
|
}
|
2002-08-11 10:52:13 +00:00
|
|
|
if (iswspace(wch))
|
1994-05-27 12:33:43 +00:00
|
|
|
gotsp = 1;
|
|
|
|
else if (gotsp) {
|
|
|
|
gotsp = 0;
|
|
|
|
++wordct;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-04-09 11:17:29 +00:00
|
|
|
if (domulti && MB_CUR_MAX > 1)
|
|
|
|
if (mbrtowc(NULL, NULL, 0, &mbs) == (size_t)-1 && !warned)
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_warn("%s", file != NULL ? file : "stdin");
|
2010-05-16 21:06:26 +00:00
|
|
|
if (doline)
|
1994-05-27 12:33:43 +00:00
|
|
|
tlinect += linect;
|
2010-05-16 21:06:26 +00:00
|
|
|
if (doword)
|
1994-05-27 12:33:43 +00:00
|
|
|
twordct += wordct;
|
2010-05-16 21:06:26 +00:00
|
|
|
if (dochar || domulti)
|
1994-05-27 12:33:43 +00:00
|
|
|
tcharct += charct;
|
2008-12-06 19:21:56 +00:00
|
|
|
if (dolongline) {
|
|
|
|
if (llct > tlongline)
|
|
|
|
tlongline = llct;
|
|
|
|
}
|
2010-05-16 21:06:26 +00:00
|
|
|
show_cnt(file, linect, wordct, charct, llct);
|
1994-05-27 12:33:43 +00:00
|
|
|
(void)close(fd);
|
1996-04-13 11:35:54 +00:00
|
|
|
return (0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2002-02-28 11:02:49 +00:00
|
|
|
static void
|
2009-12-29 08:54:03 +00:00
|
|
|
usage(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2014-11-05 04:02:25 +00:00
|
|
|
xo_error("usage: wc [-Lclmw] [file ...]\n");
|
1994-05-27 12:33:43 +00:00
|
|
|
exit(1);
|
|
|
|
}
|