wc: reduce source cruft, make it so that "wc -c" (one option, no filenames)
will not print leading blanks.
This commit is contained in:
parent
530c3ef818
commit
3ed001ff26
@ -41,10 +41,6 @@
|
|||||||
* for which 'wc -c' should output '0'.
|
* for which 'wc -c' should output '0'.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
|
||||||
#ifdef CONFIG_LOCALE_SUPPORT
|
#ifdef CONFIG_LOCALE_SUPPORT
|
||||||
@ -59,6 +55,11 @@
|
|||||||
#define isspace_given_isprint(c) ((c) == ' ')
|
#define isspace_given_isprint(c) ((c) == ' ')
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//#define COUNT_T unsigned long long
|
||||||
|
//#define COUNT_FMT "llu"
|
||||||
|
#define COUNT_T unsigned
|
||||||
|
#define COUNT_FMT "u"
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
WC_LINES = 0,
|
WC_LINES = 0,
|
||||||
WC_WORDS = 1,
|
WC_WORDS = 1,
|
||||||
@ -66,56 +67,45 @@ enum {
|
|||||||
WC_LENGTH = 3
|
WC_LENGTH = 3
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Note: If this changes, remember to change the initialization of
|
|
||||||
* 'name' in wc_main. It needs to point to the terminating nul. */
|
|
||||||
static const char wc_opts[] = "lwcL"; /* READ THE WARNING ABOVE! */
|
|
||||||
|
|
||||||
enum {
|
|
||||||
OP_INC_LINE = 1, /* OP_INC_LINE must be 1. */
|
|
||||||
OP_SPACE = 2,
|
|
||||||
OP_NEWLINE = 4,
|
|
||||||
OP_TAB = 8,
|
|
||||||
OP_NUL = 16,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Note: If fmt_str changes, the offsets to 's' in the OUTPUT section
|
|
||||||
* will need to be updated. */
|
|
||||||
static const char fmt_str[] = " %7u\0 %s\n";
|
|
||||||
static const char total_str[] = "total";
|
|
||||||
|
|
||||||
int wc_main(int argc, char **argv)
|
int wc_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
const char *s;
|
const char *s, *arg;
|
||||||
unsigned int *pcounts;
|
const char *start_fmt = "%9"COUNT_FMT;
|
||||||
unsigned int counts[4];
|
const char *fname_fmt = " %s\n";
|
||||||
unsigned int totals[4];
|
COUNT_T *pcounts;
|
||||||
unsigned int linepos;
|
COUNT_T counts[4];
|
||||||
unsigned int u;
|
COUNT_T totals[4];
|
||||||
|
unsigned linepos;
|
||||||
|
unsigned u;
|
||||||
int num_files = 0;
|
int num_files = 0;
|
||||||
int c;
|
int c;
|
||||||
char status = EXIT_SUCCESS;
|
char status = EXIT_SUCCESS;
|
||||||
char in_word;
|
char in_word;
|
||||||
char print_type;
|
char print_type;
|
||||||
|
|
||||||
print_type = bb_getopt_ulflags(argc, argv, wc_opts);
|
print_type = bb_getopt_ulflags(argc, argv, "lwcL");
|
||||||
|
|
||||||
if (print_type == 0) {
|
if (print_type == 0) {
|
||||||
print_type = (1 << WC_LINES) | (1 << WC_WORDS) | (1 << WC_CHARS);
|
print_type = (1 << WC_LINES) | (1 << WC_WORDS) | (1 << WC_CHARS);
|
||||||
}
|
}
|
||||||
|
|
||||||
argv += optind;
|
argv += optind;
|
||||||
if (!*argv) {
|
if (!argv[0]) {
|
||||||
*--argv = (char *) bb_msg_standard_input;
|
*--argv = (char *) bb_msg_standard_input;
|
||||||
|
fname_fmt = "\n";
|
||||||
|
if (!((print_type-1) & print_type)) /* exactly one option? */
|
||||||
|
start_fmt = "%"COUNT_FMT;
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(totals, 0, sizeof(totals));
|
memset(totals, 0, sizeof(totals));
|
||||||
|
|
||||||
pcounts = counts;
|
pcounts = counts;
|
||||||
|
|
||||||
do {
|
while ((arg = *argv++) != 0) {
|
||||||
++num_files;
|
++num_files;
|
||||||
if (!(fp = bb_wfopen_input(*argv))) {
|
fp = bb_wfopen_input(arg);
|
||||||
|
if (!fp) {
|
||||||
status = EXIT_FAILURE;
|
status = EXIT_FAILURE;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -156,7 +146,7 @@ int wc_main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
} else if (c == EOF) {
|
} else if (c == EOF) {
|
||||||
if (ferror(fp)) {
|
if (ferror(fp)) {
|
||||||
bb_perror_msg("%s", *argv);
|
bb_perror_msg("%s", arg);
|
||||||
status = EXIT_FAILURE;
|
status = EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
--counts[WC_CHARS];
|
--counts[WC_CHARS];
|
||||||
@ -180,24 +170,20 @@ int wc_main(int argc, char **argv)
|
|||||||
bb_fclose_nonstdin(fp);
|
bb_fclose_nonstdin(fp);
|
||||||
|
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
s = fmt_str + 1; /* Skip the leading space on 1st pass. */
|
/* coreutils wc tries hard to print pretty columns
|
||||||
|
* (saves results for all files, find max col len etc...)
|
||||||
|
* we won't try that hard, it will bloat us too much */
|
||||||
|
s = start_fmt;
|
||||||
u = 0;
|
u = 0;
|
||||||
do {
|
do {
|
||||||
if (print_type & (1 << u)) {
|
if (print_type & (1 << u)) {
|
||||||
bb_printf(s, pcounts[u]);
|
bb_printf(s, pcounts[u]);
|
||||||
s = fmt_str; /* Ok... restore the leading space. */
|
s = " %9"COUNT_FMT; /* Ok... restore the leading space. */
|
||||||
}
|
}
|
||||||
totals[u] += pcounts[u];
|
totals[u] += pcounts[u];
|
||||||
} while (++u < 4);
|
} while (++u < 4);
|
||||||
|
bb_printf(fname_fmt, arg);
|
||||||
s += 8; /* Set the format to the empty string. */
|
}
|
||||||
|
|
||||||
if (*argv != bb_msg_standard_input) {
|
|
||||||
s -= 3; /* We have a name, so do %s conversion. */
|
|
||||||
}
|
|
||||||
bb_printf(s, *argv);
|
|
||||||
|
|
||||||
} while (*++argv);
|
|
||||||
|
|
||||||
/* If more than one file was processed, we want the totals. To save some
|
/* If more than one file was processed, we want the totals. To save some
|
||||||
* space, we set the pcounts ptr to the totals array. This has the side
|
* space, we set the pcounts ptr to the totals array. This has the side
|
||||||
@ -205,8 +191,9 @@ int wc_main(int argc, char **argv)
|
|||||||
* irrelavent since we no longer need it. */
|
* irrelavent since we no longer need it. */
|
||||||
if (num_files > 1) {
|
if (num_files > 1) {
|
||||||
num_files = 0; /* Make sure we don't get here again. */
|
num_files = 0; /* Make sure we don't get here again. */
|
||||||
*--argv = (char *) total_str;
|
arg = "total";
|
||||||
pcounts = totals;
|
pcounts = totals;
|
||||||
|
--argv;
|
||||||
goto OUTPUT;
|
goto OUTPUT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user