]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/printers.h
The scheduler did not return non-shared printers to local clients unless
[thirdparty/cups.git] / scheduler / printers.h
CommitLineData
ef416fc2 1/*
f2d18633 2 * "$Id$"
ef416fc2 3 *
7d644288 4 * Printer definitions for the CUPS scheduler.
ef416fc2 5 *
7ae00c35 6 * Copyright 2007-2016 by Apple Inc.
7d644288 7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 8 *
7d644288
MS
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/".
ef416fc2 14 */
15
f7deaa1a 16#ifdef HAVE_DNSSD
17# include <dns_sd.h>
f3c17241
MS
18#elif defined(HAVE_AVAHI)
19# include <avahi-client/client.h>
20# include <avahi-client/publish.h>
21# include <avahi-common/error.h>
22# include <avahi-common/thread-watch.h>
f7deaa1a 23#endif /* HAVE_DNSSD */
54afec33
MS
24#include <cups/pwg-private.h>
25
f7deaa1a 26
ef416fc2 27/*
28 * Quota data...
29 */
30
31typedef struct
32{
33 char username[33]; /* User data */
34 time_t next_update; /* Next update time */
35 int page_count, /* Count of pages */
36 k_count; /* Count of kilobytes */
37} cupsd_quota_t;
38
39
f3c17241
MS
40/*
41 * DNS-SD types to make the code cleaner/clearer...
42 */
43
44#ifdef HAVE_DNSSD
45typedef DNSServiceRef cupsd_srv_t; /* Service reference */
46typedef TXTRecordRef cupsd_txt_t; /* TXT record */
47
48#elif defined(HAVE_AVAHI)
49typedef AvahiEntryGroup *cupsd_srv_t; /* Service reference */
50typedef AvahiStringList *cupsd_txt_t; /* TXT record */
51#endif /* HAVE_DNSSD */
52
53
ef416fc2 54/*
55 * Printer/class information structure...
56 */
57
f11a948a
MS
58typedef struct cupsd_job_s cupsd_job_t;
59
10d09e33 60struct cupsd_printer_s
ef416fc2 61{
95ece0cb 62 _cups_rwlock_t lock; /* Concurrency lock for background updates */
ef416fc2 63 char *uri, /* Printer URI */
82f97232 64 *uuid, /* Printer UUID */
ef416fc2 65 *hostname, /* Host printer resides on */
66 *name, /* Printer name */
9b4bd602
MS
67 *location, /* Location string */
68 *geo_location, /* Geographic location URI */
ef416fc2 69 *make_model, /* Make and model */
70 *info, /* Description */
9b4bd602
MS
71 *organization, /* Organization name */
72 *organizational_unit, /* Organizational unit (department, etc.) */
ef416fc2 73 *op_policy, /* Operation policy name */
74 *error_policy; /* Error policy */
75 cupsd_policy_t *op_policy_ptr; /* Pointer to operation policy */
76 int shared; /* Shared? */
7ae00c35 77 int temporary; /* Temporary queue? */
ef416fc2 78 int accepting; /* Accepting jobs? */
61cf44e2 79 int holding_new_jobs; /* Holding new jobs for printing? */
ef416fc2 80 int in_implicit_class; /* In an implicit class? */
81 ipp_pstate_t state; /* Printer state */
82 char state_message[1024]; /* Printer state message */
83 int num_reasons; /* Number of printer-state-reasons */
d1c13e16 84 char *reasons[64]; /* printer-state-reasons strings */
9b4bd602
MS
85 time_t config_time, /* Time at this configuration */
86 state_time; /* Time at this state */
ef416fc2 87 char *job_sheets[2]; /* Banners/job sheets */
09a101d6 88 cups_ptype_t type; /* Printer type (color, small, etc.) */
ef416fc2 89 char *device_uri; /* Device URI */
0af14961 90 char *sanitized_device_uri; /* Sanitized device URI */
ef416fc2 91 char *port_monitor; /* Port monitor */
92 int raw; /* Raw queue? */
d09495fa 93 int remote; /* Remote queue? */
f7deaa1a 94 mime_type_t *filetype, /* Pseudo-filetype for printer */
95 *prefiltertype; /* Pseudo-filetype for pre-filters */
f14324a7
MS
96 cups_array_t *filetypes, /* Supported file types */
97 *dest_types; /* Destination types for queue */
f11a948a 98 cupsd_job_t *job; /* Current job in queue */
61cf44e2
MS
99 ipp_t *attrs, /* Attributes supported by this printer */
100 *ppd_attrs; /* Attributes based on the PPD */
ef416fc2 101 int num_printers, /* Number of printers in class */
102 last_printer; /* Last printer job was sent to */
103 struct cupsd_printer_s **printers; /* Printers in class */
104 int quota_period, /* Period for quotas */
105 page_limit, /* Maximum number of pages */
fa73b229 106 k_limit; /* Maximum number of kilobytes */
107 cups_array_t *quotas; /* Quota records */
10d09e33
MS
108 int deny_users; /* 1 = deny, 0 = allow */
109 cups_array_t *users; /* Allowed/denied users */
ef416fc2 110 int sequence_number; /* Increasing sequence number */
b423cd4c 111 int num_options; /* Number of default options */
112 cups_option_t *options; /* Default options */
f7deaa1a 113 int num_auth_info_required; /* Number of required auth fields */
114 const char *auth_info_required[4]; /* Required authentication fields */
323c5de1 115 char *alert, /* PSX printer-alert value */
116 *alert_description; /* PSX printer-alert-description value */
5a738aea 117 time_t marker_time; /* Last time marker attributes were updated */
f14324a7 118 _ppd_cache_t *pc; /* PPD cache and mapping data */
f7deaa1a 119
f3c17241 120#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
f7deaa1a 121 char *reg_name, /* Name used for service registration */
f3c17241
MS
122 *pdl; /* pdl value for TXT record */
123 cupsd_srv_t ipp_srv; /* IPP service(s) */
124# ifdef HAVE_DNSSD
125# ifdef HAVE_SSL
126 cupsd_srv_t ipps_srv; /* IPPS service(s) */
127# endif /* HAVE_SSL */
128 cupsd_srv_t printer_srv; /* LPD service */
129# endif /* HAVE_DNSSD */
130#endif /* HAVE_DNSSD || HAVE_AVAHI */
10d09e33 131};
ef416fc2 132
133
134/*
135 * Globals...
136 */
137
138VAR ipp_t *CommonData VALUE(NULL);
139 /* Common printer object attrs */
f7deaa1a 140VAR cups_array_t *CommonDefaults VALUE(NULL);
141 /* Common -default option names */
a2326b5b 142VAR cups_array_t *Printers VALUE(NULL);
ef416fc2 143 /* Printer list */
ef416fc2 144VAR cupsd_printer_t *DefaultPrinter VALUE(NULL);
145 /* Default printer */
146VAR char *DefaultPolicy VALUE(NULL);
147 /* Default policy name */
148VAR cupsd_policy_t *DefaultPolicyPtr
149 VALUE(NULL);
150 /* Pointer to default policy */
151
152
153/*
154 * Prototypes...
155 */
156
157extern cupsd_printer_t *cupsdAddPrinter(const char *name);
ef416fc2 158extern void cupsdCreateCommonData(void);
159extern void cupsdDeleteAllPrinters(void);
f8b3a85b 160extern int cupsdDeletePrinter(cupsd_printer_t *p, int update);
ef416fc2 161extern cupsd_printer_t *cupsdFindDest(const char *name);
162extern cupsd_printer_t *cupsdFindPrinter(const char *name);
3d8365b8 163extern cupsd_quota_t *cupsdFindQuota(cupsd_printer_t *p,
164 const char *username);
ef416fc2 165extern void cupsdFreeQuotas(cupsd_printer_t *p);
166extern void cupsdLoadAllPrinters(void);
f7deaa1a 167extern void cupsdRenamePrinter(cupsd_printer_t *p,
168 const char *name);
ef416fc2 169extern void cupsdSaveAllPrinters(void);
f7deaa1a 170extern int cupsdSetAuthInfoRequired(cupsd_printer_t *p,
171 const char *values,
172 ipp_attribute_t *attr);
0af14961 173extern void cupsdSetDeviceURI(cupsd_printer_t *p, const char *uri);
5a738aea 174extern void cupsdSetPrinterAttr(cupsd_printer_t *p,
7d644288
MS
175 const char *name,
176 const char *value);
ef416fc2 177extern void cupsdSetPrinterAttrs(cupsd_printer_t *p);
e07d4801 178extern int cupsdSetPrinterReasons(cupsd_printer_t *p,
f7deaa1a 179 const char *s);
180extern void cupsdSetPrinterState(cupsd_printer_t *p, ipp_pstate_t s,
181 int update);
a29fd7dd
MS
182#define cupsdStartPrinter(p,u) cupsdSetPrinterState((p), \
183 IPP_PRINTER_IDLE, (u))
ef416fc2 184extern void cupsdStopPrinter(cupsd_printer_t *p, int update);
c9fc04c6
MS
185extern int cupsdUpdatePrinterPPD(cupsd_printer_t *p,
186 int num_keywords,
187 cups_option_t *keywords);
ef416fc2 188extern void cupsdUpdatePrinters(void);
f7deaa1a 189extern cupsd_quota_t *cupsdUpdateQuota(cupsd_printer_t *p,
190 const char *username, int pages,
191 int k);
192extern const char *cupsdValidateDest(const char *uri,
ef416fc2 193 cups_ptype_t *dtype,
194 cupsd_printer_t **printer);
195extern void cupsdWritePrintcap(void);
196
ef416fc2 197
198/*
f2d18633 199 * End of "$Id$".
ef416fc2 200 */