]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/job.h
Import CUPS v1.7.1
[thirdparty/cups.git] / scheduler / job.h
index 16dd09ff7cfc587fe25f852bdc01c47ae9dab516..efb0bd293041dcad9294165013f1c864e5144327 100644 (file)
@@ -1,9 +1,9 @@
 /*
- * "$Id: job.h 7883 2008-08-28 20:38:13Z mike $"
+ * "$Id: job.h 10996 2013-05-29 11:51:34Z msweet $"
  *
- *   Print job definitions for the Common UNIX Printing System (CUPS) scheduler.
+ *   Print job definitions for the CUPS scheduler.
  *
- *   Copyright 2007-2009 by Apple Inc.
+ *   Copyright 2007-2011 by Apple Inc.
  *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
@@ -40,14 +40,19 @@ struct cupsd_job_s                  /**** Job request ****/
   char                 *username;      /* Printing user */
   char                 *dest;          /* Destination printer or class */
   cups_ptype_t         dtype;          /* Destination type */
+  cupsd_printer_t      *printer;       /* Printer this job is assigned to */
   int                  num_files;      /* Number of files in job */
   mime_type_t          **filetypes;    /* File types */
   int                  *compressions;  /* Compression status of each file */
   ipp_attribute_t      *sheets;        /* job-media-sheets-completed */
   time_t               access_time,    /* Last access time */
-                       kill_time,      /* When to send SIGKILL */
-                       hold_until;     /* Hold expiration date/time */
+                       cancel_time,    /* When to cancel/send SIGTERM */
+                       file_time,      /* Job file retain time */
+                       history_time,   /* Job history retain time */
+                       hold_until,     /* Hold expiration date/time */
+                       kill_time;      /* When to send SIGKILL */
   ipp_attribute_t      *state;         /* Job state */
+  ipp_attribute_t      *reasons;       /* Job state reasons */
   ipp_attribute_t      *job_sheets;    /* Job sheets (NULL if none) */
   ipp_attribute_t      *printer_message,
                                        /* job-printer-state-message */
@@ -68,21 +73,15 @@ struct cupsd_job_s                  /**** Job request ****/
                                        /* Filter process IDs, 0 terminated */
   int                  backend;        /* Backend process ID */
   int                  status;         /* Status code from filters */
-  cupsd_printer_t      *printer;       /* Printer this job is assigned to */
   int                  tries;          /* Number of tries for this job */
-  char                 *auth_username, /* AUTH_USERNAME environment variable,
+  char                 *auth_env[3],   /* AUTH_xxx environment variables,
                                          * if any */
-                       *auth_domain,   /* AUTH_DOMAIN environment variable,
-                                        * if any */
-                       *auth_password; /* AUTH_PASSWORD environment variable,
-                                        * if any */
+                       *auth_uid;      /* AUTH_UID environment variable */
   void                 *profile;       /* Security profile */
   cups_array_t         *history;       /* Debug log history */
   int                  progress;       /* Printing progress */
-#ifdef HAVE_GSSAPI
-  krb5_ccache          ccache;         /* Kerberos credential cache */
-  char                 *ccname;        /* KRB5CCNAME environment variable */
-#endif /* HAVE_GSSAPI */
+  int                  num_keywords;   /* Number of PPD keywords */
+  cups_option_t                *keywords;      /* PPD keywords */
 };
 
 typedef struct cupsd_joblog_s          /**** Job log message ****/
@@ -96,18 +95,24 @@ typedef struct cupsd_joblog_s               /**** Job log message ****/
  * Globals...
  */
 
-VAR int                        JobHistory      VALUE(1);
+VAR int                        JobHistory      VALUE(INT_MAX);
                                        /* Preserve job history? */
-VAR int                        JobFiles        VALUE(0);
+VAR int                        JobFiles        VALUE(86400);
                                        /* Preserve job files? */
+VAR time_t             JobHistoryUpdate VALUE(0);
+                                       /* Time for next job history update */
 VAR int                        MaxJobs         VALUE(0),
                                        /* Max number of jobs */
                        MaxActiveJobs   VALUE(0),
                                        /* Max number of active jobs */
+                       MaxHoldTime     VALUE(0),
+                                       /* Max time for indefinite hold */
                        MaxJobsPerUser  VALUE(0),
                                        /* Max jobs per user */
-                       MaxJobsPerPrinter VALUE(0);
+                       MaxJobsPerPrinter VALUE(0),
                                        /* Max jobs per printer */
+                       MaxJobTime      VALUE(3 * 60 * 60);
+                                       /* Max time for a job */
 VAR int                        JobAutoPurge    VALUE(0);
                                        /* Automatically purge jobs */
 VAR cups_array_t       *Jobs           VALUE(NULL),
@@ -156,16 +161,15 @@ extern void               cupsdSetJobState(cupsd_job_t *job,
                                         ipp_jstate_t newstate,
                                         cupsd_jobaction_t action,
                                         const char *message, ...)
-#ifdef __GNUC__
-__attribute__ ((__format__ (__printf__, 4, 5)))
-#endif /* __GNUC__ */
-;
+                                       __attribute__((__format__(__printf__,
+                                                                 4, 5)));
 extern void            cupsdStopAllJobs(cupsd_jobaction_t action,
                                         int kill_delay);
 extern int             cupsdTimeoutJob(cupsd_job_t *job);
 extern void            cupsdUnloadCompletedJobs(void);
+extern void            cupsdUpdateJobs(void);
 
 
 /*
- * End of "$Id: job.h 7883 2008-08-28 20:38:13Z mike $".
+ * End of "$Id: job.h 10996 2013-05-29 11:51:34Z msweet $".
  */