root / pykota / trunk / pykota / accounter.py @ 1499

Revision 1499, 5.0 kB (checked in by jalet, 20 years ago)

accounter.py : old code deleted
the rest : now exports PYKOTAPRECOMPUTEDJOBSIZE and PYKOTAPRECOMPUTEDJOBPRICE

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[973]1# PyKota
[1144]2# -*- coding: ISO-8859-15 -*-
[973]3#
4# PyKota : Print Quotas for CUPS and LPRng
5#
[1257]6# (c) 2003-2004 Jerome Alet <alet@librelogiciel.com>
[973]7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
20#
21# $Id$
22#
23# $Log$
[1499]24# Revision 1.16  2004/05/25 09:15:15  jalet
25# accounter.py : old code deleted
26# the rest : now exports PYKOTAPRECOMPUTEDJOBSIZE and PYKOTAPRECOMPUTEDJOBPRICE
27#
[1495]28# Revision 1.15  2004/05/24 22:45:49  jalet
29# New 'enforcement' directive added
30# Polling loop improvements
31#
[1483]32# Revision 1.14  2004/05/18 14:49:19  jalet
33# Big code changes to completely remove the need for "requester" directives,
34# jsut use "hardware(... your previous requester directive's content ...)"
35#
[1285]36# Revision 1.13  2004/01/12 22:43:40  jalet
37# New formula to compute a job's price
38#
[1272]39# Revision 1.12  2004/01/11 23:43:31  jalet
40# Bug wrt number of copies with CUPS should be fixed.
41#
[1271]42# Revision 1.11  2004/01/11 23:22:42  jalet
43# Major code refactoring, it's way cleaner, and now allows automated addition
44# of printers on first print.
45#
[1257]46# Revision 1.10  2004/01/08 14:10:32  jalet
47# Copyright year changed.
48#
[1240]49# Revision 1.9  2003/12/27 16:49:25  uid67467
50# Should be ok now.
[1239]51#
[1219]52# Revision 1.7  2003/11/25 23:46:40  jalet
53# Don't try to verify if module name is valid, Python does this better than us.
54#
[1180]55# Revision 1.6  2003/11/12 23:28:55  jalet
56# More work on new backend. This commit may be unstable.
57#
[1144]58# Revision 1.5  2003/10/07 09:07:28  jalet
59# Character encoding added to please latest version of Python
60#
[1083]61# Revision 1.4  2003/07/14 14:14:59  jalet
62# Old template
63#
[980]64# Revision 1.3  2003/04/30 19:53:58  jalet
65# 1.05
66#
[976]67# Revision 1.2  2003/04/30 13:36:40  jalet
68# Stupid accounting method was added.
69#
[973]70# Revision 1.1  2003/04/29 18:37:54  jalet
71# Pluggable accounting methods (actually doesn't support external scripts)
72#
73#
74#
75
[976]76import sys
77
[973]78class PyKotaAccounterError(Exception):
79    """An exception for Accounter related stuff."""
80    def __init__(self, message = ""):
81        self.message = message
82        Exception.__init__(self, message)
83    def __repr__(self):
84        return self.message
85    __str__ = __repr__
86   
87class AccounterBase :   
88    """A class to account print usage by querying printers."""
[980]89    def __init__(self, kotafilter, arguments) :
[973]90        """Sets instance vars depending on the current printer."""
91        self.filter = kotafilter
[980]92        self.arguments = arguments
[973]93       
[1180]94    def getLastPageCounter(self) :   
95        """Returns last internal page counter value (possibly faked)."""
96        try :
[1483]97            return self.LastPageCounter or 0
[1180]98        except :   
99            return 0
[976]100           
[1271]101    def beginJob(self, userpquota) :   
[1239]102        """Saves the computed job size."""
103        # computes job's size
104        self.JobSize = self.computeJobSize()
[1272]105        if ((self.filter.printingsystem == "CUPS") \
106            and (self.filter.preserveinputfile is not None)) \
107            or (self.filter.printingsystem != "CUPS") :
108                self.JobSize *= self.filter.copies
[973]109       
[1239]110        # get last job information for this printer
[1271]111        if not userpquota.Printer.LastJob.Exists :
[1239]112            # The printer hasn't been used yet, from PyKota's point of view
113            self.LastPageCounter = 0
114        else :   
115            # get last job size and page counter from Quota Storage
116            # Last lifetime page counter before actual job is
117            # last page counter + last job size
[1271]118            self.LastPageCounter = int(userpquota.Printer.LastJob.PrinterPageCounter or 0) + int(userpquota.Printer.LastJob.JobSize or 0)
[1239]119       
[1271]120    def endJob(self, userpquota) :   
[1239]121        """Do nothing."""
122        pass
123       
124    def getJobSize(self) :   
125        """Returns the actual job size."""
126        try :
127            return self.JobSize
128        except AttributeError :   
129            return 0
130       
[1240]131    def computeJobSize(self) :   
132        """Must be overriden in children classes."""
133        raise RuntimeError, "AccounterBase.computeJobSize() must be overriden !"
134       
[973]135def openAccounter(kotafilter) :
136    """Returns a connection handle to the appropriate accounter."""
[980]137    (backend, args) = kotafilter.config.getAccounterBackend(kotafilter.printername)
[973]138    try :
[1219]139        exec "from pykota.accounters import %s as accounterbackend" % backend.lower()
[973]140    except ImportError :
141        raise PyKotaAccounterError, _("Unsupported accounter backend %s") % backend
142    else :   
[1240]143        return accounterbackend.Accounter(kotafilter, args)
Note: See TracBrowser for help on using the browser.