]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/quotas.c
Merge changes from CUPS 1.3.1.
[thirdparty/cups.git] / scheduler / quotas.c
index 03735b1abfbd6847bf9fcefc9c40f7ab7f7f8a74..2a21d83ddc9926c7681ebe015937c1f65d7d47bc 100644 (file)
@@ -1,33 +1,24 @@
 /*
- * "$Id: quotas.c 4729 2005-09-30 17:46:19Z mike $"
+ * "$Id: quotas.c 6949 2007-09-12 21:33:23Z mike $"
  *
  *   Quota routines for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2005 by Easy Software Products.
+ *   Copyright 2007 by Apple Inc.
+ *   Copyright 1997-2007 by Easy Software Products.
  *
  *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the file
- *   "LICENSE.txt" which should have been included with this file.  If this
- *   file is missing or damaged please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
+ *   property of Apple Inc. and are protected by Federal copyright
+ *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+ *   which should have been included with this file.  If this file is
+ *   file is missing or damaged, see the license at "http://www.cups.org/".
  *
  * Contents:
  *
- *   cupsdAddQuota()    - Add a quota record for this printer and user.
  *   cupsdFindQuota()   - Find a quota record.
  *   cupsdFreeQuotas()  - Free quotas for a printer.
  *   cupsdUpdateQuota() - Update quota data for the specified printer and user.
- *   compare()          - Compare two quota records...
+ *   add_quota()        - Add a quota record for this printer and user.
+ *   compare_quotas()   - Compare two quota records...
  */
 
 /*
  * Local functions...
  */
 
-static int     compare(const cupsd_quota_t *q1, const cupsd_quota_t *q2);
-
-
-/*
- * 'cupsdAddQuota()' - Add a quota record for this printer and user.
- */
-
-cupsd_quota_t *                                /* O - Quota data */
-cupsdAddQuota(cupsd_printer_t *p,      /* I - Printer */
-              const char      *username)/* I - User */
-{
-  cupsd_quota_t        *q;                     /* New quota data */
-
-
-  if (!p || !username)
-    return (NULL);
-
-  if (p->num_quotas == 0)
-    q = malloc(sizeof(cupsd_quota_t));
-  else
-    q = realloc(p->quotas, sizeof(cupsd_quota_t) * (p->num_quotas + 1));
-
-  if (!q)
-    return (NULL);
-
-  p->quotas = q;
-  q         += p->num_quotas;
-  p->num_quotas ++;
-
-  memset(q, 0, sizeof(cupsd_quota_t));
-  strlcpy(q->username, username, sizeof(q->username));
-
-  if (p->num_quotas > 1)
-    qsort(p->quotas, p->num_quotas, sizeof(cupsd_quota_t),
-          (int (*)(const void *, const void *))compare);
-
-  return (cupsdFindQuota(p, username));
-}
+static cupsd_quota_t   *add_quota(cupsd_printer_t *p, const char *username);
+static int             compare_quotas(const cupsd_quota_t *q1,
+                                      const cupsd_quota_t *q2);
 
 
 /*
@@ -92,25 +48,20 @@ cupsdFindQuota(
 {
   cupsd_quota_t        *q,                     /* Quota data pointer */
                match;                  /* Search data */
+  char         *ptr;                   /* Pointer into username */
 
 
   if (!p || !username)
     return (NULL);
 
-  if (p->num_quotas == 0)
-    q = NULL;
-  else
-  {
-    strlcpy(match.username, username, sizeof(match.username));
+  strlcpy(match.username, username, sizeof(match.username));
+  if ((ptr = strchr(match.username, '@')) != NULL)
+    *ptr = '\0';                       /* Strip @domain/@KDC */
 
-    q = bsearch(&match, p->quotas, p->num_quotas, sizeof(cupsd_quota_t),
-                (int(*)(const void *, const void *))compare);
-  }
-
-  if (q)
+  if ((q = (cupsd_quota_t *)cupsArrayFind(p->quotas, &match)) != NULL)
     return (q);
   else
