]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/printers.h
Remove ".orig" files that somehow got into the repo.
[thirdparty/cups.git] / scheduler / printers.h
CommitLineData
ef416fc2 1/*
75bd9771 2 * "$Id: printers.h 7564 2008-05-15 00:57:43Z mike $"
ef416fc2 3 *
10d09e33 4 * Printer definitions for the CUPS scheduler.
ef416fc2 5 *
c8fef167 6 * Copyright 2007-2011 by Apple Inc.
f7deaa1a 7 * Copyright 1997-2007 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
f7deaa1a 16#ifdef HAVE_DNSSD
17# include <dns_sd.h>
18#endif /* HAVE_DNSSD */
54afec33
MS
19#include <cups/pwg-private.h>
20
f7deaa1a 21
ef416fc2 22/*
23 * Quota data...
24 */
25
26typedef struct
27{
28 char username[33]; /* User data */
29 time_t next_update; /* Next update time */
30 int page_count, /* Count of pages */
31 k_count; /* Count of kilobytes */
32} cupsd_quota_t;
33
34
35/*
36 * Printer/class information structure...
37 */
38
f11a948a
MS
39typedef struct cupsd_job_s cupsd_job_t;
40
10d09e33 41struct cupsd_printer_s
ef416fc2 42{
43 char *uri, /* Printer URI */
82f97232 44 *uuid, /* Printer UUID */
ef416fc2 45 *hostname, /* Host printer resides on */
46 *name, /* Printer name */
47 *location, /* Location code */
48 *make_model, /* Make and model */
49 *info, /* Description */
50 *op_policy, /* Operation policy name */
51 *error_policy; /* Error policy */
52 cupsd_policy_t *op_policy_ptr; /* Pointer to operation policy */
53 int shared; /* Shared? */
54 int accepting; /* Accepting jobs? */
61cf44e2 55 int holding_new_jobs; /* Holding new jobs for printing? */
ef416fc2 56 int in_implicit_class; /* In an implicit class? */
57 ipp_pstate_t state; /* Printer state */
58 char state_message[1024]; /* Printer state message */
59 int num_reasons; /* Number of printer-state-reasons */
d1c13e16 60 char *reasons[64]; /* printer-state-reasons strings */
ef416fc2 61 time_t state_time; /* Time at this state */
62 char *job_sheets[2]; /* Banners/job sheets */
09a101d6 63 cups_ptype_t type; /* Printer type (color, small, etc.) */
ef416fc2 64 char *device_uri; /* Device URI */
0af14961 65 char *sanitized_device_uri; /* Sanitized device URI */
ef416fc2 66 char *port_monitor; /* Port monitor */
67 int raw; /* Raw queue? */
d09495fa 68 int remote; /* Remote queue? */
f7deaa1a 69 mime_type_t *filetype, /* Pseudo-filetype for printer */
70 *prefiltertype; /* Pseudo-filetype for pre-filters */
f14324a7
MS
71 cups_array_t *filetypes, /* Supported file types */
72 *dest_types; /* Destination types for queue */
f11a948a 73 cupsd_job_t *job; /* Current job in queue */
61cf44e2
MS
74 ipp_t *attrs, /* Attributes supported by this printer */
75 *ppd_attrs; /* Attributes based on the PPD */
ef416fc2 76 int num_printers, /* Number of printers in class */
77 last_printer; /* Last printer job was sent to */
78 struct cupsd_printer_s **printers; /* Printers in class */
79 int quota_period, /* Period for quotas */
80 page_limit, /* Maximum number of pages */
fa73b229 81 k_limit; /* Maximum number of kilobytes */
82 cups_array_t *quotas; /* Quota records */
10d09e33
MS
83 int deny_users; /* 1 = deny, 0 = allow */
84 cups_array_t *users; /* Allowed/denied users */
ef416fc2 85 int sequence_number; /* Increasing sequence number */
b423cd4c 86 int num_options; /* Number of default options */
87 cups_option_t *options; /* Default options */
f7deaa1a 88 int num_auth_info_required; /* Number of required auth fields */
89 const char *auth_info_required[4]; /* Required authentication fields */
323c5de1 90 char *alert, /* PSX printer-alert value */
91 *alert_description; /* PSX printer-alert-description value */
5a738aea 92 time_t marker_time; /* Last time marker attributes were updated */
f14324a7 93 _ppd_cache_t *pc; /* PPD cache and mapping data */
f7deaa1a 94
95#ifdef HAVE_DNSSD
96 char *reg_name, /* Name used for service registration */
f7deaa1a 97 *pdl, /* pdl value for TXT record */
7a14d768
MS
98 *ipp_txt, /* IPP TXT record contents */
99 *printer_txt; /* LPD TXT record contents */
100 int ipp_len, /* IPP TXT record length */
101 printer_len; /* LPD TXT record length */
102 DNSServiceRef ipp_ref, /* Reference for _ipp._tcp,_cups */
103 printer_ref; /* Reference for _printer._tcp */
f7deaa1a 104#endif /* HAVE_DNSSD */
10d09e33 105};
ef416fc2 106
107
108/*
109 * Globals...
110 */
111
112VAR ipp_t *CommonData VALUE(NULL);
113 /* Common printer object attrs */
f7deaa1a 114VAR cups_array_t *CommonDefaults VALUE(NULL);
115 /* Common -default option names */
a2326b5b 116VAR cups_array_t *Printers VALUE(NULL);
ef416fc2 117 /* Printer list */
ef416fc2 118VAR cupsd_printer_t *DefaultPrinter VALUE(NULL);
119 /* Default printer */
120VAR char *DefaultPolicy VALUE(NULL);
121 /* Default policy name */
122VAR cupsd_policy_t *DefaultPolicyPtr
123 VALUE(NULL);
124 /* Pointer to default policy */
125
126
127/*
128 * Prototypes...
129 */
130
131extern cupsd_printer_t *cupsdAddPrinter(const char *name);
ef416fc2 132extern void cupsdCreateCommonData(void);
133extern void cupsdDeleteAllPrinters(void);
f8b3a85b 134extern int cupsdDeletePrinter(cupsd_printer_t *p, int update);
ef416fc2 135extern cupsd_printer_t *cupsdFindDest(const char *name);
136extern cupsd_printer_t *cupsdFindPrinter(const char *name);
3d8365b8 137extern cupsd_quota_t *cupsdFindQuota(cupsd_printer_t *p,
138 const char *username);
ef416fc2 139extern void cupsdFreeQuotas(cupsd_printer_t *p);
140extern void cupsdLoadAllPrinters(void);
f7deaa1a 141extern void cupsdRenamePrinter(cupsd_printer_t *p,
142 const char *name);
ef416fc2 143extern void cupsdSaveAllPrinters(void);
f7deaa1a 144extern int cupsdSetAuthInfoRequired(cupsd_printer_t *p,
145 const char *values,
146 ipp_attribute_t *attr);
0af14961 147extern void cupsdSetDeviceURI(cupsd_printer_t *p, const char *uri);
5a738aea
MS
148extern void cupsdSetPrinterAttr(cupsd_printer_t *p,
149 const char *name, char *value);
ef416fc2 150extern void cupsdSetPrinterAttrs(cupsd_printer_t *p);
e07d4801 151extern int cupsdSetPrinterReasons(cupsd_printer_t *p,
f7deaa1a 152 const char *s);
153extern void cupsdSetPrinterState(cupsd_printer_t *p, ipp_pstate_t s,
154 int update);
ef416fc2 155#define cupsdStartPrinter(p,u) cupsdSetPrinterState((p), IPP_PRINTER_IDLE, (u))
156extern void cupsdStopPrinter(cupsd_printer_t *p, int update);
c9fc04c6
MS
157extern int cupsdUpdatePrinterPPD(cupsd_printer_t *p,
158 int num_keywords,
159 cups_option_t *keywords);
ef416fc2 160extern void cupsdUpdatePrinters(void);
f7deaa1a 161extern cupsd_quota_t *cupsdUpdateQuota(cupsd_printer_t *p,
162 const char *username, int pages,
163 int k);
164extern const char *cupsdValidateDest(const char *uri,
ef416fc2 165 cups_ptype_t *dtype,
166 cupsd_printer_t **printer);
167extern void cupsdWritePrintcap(void);
168
ef416fc2 169
170/*
75bd9771 171 * End of "$Id: printers.h 7564 2008-05-15 00:57:43Z mike $".
ef416fc2 172 */