diff options
author | Didier Raboud <odyx@debian.org> | 2012-10-25 21:07:57 +0200 |
---|---|---|
committer | Didier Raboud <odyx@debian.org> | 2012-10-25 21:07:57 +0200 |
commit | 81ab83f382660bc7980ae954725c4ebf28764b03 (patch) | |
tree | 523268f698a63a8fd44f3491d94d140266b2403b /driver/commandtopclx.c | |
parent | a75966e33dbc3e3e096338fd332f515cb313b58a (diff) | |
download | cups-upstream/1.6.0.tar.gz |
Imported Upstream version 1.6.0upstream/1.6.0
Diffstat (limited to 'driver/commandtopclx.c')
-rw-r--r-- | driver/commandtopclx.c | 172 |
1 files changed, 0 insertions, 172 deletions
diff --git a/driver/commandtopclx.c b/driver/commandtopclx.c deleted file mode 100644 index 4e3ec226..00000000 --- a/driver/commandtopclx.c +++ /dev/null @@ -1,172 +0,0 @@ -/* - * "$Id: commandtopclx.c 9793 2011-05-20 03:49:49Z mike $" - * - * Advanced PCL command filter for CUPS. - * - * Copyright 2007-2011 by Apple Inc. - * Copyright 1993-2005 by Easy Software Products. - * - * These coded instructions, statements, and computer programs are the - * property of Apple Inc. and are protected by Federal copyright - * law. Distribution and use rights are outlined in the file "LICENSE.txt" - * which should have been included with this file. If this file is - * file is missing or damaged, see the license at "http://www.cups.org/". - * - * - * Contents: - * - * main() - Main entry and command processing. - */ - -/* - * Include necessary headers... - */ - -#include <cups/cups-private.h> -#include "driver.h" -#include "data/pcl.h" - - -/* - * 'main()' - Main entry and processing of driver. - */ - -int /* O - Exit status */ -main(int argc, /* I - Number of command-line arguments */ - char *argv[]) /* I - Command-line arguments */ -{ - FILE *fp; /* Command file */ - char line[1024], /* Line from file */ - *lineptr; /* Pointer into line */ - int feedpage; /* Feed the page */ - ppd_file_t *ppd; /* PPD file */ - - - /* - * Check for valid arguments... - */ - - if (argc < 6 || argc > 7) - { - /* - * We don't have the correct number of arguments; write an error message - * and return. - */ - - _cupsLangPrintf(stderr, - _("Usage: %s job-id user title copies options [file]"), - argv[0]); - return (1); - } - - /* - * Open the PPD file... - */ - - if ((ppd = ppdOpenFile(getenv("PPD"))) == NULL) - { - fputs("ERROR: Unable to open PPD file!\n", stderr); - return (1); - } - - /* - * Open the command file as needed... - */ - - if (argc == 7) - { - if ((fp = fopen(argv[6], "r")) == NULL) - { - perror("ERROR: Unable to open command file - "); - return (1); - } - } - else - fp = stdin; - - /* - * Reset the printer... - */ - - cupsWritePrintData("\033E", 2); - - /* - * Read the commands from the file and send the appropriate commands... - */ - - feedpage = 0; - - while (fgets(line, sizeof(line), fp) != NULL) - { - /* - * Drop trailing newline... - */ - - lineptr = line + strlen(line) - 1; - if (*lineptr == '\n') - *lineptr = '\0'; - - /* - * Skip leading whitespace... - */ - - for (lineptr = line; isspace(*lineptr); lineptr ++); - - /* - * Skip comments and blank lines... - */ - - if (*lineptr == '#' || !*lineptr) - continue; - - /* - * Parse the command... - */ - - if (_cups_strncasecmp(lineptr, "Clean", 5) == 0 && - (ppd->model_number & PCL_INKJET)) - { - /* - * Clean heads... - */ - - cupsWritePrintData("\033&b16WPML \004\000\006\001\004\001\005\001" - "\001\004\001\144", 22); - } - else - fprintf(stderr, "ERROR: Invalid printer command \"%s\"!\n", lineptr); - } - - /* - * Eject the page as needed... - */ - - if (feedpage) - { - fputs("PAGE: 1 1\n", stderr); - - putchar(12); - } - - /* - * Reset the printer... - */ - - cupsWritePrintData("\033E", 2); - - /* - * Close the command file and return... - */ - - ppdClose(ppd); - - if (fp != stdin) - fclose(fp); - - return (0); -} - - -/* - * End of "$Id: commandtopclx.c 9793 2011-05-20 03:49:49Z mike $". - */ |