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
|
/* Copyright (C) 2001-2012 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* %printer% IODevice */
#include "windows_.h"
#include "errno_.h"
#include "stdio_.h"
#include "string_.h"
#include "ctype_.h"
#include "fcntl_.h"
#include <io.h>
#include "gp.h"
#include "gscdefs.h"
#include "gserrors.h"
#include "gstypes.h"
#include "gsmemory.h" /* for gxiodev.h */
#include "gxiodev.h"
/* The MS-Windows printer IODevice */
/*
* This allows a MS-Windows printer to be specified as an
* output using
* -sOutputFile="%printer%HP DeskJet 500"
*
* To write to a remote printer on another server
* -sOutputFile="%printer%\\server\printer name"
*
* If you don't supply a printer name you will get
* Error: /undefinedfilename in --.outputpage--
* If the printer name is invalid you will get
* Error: /invalidfileaccess in --.outputpage--
*
* This is implemented by returning the file pointer
* for the write end of a pipe, and starting a thread
* which reads the pipe and writes to a Windows printer.
*
* The old method provided by gp_open_printer()
* -sOutputFile="\\spool\HP DeskJet 500"
* should not be used.
* The "\\spool\" is not a UNC name and causes confusion.
*/
static iodev_proc_init(mswin_printer_init);
static iodev_proc_fopen(mswin_printer_fopen);
static iodev_proc_fclose(mswin_printer_fclose);
const gx_io_device gs_iodev_printer = {
"%printer%", "FileSystem",
{mswin_printer_init, iodev_no_open_device,
NULL /*iodev_os_open_file */ , mswin_printer_fopen, mswin_printer_fclose,
iodev_no_delete_file, iodev_no_rename_file, iodev_no_file_status,
iodev_no_enumerate_files, NULL, NULL,
iodev_no_get_params, iodev_no_put_params
}
};
typedef struct tid_s {
unsigned long tid;
} tid_t;
void mswin_printer_thread(void *arg)
{
int fd = (int)arg;
char pname[gp_file_name_sizeof];
char data[4096];
HANDLE hprinter = INVALID_HANDLE_VALUE;
int count;
DWORD written;
DOC_INFO_1 di;
/* Read from pipe and write to Windows printer.
* First gp_file_name_sizeof bytes are name of the printer.
*/
if (read(fd, pname, sizeof(pname)) != sizeof(pname)) {
/* Didn't get the printer name */
close(fd);
return;
}
while ( (count = read(fd, data, sizeof(data))) > 0 ) {
if (hprinter == INVALID_HANDLE_VALUE) {
if (!gp_OpenPrinter(pname, &hprinter)) {
close(fd);
return;
}
di.pDocName = (LPTSTR)gs_product;
di.pOutputFile = NULL;
di.pDatatype = "RAW";
if (!StartDocPrinter(hprinter, 1, (LPBYTE) & di)) {
AbortPrinter(hprinter);
close(fd);
return;
}
}
if (!StartPagePrinter(hprinter)) {
AbortPrinter(hprinter);
close(fd);
return;
}
if (!WritePrinter(hprinter, (LPVOID) data, count, &written)) {
AbortPrinter(hprinter);
close(fd);
return;
}
}
if (hprinter != INVALID_HANDLE_VALUE) {
if (count == 0) {
/* EOF */
EndPagePrinter(hprinter);
EndDocPrinter(hprinter);
ClosePrinter(hprinter);
}
else {
/* Error */
AbortPrinter(hprinter);
}
}
close(fd);
}
/* The file device procedures */
static int
mswin_printer_init(gx_io_device * iodev, gs_memory_t * mem)
{
/* state -> structure containing thread handle */
iodev->state = gs_alloc_bytes(mem, sizeof(tid_t), "mswin_printer_init");
if (iodev->state == NULL)
return_error(gs_error_VMerror);
((tid_t *)iodev->state)->tid = -1;
return 0;
}
static int
mswin_printer_fopen(gx_io_device * iodev, const char *fname, const char *access,
FILE ** pfile, char *rfname, uint rnamelen)
{
DWORD version = GetVersion();
HANDLE hprinter;
int pipeh[2];
unsigned long tid;
HANDLE hthread;
char pname[gp_file_name_sizeof];
unsigned long *ptid = &((tid_t *)(iodev->state))->tid;
/* Win32s supports neither pipes nor Win32 printers. */
if (((HIWORD(version) & 0x8000) != 0) &&
((HIWORD(version) & 0x4000) == 0))
return_error(gs_error_invalidfileaccess);
/* Make sure that printer exists. */
if (!gp_OpenPrinter((LPTSTR)fname, &hprinter))
return_error(gs_error_invalidfileaccess);
ClosePrinter(hprinter);
/* Create a pipe to connect a FILE pointer to a Windows printer. */
if (_pipe(pipeh, 4096, _O_BINARY) != 0)
return_error(gs_fopen_errno_to_code(errno));
*pfile = fdopen(pipeh[1], (char *)access);
if (*pfile == NULL) {
close(pipeh[0]);
close(pipeh[1]);
return_error(gs_fopen_errno_to_code(errno));
}
/* start a thread to read the pipe */
tid = _beginthread(&mswin_printer_thread, 32768, (void *)(pipeh[0]));
if (tid == -1) {
fclose(*pfile);
close(pipeh[0]);
return_error(gs_error_invalidfileaccess);
}
/* Duplicate thread handle so we can wait on it
* even if original handle is closed by CRTL
* when the thread finishes.
*/
if (!DuplicateHandle(GetCurrentProcess(), (HANDLE)tid,
GetCurrentProcess(), &hthread,
0, FALSE, DUPLICATE_SAME_ACCESS)) {
fclose(*pfile);
return_error(gs_error_invalidfileaccess);
}
*ptid = (unsigned long)hthread;
/* Give the name of the printer to the thread by writing
* it to the pipe. This is avoids elaborate thread
* synchronisation code.
*/
strncpy(pname, fname, sizeof(pname));
fwrite(pname, 1, sizeof(pname), *pfile);
return 0;
}
static int
mswin_printer_fclose(gx_io_device * iodev, FILE * file)
{
unsigned long *ptid = &((tid_t *)(iodev->state))->tid;
HANDLE hthread;
fclose(file);
if (*ptid != -1) {
/* Wait until the print thread finishes before continuing */
hthread = (HANDLE)*ptid;
WaitForSingleObject(hthread, 60000);
CloseHandle(hthread);
*ptid = -1;
}
return 0;
}
|