#include <sys/types.h>
#include <ctype.h>
#include <err.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <string.h>
#include <unistd.h>
#define BIGBUFSIZ 5 * BUFSIZ
struct openfile {
FILE *fp;
int minwidth;
int maxwidth;
short eof;
short pad;
char eol;
char align;
char *sepstring;
} *input;
int inputsize;
int output;
int nofinalnl;
char line[BIGBUFSIZ];
char *linep;
int mbswidth_truncate(char *, int);
void usage(void);
char *gatherline(struct openfile *);
void getargs(int, char *[]);
char *pad(struct openfile *);
int
main(int argc, char *argv[])
{
int i;
setlocale(LC_CTYPE, "");
if (pledge("stdio rpath", NULL) == -1)
err(1, "pledge");
getargs(argc, argv);
if (inputsize == 0)
usage();
if (pledge("stdio", NULL) == -1)
err(1, "pledge");
for (;;) {
linep = line;
output = 0;
for (i = 0; i < inputsize && input[i].fp != NULL; i++)
linep = gatherline(&input[i]);
if (output == 0)
exit(0);
fputs(line, stdout);
fputs(input[i].sepstring, stdout);
if (!nofinalnl)
putchar('\n');
}
}
void
getargs(int argc, char *argv[])
{
struct openfile *ip;
const char *errstr;
char *p, *q;
void *tmp;
int ch, P, S, F, T;
input = calloc(inputsize+1, sizeof *input);
if (input == NULL)
errx(1, "too many files");
ip = &input[inputsize];
P = S = F = T = 0;
while (optind < argc) {
switch (ch = getopt(argc, argv, "F:f:P:p:S:s:T:t:")) {
case 'P': case 'p':
P = (ch == 'P');
ip->pad = 1;
case 'F': case 'f':
F = (ch == 'F');
p = optarg;
if (*p == '0' || *p == '-')
ip->align = *p++;
else
ip->align = ' ';
if ((q = strchr(p, '.')) != NULL)
*q++ = '\0';
if (*p != '\0') {
ip->minwidth = strtonum(p, 1, INT_MAX,
&errstr);
if (errstr != NULL)
errx(1, "minimum width is %s: %s",
errstr, p);
}
if (q != NULL) {
ip->maxwidth = strtonum(q, 1, INT_MAX,
&errstr);
if (errstr != NULL)
errx(1, "maximum width is %s: %s",
errstr, q);
} else
ip->maxwidth = INT_MAX;
break;
case 'S': case 's':
S = (ch == 'S');
ip->sepstring = optarg;
break;
case 'T': case 't':
T = (ch == 'T');
if (strlen(optarg) != 1)
usage();
ip->eol = optarg[0];
nofinalnl = 1;
break;
case -1:
if (optind >= argc)
break;
if (strcmp(argv[optind], "-") == 0)
ip->fp = stdin;
else if ((ip->fp = fopen(argv[optind], "r")) == NULL)
err(1, "%s", argv[optind]);
ip->pad = P;
if (ip->sepstring == NULL)
ip->sepstring = S ? (ip-1)->sepstring : "";
if (ip->eol == '\0')
ip->eol = T ? (ip-1)->eol : '\n';
if (ip->align == '\0') {
if (F || P) {
ip->align = (ip-1)->align;
ip->minwidth = (ip-1)->minwidth;
ip->maxwidth = (ip-1)->maxwidth;
} else
ip->maxwidth = INT_MAX;
}
++inputsize;
tmp = recallocarray(input, inputsize,
inputsize+1, sizeof *input);
if (tmp == NULL)
errx(1, "too many files");
input = tmp;
ip = &input[inputsize];
optind++;
break;
default:
usage();
}
}
ip->fp = NULL;
if (ip->sepstring == NULL)
ip->sepstring = "";
}
char *
pad(struct openfile *ip)
{
size_t n;
char *lp = linep;
int i = 0;
n = strlcpy(lp, ip->sepstring, line + sizeof(line) - lp);
lp += (n < line + sizeof(line) - lp) ? n : strlen(lp);
if (ip->pad)
while (i++ < ip->minwidth && lp + 1 < line + sizeof(line))
*lp++ = ' ';
*lp = '\0';
return (lp);
}
char *
gatherline(struct openfile *ip)
{
size_t n;
char s[BUFSIZ];
char *p;
char *lp = linep;
char *end = s + BUFSIZ - 1;
int c, width;
if (ip->eof)
return (pad(ip));
for (p = s; (c = fgetc(ip->fp)) != EOF && p < end; p++)
if ((*p = c) == ip->eol)
break;
*p = '\0';
if (c == EOF) {
ip->eof = 1;
if (ip->fp == stdin)
fclose(stdin);
return (pad(ip));
}
output++;
n = strlcpy(lp, ip->sepstring, line + sizeof(line) - lp);
lp += (n < line + sizeof(line) - lp) ? n : strlen(lp);
width = mbswidth_truncate(s, ip->maxwidth);
if (ip->align != '-')
while (width++ < ip->minwidth && lp + 1 < line + sizeof(line))
*lp++ = ip->align;
n = strlcpy(lp, s, line + sizeof(line) - lp);
lp += (n < line + sizeof(line) - lp) ? n : strlen(lp);
if (ip->align == '-')
while (width++ < ip->minwidth && lp + 1 < line + sizeof(line))
*lp++ = ' ';
*lp = '\0';
return (lp);
}
void
usage(void)
{
extern char *__progname;
fprintf(stderr,
"usage: %s [-F|f min.max] [-P|p min.max] [-S|s sepstring] [-T|t c] file ...\n",
__progname);
exit(1);
}