1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
/*
* $XFree86: xc/programs/xterm/print.c,v 1.3.2.3 1998/04/29 11:18:07 dawes Exp $
*/
/************************************************************
Copyright 1997 by Thomas E. Dickey <dickey@clark.net>
All Rights Reserved
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name(s) of the above copyright
holders shall not be used in advertising or otherwise to promote the
sale, use or other dealings in this Software without prior written
authorization.
********************************************************/
#ifdef HAVE_CONFIG_H
#include <xtermcfg.h>
#endif
#include <stdio.h>
#include "ptyx.h"
#include "data.h"
#include "error.h"
#include "xterm.h"
#define Strlen(a) strlen((char *)a)
#define Strcmp(a,b) strcmp((char *)a,(char *)b)
#define Strncmp(a,b,c) strncmp((char *)a,(char *)b,c)
#define SGR_MASK (BOLD|BLINK|UNDERLINE|INVERSE)
static void charToPrinter PROTO((int chr));
static void printCursorLine PROTO((void));
static void printLine PROTO((int row, int chr));
static void printPage PROTO((void));
static void send_CharSet PROTO((int row));
static void send_SGR PROTO((unsigned attr));
static void stringToPrinter PROTO((char * str));
static FILE *Printer;
static void printCursorLine()
{
register TScreen *screen = &term->screen;
TRACE(("printCursorLine\n"))
printLine(screen->cur_row, '\n');
}
/*
* DEC's manual doesn't document whether trailing blanks are removed, or what
* happens with a line that is entirely blank. This function prints the
* characters that xterm would allow as a selection (which may include blanks).
*/
static void printLine(row, chr)
int row;
int chr;
{
register TScreen *screen = &term->screen;
Char *c = SCRN_BUF_CHARS(screen, row);
Char *a = SCRN_BUF_ATTRS(screen, row);
Char attr = *a & SGR_MASK;
int last = screen->max_col;
TRACE(("printLine(row=%d, chr=%d)\n", row, chr))
while (last > 0) {
if ((a[last-1] & CHARDRAWN) == 0)
last--;
else
break;
}
if (last) {
send_CharSet(row); /* FIXME: is this needed? */
send_SGR(0);
while (last--) {
if (((*a & SGR_MASK) != attr) && *c) {
send_SGR(attr = (*a & SGR_MASK));
}
charToPrinter(*c ? *c : ' ');
c++;
a++;
}
send_SGR(0);
}
charToPrinter('\r');
charToPrinter(chr);
}
static void printPage()
{
register TScreen *screen = &term->screen;
int top = screen->printer_extent ? 0 : screen->top_marg;
int bot = screen->printer_extent ? screen->max_row : screen->bot_marg;
TRACE(("printPage, rows %d..%d\n", top, bot))
while (top <= bot)
printLine(top++, '\n');
if (screen->printer_formfeed)
charToPrinter('\f');
}
static void send_CharSet(row)
int row;
{
#if OPT_DEC_CHRSET
register TScreen *screen = &term->screen;
char *msg = 0;
switch (SCRN_BUF_CSETS(screen, row)[0]) {
case CSET_SWL:
msg = "\033#5";
break;
case CSET_DHL_TOP:
msg = "\033#3";
break;
case CSET_DHL_BOT:
msg = "\033#4";
break;
case CSET_DWL:
msg = "\033#6";
break;
}
if (msg != 0)
stringToPrinter(msg);
#endif /* OPT_DEC_CHRSET */
}
static void send_SGR(attr)
unsigned attr;
{
char msg[80];
strcpy(msg, "\033[0");
if (attr & BOLD)
strcat(msg, ";1");
if (attr & UNDERLINE)
strcat(msg, ";2");
if (attr & BLINK)
strcat(msg, ";5");
if (attr & INVERSE) /* typo? DEC documents this as invisible */
strcat(msg, ";7");
strcat(msg, "m");
stringToPrinter(msg);
}
/*
* This implementation only knows how to write to a pipe.
*/
static void charToPrinter(chr)
int chr;
{
static int initialized;
if (!initialized) {
FILE *input;
int my_pipe[2];
int my_pid;
int c;
register TScreen *screen = &term->screen;
if (pipe(my_pipe))
SysError (ERROR_FORK);
if ((my_pid = fork()) < 0)
SysError (ERROR_FORK);
if (my_pid == 0) {
close(my_pipe[1]); /* printer is silent */
setgid (screen->gid);
setuid (screen->uid);
Printer = popen(screen->printer_command, "w");
input = fdopen(my_pipe[0], "r");
while ((c = fgetc(input)) != EOF) {
fputc(c, Printer);
if (chr == '\r' || chr == '\n' || chr == '\f')
fflush(Printer);
}
exit(0);
} else {
close(my_pipe[0]); /* won't read from printer */
Printer = fdopen(my_pipe[1], "w");
}
initialized++;
}
if (Printer != 0) {
fputc(chr, Printer);
if (chr == '\r' || chr == '\n' || chr == '\f')
fflush(Printer);
}
}
static void stringToPrinter(str)
char *str;
{
while (*str)
charToPrinter(*str++);
}
/*
* This module implements the MC (Media Copy) and related printing control
* sequences for VTxxx emulation. This is based on the description in the
* VT330/VT340 Programmer Reference Manual EK-VT3XX-TP-001 (Digital Equipment
* Corp., March 1987).
*/
void xtermMediaControl (param, private)
int param;
int private;
{
register TScreen *screen = &term->screen;
TRACE(("MediaCopy param=%d, private=%d\n", param, private))
if (private) {
switch (param) {
case 1:
printCursorLine();
break;
case 4:
screen->printer_controlmode = 0;
TRACE(("Reset autoprint mode\n"))
break;
case 5:
screen->printer_controlmode = 1;
TRACE(("Set autoprint mode\n"))
break;
}
} else {
switch (param) {
case -1:
case 0:
printPage();
break;
case 4:
screen->printer_controlmode = 0;
TRACE(("Reset printer controller mode\n"))
break;
case 5:
screen->printer_controlmode = 2;
TRACE(("Set printer controller mode\n"))
break;
}
}
}
/*
* When in autoprint mode, the printer prints a line from the screen when you
* move the cursor off that line with an LF, FF, or VT character, or an
* autowrap occurs. The printed line ends with a CR and the character (LF, FF
* or VT) that moved the cursor off the previous line.
*/
void xtermAutoPrint(chr)
int chr;
{
register TScreen *screen = &term->screen;
if (screen->printer_controlmode == 1) {
TRACE(("AutoPrint %d\n", chr))
printLine(screen->cursor_row, chr);
if (Printer != 0)
fflush(Printer);
}
}
/*
* When in printer controller mode, the terminal send received characters to
* the printer without displaying them on the screen. The terminal sends all
* characters and control sequences to the printer, except NUL, XON, XOFF, and
* the printer controller sequences.
*
* This function eats characters, returning 0 as long as it must buffer or
* divert to the printer. We're only invoked here when in printer controller
* mode, and handle the exit from that mode.
*/
#define LB '['
int xtermPrinterControl(chr)
int chr;
{
register TScreen *screen = &term->screen;
static struct {
Char seq[5];
int active;
} tbl[] = {
{ { CSI, '5', 'i' }, 2 },
{ { CSI, '4', 'i' }, 0 },
{ { ESC, LB, '5', 'i' }, 2 },
{ { ESC, LB, '4', 'i' }, 0 },
};
static Char bfr[10];
static Size_t length;
Size_t n;
TRACE(("In printer:%d\n", chr))
switch (chr) {
case 0:
case 'Q' & 0x1f:
case 'S' & 0x1f:
return 0; /* ignored by application */
case CSI:
case ESC:
case '[':
case '4':
case '5':
case 'i':
bfr[length++] = chr;
for (n = 0; n < sizeof(tbl)/sizeof(tbl[0]); n++) {
Size_t len = Strlen(tbl[n].seq);
if (length == len
&& Strcmp(bfr, tbl[n].seq) == 0) {
screen->printer_controlmode = tbl[n].active;
length = 0;
return 0;
} else if (len > length
&& Strncmp(bfr, tbl[n].seq, length) == 0) {
return 0;
}
}
length--;
/* FALLTHRU */
default:
for (n = 0; n < length; n++)
charToPrinter(bfr[n]);
bfr[0] = chr;
length = 1;
return 0;
}
}
|