]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/api-filter.shtml
Import CUPS v1.7.2
[thirdparty/cups.git] / cups / api-filter.shtml
CommitLineData
ef416fc2 1<!--
75bd9771 2 "$Id: api-filter.shtml 7677 2008-06-19 23:22:19Z mike $"
ef416fc2 3
22c9029b 4 Filter and backend programming introduction for CUPS.
ef416fc2 5
7374e9e5 6 Copyright 2007-2013 by Apple Inc.
bc44d920 7 Copyright 1997-2006 by Easy Software Products, all rights reserved.
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-->
15
5a738aea 16<h2 class='title'><a name="OVERVIEW">Overview</a></h2>
ef416fc2 17
79e1d494
MS
18<p>Filters (which include printer drivers and port monitors) and backends
19are used to convert job files to a printable format and send that data to the
20printer itself. All of these programs use a common interface for processing
21print jobs and communicating status information to the scheduler. Each is run
22with a standard set of command-line arguments:<p>
ef416fc2 23
5a738aea 24<dl class="code">
ef416fc2 25
5a738aea
MS
26 <dt>argv[1]</dt>
27 <dd>The job ID</dd>
ef416fc2 28
5a738aea
MS
29 <dt>argv[2]</dt>
30 <dd>The user printing the job</dd>
f7deaa1a 31
5a738aea
MS
32 <dt>argv[3]</dt>
33 <dd>The job name/title</dd>
ef416fc2 34
5a738aea
MS
35 <dt>argv[4]</dt>
36 <dd>The number of copies to print</dd>
ef416fc2 37
5a738aea
MS
38 <dt>argv[5]</dt>
39 <dd>The options that were provided when the job was submitted</dd>
f7deaa1a 40
5a738aea 41 <dt>argv[6]</dt>
79e1d494 42 <dd>The file to print (first program only)</dd>
5a738aea 43</dl>
ef416fc2 44
5a738aea
MS
45<p>The scheduler runs one or more of these programs to print any given job. The
46first filter reads from the print file and writes to the standard output, while
47the remaining filters read from the standard input and write to the standard
48output. The backend is the last filter in the chain and writes to the
49device.</p>
f7deaa1a 50
178cb736
MS
51<p>Filters are always run as a non-privileged user, typically "lp", with no
52connection to the user's desktop. Backends are run either as a non-privileged
53user or as root if the file permissions do not allow user or group execution.
54The <a href="#PERMISSIONS">file permissions</a> section talks about this in
55more detail.</p>
56
ac884b6a
MS
57<h3><a name="SECURITY">Security Considerations</a></h3>
58
59<p>It is always important to use security programming practices. Filters and
eac3a0a0 60most backends are run as a non-privileged user, so the major security
ac884b6a
MS
61consideration is resource utilization - filters should not depend on unlimited
62amounts of CPU, memory, or disk space, and should protect against conditions
63that could lead to excess usage of any resource like infinite loops and
64unbounded recursion. In addition, filters must <em>never</em> allow the user to
65specify an arbitrary file path to a separator page, template, or other file
66used by the filter since that can lead to an unauthorized disclosure of
67information. <em>Always</em> treat input as suspect and validate it!</p>
68
4d301e69 69<p>If you are developing a backend that runs as root, make sure to check for
ac884b6a
MS
70potential buffer overflows, integer under/overflow conditions, and file
71accesses since these can lead to privilege escalations. When writing files,
72always validate the file path and <em>never</em> allow a user to determine
73where to store a file.</p>
74
75<blockquote><b>Note:</b>
76
77<p><em>Never</em> write files to a user's home directory. Aside from the
78security implications, CUPS is a network print service and as such the network
79user may not be the same as the local user and/or there may not be a local home
80directory to write to.</p>
81
82<p>In addition, some operating systems provide additional security mechanisms
178cb736 83that further limit file system access, even for backends running as root. On
f3c17241 84OS X, for example, no backend may write to a user's home directory.</p>
ac884b6a
MS
85</blockquote>
86
f228370c 87<h3><a name="SIGNALS">Canceled Jobs and Signal Handling</a></h3>
22c9029b
MS
88
89<p>The scheduler sends <code>SIGTERM</code> when a printing job is canceled or
90held. Filters, backends, and port monitors <em>must</em> catch
91<code>SIGTERM</code> and perform any cleanup necessary to produce a valid output
92file or return the printer to a known good state. The recommended behavior is to
88f9aafc
MS
93end the output on the current page, preferably on the current line or object
94being printed.</p>
22c9029b 95
88f9aafc 96<p>Filters and backends may also receive <code>SIGPIPE</code> when an upstream or downstream filter/backend exits with a non-zero status. Developers should generally ignore <code>SIGPIPE</code> at the beginning of <code>main()</code> with the following function call:</p>
eac3a0a0
MS
97
98<pre class="example">
99#include &lt;signal.h&gt;>
100
101...
102
103int
104main(int argc, char *argv[])
105{
106 signal(SIGPIPE, SIG_IGN);
107
108 ...
109}
110</pre>
111
178cb736
MS
112<h3><a name="PERMISSIONS">File Permissions</a></h3>
113
114<p>For security reasons, CUPS will only run filters and backends that are owned
4d301e69
MS
115by root and do not have world or group write permissions. The recommended
116permissions for filters and backends are 0555 - read and execute but no write.
117Backends that must run as root should use permissions of 0500 - read and execute
118by root, no access for other users. Write permissions can be enabled for the
119root user only.</p>
178cb736
MS
120
121<p>To avoid a warning message, the directory containing your filter(s) must also
4d301e69
MS
122be owned by root and have world and group write disabled - permissions of 0755
123or 0555 are strongly encouraged.</p>
178cb736 124
ac884b6a
MS
125<h3><a name="TEMPFILES">Temporary Files</a></h3>
126
127<p>Temporary files should be created in the directory specified by the
128"TMPDIR" environment variable. The
129<a href="#cupsTempFile2"><code>cupsTempFile2</code></a> function can be
130used to safely create temporary files in this directory.</p>
131
132<h3><a name="COPIES">Copy Generation</a></h3>
133
134<p>The <code>argv[4]</code> argument specifies the number of copies to produce
135of the input file. In general, you should only generate copies if the
136<em>filename</em> argument is supplied. The only exception to this are
137filters that produce device-independent PostScript output, since the PostScript
138filter <var>pstops</var> is responsible for generating copies of PostScript
139files.</p>
140
5a738aea 141<h3><a name="EXITCODES">Exit Codes</a></h3>
f7deaa1a 142
5a738aea
MS
143<p>Filters must exit with status 0 when they successfully generate print data
144or 1 when they encounter an error. Backends can return any of the
145<a href="#cups_backend_t"><code>cups_backend_t</code></a> constants.</p>
f7deaa1a 146
5a738aea 147<h3><a name="ENVIRONMENT">Environment Variables</a></h3>
f7deaa1a 148
79e1d494
MS
149<p>The following environment variables are defined by the printing system
150when running print filters and backends:</p>
f7deaa1a 151
5a738aea 152<dl class="code">
f7deaa1a 153
acb056cb 154 <dt>APPLE_LANGUAGE</dt>
5a738aea 155 <dd>The Apple language identifier associated with the job
f3c17241 156 (OS X only).</dd>
f7deaa1a 157
5a738aea
MS
158 <dt>CHARSET</dt>
159 <dd>The job character set, typically "utf-8".</dd>
f7deaa1a 160
5a738aea
MS
161 <dt>CLASS</dt>
162 <dd>When a job is submitted to a printer class, contains the name of
163 the destination printer class. Otherwise this environment
164 variable will not be set.</dd>
f7deaa1a 165
5a738aea
MS
166 <dt>CONTENT_TYPE</dt>
167 <dd>The MIME type associated with the file (e.g.
168 application/postscript).</dd>
f7deaa1a 169
5a738aea 170 <dt>CUPS_CACHEDIR</dt>
79e1d494
MS
171 <dd>The directory where cache files can be stored. Cache files can be
172 used to retain information between jobs or files in a job.</dd>
f7deaa1a 173
5a738aea 174 <dt>CUPS_DATADIR</dt>
79e1d494 175 <dd>The directory where (read-only) CUPS data files can be found.</dd>
f7deaa1a 176
0af14961
MS
177 <dt>CUPS_FILETYPE</dt>
178 <dd>The type of file being printed: "job-sheet" for a banner page and
179 "document" for a regular print file.</dd>
180
5a738aea
MS
181 <dt>CUPS_SERVERROOT</dt>
182 <dd>The root directory of the server.</dd>
f7deaa1a 183
5a738aea
MS
184 <dt>DEVICE_URI</dt>
185 <dd>The device-uri associated with the printer.</dd>
f7deaa1a 186
5a738aea
MS
187 <dt>FINAL_CONTENT_TYPE</dt>
188 <dd>The MIME type associated with the printer (e.g.
189 application/vnd.cups-postscript).</dd>
f7deaa1a 190
5a738aea
MS
191 <dt>LANG</dt>
192 <dd>The language locale associated with the job.</dd>
f7deaa1a 193
5a738aea
MS
194 <dt>PPD</dt>
195 <dd>The full pathname of the PostScript Printer Description (PPD)
196 file for this printer.</dd>
f7deaa1a 197
5a738aea 198 <dt>PRINTER</dt>
79e1d494 199 <dd>The queue name of the class or printer.</dd>
f7deaa1a 200
5a738aea
MS
201 <dt>RIP_CACHE</dt>
202 <dd>The recommended amount of memory to use for Raster Image
203 Processors (RIPs).</dd>
f7deaa1a 204
79e1d494
MS
205 <dt>TMPDIR</dt>
206 <dd>The directory where temporary files should be created.</dd>
207
5a738aea 208</dl>
f7deaa1a 209
5a738aea 210<h3><a name="MESSAGES">Communicating with the Scheduler</a></h3>
f7deaa1a 211
79e1d494
MS
212<p>Filters and backends communicate with the scheduler by writing messages
213to the standard error file. The scheduler reads messages from all filters in
214a job and processes the message based on its prefix. For example, the following
215code sets the current printer state message to "Printing page 5":</p>
f7deaa1a 216
5a738aea
MS
217<pre class="example">
218int page = 5;
f7deaa1a 219
5a738aea
MS
220fprintf(stderr, "INFO: Printing page %d\n", page);
221</pre>
f7deaa1a 222
5a738aea
MS
223<p>Each message is a single line of text starting with one of the following
224prefix strings:</p>
225
226<dl class="code">
227
228 <dt>ALERT: message</dt>
229 <dd>Sets the printer-state-message attribute and adds the specified
230 message to the current error log file using the "alert" log level.</dd>
231
232 <dt>ATTR: attribute=value [attribute=value]</dt>
233 <dd>Sets the named printer or job attribute(s). Typically this is used
88f9aafc
MS
234 to set the <code>marker-colors</code>, <code>marker-high-levels</code>,
235 <code>marker-levels</code>, <code>marker-low-levels</code>,
75bd9771
MS
236 <code>marker-message</code>, <code>marker-names</code>,
237 <code>marker-types</code>, <code>printer-alert</code>, and
238 <code>printer-alert-description</code> printer attributes. Standard
239 <code>marker-types</code> values are listed in <a href='#TABLE1'>Table
71f63681 240 1</a>. String values need special handling - see <a href="#ATTR_STRINGS">Reporting Attribute String Values</a> below.</dd>
5a738aea
MS
241
242 <dt>CRIT: message</dt>
243 <dd>Sets the printer-state-message attribute and adds the specified
244 message to the current error log file using the "critical" log
245 level.</dd>
246
247 <dt>DEBUG: message</dt>
248 <dd>Sets the printer-state-message attribute and adds the specified
249 message to the current error log file using the "debug" log level.</dd>
250
251 <dt>DEBUG2: message</dt>
252 <dd>Sets the printer-state-message attribute and adds the specified
253 message to the current error log file using the "debug2" log level.</dd>
254
255 <dt>EMERG: message</dt>
256 <dd>Sets the printer-state-message attribute and adds the specified
257 message to the current error log file using the "emergency" log
258 level.</dd>
259
260 <dt>ERROR: message</dt>
261 <dd>Sets the printer-state-message attribute and adds the specified
79e1d494
MS
262 message to the current error log file using the "error" log level.
263 Use "ERROR:" messages for non-persistent processing errors.</dd>
5a738aea
MS
264
265 <dt>INFO: message</dt>
266 <dd>Sets the printer-state-message attribute. If the current log level
267 is set to "debug2", also adds the specified message to the current error
268 log file using the "info" log level.</dd>
269
270 <dt>NOTICE: message</dt>
271 <dd>Sets the printer-state-message attribute and adds the specified
272 message to the current error log file using the "notice" log level.</dd>
273
274 <dt>PAGE: page-number #-copies</dt>
275 <dt>PAGE: total #-pages</dt>
276 <dd>Adds an entry to the current page log file. The first form adds
277 #-copies to the job-media-sheets-completed attribute. The second
278 form sets the job-media-sheets-completed attribute to #-pages.</dd>
279
20fbc903
MS
280 <dt>PPD: keyword=value [keyword=value ...]</dt>
281 <dd>Changes or adds keywords to the printer's PPD file. Typically
282 this is used to update installable options or default media settings
283 based on the printer configuration.</dd>
284
5a738aea
MS
285 <dt>STATE: + printer-state-reason [printer-state-reason ...]</dt>
286 <dt>STATE: - printer-state-reason [printer-state-reason ...]</dt>
88f9aafc
MS
287 <dd>Sets or clears printer-state-reason keywords for the current queue.
288 Typically this is used to indicate persistent media, ink, toner, and
289 configuration conditions or errors on a printer.
79e1d494 290 <a href='#TABLE2'>Table 2</a> lists the standard state keywords -
88f9aafc
MS
291 use vendor-prefixed ("com.example.foo") keywords for custom states. See
292 <a href="#MANAGING_STATE">Managing Printer State in a Filter</a> for more
293 information.
5a738aea
MS
294
295 <dt>WARNING: message</dt>
296 <dd>Sets the printer-state-message attribute and adds the specified
297 message to the current error log file using the "warning" log
298 level.</dd>
299
300</dl>
301
302<p>Messages without one of these prefixes are treated as if they began with
303the "DEBUG:" prefix string.</p>
304
79e1d494
MS
305<div class='table'><table width='80%' summary='Table 1: Standard marker-types Values'>
306<caption>Table 1: <a name='TABLE1'>Standard marker-types Values</a></caption>
307<thead>
308<tr>
309 <th>marker-type</th>
310 <th>Description</th>
311</tr>
312</thead>
313<tbody>
314<tr>
315 <td>developer</td>
316 <td>Developer unit</td>
317</tr>
318<tr>
319 <td>fuser</td>
320 <td>Fuser unit</td>
321</tr>
322<tr>
71f63681 323 <td>fuser-cleaning-pad</td>
79e1d494
MS
324 <td>Fuser cleaning pad</td>
325</tr>
326<tr>
71f63681 327 <td>fuser-oil</td>
79e1d494
MS
328 <td>Fuser oil</td>
329</tr>
330<tr>
331 <td>ink</td>
332 <td>Ink supply</td>
333</tr>
334<tr>
335 <td>opc</td>
336 <td>Photo conductor</td>
337</tr>
338<tr>
71f63681 339 <td>solid-wax</td>
79e1d494
MS
340 <td>Wax supply</td>
341</tr>
342<tr>
343 <td>staples</td>
344 <td>Staple supply</td>
345</tr>
346<tr>
347 <td>toner</td>
348 <td>Toner supply</td>
349</tr>
350<tr>
71f63681 351 <td>transfer-unit</td>
79e1d494
MS
352 <td>Transfer unit</td>
353</tr>
354<tr>
71f63681 355 <td>waste-ink</td>
79e1d494
MS
356 <td>Waste ink tank</td>
357</tr>
358<tr>
71f63681 359 <td>waste-toner</td>
79e1d494
MS
360 <td>Waste toner tank</td>
361</tr>
362<tr>
71f63681 363 <td>waste-wax</td>
79e1d494
MS
364 <td>Waste wax tank</td>
365</tr>
366</tbody>
367</table></div>
368
369<br>
370
371<div class='table'><table width='80%' summary='Table 2: Standard State Keywords'>
372<caption>Table 2: <a name='TABLE2'>Standard State Keywords</a></caption>
373<thead>
374<tr>
375 <th>Keyword</th>
376 <th>Description</th>
377</tr>
378</thead>
379<tbody>
380<tr>
381 <td>connecting-to-device</td>
88f9aafc 382 <td>Connecting to printer but not printing yet.</td>
79e1d494
MS
383</tr>
384<tr>
385 <td>cover-open</td>
88f9aafc 386 <td>The printer's cover is open.</td>
79e1d494
MS
387</tr>
388<tr>
389 <td>input-tray-missing</td>
88f9aafc 390 <td>The paper tray is missing.</td>
79e1d494
MS
391</tr>
392<tr>
393 <td>marker-supply-empty</td>
88f9aafc 394 <td>The printer is out of ink.</td>
79e1d494
MS
395</tr>
396<tr>
397 <td>marker-supply-low</td>
88f9aafc 398 <td>The printer is almost out of ink.</td>
79e1d494
MS
399</tr>
400<tr>
401 <td>marker-waste-almost-full</td>
88f9aafc 402 <td>The printer's waste bin is almost full.</td>
79e1d494
MS
403</tr>
404<tr>
405 <td>marker-waste-full</td>
88f9aafc 406 <td>The printer's waste bin is full.</td>
79e1d494
MS
407</tr>
408<tr>
409 <td>media-empty</td>
88f9aafc 410 <td>The paper tray (any paper tray) is empty.</td>
79e1d494
MS
411</tr>
412<tr>
413 <td>media-jam</td>
88f9aafc 414 <td>There is a paper jam.</td>
79e1d494
MS
415</tr>
416<tr>
417 <td>media-low</td>
88f9aafc
MS
418 <td>The paper tray (any paper tray) is almost empty.</td>
419</tr>
420<tr>
421 <td>media-needed</td>
422 <td>The paper tray needs to be filled (for a job that is printing).</td>
79e1d494
MS
423</tr>
424<tr>
425 <td>paused</td>
88f9aafc 426 <td>Stop the printer.</td>
79e1d494
MS
427</tr>
428<tr>
429 <td>timed-out</td>
88f9aafc 430 <td>Unable to connect to printer.</td>
79e1d494
MS
431</tr>
432<tr>
433 <td>toner-empty</td>
88f9aafc 434 <td>The printer is out of toner.</td>
79e1d494
MS
435</tr>
436<tr>
437 <td>toner-low</td>
88f9aafc
MS
438 <td>The printer is low on toner.</td>
439</tr>
440</tbody>
441</table></div>
442
71f63681
MS
443
444<h4><a name="ATTR_STRINGS">Reporting Attribute String Values</a></h4>
445
446<p>When reporting string values using "ATTR:" messages, a filter or backend must take special care to appropriately quote those values. The scheduler uses the CUPS option parsing code for attributes, so the general syntax is:</p>
447
448<pre class="example">
449name=simple
450name=simple,simple,...
451name='complex value'
452name="complex value"
453name='"complex value"','"complex value"',...
454</pre>
455
456<p>Simple values are strings that do not contain spaces, quotes, backslashes, or the comma and can be placed verbatim in the "ATTR:" message, for example:</p>
457
458<pre class="example">
459int levels[4] = { 40, 50, 60, 70 }; /* CMYK */
460
461fputs("ATTR: marker-colors=#00FFFF,#FF00FF,#FFFF00,#000000\n", stderr);
462fputs("ATTR: marker-high-levels=100,100,100,100\n", stderr);
463fprintf(stderr, "ATTR: marker-levels=%d,%d,%d,%d\n", levels[0], levels[1],
464 levels[2], levels[3], levels[4]);
465fputs("ATTR: marker-low-levels=5,5,5,5\n", stderr);
466fputs("ATTR: marker-types=toner,toner,toner,toner\n", stderr);
467</pre>
468
469<p>Complex values that contains spaces, quotes, backslashes, or the comma must be quoted. For a single value a single set of quotes is sufficient:</p>
470
471<pre class="example">
472fputs("ATTR: marker-message='Levels shown are approximate.'\n", stderr);
473</pre>
474
475<p>When multiple values are reported, each value must be enclosed by a set of single and double quotes:</p>
476
477<pre class="example">
478fputs("ATTR: marker-names='\"Cyan Toner\"','\"Magenta Toner\"',"
479 "'\"Yellow Toner\"','\"Black Toner\"'\n", stderr);
480</pre>
481
482<p>The IPP backend includes a <var>quote_string</var> function that may be used to properly quote a complex value in an "ATTR:" message:</p>
483
484<pre class="example">
485static const char * /* O - Quoted string */
486quote_string(const char *s, /* I - String */
487 char *q, /* I - Quoted string buffer */
488 size_t qsize) /* I - Size of quoted string buffer */
489{
490 char *qptr, /* Pointer into string buffer */
491 *qend; /* End of string buffer */
492
493
494 qptr = q;
495 qend = q + qsize - 5;
496
497 if (qend &lt; q)
498 {
499 *q = '\0';
500 return (q);
501 }
502
503 *qptr++ = '\'';
504 *qptr++ = '\"';
505
506 while (*s && qptr &lt; qend)
507 {
508 if (*s == '\\' || *s == '\"' || *s == '\'')
509 {
510 if (qptr &lt; (qend - 4))
511 {
512 *qptr++ = '\\';
513 *qptr++ = '\\';
514 *qptr++ = '\\';
515 }
516 else
517 break;
518 }
519
520 *qptr++ = *s++;
521 }
522
523 *qptr++ = '\"';
524 *qptr++ = '\'';
525 *qptr = '\0';
526
527 return (q);
528}
529</pre>
530
531
88f9aafc
MS
532<h4><a name="MANAGING_STATE">Managing Printer State in a Filter</a></h4>
533
534<p>Filters are responsible for managing the state keywords they set using
535"STATE:" messages. Typically you will update <em>all</em> of the keywords that
536are used by the filter at startup, for example:</p>
537
538<pre class="example">
539if (foo_condition != 0)
540 fputs("STATE: +com.example.foo\n", stderr);
541else
542 fputs("STATE: -com.example.foo\n", stderr);
543
544if (bar_condition != 0)
545 fputs("STATE: +com.example.bar\n", stderr);
546else
547 fputs("STATE: -com.example.bar\n", stderr);
548</pre>
549
550<p>Then as conditions change, your filter sends "STATE: +keyword" or "STATE:
551-keyword" messages as necessary to set or clear the corresponding keyword,
552respectively.</p>
553
554<p>State keywords are often used to notify the user of issues that span across
555jobs, for example "media-empty-warning" that indicates one or more paper trays
556are empty. These keywords should not be cleared unless the corresponding issue
557no longer exists.</p>
558
559<p>Filters should clear job-related keywords on startup and exit so that they
560do not remain set between jobs. For example, "connecting-to-device" is a job
561sub-state and not an issue that applies when a job is not printing.</p>
562
563<blockquote><b>Note:</b>
564
565<p>"STATE:" messages often provide visible alerts to the user. For example,
f3c17241 566on OS X setting a printer-state-reason value with an "-error" or
88f9aafc
MS
567"-warning" suffix will cause the printer's dock item to bounce if the
568corresponding reason is localized with a cupsIPPReason keyword in the
569printer's PPD file.</p>
570
571<p>When providing a vendor-prefixed keyword, <em>always</em> provide the
572corresponding standard keyword (if any) to allow clients to respond to the
573condition correctly. For example, if you provide a vendor-prefixed keyword
574for a low cyan ink condition ("com.example.cyan-ink-low") you must also set the
575"marker-supply-low-warning" keyword. In such cases you should also refrain
576from localizing the vendor-prefixed keyword in the PPD file - otherwise both
577the generic and vendor-specific keyword will be shown in the user
578interface.</p>
579
7374e9e5 580</blockquote>
88f9aafc
MS
581
582<h4><a name="REPORTING_SUPPLIES">Reporting Supply Levels</a></h4>
583
584<p>CUPS tracks several "marker-*" attributes for ink/toner supply level
585reporting. These attributes allow applications to display the current supply
586levels for a printer without printer-specific software. <a href="#TABLE3">Table 3</a> lists the marker attributes and what they represent.</p>
587
588<p>Filters set marker attributes by sending "ATTR:" messages to stderr. For
589example, a filter supporting an inkjet printer with black and tri-color ink
590cartridges would use the following to initialize the supply attributes:</p>
591
592<pre class="example">
593fputs("ATTR: marker-colors=#000000,#00FFFF#FF00FF#FFFF00\n", stderr);
594fputs("ATTR: marker-low-levels=5,10\n", stderr);
595fputs("ATTR: marker-names=Black,Tri-Color\n", stderr);
596fputs("ATTR: marker-types=ink,ink\n", stderr);
597</pre>
598
599<p>Then periodically the filter queries the printer for its current supply
600levels and updates them with a separate "ATTR:" message:</p>
601
602<pre class="example">
603int black_level, tri_level;
604...
605fprintf(stderr, "ATTR: marker-levels=%d,%d\n", black_level, tri_level);
606</pre>
607
608<div class='table'><table width='80%' summary='Table 3: Supply Level Attributes'>
609<caption>Table 3: <a name='TABLE3'>Supply Level Attributes</a></caption>
610<thead>
611<tr>
612 <th>Attribute</th>
613 <th>Description</th>
614</tr>
615</thead>
616<tbody>
617<tr>
618 <td>marker-colors</td>
619 <td>A list of comma-separated colors; each color is either "none" or one or
620 more hex-encoded sRGB colors of the form "#RRGGBB".</td>
621</tr>
622<tr>
623 <td>marker-high-levels</td>
624 <td>A list of comma-separated "almost full" level values from 0 to 100; a
625 value of 100 should be used for supplies that are consumed/emptied like ink
626 cartridges.</td>
627</tr>
628<tr>
629 <td>marker-levels</td>
630 <td>A list of comma-separated level values for each supply. A value of -1
631 indicates the level is unavailable, -2 indicates unknown, and -3 indicates
632 the level is unknown but has not yet reached capacity. Values from 0 to 100
633 indicate the corresponding percentage.</td>
634</tr>
635<tr>
636 <td>marker-low-levels</td>
637 <td>A list of comma-separated "almost empty" level values from 0 to 100; a
638 value of 0 should be used for supplies that are filled like waste ink
639 tanks.</td>
640</tr>
641<tr>
642 <td>marker-message</td>
643 <td>A human-readable supply status message for the user like "12 pages of
644 ink remaining."</td>
645</tr>
646<tr>
647 <td>marker-names</td>
648 <td>A list of comma-separated supply names like "Cyan Ink", "Fuser",
649 etc.</td>
650</tr>
651<tr>
652 <td>marker-types</td>
653 <td>A list of comma-separated supply types; the types are listed in
654 <a href="#TABLE1">Table 1</a>.</td>
79e1d494
MS
655</tr>
656</tbody>
657</table></div>
658
20fbc903 659<h3><a name="COMMUNICATING_BACKEND">Communicating with the Backend</a></h3>
5a738aea
MS
660
661<p>Filters can communicate with the backend via the
662<a href="#cupsBackChannelRead"><code>cupsBackChannelRead</code></a> and
663<a href="#cupsSideChannelDoRequest"><code>cupsSideChannelDoRequest</code></a>
22c9029b 664functions. The
5a738aea
MS
665<a href="#cupsBackChannelRead"><code>cupsBackChannelRead</code></a> function
666reads data that has been sent back from the device and is typically used to
667obtain status and configuration information. For example, the following code
668polls the backend for back-channel data:</p>
669
670<pre class="example">
671#include &lt;cups/cups.h&gt;
f7deaa1a 672
5a738aea
MS
673char buffer[8192];
674ssize_t bytes;
f7deaa1a 675
5a738aea
MS
676/* Use a timeout of 0.0 seconds to poll for back-channel data */
677bytes = cupsBackChannelRead(buffer, sizeof(buffer), 0.0);
f7deaa1a 678</pre>
679
79e1d494
MS
680<p>Filters can also use <code>select()</code> or <code>poll()</code> on the
681back-channel file descriptor (3 or <code>CUPS_BC_FD</code>) to read data only
682when it is available.</p>
683
684<p>The
5a738aea
MS
685<a href="#cupsSideChannelDoRequest"><code>cupsSideChannelDoRequest</code></a>
686function allows you to get out-of-band status information and do synchronization
687with the device. For example, the following code gets the current IEEE-1284
688device ID string from the backend:</p>
f7deaa1a 689
5a738aea 690<pre class="example">
f7deaa1a 691#include &lt;cups/sidechannel.h&gt;
692
693char data[2049];
694int datalen;
5a738aea 695<a href="#cups_sc_status_t">cups_sc_status_t</a> status;
f7deaa1a 696
79e1d494
MS
697/* Tell cupsSideChannelDoRequest() how big our buffer is, less 1 byte for
698 nul-termination... */
f7deaa1a 699datalen = sizeof(data) - 1;
700
701/* Get the IEEE-1284 device ID, waiting for up to 1 second */
5a738aea 702status = <a href="#cupsSideChannelDoRequest">cupsSideChannelDoRequest</a>(CUPS_SC_CMD_GET_DEVICE_ID, data, &amp;datalen, 1.0);
f7deaa1a 703
704/* Use the returned value if OK was returned and the length is non-zero */
7374e9e5 705if (status == CUPS_SC_STATUS_OK &amp;&amp; datalen > 0)
f7deaa1a 706 data[datalen] = '\0';
707else
708 data[0] = '\0';
709</pre>
710
88f9aafc
MS
711<h4><a name="DRAIN_OUTPUT">Forcing All Output to a Printer</a></h4>
712
713<p>The
714<a href="#cupsSideChannelDoRequest"><code>cupsSideChannelDoRequest</code></a>
715function allows you to tell the backend to send all pending data to the printer.
716This is most often needed when sending query commands to the printer. For example:</p>
717
718<pre class="example">
719#include &lt;cups/cups.h&gt;
720#include &lt;cups/sidechannel.h&gt;
721
722char data[1024];
723int datalen = sizeof(data);
724<a href="#cups_sc_status_t">cups_sc_status_t</a> status;
725
726/* Flush pending output to stdout */
727fflush(stdout);
728
729/* Drain output to backend, waiting for up to 30 seconds */
730status = <a href="#cupsSideChannelDoRequest">cupsSideChannelDoRequest</a>(CUPS_SC_CMD_DRAIN_OUTPUT, data, &amp;datalen, 30.0);
731
732/* Read the response if the output was sent */
733if (status == CUPS_SC_STATUS_OK)
734{
735 ssize_t bytes;
736
737 /* Wait up to 10.0 seconds for back-channel data */
738 bytes = cupsBackChannelRead(data, sizeof(data), 10.0);
739 /* do something with the data from the printer */
740}
741</pre>
742
20fbc903
MS
743<h3><a name="COMMUNICATING_FILTER">Communicating with Filters</a></h3>
744
5a738aea
MS
745<p>Backends communicate with filters using the reciprocal functions
746<a href="#cupsBackChannelWrite"><code>cupsBackChannelWrite</code></a>,
747<a href="#cupsSideChannelRead"><code>cupsSideChannelRead</code></a>, and
748<a href="#cupsSideChannelWrite"><code>cupsSideChannelWrite</code></a>. We
749recommend writing back-channel data using a timeout of 1.0 seconds:</p>
f7deaa1a 750
5a738aea
MS
751<pre class="example">
752#include &lt;cups/cups.h&gt;
f7deaa1a 753
5a738aea
MS
754char buffer[8192];
755ssize_t bytes;
f7deaa1a 756
79e1d494
MS
757/* Obtain data from printer/device */
758...
759
5a738aea
MS
760/* Use a timeout of 1.0 seconds to give filters a chance to read */
761cupsBackChannelWrite(buffer, bytes, 1.0);
f7deaa1a 762</pre>
763
5a738aea
MS
764<p>The <a href="#cupsSideChannelRead"><code>cupsSideChannelRead</code></a>
765function reads a side-channel command from a filter, driver, or port monitor.
766Backends can either poll for commands using a <code>timeout</code> of 0.0, wait
767indefinitely for commands using a <code>timeout</code> of -1.0 (probably in a
768separate thread for that purpose), or use <code>select</code> or
769<code>poll</code> on the <code>CUPS_SC_FD</code> file descriptor (4) to handle
20fbc903 770input and output on several file descriptors at the same time.</p>
5a738aea
MS
771
772<p>Once a command is processed, the backend uses the
773<a href="#cupsSideChannelWrite"><code>cupsSideChannelWrite</code></a> function
774to send its response. For example, the following code shows how to poll for a
775side-channel command and respond to it:</p>
776
777<pre class="example">
f7deaa1a 778#include &lt;cups/sidechannel.h&gt;
779
5a738aea
MS
780<a href="#cups_sc_command_t">cups_sc_command_t</a> command;
781<a href="#cups_sc_status_t">cups_sc_status_t</a> status;
20fbc903
MS
782char data[2048];
783int datalen = sizeof(data);
f7deaa1a 784
785/* Poll for a command... */
20fbc903 786if (!<a href="#cupsSideChannelRead">cupsSideChannelRead</a>(&amp;command, &amp;status, data, &amp;datalen, 0.0))
f7deaa1a 787{
f7deaa1a 788 switch (command)
789 {
20fbc903 790 /* handle supported commands, fill data/datalen/status with values as needed */
f7deaa1a 791
792 default :
793 status = CUPS_SC_STATUS_NOT_IMPLEMENTED;
794 datalen = 0;
795 break;
796 }
797
798 /* Send a response... */
5a738aea 799 <a href="#cupsSideChannelWrite">cupsSideChannelWrite</a>(command, status, data, datalen, 1.0);
f7deaa1a 800}
801</pre>
ac884b6a
MS
802
803<h3><a name="SNMP">Doing SNMP Queries with Network Printers</a></h3>
804
805<p>The Simple Network Management Protocol (SNMP) allows you to get the current
806status, page counter, and supply levels from most network printers. Every
807piece of information is associated with an Object Identifier (OID), and
808every printer has a <em>community</em> name associated with it. OIDs can be
809queried directly or by "walking" over a range of OIDs with a common prefix.</p>
810
20fbc903
MS
811<p>The two CUPS SNMP functions provide a simple API for querying network
812printers through the side-channel interface. Each accepts a string containing
813an OID like ".1.3.6.1.2.1.43.10.2.1.4.1.1" (the standard page counter OID)
814along with a timeout for the query.</p>
ac884b6a 815
20fbc903
MS
816<p>The <a href="#cupsSideChannelSNMPGet"><code>cupsSideChannelSNMPGet</code></a>
817function queries a single OID and returns the value as a string in a buffer
818you supply:</p>
ac884b6a
MS
819
820<pre class="example">
20fbc903 821#include &lt;cups/sidechannel.h&gt;
ac884b6a 822
20fbc903
MS
823char data[512];
824int datalen = sizeof(data);
ac884b6a 825
20fbc903
MS
826if (<a href="#cupsSideChannelSNMPGet">cupsSideChannelSNMPGet</a>(".1.3.6.1.2.1.43.10.2.1.4.1.1", data, &amp;datalen, 5.0)
827 == CUPS_SC_STATUS_OK)
ac884b6a
MS
828{
829 /* Do something with the value */
20fbc903 830 printf("Page counter is: %s\n", data);
ac884b6a
MS
831}
832</pre>
833
20fbc903
MS
834<p>The
835<a href="#cupsSideChannelSNMPWalk"><code>cupsSideChannelSNMPWalk</code></a>
836function allows you to query a whole group of OIDs, calling a function of your
837choice for each OID that is found:</p>
ac884b6a
MS
838
839<pre class="example">
20fbc903 840#include &lt;cups/sidechannel.h&gt;
ac884b6a
MS
841
842void
20fbc903 843my_callback(const char *oid, const char *data, int datalen, void *context)
ac884b6a
MS
844{
845 /* Do something with the value */
20fbc903 846 printf("%s=%s\n", oid, data);
ac884b6a
MS
847}
848
20fbc903
MS
849...
850
ac884b6a
MS
851void *my_data;
852
20fbc903 853<a href="#cupsSideChannelSNMPWalk">cupsSNMPSideChannelWalk</a>(".1.3.6.1.2.1.43", 5.0, my_callback, my_data);
ac884b6a 854</pre>