]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/subscriptions.h
Fix source file header text duplication text duplication.
[thirdparty/cups.git] / scheduler / subscriptions.h
CommitLineData
ef416fc2 1/*
503b54c9 2 * Subscription definitions for the CUPS scheduler.
ef416fc2 3 *
503b54c9
MS
4 * Copyright 2007-2010 by Apple Inc.
5 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 6 *
503b54c9
MS
7 * These coded instructions, statements, and computer programs are the
8 * property of Apple Inc. and are protected by Federal copyright
9 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
10 * which should have been included with this file. If this file is
57b7b66b 11 * missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 12 */
13
14/*
15 * Event mask enumeration...
16 */
17
18typedef enum
19{
20 /* Individual printer events... */
d9bca400
MS
21 CUPSD_EVENT_PRINTER_STATE = 0x0001, /* Sent after generic printer state change */
22 CUPSD_EVENT_PRINTER_RESTARTED = 0x0002,
ef416fc2 23 /* Sent after printer restarted */
d9bca400
MS
24 CUPSD_EVENT_PRINTER_SHUTDOWN = 0x0004,/* Sent after printer shutdown */
25 CUPSD_EVENT_PRINTER_STOPPED = 0x0008, /* Sent after printer stopped */
26
27 CUPSD_EVENT_PRINTER_CONFIG = 0x0010, /* Send after add/modify changes attrs */
28 CUPSD_EVENT_PRINTER_FINISHINGS_CHANGED = 0x0020,
ef416fc2 29 /* Sent after finishings-supported changed */
d9bca400 30 CUPSD_EVENT_PRINTER_MEDIA_CHANGED = 0x0040,
ef416fc2 31 /* Sent after media-supported changed */
d9bca400
MS
32 CUPSD_EVENT_PRINTER_ADDED = 0x0080, /* Sent after printer added */
33 CUPSD_EVENT_PRINTER_DELETED = 0x0100, /* Sent after printer deleted */
34 CUPSD_EVENT_PRINTER_MODIFIED = 0x0200,/* Sent after printer modified */
35 CUPSD_EVENT_PRINTER_QUEUE_ORDER_CHANGED = 0x0400,
36 /* Sent when the order of jobs is changed */
ef416fc2 37
38 /* Convenience printer event groupings... */
d9bca400
MS
39 CUPSD_EVENT_PRINTER_STATE_CHANGED = 0x000f,
40 /* STATE + RESTARTED + SHUTDOWN + STOPPED */
41 CUPSD_EVENT_PRINTER_CONFIG_CHANGED = 0x0070,
42 /* CONFIG + FINISHINGS_CHANGED + MEDIA_CHANGED */
43 CUPSD_EVENT_PRINTER_CHANGED = 0x07ff, /* All of the above */
ef416fc2 44
45 /* Individual job events... */
d9bca400
MS
46 CUPSD_EVENT_JOB_STATE = 0x0800, /* Any state change */
47 CUPSD_EVENT_JOB_CREATED = 0x1000, /* Send after job is created */
48 CUPSD_EVENT_JOB_COMPLETED = 0x2000, /* Sent after job is completed */
49 CUPSD_EVENT_JOB_STOPPED = 0x4000, /* Sent after job is stopped */
50 CUPSD_EVENT_JOB_CONFIG_CHANGED = 0x8000,
ef416fc2 51 /* Sent after set-job-attributes */
d9bca400 52 CUPSD_EVENT_JOB_PROGRESS = 0x10000, /* Sent for each page */
ef416fc2 53
54 /* Convenience job event grouping... */
d9bca400
MS
55 CUPSD_EVENT_JOB_STATE_CHANGED = 0x7800,
56 /* STATE + CREATED + COMPLETED + STOPPED */
ef416fc2 57
58 /* Server events... */
d9bca400
MS
59 CUPSD_EVENT_SERVER_RESTARTED = 0x20000,/* Sent after server restarts */
60 CUPSD_EVENT_SERVER_STARTED = 0x40000, /* Sent when server first starts */
61 CUPSD_EVENT_SERVER_STOPPED = 0x80000, /* Sent when server is stopped */
62 CUPSD_EVENT_SERVER_AUDIT = 0x100000, /* Security-related stuff */
ef416fc2 63
64 /* Everything and nothing... */
65 CUPSD_EVENT_NONE = 0, /* Nothing */
d9bca400 66 CUPSD_EVENT_ALL = 0x1fffff /* Everything */
ef416fc2 67} cupsd_eventmask_t;
68
69
70/*
71 * Notiification support structures...
72 */
73
74typedef struct cupsd_event_s /**** Event structure ****/
75{
76 cupsd_eventmask_t event; /* Event */
77 time_t time; /* Time of event */
78 ipp_t *attrs; /* Notification message */
79 cupsd_printer_t *dest; /* Associated printer, if any */
80 cupsd_job_t *job; /* Associated job, if any */
57b7b66b 81} cupsd_event_t;
ef416fc2 82
83typedef struct cupsd_subscription_s /**** Subscription structure ****/
84{
85 int id; /* subscription-id */
86 unsigned mask; /* Event mask */
87 char *owner; /* notify-subscriber-user-name */
88 char *recipient; /* notify-recipient-uri, if applicable */
89 unsigned char user_data[64]; /* notify-user-data */
90 int user_data_len; /* Length of notify-user-data */
91 int lease; /* notify-lease-duration */
92 int interval; /* notify-time-interval */
93 cupsd_printer_t *dest; /* notify-printer-uri, if any */
94 cupsd_job_t *job; /* notify-job-id, if any */
95 int pid; /* Process ID of notifier */
96 int pipe; /* Pipe to notifier */
97 int status; /* Exit status of notifier */
98 time_t last; /* Time of last notification */
99 time_t expire; /* Lease expiration time */
100 int first_event_id, /* First event-id in cache */
10d09e33
MS
101 next_event_id; /* Next event-id to use */
102 cups_array_t *events; /* Cached events */
ef416fc2 103} cupsd_subscription_t;
104
105
106/*
107 * Globals...
108 */
109
110VAR int MaxSubscriptions VALUE(100),
111 /* Overall subscription limit */
112 MaxSubscriptionsPerJob VALUE(0),
113 /* Per-job subscription limit */
114 MaxSubscriptionsPerPrinter VALUE(0),
115 /* Per-printer subscription limit */
116 MaxSubscriptionsPerUser VALUE(0),
117 /* Per-user subscription limit */
118 NextSubscriptionId VALUE(1),
119 /* Next subscription ID */
120 DefaultLeaseDuration VALUE(86400),
121 /* Default notify-lease-duration */
122 MaxLeaseDuration VALUE(0);
123 /* Maximum notify-lease-duration */
124VAR cups_array_t *Subscriptions VALUE(NULL);
125 /* Active subscriptions */
126
ed486911 127VAR int MaxEvents VALUE(100); /* Maximum number of events */
ef416fc2 128
ed486911 129VAR unsigned LastEvent VALUE(0); /* Last event(s) processed */
ef416fc2 130VAR int NotifierPipes[2] VALUE2(-1, -1);
131 /* Pipes for notifier error/debug output */
132VAR cupsd_statbuf_t *NotifierStatusBuffer VALUE(NULL);
133 /* Status buffer for pipes */
134
135
136/*
137 * Prototypes...
138 */
139
140extern void cupsdAddEvent(cupsd_eventmask_t event, cupsd_printer_t *dest,
141 cupsd_job_t *job, const char *text, ...);
142extern cupsd_subscription_t *
143 cupsdAddSubscription(unsigned mask, cupsd_printer_t *dest,
144 cupsd_job_t *job, const char *uri,
145 int sub_id);
ef416fc2 146extern void cupsdDeleteAllSubscriptions(void);
147extern void cupsdDeleteSubscription(cupsd_subscription_t *sub, int update);
148extern const char *
149 cupsdEventName(cupsd_eventmask_t event);
150extern cupsd_eventmask_t
151 cupsdEventValue(const char *name);
152
153extern cupsd_subscription_t *
154 cupsdFindSubscription(int id);
155extern void cupsdExpireSubscriptions(cupsd_printer_t *dest,
156 cupsd_job_t *job);
157extern void cupsdLoadAllSubscriptions(void);
158extern void cupsdSaveAllSubscriptions(void);
ef416fc2 159extern void cupsdStopAllNotifiers(void);