NetBSD/usr.bin/column/column.c

314 lines
7.1 KiB
C
Raw Normal View History

2003-10-16 10:45:22 +04:00
/* $NetBSD: column.c,v 1.11 2003/10/16 06:46:46 itojun Exp $ */
1995-03-26 13:08:27 +04:00
1993-03-21 12:45:37 +03:00
/*
1995-03-26 13:08:27 +04:00
* Copyright (c) 1989, 1993, 1994
* 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) 1989, 1993, 1994\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
1995-03-26 13:08:27 +04:00
#if 0
1995-09-02 09:45:13 +04:00
static char sccsid[] = "@(#)column.c 8.4 (Berkeley) 5/4/95";
1995-03-26 13:08:27 +04:00
#endif
2003-10-16 10:45:22 +04:00
__RCSID("$NetBSD: column.c,v 1.11 2003/10/16 06:46:46 itojun Exp $");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/types.h>
#include <sys/ioctl.h>
1995-03-26 13:08:27 +04:00
#include <ctype.h>
#include <err.h>
#include <termios.h>
1995-03-26 13:08:27 +04:00
#include <limits.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
1995-03-26 13:08:27 +04:00
#include <stdlib.h>
1993-03-21 12:45:37 +03:00
#include <string.h>
1995-09-02 09:45:13 +04:00
#include <unistd.h>
1995-03-26 13:08:27 +04:00
void c_columnate __P((void));
void *emalloc __P((int));
void input __P((FILE *));
void maketbl __P((void));
int main __P((int, char **));
1995-03-26 13:08:27 +04:00
void print __P((void));
void r_columnate __P((void));
void usage __P((void));
1993-03-21 12:45:37 +03:00
int termwidth = 80; /* default terminal width */
int entries; /* number of records */
int eval; /* exit value */
int maxlength; /* longest record */
char **list; /* array of pointers to records */
char *separator = "\t "; /* field separator for table option */
1995-03-26 13:08:27 +04:00
int
1993-03-21 12:45:37 +03:00
main(argc, argv)
int argc;
char **argv;
{
struct winsize win;
FILE *fp;
int ch, tflag, xflag;
1998-07-28 23:22:54 +04:00
const char *p;
1993-03-21 12:45:37 +03:00
if (ioctl(1, TIOCGWINSZ, &win) == -1 || !win.ws_col) {
1997-10-18 17:07:39 +04:00
if ((p = getenv("COLUMNS")) != NULL)
1993-03-21 12:45:37 +03:00
termwidth = atoi(p);
} else
termwidth = win.ws_col;
1995-03-26 13:08:27 +04:00
tflag = xflag = 0;
while ((ch = getopt(argc, argv, "c:s:tx")) != -1)
1993-03-21 12:45:37 +03:00
switch(ch) {
case 'c':
termwidth = atoi(optarg);
break;
case 's':
separator = optarg;
break;
case 't':
tflag = 1;
break;
case 'x':
xflag = 1;
break;
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
if (!*argv)
input(stdin);
else for (; *argv; ++argv)
1997-10-18 17:07:39 +04:00
if ((fp = fopen(*argv, "r")) != NULL) {
1993-03-21 12:45:37 +03:00
input(fp);
(void)fclose(fp);
} else {
1995-03-26 13:08:27 +04:00
warn("%s", *argv);
1993-03-21 12:45:37 +03:00
eval = 1;
}
if (!entries)
exit(eval);
if (tflag)
maketbl();
else if (maxlength >= termwidth)
print();
else if (xflag)
c_columnate();
else
r_columnate();
exit(eval);
}
#define TAB 8
1995-03-26 13:08:27 +04:00
void
1993-03-21 12:45:37 +03:00
c_columnate()
{
1995-03-26 13:08:27 +04:00
int chcnt, col, cnt, endcol, numcols;
1993-03-21 12:45:37 +03:00
char **lp;
maxlength = (maxlength + TAB) & ~(TAB - 1);
numcols = termwidth / maxlength;
endcol = maxlength;
for (chcnt = col = 0, lp = list;; ++lp) {
chcnt += printf("%s", *lp);
if (!--entries)
break;
if (++col == numcols) {
chcnt = col = 0;
endcol = maxlength;
putchar('\n');
} else {
while ((cnt = ((chcnt + TAB) & ~(TAB - 1))) <= endcol) {
1993-03-21 12:45:37 +03:00
(void)putchar('\t');
chcnt = cnt;
}
endcol += maxlength;
}
}
if (chcnt)
putchar('\n');
}
1995-03-26 13:08:27 +04:00
void
1993-03-21 12:45:37 +03:00
r_columnate()
{
1995-03-26 13:08:27 +04:00
int base, chcnt, cnt, col, endcol, numcols, numrows, row;
1993-03-21 12:45:37 +03:00
maxlength = (maxlength + TAB) & ~(TAB - 1);
numcols = termwidth / maxlength;
numrows = entries / numcols;
if (entries % numcols)
++numrows;
for (row = 0; row < numrows; ++row) {
endcol = maxlength;
for (base = row, chcnt = col = 0; col < numcols; ++col) {
chcnt += printf("%s", list[base]);
if ((base += numrows) >= entries)
break;
while ((cnt = ((chcnt + TAB) & ~(TAB - 1))) <= endcol) {
1993-03-21 12:45:37 +03:00
(void)putchar('\t');
chcnt = cnt;
}
endcol += maxlength;
}
putchar('\n');
}
}
1995-03-26 13:08:27 +04:00
void
1993-03-21 12:45:37 +03:00
print()
{
1995-03-26 13:08:27 +04:00
int cnt;
char **lp;
1993-03-21 12:45:37 +03:00
for (cnt = entries, lp = list; cnt--; ++lp)
(void)printf("%s\n", *lp);
}
typedef struct _tbl {
char **list;
int cols, *len;
} TBL;
#define DEFCOLS 25
1995-03-26 13:08:27 +04:00
void
1993-03-21 12:45:37 +03:00
maketbl()
{
1995-03-26 13:08:27 +04:00
TBL *t;
int coloff, cnt;
char *p, **lp;
2003-10-16 10:45:22 +04:00
int *lens, *nlens, maxcols;
1993-03-21 12:45:37 +03:00
TBL *tbl;
2003-10-16 10:45:22 +04:00
char **cols, **ncols;
1993-03-21 12:45:37 +03:00
1995-03-26 13:08:27 +04:00
t = tbl = emalloc(entries * sizeof(TBL));
cols = emalloc((maxcols = DEFCOLS) * sizeof(char *));
lens = emalloc(maxcols * sizeof(int));
1993-03-21 12:45:37 +03:00
for (cnt = 0, lp = list; cnt < entries; ++cnt, ++lp, ++t) {
for (coloff = 0, p = *lp;
(cols[coloff] = strtok(p, separator)) != NULL;
1993-03-21 12:45:37 +03:00
p = NULL)
if (++coloff == maxcols) {
2003-10-16 10:45:22 +04:00
if (!(ncols = realloc(cols, (u_int)maxcols +
1995-03-26 13:08:27 +04:00
DEFCOLS * sizeof(char *))) ||
2003-10-16 10:45:22 +04:00
!(nlens = realloc(lens,
1993-03-21 12:45:37 +03:00
(u_int)maxcols + DEFCOLS * sizeof(int))))
err(1, "realloc");
2003-10-16 10:45:22 +04:00
cols = ncols;
lens = nlens;
1995-03-26 13:08:27 +04:00
memset((char *)lens + maxcols * sizeof(int),
0, DEFCOLS * sizeof(int));
1993-03-21 12:45:37 +03:00
maxcols += DEFCOLS;
}
1995-03-26 13:08:27 +04:00
t->list = emalloc(coloff * sizeof(char *));
t->len = emalloc(coloff * sizeof(int));
1993-03-21 12:45:37 +03:00
for (t->cols = coloff; --coloff >= 0;) {
t->list[coloff] = cols[coloff];
t->len[coloff] = strlen(cols[coloff]);
if (t->len[coloff] > lens[coloff])
lens[coloff] = t->len[coloff];
}
}
for (cnt = 0, t = tbl; cnt < entries; ++cnt, ++t) {
for (coloff = 0; coloff < t->cols - 1; ++coloff)
(void)printf("%s%*s", t->list[coloff],
lens[coloff] - t->len[coloff] + 2, " ");
(void)printf("%s\n", t->list[coloff]);
}
}
#define DEFNUM 1000
1995-03-26 13:08:27 +04:00
#define MAXLINELEN (LINE_MAX + 1)
1993-03-21 12:45:37 +03:00
1995-03-26 13:08:27 +04:00
void
1993-03-21 12:45:37 +03:00
input(fp)
1995-03-26 13:08:27 +04:00
FILE *fp;
1993-03-21 12:45:37 +03:00
{
static int maxentry;
1995-03-26 13:08:27 +04:00
int len;
char *p, buf[MAXLINELEN];
2003-10-16 10:45:22 +04:00
char **n;
1993-03-21 12:45:37 +03:00
if (!list)
1995-03-26 13:08:27 +04:00
list = emalloc((maxentry = DEFNUM) * sizeof(char *));
1993-03-21 12:45:37 +03:00
while (fgets(buf, MAXLINELEN, fp)) {
for (p = buf; *p && isspace((unsigned char)*p); ++p);
1993-03-21 12:45:37 +03:00
if (!*p)
continue;
1995-03-26 13:08:27 +04:00
if (!(p = strchr(p, '\n'))) {
warnx("line too long");
1993-03-21 12:45:37 +03:00
eval = 1;
continue;
}
*p = '\0';
len = p - buf;
if (maxlength < len)
maxlength = len;
if (entries == maxentry) {
maxentry += DEFNUM;
2003-10-16 10:45:22 +04:00
if (!(n = realloc(list,
1993-03-21 12:45:37 +03:00
(u_int)maxentry * sizeof(char *))))
err(1, "realloc");
2003-10-16 10:45:22 +04:00
list = n;
1993-03-21 12:45:37 +03:00
}
list[entries++] = strdup(buf);
}
}
1995-03-26 13:08:27 +04:00
void *
1993-03-21 12:45:37 +03:00
emalloc(size)
int size;
{
1995-03-26 13:08:27 +04:00
char *p;
1993-03-21 12:45:37 +03:00
1995-03-26 13:08:27 +04:00
if (!(p = malloc(size)))
err(1, "malloc");
1995-03-26 13:08:27 +04:00
memset(p, 0, size);
return (p);
1993-03-21 12:45:37 +03:00
}
1995-03-26 13:08:27 +04:00
void
1993-03-21 12:45:37 +03:00
usage()
{
1995-03-26 13:08:27 +04:00
1993-03-21 12:45:37 +03:00
(void)fprintf(stderr,
1997-07-01 10:39:38 +04:00
"usage: column [-tx] [-c columns] [-s sep] [file ...]\n");
1993-03-21 12:45:37 +03:00
exit(1);
}