/* Copyright (C) 2001-2023 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., 39 Mesa Street, Suite 108A, San Francisco, CA 94129, USA, for further information. */ /* %printer% IODevice */ #define INCL_DOS #define INCL_SPL #define INCL_SPLDOSPRINT #define INCL_SPLERRORS #define INCL_BASE #define INCL_ERRORS #define INCL_WIN #include #include "errno_.h" #include "stdio_.h" #include "string_.h" #include "gp.h" #include "gscdefs.h" #include "gserrors.h" #include "gstypes.h" #include "gsmemory.h" /* for gxiodev.h */ #include "gxiodev.h" /* The OS/2 printer IODevice */ /* * This allows an OS/2 printer to be specified as an * output using * -sOutputFile="%printer%AppleLas" * where "AppleLas" is the physical name of the queue. * * 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 writing to a temporary file * then copying it to the spooler. * * A better method would be to return a file pointer * to the write end of a pipe, and starting a thread * which reads the pipe and writes to an OS/2 printer. * This method didn't work properly on the second * thread within ghostscript. */ static iodev_proc_init(os2_printer_init); static iodev_proc_finit(os2_printer_finit); static iodev_proc_fopen(os2_printer_fopen); static iodev_proc_fclose(os2_printer_fclose); const gx_io_device gs_iodev_printer = { "%printer%", "FileSystem", {os2_printer_init, os2_printer_finit, iodev_no_open_device, NULL /*iodev_os_open_file */ , os2_printer_fopen, os2_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 }, NULL, NULL }; typedef struct os2_printer_s { char queue[gp_file_name_sizeof]; char filename[gp_file_name_sizeof]; const gs_memory_t *memory; } os2_printer_t; /* The file device procedures */ static int os2_printer_init(gx_io_device * iodev, gs_memory_t * mem) { /* state -> structure containing thread handle */ iodev->state = gs_alloc_bytes(mem, sizeof(os2_printer_t), "os2_printer_init"); if (iodev->state == NULL) return_error(gs_error_VMerror); memset(iodev->state, 0, sizeof(os2_printer_t)); iodev->state->memory = mem; return 0; } static void os2_printer_finit(gx_io_device * iodev, gs_memory_t * mem) { gs_free_object(mem, iodev->state, "os2_printer_finit"); iodev->state = NULL; return; } static int os2_printer_fopen(gx_io_device * iodev, const char *fname, const char *access, FILE ** pfile, char *rfname, uint rnamelen) { os2_printer_t *pr = (os2_printer_t *)iodev->state; char driver_name[gp_file_name_sizeof]; gs_lib_ctx_t *ctx = mem->gs_lib_ctx; gs_fs_list_t *fs = ctx->core->fs; const size_t preflen = strlen(iodev->dname); const int size_t = strlen(fname); if (preflen + nlen >= gp_file_name_sizeof) return_error(gs_error_invalidaccess); memcpy(driver_name, iodev->dname, preflen); memcpy(driver_name + preflen, fname, nlen + 1); if (gp_validate_path(mem, driver_name, access) != 0) return gs_error_invalidfileaccess; /* First we try the open_printer method. */ /* Note that the loop condition here ensures we don't * trigger on the last registered fs entry (out standard * file one). */ *pfile = NULL; for (fs = ctx->core->fs; fs != NULL && fs->next != NULL; fs = fs->next) { int code = 0; if (fs->fs.open_printer) code = fs->fs.open_printer(mem, fs->secret, fname, access, pfile); if (code < 0) return code; if (*pfile != NULL) return code; } /* If nothing claimed that, then continue with the * standard OS/2 way of working. */ /* Make sure that printer exists. */ if (pm_find_queue(pr->memory, fname, driver_name)) { /* error, list valid queue names */ emprintf(pr->memory, "Invalid queue name. Use one of:\n"); pm_find_queue(pr->memory, NULL, NULL); return_error(gs_error_undefinedfilename); } strncpy(pr->queue, fname, sizeof(pr->queue)-1); /* Create a temporary file */ *pfile = gp_open_scratch_file_impl(pr->memory, "gs", pr->filename, access, 0); if (*pfile == NULL) return_error(gs_fopen_errno_to_code(errno)); return 0; } static int os2_printer_fclose(gx_io_device * iodev, FILE * file) { os2_printer_t *pr = (os2_printer_t *)iodev->state; fclose(file); pm_spool(pr->memory, pr->filename, pr->queue); unlink(pr->filename); /* unlink, not gp_unlink */ return 0; }