]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/cups.h
Merge changes from CUPS 1.4svn-r8606.
[thirdparty/cups.git] / cups / cups.h
CommitLineData
ef416fc2 1/*
b19ccc9e 2 * "$Id: cups.h 7847 2008-08-19 04:22:14Z mike $"
ef416fc2 3 *
4 * API definitions for the Common UNIX Printing System (CUPS).
5 *
d2354e63 6 * Copyright 2007-2009 by Apple Inc.
b86bc4cf 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 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 */
17
18#ifndef _CUPS_CUPS_H_
19# define _CUPS_CUPS_H_
20
21/*
22 * Include necessary headers...
23 */
24
b86bc4cf 25# include <sys/types.h>
26# if defined(WIN32) && !defined(__CUPS_SSIZE_T_DEFINED)
27# define __CUPS_SSIZE_T_DEFINED
28/* Windows does not support the ssize_t type, so map it to off_t... */
29typedef off_t ssize_t; /* @private@ */
30# endif /* WIN32 && !__CUPS_SSIZE_T_DEFINED */
31
ef416fc2 32# include "ipp.h"
33# include "ppd.h"
fa73b229 34# include "language.h"
35
ef416fc2 36
37/*
38 * With GCC 3.0 and higher, we can mark old APIs "deprecated" so you get
fa73b229 39 * a warning at compile-time.
ef416fc2 40 */
41
42# if defined(__GNUC__) && __GNUC__ > 2
43# define _CUPS_DEPRECATED __attribute__ ((__deprecated__))
44# else
45# define _CUPS_DEPRECATED
46# endif /* __GNUC__ && __GNUC__ > 2 */
47
48
49/*
50 * C++ magic...
51 */
52
53# ifdef __cplusplus
54extern "C" {
55# endif /* __cplusplus */
56
57
58/*
59 * Constants...
60 */
61
426c6a59 62# define CUPS_VERSION 1.0400
ef416fc2 63# define CUPS_VERSION_MAJOR 1
2e4ff8af 64# define CUPS_VERSION_MINOR 4
3d052e43
MS
65# define CUPS_VERSION_PATCH -1
66
79e1d494 67# define CUPS_BC_FD 3 /* Back-channel file descriptor for select/poll */
3d052e43 68# define CUPS_DATE_ANY (time_t)-1
ae71f5de 69# define CUPS_EXCLUDE_NONE (const char *)0
3d052e43 70# define CUPS_FORMAT_AUTO "application/octet-stream"
1f6f3dbc 71# define CUPS_FORMAT_COMMAND "application/vnd.cups-command"
3d052e43
MS
72# define CUPS_FORMAT_PDF "application/pdf"
73# define CUPS_FORMAT_POSTSCRIPT "application/postscript"
74# define CUPS_FORMAT_RAW "application/vnd.cups-raw"
75# define CUPS_FORMAT_TEXT "text/plain"
76# define CUPS_HTTP_DEFAULT (http_t *)0
ed6e7faf 77# define CUPS_INCLUDE_ALL (const char *)0
5a738aea
MS
78# define CUPS_JOBID_ALL -1
79# define CUPS_JOBID_CURRENT 0
3d052e43 80# define CUPS_LENGTH_VARIABLE (ssize_t)0
ae71f5de 81# define CUPS_TIMEOUT_DEFAULT 0
5a738aea
MS
82# define CUPS_WHICHJOBS_ALL -1
83# define CUPS_WHICHJOBS_ACTIVE 0
84# define CUPS_WHICHJOBS_COMPLETED 1
ef416fc2 85
86
87/*
88 * Types and structures...
89 */
90
5a738aea
MS
91typedef unsigned cups_ptype_t; /**** Printer type/capability bits ****/
92enum cups_ptype_e /**** Printer type/capability bit constants ****/
93{ /* Not a typedef'd enum so we can OR */
ef416fc2 94 CUPS_PRINTER_LOCAL = 0x0000, /* Local printer or class */
95 CUPS_PRINTER_CLASS = 0x0001, /* Printer class */
96 CUPS_PRINTER_REMOTE = 0x0002, /* Remote printer or class */
97 CUPS_PRINTER_BW = 0x0004, /* Can do B&W printing */
98 CUPS_PRINTER_COLOR = 0x0008, /* Can do color printing */
99 CUPS_PRINTER_DUPLEX = 0x0010, /* Can do duplexing */
100 CUPS_PRINTER_STAPLE = 0x0020, /* Can staple output */
101 CUPS_PRINTER_COPIES = 0x0040, /* Can do copies */
102 CUPS_PRINTER_COLLATE = 0x0080, /* Can collage copies */
103 CUPS_PRINTER_PUNCH = 0x0100, /* Can punch output */
104 CUPS_PRINTER_COVER = 0x0200, /* Can cover output */
105 CUPS_PRINTER_BIND = 0x0400, /* Can bind output */
106 CUPS_PRINTER_SORT = 0x0800, /* Can sort output */
107 CUPS_PRINTER_SMALL = 0x1000, /* Can do Letter/Legal/A4 */
108 CUPS_PRINTER_MEDIUM = 0x2000, /* Can do Tabloid/B/C/A3/A2 */
109 CUPS_PRINTER_LARGE = 0x4000, /* Can do D/E/A1/A0 */
110 CUPS_PRINTER_VARIABLE = 0x8000, /* Can do variable sizes */
111 CUPS_PRINTER_IMPLICIT = 0x10000, /* Implicit class */
112 CUPS_PRINTER_DEFAULT = 0x20000, /* Default printer on network */
113 CUPS_PRINTER_FAX = 0x40000, /* Fax queue */
114 CUPS_PRINTER_REJECTING = 0x80000, /* Printer is rejecting jobs */
426c6a59
MS
115 CUPS_PRINTER_DELETE = 0x100000, /* Delete printer @since CUPS 1.2/Mac OS X 10.5@ */
116 CUPS_PRINTER_NOT_SHARED = 0x200000, /* Printer is not shared @since CUPS 1.2/Mac OS X 10.5@ */
117 CUPS_PRINTER_AUTHENTICATED = 0x400000,/* Printer requires authentication @since CUPS 1.2/Mac OS X 10.5@ */
118 CUPS_PRINTER_COMMANDS = 0x800000, /* Printer supports maintenance commands @since CUPS 1.2/Mac OS X 10.5@ */
119 CUPS_PRINTER_DISCOVERED = 0x1000000, /* Printer was automatically discovered and added @since CUPS 1.3/Mac OS X 10.5@ */
b9faaae1
MS
120 CUPS_PRINTER_SCANNER = 0x2000000, /* Scanner-only device @since CUPS 1.4@ */
121 CUPS_PRINTER_MFP = 0x4000000, /* Printer with scanning capabilities @since CUPS 1.4@ */
5a738aea 122 CUPS_PRINTER_OPTIONS = 0x6fffc /* ~(CLASS | REMOTE | IMPLICIT | DEFAULT | FAX | REJECTING | DELETE | NOT_SHARED | AUTHENTICATED | COMMANDS | DISCOVERED) @private@ */
ef416fc2 123};
124
ae71f5de 125typedef const char *(*cups_password_cb_t)(const char *prompt);
ecdc0628 126 /**** Password callback ****/
ef416fc2 127
f11a948a
MS
128typedef const char *(*cups_password_cb2_t)(const char *prompt, http_t *http,
129 const char *method,
130 const char *resource,
131 void *user_data);
132 /**** New password callback @since CUPS 1.4@ ****/
133
ae71f5de
MS
134typedef void (*cups_device_cb_t)(const char *device_class,
135 const char *device_id, const char *device_info,
136 const char *device_make_and_model,
749b1e90
MS
137 const char *device_uri,
138 const char *device_location, void *user_data);
ae71f5de
MS
139 /**** Device callback @since CUPS 1.4@ ****/
140
ef416fc2 141typedef struct cups_option_s /**** Printer Options ****/
142{
143 char *name; /* Name of option */
144 char *value; /* Value of option */
145} cups_option_t;
146
147typedef struct cups_dest_s /**** Destination ****/
148{
149 char *name, /* Printer or class name */
150 *instance; /* Local instance name or NULL */
151 int is_default; /* Is this printer the default? */
152 int num_options; /* Number of options */
153 cups_option_t *options; /* Options */
154} cups_dest_t;
155
156typedef struct cups_job_s /**** Job ****/
157{
158 int id; /* The job ID */
ecdc0628 159 char *dest; /* Printer or class name */
160 char *title; /* Title/job name */
161 char *user; /* User the submitted the job */
162 char *format; /* Document format */
ef416fc2 163 ipp_jstate_t state; /* Job state */
ecdc0628 164 int size; /* Size in kilobytes */
165 int priority; /* Priority (1-100) */
166 time_t completed_time; /* Time the job was completed */
167 time_t creation_time; /* Time the job was created */
168 time_t processing_time; /* Time the job was processed */
ef416fc2 169} cups_job_t;
170
171
172/*
173 * Functions...
174 */
175
3d052e43 176extern int cupsCancelJob(const char *name, int job_id);
ef416fc2 177extern ipp_t *cupsDoFileRequest(http_t *http, ipp_t *request,
ecdc0628 178 const char *resource,
179 const char *filename);
180extern ipp_t *cupsDoRequest(http_t *http, ipp_t *request,
181 const char *resource);
ef416fc2 182extern http_encryption_t cupsEncryption(void);
183extern void cupsFreeJobs(int num_jobs, cups_job_t *jobs);
184extern int cupsGetClasses(char ***classes) _CUPS_DEPRECATED;
185extern const char *cupsGetDefault(void);
5a738aea
MS
186extern int cupsGetJobs(cups_job_t **jobs, const char *name,
187 int myjobs, int whichjobs);
3d052e43 188extern const char *cupsGetPPD(const char *name);
ef416fc2 189extern int cupsGetPrinters(char ***printers) _CUPS_DEPRECATED;
190extern ipp_status_t cupsLastError(void);
3d052e43 191extern int cupsPrintFile(const char *name, const char *filename,
ef416fc2 192 const char *title, int num_options,
193 cups_option_t *options);
3d052e43 194extern int cupsPrintFiles(const char *name, int num_files,
ef416fc2 195 const char **files, const char *title,
196 int num_options, cups_option_t *options);
197extern char *cupsTempFile(char *filename, int len) _CUPS_DEPRECATED;
198extern int cupsTempFd(char *filename, int len);
199
200extern int cupsAddDest(const char *name, const char *instance,
201 int num_dests, cups_dest_t **dests);
202extern void cupsFreeDests(int num_dests, cups_dest_t *dests);
203extern cups_dest_t *cupsGetDest(const char *name, const char *instance,
204 int num_dests, cups_dest_t *dests);
205extern int cupsGetDests(cups_dest_t **dests);
206extern void cupsSetDests(int num_dests, cups_dest_t *dests);
207
208extern int cupsAddOption(const char *name, const char *value,
209 int num_options, cups_option_t **options);
210extern void cupsEncodeOptions(ipp_t *ipp, int num_options,
211 cups_option_t *options);
212extern void cupsFreeOptions(int num_options, cups_option_t *options);
213extern const char *cupsGetOption(const char *name, int num_options,
214 cups_option_t *options);
ef416fc2 215extern int cupsMarkOptions(ppd_file_t *ppd, int num_options,
216 cups_option_t *options);
b423cd4c 217extern int cupsParseOptions(const char *arg, int num_options,
218 cups_option_t **options);
ef416fc2 219
220extern const char *cupsGetPassword(const char *prompt);
221extern const char *cupsServer(void);
222extern void cupsSetEncryption(http_encryption_t e);
223extern void cupsSetPasswordCB(cups_password_cb_t cb);
224extern void cupsSetServer(const char *server);
225extern void cupsSetUser(const char *user);
226extern const char *cupsUser(void);
227
228/**** New in CUPS 1.1.20 ****/
229extern int cupsDoAuthentication(http_t *http, const char *method,
2fb76298 230 const char *resource) _CUPS_API_1_1_20;
ef416fc2 231extern http_status_t cupsGetFile(http_t *http, const char *resource,
2fb76298 232 const char *filename) _CUPS_API_1_1_20;
ef416fc2 233extern http_status_t cupsGetFd(http_t *http, const char *resource, int fd);
234extern http_status_t cupsPutFile(http_t *http, const char *resource,
2fb76298
MS
235 const char *filename) _CUPS_API_1_1_20;
236extern http_status_t cupsPutFd(http_t *http, const char *resource, int fd) _CUPS_API_1_1_20;
ef416fc2 237
238/**** New in CUPS 1.1.21 ****/
2fb76298
MS
239extern const char *cupsGetDefault2(http_t *http) _CUPS_API_1_1_21;
240extern int cupsGetDests2(http_t *http, cups_dest_t **dests) _CUPS_API_1_1_21;
ef416fc2 241extern int cupsGetJobs2(http_t *http, cups_job_t **jobs,
3d052e43 242 const char *name, int myjobs,
5a738aea 243 int whichjobs) _CUPS_API_1_1_21;
3d052e43
MS
244extern const char *cupsGetPPD2(http_t *http, const char *name) _CUPS_API_1_1_21;
245extern int cupsPrintFile2(http_t *http, const char *name,
ef416fc2 246 const char *filename,
247 const char *title, int num_options,
2fb76298 248 cups_option_t *options) _CUPS_API_1_1_21;
3d052e43 249extern int cupsPrintFiles2(http_t *http, const char *name,
ef416fc2 250 int num_files, const char **files,
251 const char *title, int num_options,
2fb76298 252 cups_option_t *options) _CUPS_API_1_1_21;
ef416fc2 253extern int cupsSetDests2(http_t *http, int num_dests,
2fb76298 254 cups_dest_t *dests) _CUPS_API_1_1_21;
ef416fc2 255
256/**** New in CUPS 1.2 ****/
ecdc0628 257extern ssize_t cupsBackChannelRead(char *buffer, size_t bytes,
2fb76298 258 double timeout) _CUPS_API_1_2;
ecdc0628 259extern ssize_t cupsBackChannelWrite(const char *buffer, size_t bytes,
2fb76298 260 double timeout) _CUPS_API_1_2;
ef416fc2 261extern void cupsEncodeOptions2(ipp_t *ipp, int num_options,
262 cups_option_t *options,
2fb76298
MS
263 ipp_tag_t group_tag) _CUPS_API_1_2;
264extern const char *cupsLastErrorString(void) _CUPS_API_1_2;
265extern char *cupsNotifySubject(cups_lang_t *lang, ipp_t *event) _CUPS_API_1_2;
266extern char *cupsNotifyText(cups_lang_t *lang, ipp_t *event) _CUPS_API_1_2;
b423cd4c 267extern int cupsRemoveOption(const char *name, int num_options,
2fb76298
MS
268 cups_option_t **options) _CUPS_API_1_2;
269extern cups_file_t *cupsTempFile2(char *filename, int len) _CUPS_API_1_2;
ef416fc2 270
f7deaa1a 271/**** New in CUPS 1.3 ****/
b94498cf 272extern ipp_t *cupsDoIORequest(http_t *http, ipp_t *request,
273 const char *resource, int infile,
2fb76298
MS
274 int outfile) _CUPS_API_1_3;
275extern char *cupsGetServerPPD(http_t *http, const char *name) _CUPS_API_1_3;
f7deaa1a 276extern int cupsRemoveDest(const char *name,
277 const char *instance,
2fb76298 278 int num_dests, cups_dest_t **dests) _CUPS_API_1_3;
f7deaa1a 279extern void cupsSetDefaultDest(const char *name,
280 const char *instance,
281 int num_dests,
2fb76298 282 cups_dest_t *dests) _CUPS_API_1_3;
f7deaa1a 283
2e4ff8af 284/**** New in CUPS 1.4 ****/
5a738aea
MS
285extern ipp_status_t cupsCancelJob2(http_t *http, const char *name,
286 int job_id, int purge) _CUPS_API_1_4;
3d052e43
MS
287extern int cupsCreateJob(http_t *http, const char *name,
288 const char *title, int num_options,
289 cups_option_t *options) _CUPS_API_1_4;
290extern ipp_status_t cupsFinishDocument(http_t *http,
291 const char *name) _CUPS_API_1_4;
d2354e63
MS
292extern int cupsGetConflicts(ppd_file_t *ppd, const char *option,
293 const char *choice,
294 cups_option_t **options)
295 _CUPS_API_1_4;
ae71f5de 296extern ipp_status_t cupsGetDevices(http_t *http, int timeout,
ed6e7faf 297 const char *include_schemes,
38e73f87 298 const char *exclude_schemes,
ae71f5de
MS
299 cups_device_cb_t callback,
300 void *user_data) _CUPS_API_1_4;
a4924f6c
MS
301extern cups_dest_t *cupsGetNamedDest(http_t *http, const char *name,
302 const char *instance) _CUPS_API_1_4;
f11a948a
MS
303extern const char *cupsGetPassword2(const char *prompt, http_t *http,
304 const char *method,
305 const char *resource) _CUPS_API_1_4;
2e4ff8af
MS
306extern http_status_t cupsGetPPD3(http_t *http, const char *name,
307 time_t *modtime, char *buffer,
2fb76298 308 size_t bufsize) _CUPS_API_1_4;
3d052e43
MS
309extern ipp_t *cupsGetResponse(http_t *http,
310 const char *resource) _CUPS_API_1_4;
311extern ssize_t cupsReadResponseData(http_t *http, char *buffer,
312 size_t length) _CUPS_API_1_4;
66ab9486
MS
313extern int cupsResolveConflicts(ppd_file_t *ppd, const char *option,
314 const char *choice,
315 int *num_options,
1ff0402e
MS
316 cups_option_t **options)
317 _CUPS_API_1_4;
3d052e43
MS
318extern http_status_t cupsSendRequest(http_t *http, ipp_t *request,
319 const char *resource,
320 size_t length) _CUPS_API_1_4;
f11a948a
MS
321extern void cupsSetPasswordCB2(cups_password_cb2_t cb,
322 void *user_data) _CUPS_API_1_4;
3d052e43
MS
323extern http_status_t cupsStartDocument(http_t *http, const char *name,
324 int job_id, const char *docname,
325 const char *format,
326 int last_document) _CUPS_API_1_4;
327extern http_status_t cupsWriteRequestData(http_t *http, const char *buffer,
328 size_t length) _CUPS_API_1_4;
ef416fc2 329
330# ifdef __cplusplus
331}
332# endif /* __cplusplus */
333
334#endif /* !_CUPS_CUPS_H_ */
335
336/*
b19ccc9e 337 * End of "$Id: cups.h 7847 2008-08-19 04:22:14Z mike $".
ef416fc2 338 */