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
|
/* 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.
*/
/* dxmainc.c */
/*
* Ghostscript frontend which provides a console to the Ghostscript
* shared library. Load time linking to libgs.so
* This does not support the display device. Use dxmain.c/gsx for that,
* or modify this program to use bare Xlib calls.
* Compile using
* gcc -o gsc dxmainc.c -lgs
*
* The ghostscript library needs to be compiled with
* gcc -fPIC -g -c -Wall file.c
* gcc -shared -Wl,-soname,libgs.so.7 -o libgs.so.7.00 file.o -lc
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#define __PROTOTYPES__
#include "ierrors.h"
#include "iapi.h"
const char start_string[] = "systemdict /start get exec\n";
static int gsdll_stdin(void *instance, char *buf, int len);
static int gsdll_stdout(void *instance, const char *str, int len);
static int gsdll_stdout(void *instance, const char *str, int len);
/*********************************************************************/
/* stdio functions */
/* callback for reading stdin */
/* Use async input */
static int
gsdll_stdin(void *instance, char *buf, int len)
{
return read(fileno(stdin), buf, len);
}
static int
gsdll_stdout(void *instance, const char *str, int len)
{
fwrite(str, 1, len, stdout);
fflush(stdout);
return len;
}
static int
gsdll_stderr(void *instance, const char *str, int len)
{
fwrite(str, 1, len, stderr);
fflush(stderr);
return len;
}
/*********************************************************************/
int main(int argc, char *argv[])
{
int exit_status;
int code = 1, code1;
void *instance;
int exit_code;
/* run Ghostscript */
if ((code = gsapi_new_instance(&instance, NULL)) == 0) {
gsapi_set_stdio(instance, gsdll_stdin, gsdll_stdout, gsdll_stderr);
code = gsapi_init_with_args(instance, argc, argv);
if (code == 0)
code = gsapi_run_string(instance, start_string, 0, &exit_code);
code1 = gsapi_exit(instance);
if (code == 0 || code == e_Quit)
code = code1;
if (code == e_Quit)
code = 0; /* user executed 'quit' */
gsapi_delete_instance(instance);
}
exit_status = 0;
switch (code) {
case 0:
case e_Info:
case e_Quit:
break;
case e_Fatal:
exit_status = 1;
break;
default:
exit_status = 255;
}
return exit_status;
}
|