#include <sys/cdefs.h>
#ifndef lint
__COPYRIGHT("@(#) Copyright (c) 1983, 1993\
The Regents of the University of California. All rights reserved.");
#if 0
static char sccsid[] = "@(#)lpf.c 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: lpf.c,v 1.15 2019/02/03 03:19:30 mrg Exp $");
#endif
#endif
#include <signal.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#define MAXWIDTH 132
#define MAXREP 10
static char buf[MAXREP][MAXWIDTH];
static int maxcol[MAXREP] = {-1};
static int lineno;
static int width = 132;
static int length = 66;
static int indent;
static int npages = 1;
static int literal;
static char *name;
static char *host;
static char *acctfile;
static int crnl;
static int need_cr;
__dead static void usage(void);
int
main(int argc, char *argv[])
{
FILE *p = stdin, *o = stdout;
int i, col;
char *cp;
int done, linedone, maxrep, ch, prch;
char *limit;
while ((ch = getopt(argc, argv, "cfh:i:j:l:n:w:")) != -1)
switch (ch) {
case 'n':
name = optarg;
break;
case 'h':
host = optarg;
break;
case 'w':
if ((i = atoi(optarg)) > 0 && i <= MAXWIDTH)
width = i;
break;
case 'l':
length = atoi(optarg);
break;
case 'i':
indent = atoi(optarg);
break;
case 'c':
literal++;
break;
case 'f':
crnl++;
break;
case 'j':
break;
default:
usage();
}
argc -= optind;
argv += optind;
if (argc)
acctfile = *argv;
memset(buf, ' ', sizeof(buf));
done = 0;
while (!done) {
col = indent;
maxrep = -1;
linedone = 0;
prch = ch = 0;
need_cr = 0;
while (!linedone) {
prch = ch;
switch (ch = getc(p)) {
case EOF:
linedone = done = 1;
ch = '\n';
break;
case '\f':
lineno = length;
case '\n':
if (crnl && prch != '\r')
need_cr = 1;
if (maxrep < 0)
maxrep = 0;
linedone = 1;
break;
case '\b':
if (--col < indent)
col = indent;
break;
case '\r':
col = indent;
break;
case '\t':
col = ((col - indent) | 07) + indent + 1;
break;
case '\031':
if ((ch = getchar()) == '\1') {
fflush(stdout);
kill(getpid(), SIGSTOP);
break;
} else {
ungetc(ch, stdin);
ch = '\031';
}
default:
if (col >= width || (!literal && ch < ' ')) {
col++;
break;
}
cp = &buf[0][col];
for (i = 0; i < MAXREP; i++) {
if (i > maxrep)
maxrep = i;
if (*cp == ' ') {
*cp = ch;
if (col > maxcol[i])
maxcol[i] = col;
break;
}
cp += MAXWIDTH;
}
col++;
break;
}
}
for (i = 0; i <= maxrep; i++) {
for (cp = buf[i], limit = cp+maxcol[i]; cp <= limit;) {
putc(*cp, o);
*cp++ = ' ';
}
if (i < maxrep)
putc('\r', o);
else {
if (need_cr)
putc('\r', o);
putc(ch, o);
}
if (++lineno >= length) {
fflush(o);
npages++;
lineno = 0;
}
maxcol[i] = -1;
}
}
if (lineno) {
putchar('\f');
npages++;
}
if (name && acctfile && access(acctfile, 02) >= 0 &&
freopen(acctfile, "a", stdout) != NULL) {
printf("%7.2f\t%s:%s\n", (float)npages, host, name);
}
exit(0);
}
static void
usage(void)
{
fprintf(stderr,
"usage: lpf [-c] [-f] [-h host] [-i indent] [-l length] [-n name] [-w width] [acctfile]\n");
exit(1);
}