]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/ipp.h
Load cups into easysw/current.
[thirdparty/cups.git] / cups / ipp.h
1 /*
2 * "$Id: ipp.h 5023 2006-01-29 14:39:44Z mike $"
3 *
4 * Internet Printing Protocol definitions for the Common UNIX Printing
5 * System (CUPS).
6 *
7 * Copyright 1997-2006 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Easy Software Products and are protected by Federal
11 * copyright law. Distribution and use rights are outlined in the file
12 * "LICENSE.txt" which should have been included with this file. If this
13 * file is missing or damaged please contact Easy Software Products
14 * at:
15 *
16 * Attn: CUPS Licensing Information
17 * Easy Software Products
18 * 44141 Airport View Drive, Suite 204
19 * Hollywood, Maryland 20636 USA
20 *
21 * Voice: (301) 373-9600
22 * EMail: cups-info@cups.org
23 * WWW: http://www.cups.org
24 *
25 * This file is subject to the Apple OS-Developed Software exception.
26 */
27
28 #ifndef _CUPS_IPP_H_
29 # define _CUPS_IPP_H_
30
31 /*
32 * Include necessary headers...
33 */
34
35 # include "http.h"
36
37
38 /*
39 * C++ magic...
40 */
41
42 # ifdef __cplusplus
43 extern "C" {
44 # endif /* __cplusplus */
45
46
47 /*
48 * IPP version string...
49 */
50
51 # define IPP_VERSION "\001\001"
52
53 /*
54 * IPP registered port number...
55 *
56 * Note: Applications should never use IPP_PORT, but instead use the
57 * ippPort() function to allow overrides via the IPP_PORT environment
58 * variable and services file if needed!
59 */
60
61 # define IPP_PORT 631
62
63 /*
64 * Common limits...
65 */
66
67 # define IPP_MAX_NAME 256
68 # define IPP_MAX_VALUES 8 /* Power-of-2 allocation increment */
69
70
71 /*
72 * Types and structures...
73 */
74
75 typedef enum /**** Format tags for attribute formats... ****/
76 {
77 IPP_TAG_ZERO = 0x00,
78 IPP_TAG_OPERATION,
79 IPP_TAG_JOB,
80 IPP_TAG_END,
81 IPP_TAG_PRINTER,
82 IPP_TAG_UNSUPPORTED_GROUP,
83 IPP_TAG_SUBSCRIPTION,
84 IPP_TAG_EVENT_NOTIFICATION,
85 IPP_TAG_UNSUPPORTED_VALUE = 0x10,
86 IPP_TAG_DEFAULT,
87 IPP_TAG_UNKNOWN,
88 IPP_TAG_NOVALUE,
89 IPP_TAG_NOTSETTABLE = 0x15,
90 IPP_TAG_DELETEATTR,
91 IPP_TAG_ADMINDEFINE,
92 IPP_TAG_INTEGER = 0x21,
93 IPP_TAG_BOOLEAN,
94 IPP_TAG_ENUM,
95 IPP_TAG_STRING = 0x30,
96 IPP_TAG_DATE,
97 IPP_TAG_RESOLUTION,
98 IPP_TAG_RANGE,
99 IPP_TAG_BEGIN_COLLECTION,
100 IPP_TAG_TEXTLANG,
101 IPP_TAG_NAMELANG,
102 IPP_TAG_END_COLLECTION,
103 IPP_TAG_TEXT = 0x41,
104 IPP_TAG_NAME,
105 IPP_TAG_KEYWORD = 0x44,
106 IPP_TAG_URI,
107 IPP_TAG_URISCHEME,
108 IPP_TAG_CHARSET,
109 IPP_TAG_LANGUAGE,
110 IPP_TAG_MIMETYPE,
111 IPP_TAG_MEMBERNAME,
112 IPP_TAG_MASK = 0x7fffffff, /* Mask for copied attribute values */
113 IPP_TAG_COPY = -0x7fffffff-1 /* Bitflag for copied attribute values */
114 } ipp_tag_t;
115
116 typedef enum /**** Resolution units... ****/
117 {
118 IPP_RES_PER_INCH = 3,
119 IPP_RES_PER_CM
120 } ipp_res_t;
121
122 typedef enum /**** Finishings... ****/
123 {
124 IPP_FINISHINGS_NONE = 3,
125 IPP_FINISHINGS_STAPLE,
126 IPP_FINISHINGS_PUNCH,
127 IPP_FINISHINGS_COVER,
128 IPP_FINISHINGS_BIND,
129 IPP_FINISHINGS_SADDLE_STITCH,
130 IPP_FINISHINGS_EDGE_STITCH,
131 IPP_FINISHINGS_FOLD,
132 IPP_FINISHINGS_TRIM,
133 IPP_FINISHINGS_BALE,
134 IPP_FINISHINGS_BOOKLET_MAKER,
135 IPP_FINISHINGS_JOB_OFFSET,
136 IPP_FINISHINGS_STAPLE_TOP_LEFT = 20,
137 IPP_FINISHINGS_STAPLE_BOTTOM_LEFT,
138 IPP_FINISHINGS_STAPLE_TOP_RIGHT,
139 IPP_FINISHINGS_STAPLE_BOTTOM_RIGHT,
140 IPP_FINISHINGS_EDGE_STITCH_LEFT,
141 IPP_FINISHINGS_EDGE_STITCH_TOP,
142 IPP_FINISHINGS_EDGE_STITCH_RIGHT,
143 IPP_FINISHINGS_EDGE_STITCH_BOTTOM,
144 IPP_FINISHINGS_STAPLE_DUAL_LEFT,
145 IPP_FINISHINGS_STAPLE_DUAL_TOP,
146 IPP_FINISHINGS_STAPLE_DUAL_RIGHT,
147 IPP_FINISHINGS_STAPLE_DUAL_BOTTOM,
148 IPP_FINISHINGS_BIND_LEFT = 50,
149 IPP_FINISHINGS_BIND_TOP,
150 IPP_FINISHINGS_BIND_RIGHT,
151 IPP_FINISHINGS_BIND_BOTTOM
152 } ipp_finish_t;
153
154 typedef enum /**** Orientation... ****/
155 {
156 IPP_PORTRAIT = 3, /* No rotation */
157 IPP_LANDSCAPE, /* 90 degrees counter-clockwise */
158 IPP_REVERSE_LANDSCAPE, /* 90 degrees clockwise */
159 IPP_REVERSE_PORTRAIT /* 180 degrees */
160 } ipp_orient_t;
161
162 typedef enum /**** Qualities... ****/
163 {
164 IPP_QUALITY_DRAFT = 3,
165 IPP_QUALITY_NORMAL,
166 IPP_QUALITY_HIGH
167 } ipp_quality_t;
168
169 typedef enum /**** Job States.... */
170 {
171 IPP_JOB_PENDING = 3,
172 IPP_JOB_HELD,
173 IPP_JOB_PROCESSING,
174 IPP_JOB_STOPPED,
175 IPP_JOB_CANCELLED,
176 IPP_JOB_ABORTED,
177 IPP_JOB_COMPLETED
178 } ipp_jstate_t;
179
180 typedef enum /**** Printer States.... */
181 {
182 IPP_PRINTER_IDLE = 3,
183 IPP_PRINTER_PROCESSING,
184 IPP_PRINTER_STOPPED
185 } ipp_pstate_t;
186
187 typedef enum /**** IPP states... ****/
188 {
189 IPP_ERROR = -1, /* An error occurred */
190 IPP_IDLE, /* Nothing is happening/request completed */
191 IPP_HEADER, /* The request header needs to be sent/received */
192 IPP_ATTRIBUTE, /* One or more attributes need to be sent/received */
193 IPP_DATA /* IPP request data needs to be sent/received */
194 } ipp_state_t;
195
196 typedef enum /**** IPP operations... ****/
197 {
198 IPP_PRINT_JOB = 0x0002,
199 IPP_PRINT_URI,
200 IPP_VALIDATE_JOB,
201 IPP_CREATE_JOB,
202 IPP_SEND_DOCUMENT,
203 IPP_SEND_URI,
204 IPP_CANCEL_JOB,
205 IPP_GET_JOB_ATTRIBUTES,
206 IPP_GET_JOBS,
207 IPP_GET_PRINTER_ATTRIBUTES,
208 IPP_HOLD_JOB,
209 IPP_RELEASE_JOB,
210 IPP_RESTART_JOB,
211 IPP_PAUSE_PRINTER = 0x0010,
212 IPP_RESUME_PRINTER,
213 IPP_PURGE_JOBS,
214 IPP_SET_PRINTER_ATTRIBUTES,
215 IPP_SET_JOB_ATTRIBUTES,
216 IPP_GET_PRINTER_SUPPORTED_VALUES,
217 IPP_CREATE_PRINTER_SUBSCRIPTION,
218 IPP_CREATE_JOB_SUBSCRIPTION,
219 IPP_GET_SUBSCRIPTION_ATTRIBUTES,
220 IPP_GET_SUBSCRIPTIONS,
221 IPP_RENEW_SUBSCRIPTION,
222 IPP_CANCEL_SUBSCRIPTION,
223 IPP_GET_NOTIFICATIONS,
224 IPP_SEND_NOTIFICATIONS,
225 IPP_GET_PRINT_SUPPORT_FILES = 0x0021,
226 IPP_ENABLE_PRINTER,
227 IPP_DISABLE_PRINTER,
228 IPP_PAUSE_PRINTER_AFTER_CURRENT_JOB,
229 IPP_HOLD_NEW_JOBS,
230 IPP_RELEASE_HELD_NEW_JOBS,
231 IPP_DEACTIVATE_PRINTER,
232 IPP_ACTIVATE_PRINTER,
233 IPP_RESTART_PRINTER,
234 IPP_SHUTDOWN_PRINTER,
235 IPP_STARTUP_PRINTER,
236 IPP_REPROCESS_JOB,
237 IPP_CANCEL_CURRENT_JOB,
238 IPP_SUSPEND_CURRENT_JOB,
239 IPP_RESUME_JOB,
240 IPP_PROMOTE_JOB,
241 IPP_SCHEDULE_JOB_AFTER,
242 IPP_PRIVATE = 0x4000,
243 CUPS_GET_DEFAULT,
244 CUPS_GET_PRINTERS,
245 CUPS_ADD_MODIFY_PRINTER,
246 CUPS_DELETE_PRINTER,
247 CUPS_GET_CLASSES,
248 CUPS_ADD_MODIFY_CLASS,
249 CUPS_DELETE_CLASS,
250 CUPS_ACCEPT_JOBS,
251 CUPS_REJECT_JOBS,
252 CUPS_SET_DEFAULT,
253 CUPS_GET_DEVICES,
254 CUPS_GET_PPDS,
255 CUPS_MOVE_JOB,
256 CUPS_AUTHENTICATE_JOB
257 } ipp_op_t;
258
259 /* Old names for the operations */
260 #define CUPS_ADD_PRINTER CUPS_ADD_MODIFY_PRINTER
261 #define CUPS_ADD_CLASS CUPS_ADD_MODIFY_CLASS
262
263 typedef enum /**** IPP status codes... ****/
264 {
265 IPP_OK = 0x0000,
266 IPP_OK_SUBST,
267 IPP_OK_CONFLICT,
268 IPP_OK_IGNORED_SUBSCRIPTIONS,
269 IPP_OK_IGNORED_NOTIFICATIONS,
270 IPP_OK_TOO_MANY_EVENTS,
271 IPP_OK_BUT_CANCEL_SUBSCRIPTION,
272 IPP_REDIRECTION_OTHER_SITE = 0x300,
273 IPP_BAD_REQUEST = 0x0400,
274 IPP_FORBIDDEN,
275 IPP_NOT_AUTHENTICATED,
276 IPP_NOT_AUTHORIZED,
277 IPP_NOT_POSSIBLE,
278 IPP_TIMEOUT,
279 IPP_NOT_FOUND,
280 IPP_GONE,
281 IPP_REQUEST_ENTITY,
282 IPP_REQUEST_VALUE,
283 IPP_DOCUMENT_FORMAT,
284 IPP_ATTRIBUTES,
285 IPP_URI_SCHEME,
286 IPP_CHARSET,
287 IPP_CONFLICT,
288 IPP_COMPRESSION_NOT_SUPPORTED,
289 IPP_COMPRESSION_ERROR,
290 IPP_DOCUMENT_FORMAT_ERROR,
291 IPP_DOCUMENT_ACCESS_ERROR,
292 IPP_ATTRIBUTES_NOT_SETTABLE,
293 IPP_IGNORED_ALL_SUBSCRIPTIONS,
294 IPP_TOO_MANY_SUBSCRIPTIONS,
295 IPP_IGNORED_ALL_NOTIFICATIONS,
296 IPP_PRINT_SUPPORT_FILE_NOT_FOUND,
297
298 IPP_INTERNAL_ERROR = 0x0500,
299 IPP_OPERATION_NOT_SUPPORTED,
300 IPP_SERVICE_UNAVAILABLE,
301 IPP_VERSION_NOT_SUPPORTED,
302 IPP_DEVICE_ERROR,
303 IPP_TEMPORARY_ERROR,
304 IPP_NOT_ACCEPTING,
305 IPP_PRINTER_BUSY,
306 IPP_ERROR_JOB_CANCELLED,
307 IPP_MULTIPLE_JOBS_NOT_SUPPORTED,
308 IPP_PRINTER_IS_DEACTIVATED
309 } ipp_status_t;
310
311 typedef unsigned char ipp_uchar_t; /**** Unsigned 8-bit integer/character ****/
312
313 /**** New in CUPS 1.2 ****/
314 typedef ssize_t (*ipp_iocb_t)(void *, ipp_uchar_t *, size_t);
315 /**** IPP IO Callback Function @since CUPS 1.2@ ****/
316
317 typedef union /**** Request Header ****/
318 {
319 struct /* Any Header */
320 {
321 ipp_uchar_t version[2]; /* Protocol version number */
322 int op_status; /* Operation ID or status code*/
323 int request_id; /* Request ID */
324 } any;
325
326 struct /* Operation Header */
327 {
328 ipp_uchar_t version[2]; /* Protocol version number */
329 ipp_op_t operation_id; /* Operation ID */
330 int request_id; /* Request ID */
331 } op;
332
333 struct /* Status Header */
334 {
335 ipp_uchar_t version[2]; /* Protocol version number */
336 ipp_status_t status_code; /* Status code */
337 int request_id; /* Request ID */
338 } status;
339
340 /**** New in CUPS 1.1.19 ****/
341 struct /* Event Header */
342 {
343 ipp_uchar_t version[2]; /* Protocol version number */
344 ipp_status_t status_code; /* Status code */
345 int request_id; /* Request ID */
346 } event;
347 } ipp_request_t;
348
349 /**** New in CUPS 1.1.19 ****/
350 typedef struct ipp_str ipp_t;
351
352 typedef union /**** Attribute Value ****/
353 {
354 int integer; /* Integer/enumerated value */
355
356 char boolean; /* Boolean value */
357
358 ipp_uchar_t date[11]; /* Date/time value */
359
360 struct
361 {
362 int xres, /* Horizontal resolution */
363 yres; /* Vertical resolution */
364 ipp_res_t units; /* Resolution units */
365 } resolution; /* Resolution value */
366
367 struct
368 {
369 int lower, /* Lower value */
370 upper; /* Upper value */
371 } range; /* Range of integers value */
372
373 struct
374 {
375 char *charset; /* Character set */
376 char *text; /* String */
377 } string; /* String with language value */
378
379 struct
380 {
381 int length; /* Length of attribute */
382 void *data; /* Data in attribute */
383 } unknown; /* Unknown attribute type */
384
385 /**** New in CUPS 1.1.19 ****/
386 ipp_t *collection; /* Collection value */
387 } ipp_value_t;
388
389 typedef struct ipp_attribute_s /**** Attribute ****/
390 {
391 struct ipp_attribute_s *next; /* Next attribute in list */
392 ipp_tag_t group_tag, /* Job/Printer/Operation group tag */
393 value_tag; /* What type of value is it? */
394 char *name; /* Name of attribute */
395 int num_values; /* Number of values */
396 ipp_value_t values[1]; /* Values */
397 } ipp_attribute_t;
398
399 struct ipp_str /**** IPP Request/Response/Notification ****/
400 {
401 ipp_state_t state; /* State of request */
402 ipp_request_t request; /* Request header */
403 ipp_attribute_t *attrs, /* Attributes */
404 *last, /* Last attribute in list */
405 *current; /* Current attribute (for read/write) */
406 ipp_tag_t curtag; /* Current attribute group tag */
407
408 /**** New in CUPS 1.2 ****/
409 ipp_attribute_t *prev; /* Previous attribute (for read) */
410 };
411
412
413 /*
414 * Prototypes...
415 */
416
417 extern ipp_attribute_t *ippAddBoolean(ipp_t *ipp, ipp_tag_t group,
418 const char *name, char value);
419 extern ipp_attribute_t *ippAddBooleans(ipp_t *ipp, ipp_tag_t group,
420 const char *name, int num_values,
421 const char *values);
422 extern ipp_attribute_t *ippAddDate(ipp_t *ipp, ipp_tag_t group,
423 const char *name, const ipp_uchar_t *value);
424 extern ipp_attribute_t *ippAddInteger(ipp_t *ipp, ipp_tag_t group,
425 ipp_tag_t type, const char *name,
426 int value);
427 extern ipp_attribute_t *ippAddIntegers(ipp_t *ipp, ipp_tag_t group,
428 ipp_tag_t type, const char *name,
429 int num_values, const int *values);
430 extern ipp_attribute_t *ippAddRange(ipp_t *ipp, ipp_tag_t group,
431 const char *name, int lower, int upper);
432 extern ipp_attribute_t *ippAddRanges(ipp_t *ipp, ipp_tag_t group,
433 const char *name, int num_values,
434 const int *lower, const int *upper);
435 extern ipp_attribute_t *ippAddResolution(ipp_t *ipp, ipp_tag_t group,
436 const char *name, ipp_res_t units,
437 int xres, int yres);
438 extern ipp_attribute_t *ippAddResolutions(ipp_t *ipp, ipp_tag_t group,
439 const char *name, int num_values,
440 ipp_res_t units, const int *xres,
441 const int *yres);
442 extern ipp_attribute_t *ippAddSeparator(ipp_t *ipp);
443 extern ipp_attribute_t *ippAddString(ipp_t *ipp, ipp_tag_t group,
444 ipp_tag_t type, const char *name,
445 const char *charset, const char *value);
446 extern ipp_attribute_t *ippAddStrings(ipp_t *ipp, ipp_tag_t group,
447 ipp_tag_t type, const char *name,
448 int num_values, const char *charset,
449 const char * const *values);
450 extern time_t ippDateToTime(const ipp_uchar_t *date);
451 extern void ippDelete(ipp_t *ipp);
452 extern const char *ippErrorString(ipp_status_t error);
453 extern ipp_attribute_t *ippFindAttribute(ipp_t *ipp, const char *name,
454 ipp_tag_t type);
455 extern ipp_attribute_t *ippFindNextAttribute(ipp_t *ipp, const char *name,
456 ipp_tag_t type);
457 extern size_t ippLength(ipp_t *ipp);
458 extern ipp_t *ippNew(void);
459 extern ipp_state_t ippRead(http_t *http, ipp_t *ipp);
460 extern const ipp_uchar_t *ippTimeToDate(time_t t);
461 extern ipp_state_t ippWrite(http_t *http, ipp_t *ipp);
462 extern int ippPort(void);
463 extern void ippSetPort(int p);
464
465 /**** New in CUPS 1.1.19 ****/
466 extern ipp_attribute_t *ippAddCollection(ipp_t *ipp, ipp_tag_t group,
467 const char *name, ipp_t *value);
468 extern ipp_attribute_t *ippAddCollections(ipp_t *ipp, ipp_tag_t group,
469 const char *name, int num_values,
470 const ipp_t **values);
471 extern void ippDeleteAttribute(ipp_t *ipp, ipp_attribute_t *attr);
472 extern ipp_state_t ippReadFile(int fd, ipp_t *ipp);
473 extern ipp_state_t ippWriteFile(int fd, ipp_t *ipp);
474
475 /**** New in CUPS 1.2 ****/
476 extern ipp_attribute_t *ippAddOctetString(ipp_t *ipp, ipp_tag_t group,
477 const char *name,
478 const void *data, int datalen);
479 extern ipp_status_t ippErrorValue(const char *name);
480 extern ipp_t *ippNewRequest(ipp_op_t op);
481 extern const char *ippOpString(ipp_op_t op);
482 extern ipp_op_t ippOpValue(const char *name);
483 extern ipp_state_t ippReadIO(void *src, ipp_iocb_t cb, int blocking,
484 ipp_t *parent, ipp_t *ipp);
485 extern ipp_state_t ippWriteIO(void *dst, ipp_iocb_t cb, int blocking,
486 ipp_t *parent, ipp_t *ipp);
487
488
489 /*
490 * C++ magic...
491 */
492
493 # ifdef __cplusplus
494 }
495 # endif /* __cplusplus */
496 #endif /* !_CUPS_IPP_H_ */
497
498 /*
499 * End of "$Id: ipp.h 5023 2006-01-29 14:39:44Z mike $".
500 */