-    return (cupsdAddQuota(p, username));
+    return (add_quota(p, username));
 }
 
 
@@ -119,16 +70,22 @@ cupsdFindQuota(
  */
 
 void
-cupsdFreeQuotas(cupsd_printer_t *p)            /* I - Printer */
+cupsdFreeQuotas(cupsd_printer_t *p)    /* I - Printer */
 {
+  cupsd_quota_t *q;                    /* Current quota record */
+
+
   if (!p)
     return;
 
-  if (p->num_quotas)
-    free(p->quotas);
+  for (q = (cupsd_quota_t *)cupsArrayFirst(p->quotas);
+       q;
+       q = (cupsd_quota_t *)cupsArrayNext(p->quotas))
+    free(q);
+
+  cupsArrayDelete(p->quotas);
 
-  p->num_quotas = 0;
-  p->quotas     = NULL;
+  p->quotas = NULL;
 }
 
 
@@ -162,6 +119,19 @@ cupsdUpdateQuota(
                   "cupsdUpdateQuota: p=%s username=%s pages=%d k=%d",
                   p->name, username, pages, k);
 
+#if defined(__APPLE__) && defined(HAVE_DLFCN_H)
+ /*
+  * Use Apple PrintService quota enforcement if installed (X Server only)
+  */
+
+  if (AppleQuotas && PSQUpdateQuotaProc)
+  { 
+    q->page_count = (*PSQUpdateQuotaProc)(p->name, p->info, username, pages, 0);
+
+    return (q);
+  }
+#endif /* __APPLE__ && HAVE_DLFCN_H */
+
   curtime = time(NULL);
 
   if (curtime < q->next_update)
@@ -202,7 +172,7 @@ cupsdUpdateQuota(
     if (attr->values[0].integer < curtime)
     {
       if (JobAutoPurge)
-        cupsdCancelJob(job, 1);
+        cupsdCancelJob(job, 1, IPP_JOB_CANCELED);
 
       continue;
     }
@@ -224,17 +194,51 @@ cupsdUpdateQuota(
 
 
 /*
- * 'compare()' - Compare two quota records...
+ * 'add_quota()' - Add a quota record for this printer and user.
+ */
+
+static cupsd_quota_t *                 /* O - Quota data */
+add_quota(cupsd_printer_t *p,          /* I - Printer */
+          const char      *username)   /* I - User */
+{
+  cupsd_quota_t        *q;                     /* New quota data */
+  char         *ptr;                   /* Pointer into username */
+
+
+  if (!p || !username)
+    return (NULL);
+
+  if (!p->quotas)
+    p->quotas = cupsArrayNew((cups_array_func_t)compare_quotas, NULL);
+
+  if (!p->quotas)
+    return (NULL);
+
+  if ((q = calloc(1, sizeof(cupsd_quota_t))) == NULL)
+    return (NULL);
+
+  strlcpy(q->username, username, sizeof(q->username));
+  if ((ptr = strchr(q->username, '@')) != NULL)
+    *ptr = '\0';                       /* Strip @domain/@KDC */
+
+  cupsArrayAdd(p->quotas, q);
+
+  return (q);
+}
+
+
+/*
+ * 'compare_quotas()' - Compare two quota records...
  */
 
 static int                             /* O - Result of comparison */
-compare(const cupsd_quota_t *q1,       /* I - First quota record */
-        const cupsd_quota_t *q2)       /* I - Second quota record */
+compare_quotas(const cupsd_quota_t *q1,        /* I - First quota record */
+               const cupsd_quota_t *q2)        /* I - Second quota record */
 {
   return (strcasecmp(q1->username, q2->username));
 }
 
 
 /*
- * End of "$Id: quotas.c 4729 2005-09-30 17:46:19Z mike $".
+ * End of "$Id: quotas.c 6949 2007-09-12 21:33:23Z mike $".
  */