1 /* $NetBSD: lpf.c,v 1.6 1997/10/05 15:12:05 mrg Exp $ */ 2 /* 3 * Copyright (c) 1983, 1993 4 * The Regents of the University of California. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 3. All advertising materials mentioning features or use of this software 15 * must display the following acknowledgement: 16 * This product includes software developed by the University of 17 * California, Berkeley and its contributors. 18 * 4. Neither the name of the University nor the names of its contributors 19 * may be used to endorse or promote products derived from this software 20 * without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 */ 34 35 #include <sys/cdefs.h> 36 #ifndef lint 37 __COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\ 38 The Regents of the University of California. All rights reserved.\n"); 39 #if 0 40 static char sccsid[] = "@(#)lpf.c 8.1 (Berkeley) 6/6/93"; 41 #else 42 __RCSID("$NetBSD: lpf.c,v 1.6 1997/10/05 15:12:05 mrg Exp $"); 43 #endif 44 #endif /* not lint */ 45 46 /* 47 * filter which reads the output of nroff and converts lines 48 * with ^H's to overwritten lines. Thus this works like 'ul' 49 * but is much better: it can handle more than 2 overwrites 50 * and it is written with some style. 51 * modified by kls to use register references instead of arrays 52 * to try to gain a little speed. 53 */ 54 55 #include <signal.h> 56 #include <unistd.h> 57 #include <stdlib.h> 58 #include <stdio.h> 59 60 #define MAXWIDTH 132 61 #define MAXREP 10 62 63 char buf[MAXREP][MAXWIDTH]; 64 int maxcol[MAXREP] = {-1}; 65 int lineno; 66 int width = 132; /* default line length */ 67 int length = 66; /* page length */ 68 int indent; /* indentation length */ 69 int npages = 1; 70 int literal; /* print control characters */ 71 char *name; /* user's login name */ 72 char *host; /* user's machine name */ 73 char *acctfile; /* accounting information file */ 74 75 int main __P((int, char *[])); 76 77 int 78 main(argc, argv) 79 int argc; 80 char *argv[]; 81 { 82 FILE *p = stdin, *o = stdout; 83 int i, col; 84 char *cp; 85 int done, linedone, maxrep, ch; 86 char *limit; 87 88 while (--argc) { 89 if (*(cp = *++argv) == '-') { 90 switch (cp[1]) { 91 case 'n': 92 argc--; 93 name = *++argv; 94 break; 95 96 case 'h': 97 argc--; 98 host = *++argv; 99 break; 100 101 case 'w': 102 if ((i = atoi(&cp[2])) > 0 && i <= MAXWIDTH) 103 width = i; 104 break; 105 106 case 'l': 107 length = atoi(&cp[2]); 108 break; 109 110 case 'i': 111 indent = atoi(&cp[2]); 112 break; 113 114 case 'c': /* Print control chars */ 115 literal++; 116 break; 117 } 118 } else 119 acctfile = cp; 120 } 121 122 for (cp = buf[0], limit = buf[MAXREP]; cp < limit; *cp++ = ' '); 123 done = 0; 124 125 while (!done) { 126 col = indent; 127 maxrep = -1; 128 linedone = 0; 129 while (!linedone) { 130 switch (ch = getc(p)) { 131 case EOF: 132 linedone = done = 1; 133 ch = '\n'; 134 break; 135 136 case '\f': 137 lineno = length; 138 case '\n': 139 if (maxrep < 0) 140 maxrep = 0; 141 linedone = 1; 142 break; 143 144 case '\b': 145 if (--col < indent) 146 col = indent; 147 break; 148 149 case '\r': 150 col = indent; 151 break; 152 153 case '\t': 154 col = ((col - indent) | 07) + indent + 1; 155 break; 156 157 case '\031': 158 /* 159 * lpd needs to use a different filter to 160 * print data so stop what we are doing and 161 * wait for lpd to restart us. 162 */ 163 if ((ch = getchar()) == '\1') { 164 fflush(stdout); 165 kill(getpid(), SIGSTOP); 166 break; 167 } else { 168 ungetc(ch, stdin); 169 ch = '\031'; 170 } 171 172 default: 173 if (col >= width || (!literal && ch < ' ')) { 174 col++; 175 break; 176 } 177 cp = &buf[0][col]; 178 for (i = 0; i < MAXREP; i++) { 179 if (i > maxrep) 180 maxrep = i; 181 if (*cp == ' ') { 182 *cp = ch; 183 if (col > maxcol[i]) 184 maxcol[i] = col; 185 break; 186 } 187 cp += MAXWIDTH; 188 } 189 col++; 190 break; 191 } 192 } 193 194 /* print out lines */ 195 for (i = 0; i <= maxrep; i++) { 196 for (cp = buf[i], limit = cp+maxcol[i]; cp <= limit;) { 197 putc(*cp, o); 198 *cp++ = ' '; 199 } 200 if (i < maxrep) 201 putc('\r', o); 202 else 203 putc(ch, o); 204 if (++lineno >= length) { 205 fflush(o); 206 npages++; 207 lineno = 0; 208 } 209 maxcol[i] = -1; 210 } 211 } 212 if (lineno) { /* be sure to end on a page boundary */ 213 putchar('\f'); 214 npages++; 215 } 216 if (name && acctfile && access(acctfile, 02) >= 0 && 217 freopen(acctfile, "a", stdout) != NULL) { 218 printf("%7.2f\t%s:%s\n", (float)npages, host, name); 219 } 220 exit(0); 221 } 222