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