2012-05-21 22:05:09 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2015-02-14 20:02:41 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
2015-01-30 15:52:44 +00:00
|
|
|
#include <limits.h>
|
2015-02-01 00:24:03 +00:00
|
|
|
#include <stdint.h>
|
2012-05-21 22:05:09 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-11-13 18:54:28 +00:00
|
|
|
#include <unistd.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2012-05-21 22:05:09 +00:00
|
|
|
#include "text.h"
|
2014-12-05 21:32:08 +00:00
|
|
|
#include "utf.h"
|
2012-05-21 22:05:09 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
2013-06-14 18:20:47 +00:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2015-03-08 18:33:46 +00:00
|
|
|
eprintf("usage: %s [-c num] [file ...]\n", argv0);
|
2013-06-14 18:20:47 +00:00
|
|
|
}
|
|
|
|
|
2012-05-21 22:05:09 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
FILE *fp;
|
2015-03-08 18:33:46 +00:00
|
|
|
struct winsize w;
|
|
|
|
struct linebuf b = EMPTY_LINEBUF;
|
|
|
|
size_t chars = 65, maxlen = 0, i, j, k, len, bytes, cols, rows;
|
|
|
|
int cflag = 0;
|
2015-02-19 11:24:28 +00:00
|
|
|
char *p;
|
2012-05-21 22:05:09 +00:00
|
|
|
|
2013-06-14 18:20:47 +00:00
|
|
|
ARGBEGIN {
|
|
|
|
case 'c':
|
2014-01-20 12:03:01 +00:00
|
|
|
cflag = 1;
|
2015-03-08 18:33:46 +00:00
|
|
|
chars = estrtonum(EARGF(usage()), 1, MIN(LLONG_MAX, SIZE_MAX));
|
2013-06-14 18:20:47 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
2012-05-21 22:05:09 +00:00
|
|
|
|
2015-03-08 18:33:46 +00:00
|
|
|
if (!cflag) {
|
2015-02-19 11:24:28 +00:00
|
|
|
if ((p = getenv("COLUMNS")))
|
|
|
|
chars = estrtonum(p, 1, MIN(LLONG_MAX, SIZE_MAX));
|
|
|
|
else if (!ioctl(STDOUT_FILENO, TIOCGWINSZ, &w) && w.ws_col > 0)
|
2014-01-20 12:03:01 +00:00
|
|
|
chars = w.ws_col;
|
|
|
|
}
|
|
|
|
|
2015-03-08 18:33:46 +00:00
|
|
|
if (!argc) {
|
2012-05-21 22:05:09 +00:00
|
|
|
getlines(stdin, &b);
|
2015-03-08 18:33:46 +00:00
|
|
|
} else {
|
|
|
|
for (; *argv; argc--, argv++) {
|
|
|
|
if (!(fp = fopen(*argv, "r"))) {
|
|
|
|
weprintf("fopen %s:", *argv);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
getlines(fp, &b);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
2012-05-21 22:05:09 +00:00
|
|
|
}
|
|
|
|
|
2015-03-08 18:33:46 +00:00
|
|
|
for (i = 0; i < b.nlines; i++) {
|
|
|
|
len = utflen(b.lines[i]);
|
|
|
|
bytes = strlen(b.lines[i]);
|
|
|
|
if (len && bytes && b.lines[i][bytes - 1] == '\n') {
|
|
|
|
b.lines[i][bytes - 1] = '\0';
|
|
|
|
len--;
|
2014-12-05 21:32:08 +00:00
|
|
|
}
|
2014-11-13 17:29:30 +00:00
|
|
|
if (len > maxlen)
|
2012-05-21 22:05:09 +00:00
|
|
|
maxlen = len;
|
|
|
|
}
|
|
|
|
|
2015-03-08 18:33:46 +00:00
|
|
|
for (cols = 1; (cols + 1) * maxlen + cols <= chars; cols++);
|
|
|
|
rows = b.nlines / cols + (b.nlines % cols > 0);
|
2012-05-21 22:05:09 +00:00
|
|
|
|
2015-03-08 18:33:46 +00:00
|
|
|
for (i = 0; i < rows; i++) {
|
|
|
|
for (j = 0; j < cols && i + j * rows < b.nlines; j++) {
|
|
|
|
len = utflen(b.lines[i + j * rows]);
|
|
|
|
fputs(b.lines[i + j * rows], stdout);
|
|
|
|
if (j < cols - 1)
|
|
|
|
for (k = len; k < maxlen + 1; k++)
|
|
|
|
putchar(' ');
|
2012-05-21 22:05:09 +00:00
|
|
|
}
|
2015-03-08 18:33:46 +00:00
|
|
|
putchar('\n');
|
2012-05-21 22:05:09 +00:00
|
|
|
}
|
|
|
|
|
2014-10-02 22:46:04 +00:00
|
|
|
return 0;
|
2012-05-21 22:05:09 +00:00
|
|
|
}
|