summaryrefslogtreecommitdiff
path: root/base/gp_os2pr.c
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2013-07-23 16:24:19 +0100
committerChris Liddell <chris.liddell@artifex.com>2015-07-20 18:21:17 +0100
commit6948650efd3fb9e2a70b8cf16aca57e9d0b7eb0a (patch)
tree5c2a1c671c1d4521f8a770d1e69e3d4342718030 /base/gp_os2pr.c
parent7fd9e0be26e67c36f87733bc89ea07dc26d9f839 (diff)
downloadghostpdl-6948650efd3fb9e2a70b8cf16aca57e9d0b7eb0a.tar.gz
Commit of build_consolidation branch
Squashed into one commit (see branch for details of the evolution of the branch). This brings gpcl6 and gxps into the Ghostscript build system, and a shared set of graphics library object files for all the interpreters. Also, brings the same configuration options to the pcl and xps products as we have for Ghostscript.
Diffstat (limited to 'base/gp_os2pr.c')
-rw-r--r--base/gp_os2pr.c127
1 files changed, 127 insertions, 0 deletions
diff --git a/base/gp_os2pr.c b/base/gp_os2pr.c
new file mode 100644
index 000000000..4ea3ed871
--- /dev/null
+++ b/base/gp_os2pr.c
@@ -0,0 +1,127 @@
+/* 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 */
+
+#define INCL_DOS
+#define INCL_SPL
+#define INCL_SPLDOSPRINT
+#define INCL_SPLERRORS
+#define INCL_BASE
+#define INCL_ERRORS
+#define INCL_WIN
+#include <os2.h>
+
+#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_fopen(os2_printer_fopen);
+static iodev_proc_fclose(os2_printer_fclose);
+const gx_io_device gs_iodev_printer = {
+ "%printer%", "FileSystem",
+ {os2_printer_init, 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
+ }
+};
+
+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 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[256];
+
+ /* 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(pr->memory, "gs", pr->filename, access);
+ 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);
+ return 0;
+}