]> git.ipfire.org Git - thirdparty/cups.git/blame - man/filter.man
Load cups into easysw/current.
[thirdparty/cups.git] / man / filter.man
CommitLineData
ef416fc2 1.\"
bc44d920 2.\" "$Id: filter.man 6649 2007-07-11 21:46:42Z mike $"
ef416fc2 3.\"
4.\" filter man page for the Common UNIX Printing System (CUPS).
5.\"
bc44d920 6.\" Copyright 2007 by Apple Inc.
7.\" Copyright 1997-2007 by Easy Software Products.
ef416fc2 8.\"
9.\" These coded instructions, statements, and computer programs are the
bc44d920 10.\" property of Apple Inc. and are protected by Federal copyright
11.\" law. Distribution and use rights are outlined in the file "LICENSE.txt"
12.\" which should have been included with this file. If this file is
13.\" file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14.\"
bc44d920 15.TH filter 7 "Common UNIX Printing System" "6 July 2007" "Apple Inc."
ef416fc2 16.SH NAME
bd7854cb 17filter \- cups file conversion filter interface
ef416fc2 18.SH SYNOPSIS
19.B filter
20job user title num-copies options [
21.I filename
22]
23.SH DESCRIPTION
24The CUPS filter interface provides a standard method for adding support for
25new document types to CUPS. Each filter is capable of converting from one
26or more input formats to another format that can either be printed directly
27or piped into another filter to get it to a printable format.
28.LP
bd7854cb 29Filters \fBmust\fR be capable of reading from a filename on the command-line
ef416fc2 30or from the standard input, copying the standard input to a temporary
bd7854cb 31file as required by the file format. All output \fBmust\fR be sent to the
ef416fc2 32standard output.
33.LP
34The command name (argv[0]) is set to the name of the destination printer.
bd7854cb 35.SH LOG MESSAGES
36Messages sent to stderr are generally logged to
37printer-state-message attribute and the current \fIErrorLog\fR.
38Each line begins with a standard prefix:
39
40.TP 5
41ALERT: message
42.br
43Sets the printer-state-message attribute and adds the specified
44message to the current \fIErrorLog\fR using the "alert" log level.
45
46.TP 5
47ATTR: attribute=value [attribute=value]
48.br
49Sets the named job attribute(s). Typically this will be used to
50set the job-remote-id attribute.
51
52.TP 5
53CRIT: message
54.br
55Sets the printer-state-message attribute and adds the specified
56message to the current \fIErrorLog\fR using the "critical" log level.
57
58.TP 5
59DEBUG: message
60.br
61Sets the printer-state-message attribute and adds the specified
62message to the current \fIErrorLog\fR using the "debug" log level.
63
64.TP 5
65DEBUG2: message
66.br
67Sets the printer-state-message attribute and adds the specified
68message to the current \fIErrorLog\fR using the "debug2" log level.
69
70.TP 5
71EMERG: message
72.br
73Sets the printer-state-message attribute and adds the specified
74message to the current \fIErrorLog\fR using the "emergency" log level.
75
76.TP 5
77ERROR: message
78.br
79Sets the printer-state-message attribute and adds the specified
80message to the current \fIErrorLog\fR using the "error" log level.
81
82.TP 5
83INFO: message
84.br
85Sets the printer-state-message attribute. If the current \fILogLevel\fR
86is set to "debug2", also adds the specified message to the
87current \fIErrorLog\fR using the "info" log level.
88
89.TP 5
90NOTICE: message
91.br
92Sets the printer-state-message attribute and adds the specified
93message to the current \fIErrorLog\fR using the "notice" log level.
94
95.TP 5
96PAGE: page-number #-copies
97.TP 5
bc44d920 98PAGE: total #-pages
bd7854cb 99.br
100Adds an entry to the current \fIPageLog\fR. The first form adds
101#-copies to the job-media-sheets-completed attribute. The second
102form sets the job-media-sheets-completed attribute to #-pages.
103
104.TP 5
105STATE: printer-state-reason [printer-state-reason ...]
106.TP 5
107STATE: + printer-state-reason [printer-state-reason ...]
108.TP 5
109STATE: - printer-state-reason [printer-state-reason ...]
110.br
111Sets, adds, or removes printer-state-reason keywords to the
112current queue. Typically this is used to indicate media, ink, and
113toner conditions on a printer.
114
115.TP 5
116WARNING: message
117.br
118Sets the printer-state-message attribute and adds the specified
119message to the current \fIErrorLog\fR using the "warning" log level.
120
ef416fc2 121.SH ENVIRONMENT VARIABLES
bd7854cb 122The following environment variables are defined by the CUPS
80ca4592 123server when executing the filter:
bd7854cb 124
ef416fc2 125.TP 5
126CHARSET
127.br
bd7854cb 128The default text character set, typically utf-8.
129
ef416fc2 130.TP 5
131CLASS
132.br
133When a job is submitted to a printer class, contains the name of
134the destination printer class. Otherwise this environment
135variable will not be set.
bd7854cb 136
ef416fc2 137.TP 5
138CONTENT_TYPE
139.br
bd7854cb 140The MIME type associated with the file (e.g.
141application/postscript).
142
ef416fc2 143.TP 5
144CUPS_DATADIR
145.br
146The directory where data files can be found.
bd7854cb 147
ef416fc2 148.TP 5
149CUPS_SERVERROOT
150.br
151The root directory of the server.
bd7854cb 152
ef416fc2 153.TP 5
154DEVICE_URI
155.br
80ca4592 156The device-uri associated with the printer.
bd7854cb 157
158.TP 5
159FINAL_CONTENT_TYPE
160.br
161The MIME type associated with the printer (e.g.
162application/vnd.cups-postscript).
163
ef416fc2 164.TP 5
165LANG
166.br
167The default language locale (typically C or en).
bd7854cb 168
ef416fc2 169.TP 5
170PATH
171.br
bd7854cb 172The standard execution path for external programs that may be run by
80ca4592 173the filter.
bd7854cb 174
ef416fc2 175.TP 5
176PPD
177.br
bd7854cb 178The full pathname of the PostScript Printer Description (PPD)
179file for this printer.
180
ef416fc2 181.TP 5
182PRINTER
183.br
bd7854cb 184The name of the printer.
185
ef416fc2 186.TP 5
187RIP_CACHE
188.br
bd7854cb 189The recommended amount of memory to use for Raster Image
190Processors (RIPs).
191
ef416fc2 192.TP 5
193SOFTWARE
194.br
bd7854cb 195The name and version number of the server (typically CUPS/1.2).
196
ef416fc2 197.TP 5
198TZ
199.br
200The timezone of the server.
bd7854cb 201
ef416fc2 202.TP 5
203USER
204.br
80ca4592 205The user executing the filter, typically "lp" or "root"; consult the
bd7854cb 206\fIcupsd.conf(5)\fR file for the current setting.
207
ef416fc2 208.SH COMPATIBILITY
209While the filter interface is compatible with System V interface
210scripts, it will only work with the System V interface script as the
211only filter. Typically the interface script will be provided via the
bd7854cb 212\fIlpadmin(8)\fR command using the \fI-i\fR option.
ef416fc2 213.SH SEE ALSO
bd7854cb 214\fIbackend(1)\fR, \fIcupsd(8)\fR,
215.br
216http://localhost:631/help
ef416fc2 217.SH COPYRIGHT
bc44d920 218Copyright 2007 by Apple Inc.
ef416fc2 219.\"
bc44d920 220.\" End of "$Id: filter.man 6649 2007-07-11 21:46:42Z mike $".
ef416fc2 221.\"