]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/job.h
Load cups into easysw/current.
[thirdparty/cups.git] / scheduler / job.h
CommitLineData
ef416fc2 1/*
f7faf1f5 2 * "$Id: job.h 5393 2006-04-14 18:17:18Z mike $"
ef416fc2 3 *
4 * Print job definitions for the Common UNIX Printing System (CUPS) scheduler.
5 *
bd7854cb 6 * Copyright 1997-2006 by Easy Software Products, all rights reserved.
ef416fc2 7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Easy Software Products and are protected by Federal
10 * copyright law. Distribution and use rights are outlined in the file
11 * "LICENSE.txt" which should have been included with this file. If this
12 * file is missing or damaged please contact Easy Software Products
13 * at:
14 *
15 * Attn: CUPS Licensing Information
16 * Easy Software Products
17 * 44141 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636 USA
19 *
20 * Voice: (301) 373-9600
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 */
24
25/*
26 * Job request structure...
27 */
28
29typedef struct cupsd_job_s
30{
31 int id, /* Job ID */
32 priority; /* Job priority */
bd7854cb 33 ipp_jstate_t state_value; /* Cached job-state */
ef416fc2 34 char *username; /* Printing user */
35 char *dest; /* Destination printer or class */
36 cups_ptype_t dtype; /* Destination type (class/remote bits) */
ef416fc2 37 int num_files; /* Number of files in job */
ef416fc2 38 mime_type_t **filetypes; /* File types */
39 int *compressions; /* Compression status of each file */
bd7854cb 40 time_t access_time; /* Last access time */
41 ipp_attribute_t *sheets; /* job-media-sheets-completed */
42 time_t hold_until; /* Hold expiration date/time */
43 ipp_attribute_t *state; /* Job state */
44 ipp_attribute_t *job_sheets; /* Job sheets (NULL if none) */
45 int current_file; /* Current file in job */
ef416fc2 46 ipp_t *attrs; /* Job attributes */
ef416fc2 47 int print_pipes[2], /* Print data pipes */
89d46774 48 back_pipes[2], /* Backchannel pipes */
49 status_pipes[2];/* Status pipes */
50 cupsd_statbuf_t *status_buffer; /* Status buffer for this job */
ef416fc2 51 int cost; /* Filtering cost */
52 int filters[MAX_FILTERS + 1];
53 /* Filter process IDs, 0 terminated */
54 int backend; /* Backend process ID */
55 int status; /* Status code from filters */
56 cupsd_printer_t *printer; /* Printer this job is assigned to */
57 int tries; /* Number of tries for this job */
58} cupsd_job_t;
59
60
61/*
62 * Globals...
63 */
64
65VAR int JobHistory VALUE(1);
66 /* Preserve job history? */
67VAR int JobFiles VALUE(0);
68 /* Preserve job files? */
69VAR int MaxJobs VALUE(0),
70 /* Max number of jobs */
71 MaxActiveJobs VALUE(0),
72 /* Max number of active jobs */
73 MaxJobsPerUser VALUE(0),
74 /* Max jobs per user */
75 MaxJobsPerPrinter VALUE(0);
76 /* Max jobs per printer */
77VAR int JobAutoPurge VALUE(0);
78 /* Automatically purge jobs */
79VAR cups_array_t *Jobs VALUE(NULL),
80 /* List of current jobs */
81 *ActiveJobs VALUE(NULL);
82 /* List of active jobs */
83VAR int NextJobId VALUE(1);
84 /* Next job ID to use */
85VAR int JobRetryLimit VALUE(5),
86 /* Max number of tries */
87 JobRetryInterval VALUE(300);
88 /* Seconds between retries */
89
90
91/*
92 * Prototypes...
93 */
94
95extern cupsd_job_t *cupsdAddJob(int priority, const char *dest);
96extern void cupsdCancelJob(cupsd_job_t *job, int purge);
97extern void cupsdCancelJobs(const char *dest, const char *username,
98 int purge);
99extern void cupsdCheckJobs(void);
100extern void cupsdCleanJobs(void);
101extern void cupsdDeleteJob(cupsd_job_t *job);
102extern cupsd_job_t *cupsdFindJob(int id);
103extern void cupsdFinishJob(cupsd_job_t *job);
bd7854cb 104extern void cupsdUnloadCompletedJobs(void);
ef416fc2 105extern void cupsdFreeAllJobs(void);
106extern int cupsdGetPrinterJobCount(const char *dest);
107extern int cupsdGetUserJobCount(const char *username);
108extern void cupsdHoldJob(cupsd_job_t *job);
109extern void cupsdLoadAllJobs(void);
bd7854cb 110extern void cupsdLoadJob(cupsd_job_t *job);
e53920b9 111extern void cupsdMoveJob(cupsd_job_t *job, cupsd_printer_t *p);
ef416fc2 112extern void cupsdReleaseJob(cupsd_job_t *job);
113extern void cupsdRestartJob(cupsd_job_t *job);
bd7854cb 114extern void cupsdSaveAllJobs(void);
ef416fc2 115extern void cupsdSaveJob(cupsd_job_t *job);
116extern void cupsdSetJobHoldUntil(cupsd_job_t *job, const char *when);
117extern void cupsdSetJobPriority(cupsd_job_t *job, int priority);
ef416fc2 118extern void cupsdStopAllJobs(void);
119extern void cupsdStopJob(cupsd_job_t *job, int force);
120extern void cupsdUpdateJob(cupsd_job_t *job);
121
122
123/*
f7faf1f5 124 * End of "$Id: job.h 5393 2006-04-14 18:17:18Z mike $".
ef416fc2 125 */