]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/ipp-support.c
Merge changes from CUPS 1.5svn-r9000.
[thirdparty/cups.git] / cups / ipp-support.c
CommitLineData
ef416fc2 1/*
1ff0402e 2 * "$Id: ipp-support.c 7847 2008-08-19 04:22:14Z mike $"
ef416fc2 3 *
4 * Internet Printing Protocol support functions for the Common UNIX
5 * Printing System (CUPS).
6 *
e07d4801 7 * Copyright 2007-2009 by Apple Inc.
b94498cf 8 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 9 *
10 * These coded instructions, statements, and computer programs are the
bc44d920 11 * property of Apple Inc. and are protected by Federal copyright
12 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
13 * which should have been included with this file. If this file is
14 * file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 15 *
16 * This file is subject to the Apple OS-Developed Software exception.
17 *
18 * Contents:
19 *
20 * ippErrorString() - Return a name for the given status code.
21 * ippErrorValue() - Return a status code for the given name.
22 * ippOpString() - Return a name for the given operation id.
23 * ippOpValue() - Return an operation id for the given name.
24 * ippPort() - Return the default IPP port number.
25 * ippSetPort() - Set the default port number.
ed6e7faf
MS
26 * ippTagString() - Return the tag name corresponding to a tag value.
27 * ippTagValue() - Return the tag value corresponding to a tag name.
ef416fc2 28 */
29
30/*
31 * Include necessary headers...
32 */
33
34#include "globals.h"
35#include "debug.h"
36#include <stdlib.h>
37
38
39/*
40 * Local globals...
41 */
42
43static const char * const ipp_status_oks[] = /* "OK" status codes */
44 {
45 "successful-ok",
46 "successful-ok-ignored-or-substituted-attributes",
47 "successful-ok-conflicting-attributes",
48 "successful-ok-ignored-subscriptions",
49 "successful-ok-ignored-notifications",
50 "successful-ok-too-many-events",
bd7854cb 51 "successful-ok-but-cancel-subscription",
52 "successful-ok-events-complete"
ef416fc2 53 },
54 * const ipp_status_400s[] = /* Client errors */
55 {
56 "client-error-bad-request",
57 "client-error-forbidden",
58 "client-error-not-authenticated",
59 "client-error-not-authorized",
60 "client-error-not-possible",
61 "client-error-timeout",
62 "client-error-not-found",
63 "client-error-gone",
64 "client-error-request-entity-too-large",
65 "client-error-request-value-too-long",
66 "client-error-document-format-not-supported",
67 "client-error-attributes-or-values-not-supported",
68 "client-error-uri-scheme-not-supported",
69 "client-error-charset-not-supported",
70 "client-error-conflicting-attributes",
71 "client-error-compression-not-supported",
72 "client-error-compression-error",
73 "client-error-document-format-error",
74 "client-error-document-access-error",
75 "client-error-attributes-not-settable",
76 "client-error-ignored-all-subscriptions",
77 "client-error-too-many-subscriptions",
78 "client-error-ignored-all-notifications",
79 "client-error-print-support-file-not-found"
80 },
81 * const ipp_status_500s[] = /* Server errors */
82 {
83 "server-error-internal-error",
84 "server-error-operation-not-supported",
85 "server-error-service-unavailable",
86 "server-error-version-not-supported",
87 "server-error-device-error",
88 "server-error-temporary-error",
89 "server-error-not-accepting-jobs",
90 "server-error-busy",
91 "server-error-job-canceled",
92 "server-error-multiple-document-jobs-not-supported",
93 "server-error-printer-is-deactivated"
94 };
95static char * const ipp_std_ops[] =
96 {
97 /* 0x0000 - 0x000f */
98 "", "", "Print-Job", "Print-URI",
99 "Validate-Job", "Create-Job", "Send-Document",
100 "Send-URI", "Cancel-Job", "Get-Job-Attributes",
101 "Get-Jobs", "Get-Printer-Attributes",
102 "Hold-Job", "Release-Job", "Restart-Job", "",
103
104 /* 0x0010 - 0x001f */
105 "Pause-Printer", "Resume-Printer",
106 "Purge-Jobs", "Set-Printer-Attributes",
107 "Set-Job-Attributes",
108 "Get-Printer-Supported-Values",
109 "Create-Printer-Subscription",
110 "Create-Job-Subscription",
111 "Get-Subscription-Attributes",
112 "Get-Subscriptions", "Renew-Subscription",
113 "Cancel-Subscription", "Get-Notifications",
114 "Send-Notifications", "", "",
115
116 /* 0x0020 - 0x002f */
117 "",
118 "Get-Printer-Support-Files",
119 "Enable-Printer",
120 "Disable-Printer",
121 "Pause-Printer-After-Current-Job",
122 "Hold-New-Jobs",
123 "Release-Held-New-Jobs",
124 "Deactivate-Printer",
125 "Activate-Printer",
126 "Restart-Printer",
127 "Shutdown-Printer",
128 "Startup-Printer",
129 "Reprocess-Job",
130 "Cancel-Current-Job",
131 "Suspend-Current-Job",
132 "Resume-Job",
133
134 /* 0x0030 - 0x0031 */
135 "Promote-Job",
136 "Schedule-Job-After"
137 },
138 * const ipp_cups_ops[] =
139 {
140 "CUPS-Get-Default",
141 "CUPS-Get-Printers",
480ef0fe 142 "CUPS-Add-Modify-Printer",
ef416fc2 143 "CUPS-Delete-Printer",
144 "CUPS-Get-Classes",
480ef0fe 145 "CUPS-Add-Modify-Class",
ef416fc2 146 "CUPS-Delete-Class",
147 "CUPS-Accept-Jobs",
148 "CUPS-Reject-Jobs",
149 "CUPS-Set-Default",
150 "CUPS-Get-Devices",
151 "CUPS-Get-PPDs",
152 "CUPS-Move-Job",
b94498cf 153 "CUPS-Authenticate-Job",
154 "CUPS-Get-PPD"
2e4ff8af
MS
155 },
156 * const ipp_cups_ops2[] =
157 {
158 "CUPS-Get-Document"
1ff0402e
MS
159 },
160 * const ipp_tag_names[] =
161 { /* Value/group tag names */
162 "zero", /* 0x00 */
163 "operation-attributes-tag",
164 /* 0x01 */
165 "job-attributes-tag", /* 0x02 */
166 "end-of-attributes-tag",
167 /* 0x03 */
168 "printer-attributes-tag",
169 /* 0x04 */
170 "unsupported-attributes-tag",
171 /* 0x05 */
172 "subscription-attributes-tag",
173 /* 0x06 */
174 "event-notification-attributes-tag",
175 /* 0x07 */
176 "unknown-08", /* 0x08 */
177 "unknown-09", /* 0x09 */
178 "unknown-0a", /* 0x0a */
179 "unknown-0b", /* 0x0b */
180 "unknown-0c", /* 0x0c */
181 "unknown-0d", /* 0x0d */
182 "unknown-0e", /* 0x0e */
183 "unknown-0f", /* 0x0f */
184 "unsupported", /* 0x10 */
185 "default", /* 0x11 */
186 "unknown", /* 0x12 */
187 "no-value", /* 0x13 */
188 "unknown-14", /* 0x14 */
189 "not-settable", /* 0x15 */
190 "delete-attribute", /* 0x16 */
191 "admin-define", /* 0x17 */
192 "unknown-18", /* 0x18 */
193 "unknown-19", /* 0x19 */
194 "unknown-1a", /* 0x1a */
195 "unknown-1b", /* 0x1b */
196 "unknown-1c", /* 0x1c */
197 "unknown-1d", /* 0x1d */
198 "unknown-1e", /* 0x1e */
199 "unknown-1f", /* 0x1f */
200 "unknown-20", /* 0x20 */
201 "integer", /* 0x21 */
202 "boolean", /* 0x22 */
203 "enum", /* 0x23 */
204 "unknown-24", /* 0x24 */
205 "unknown-25", /* 0x25 */
206 "unknown-26", /* 0x26 */
207 "unknown-27", /* 0x27 */
208 "unknown-28", /* 0x28 */
209 "unknown-29", /* 0x29 */
210 "unknown-2a", /* 0x2a */
211 "unknown-2b", /* 0x2b */
212 "unknown-2c", /* 0x2c */
213 "unknown-2d", /* 0x2d */
214 "unknown-2e", /* 0x2e */
215 "unknown-2f", /* 0x2f */
216 "octetString", /* 0x30 */
217 "dateTime", /* 0x31 */
218 "resolution", /* 0x32 */
219 "rangeOfInteger", /* 0x33 */
f8b3a85b 220 "collection", /* 0x34 */
1ff0402e
MS
221 "textWithLanguage", /* 0x35 */
222 "nameWithLanguage", /* 0x36 */
223 "endCollection", /* 0x37 */
224 "unknown-38", /* 0x38 */
225 "unknown-39", /* 0x39 */
226 "unknown-3a", /* 0x3a */
227 "unknown-3b", /* 0x3b */
228 "unknown-3c", /* 0x3c */
229 "unknown-3d", /* 0x3d */
230 "unknown-3e", /* 0x3e */
231 "unknown-3f", /* 0x3f */
232 "unknown-40", /* 0x40 */
233 "textWithoutLanguage",/* 0x41 */
234 "nameWithoutLanguage",/* 0x42 */
235 "unknown-43", /* 0x43 */
236 "keyword", /* 0x44 */
237 "uri", /* 0x45 */
238 "uriScheme", /* 0x46 */
239 "charset", /* 0x47 */
240 "naturalLanguage", /* 0x48 */
241 "mimeMediaType", /* 0x49 */
242 "memberAttrName" /* 0x4a */
ef416fc2 243 };
244
245
246/*
247 * 'ippErrorString()' - Return a name for the given status code.
248 */
249
250const char * /* O - Text string */
251ippErrorString(ipp_status_t error) /* I - Error status */
252{
253 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
254
255
256 /*
257 * See if the error code is a known value...
258 */
259
bd7854cb 260 if (error >= IPP_OK && error <= IPP_OK_EVENTS_COMPLETE)
ef416fc2 261 return (ipp_status_oks[error]);
262 else if (error == IPP_REDIRECTION_OTHER_SITE)
263 return ("redirection-other-site");
b94498cf 264 else if (error == CUPS_SEE_OTHER)
265 return ("cups-see-other");
ef416fc2 266 else if (error >= IPP_BAD_REQUEST && error <= IPP_PRINT_SUPPORT_FILE_NOT_FOUND)
267 return (ipp_status_400s[error - IPP_BAD_REQUEST]);
268 else if (error >= IPP_INTERNAL_ERROR && error <= IPP_PRINTER_IS_DEACTIVATED)
269 return (ipp_status_500s[error - IPP_INTERNAL_ERROR]);
270
271 /*
272 * No, build an "unknown-xxxx" error string...
273 */
274
275 sprintf(cg->ipp_unknown, "unknown-%04x", error);
276
277 return (cg->ipp_unknown);
278}
279
280
281/*
282 * 'ippErrorValue()' - Return a status code for the given name.
283 *
426c6a59 284 * @since CUPS 1.2/Mac OS X 10.5@
ef416fc2 285 */
286
287ipp_status_t /* O - IPP status code */
288ippErrorValue(const char *name) /* I - Name */
289{
290 int i;
291
292
293 for (i = 0; i < (sizeof(ipp_status_oks) / sizeof(ipp_status_oks[0])); i ++)
294 if (!strcasecmp(name, ipp_status_oks[i]))
295 return ((ipp_status_t)i);
296
297 if (!strcasecmp(name, "redirection-other-site"))
298 return (IPP_REDIRECTION_OTHER_SITE);
299
b94498cf 300 if (!strcasecmp(name, "cups-see-other"))
301 return (CUPS_SEE_OTHER);
302
ef416fc2 303 for (i = 0; i < (sizeof(ipp_status_400s) / sizeof(ipp_status_400s[0])); i ++)
304 if (!strcasecmp(name, ipp_status_400s[i]))
305 return ((ipp_status_t)(i + 0x400));
306
307 for (i = 0; i < (sizeof(ipp_status_500s) / sizeof(ipp_status_500s[0])); i ++)
308 if (!strcasecmp(name, ipp_status_500s[i]))
309 return ((ipp_status_t)(i + 0x500));
310
311 return ((ipp_status_t)-1);
312}
313
314
315/*
316 * 'ippOpString()' - Return a name for the given operation id.
317 *
426c6a59 318 * @since CUPS 1.2/Mac OS X 10.5@
ef416fc2 319 */
320
321const char * /* O - Name */
322ippOpString(ipp_op_t op) /* I - Operation ID */
323{
324 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
325
326
327 /*
328 * See if the operation ID is a known value...
329 */
330
331 if (op >= IPP_PRINT_JOB && op <= IPP_SCHEDULE_JOB_AFTER)
332 return (ipp_std_ops[op]);
333 else if (op == IPP_PRIVATE)
334 return ("windows-ext");
b94498cf 335 else if (op >= CUPS_GET_DEFAULT && op <= CUPS_GET_PPD)
ef416fc2 336 return (ipp_cups_ops[op - CUPS_GET_DEFAULT]);
2e4ff8af
MS
337 else if (op == CUPS_GET_DOCUMENT)
338 return (ipp_cups_ops2[0]);
ef416fc2 339
340 /*
341 * No, build an "unknown-xxxx" operation string...
342 */
343
344 sprintf(cg->ipp_unknown, "unknown-%04x", op);
345
346 return (cg->ipp_unknown);
347}
348
349
350/*
351 * 'ippOpValue()' - Return an operation id for the given name.
352 *
426c6a59 353 * @since CUPS 1.2/Mac OS X 10.5@
ef416fc2 354 */
355
356ipp_op_t /* O - Operation ID */
357ippOpValue(const char *name) /* I - Textual name */
358{
359 int i;
360
361
362 for (i = 0; i < (sizeof(ipp_std_ops) / sizeof(ipp_std_ops[0])); i ++)
363 if (!strcasecmp(name, ipp_std_ops[i]))
364 return ((ipp_op_t)i);
365
366 if (!strcasecmp(name, "windows-ext"))
367 return (IPP_PRIVATE);
368
369 for (i = 0; i < (sizeof(ipp_cups_ops) / sizeof(ipp_cups_ops[0])); i ++)
370 if (!strcasecmp(name, ipp_cups_ops[i]))
371 return ((ipp_op_t)(i + 0x4001));
372
2e4ff8af
MS
373 for (i = 0; i < (sizeof(ipp_cups_ops2) / sizeof(ipp_cups_ops2[0])); i ++)
374 if (!strcasecmp(name, ipp_cups_ops2[i]))
375 return ((ipp_op_t)(i + 0x4027));
376
480ef0fe 377 if (!strcasecmp(name, "CUPS-Add-Class"))
378 return (CUPS_ADD_MODIFY_CLASS);
379
380 if (!strcasecmp(name, "CUPS-Add-Printer"))
381 return (CUPS_ADD_MODIFY_PRINTER);
382
ef416fc2 383 return ((ipp_op_t)-1);
384}
385
386
387/*
388 * 'ippPort()' - Return the default IPP port number.
389 */
390
391int /* O - Port number */
392ippPort(void)
393{
ef416fc2 394 _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
395
396
d09495fa 397 DEBUG_puts("ippPort()");
398
399 if (!cg->ipp_port)
e07d4801 400 _cupsSetDefaults();
d09495fa 401
e07d4801 402 DEBUG_printf(("1ippPort: Returning %d...", cg->ipp_port));
d09495fa 403
ef416fc2 404 return (cg->ipp_port);
405}
406
407
408/*
409 * 'ippSetPort()' - Set the default port number.
410 */
411
412void
413ippSetPort(int p) /* I - Port number to use */
414{
e07d4801 415 DEBUG_printf(("ippSetPort(p=%d)", p));
d09495fa 416
ef416fc2 417 _cupsGlobals()->ipp_port = p;
418}
419
420
421/*
1ff0402e
MS
422 * 'ippTagString()' - Return the tag name corresponding to a tag value.
423 *
424 * The returned names are defined in RFC 2911 and 3382.
425 *
178cb736 426 * @since CUPS 1.4/Mac OS X 10.6@
1ff0402e
MS
427 */
428
429const char * /* O - Tag name */
430ippTagString(ipp_tag_t tag) /* I - Tag value */
431{
ed6e7faf
MS
432 tag &= IPP_TAG_MASK;
433
1ff0402e
MS
434 if (tag < (ipp_tag_t)(sizeof(ipp_tag_names) / sizeof(ipp_tag_names[0])))
435 return (ipp_tag_names[tag]);
436 else
437 return ("UNKNOWN");
438}
439
440
441/*
442 * 'ippTagValue()' - Return the tag value corresponding to a tag name.
443 *
444 * The tag names are defined in RFC 2911 and 3382.
445 *
178cb736 446 * @since CUPS 1.4/Mac OS X 10.6@
1ff0402e
MS
447 */
448
449ipp_tag_t /* O - Tag value */
450ippTagValue(const char *name) /* I - Tag name */
451{
452 int i; /* Looping var */
453
454
455 for (i = 0; i < (sizeof(ipp_tag_names) / sizeof(ipp_tag_names[0])); i ++)
456 if (!strcasecmp(name, ipp_tag_names[i]))
457 return ((ipp_tag_t)i);
458
459 if (!strcasecmp(name, "operation"))
460 return (IPP_TAG_OPERATION);
461 else if (!strcasecmp(name, "job"))
462 return (IPP_TAG_JOB);
463 else if (!strcasecmp(name, "printer"))
464 return (IPP_TAG_PRINTER);
465 else if (!strcasecmp(name, "subscription"))
466 return (IPP_TAG_SUBSCRIPTION);
467 else if (!strcasecmp(name, "language"))
468 return (IPP_TAG_LANGUAGE);
469 else if (!strcasecmp(name, "mimetype"))
470 return (IPP_TAG_MIMETYPE);
471 else if (!strcasecmp(name, "name"))
472 return (IPP_TAG_NAME);
473 else if (!strcasecmp(name, "text"))
474 return (IPP_TAG_TEXT);
475 else
476 return (IPP_TAG_ZERO);
477}
478
479
480/*
481 * End of "$Id: ipp-support.c 7847 2008-08-19 04:22:14Z mike $".
ef416fc2 482 */