root / pykota / trunk / pykota / accounters / software.py @ 1514

Revision 1514, 3.4 kB (checked in by jalet, 20 years ago)

Moved the sigterm capturing elsewhere

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# PyKota
2# -*- coding: ISO-8859-15 -*-
3#
4# PyKota - Print Quotas for CUPS and LPRng
5#
6# (c) 2003-2004 Jerome Alet <alet@librelogiciel.com>
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$
24# Revision 1.4  2004/06/02 21:51:14  jalet
25# Moved the sigterm capturing elsewhere
26#
27# Revision 1.3  2004/05/24 22:45:49  jalet
28# New 'enforcement' directive added
29# Polling loop improvements
30#
31# Revision 1.2  2004/05/18 14:49:23  jalet
32# Big code changes to completely remove the need for "requester" directives,
33# jsut use "hardware(... your previous requester directive's content ...)"
34#
35# Revision 1.1  2004/05/13 13:59:30  jalet
36# Code simplifications
37#
38#
39
40import sys
41import os
42import popen2
43from pykota.accounter import AccounterBase, PyKotaAccounterError
44
45class Accounter(AccounterBase) :
46    def computeJobSize(self) :   
47        """Feeds an external command with our datas to let it compute the job size, and return its value."""
48        self.filter.logdebug("Launching software accounter %s" % self.arguments)
49        MEGABYTE = 1024*1024
50        self.filter.jobdatastream.seek(0)
51        child = popen2.Popen4(self.arguments)
52        try :
53            data = self.filter.jobdatastream.read(MEGABYTE)   
54            while data :
55                child.tochild.write(data)
56                data = self.filter.jobdatastream.read(MEGABYTE)
57            child.tochild.flush()
58            child.tochild.close()   
59        except (IOError, OSError), msg :   
60            msg = "%s : %s" % (self.arguments, msg) 
61            self.filter.logger.log_message(_("Unable to compute job size with accounter %s") % msg)
62       
63        pagecount = 0
64        try :
65            pagecount = int(child.fromchild.readline().strip())
66        except (AttributeError, ValueError) :
67            self.filter.logger.log_message(_("Unable to compute job size with accounter %s") % self.arguments)
68        except (IOError, OSError), msg :   
69            msg = "%s : %s" % (self.arguments, msg) 
70            self.filter.logger.log_message(_("Unable to compute job size with accounter %s") % msg)
71        child.fromchild.close()
72       
73        try :
74            retcode = child.wait()
75        except OSError, msg :   
76            self.filter.logger.log_message(_("Problem while waiting for software accounter pid %s to exit : %s") % (child.pid, msg))
77        else :   
78            if os.WIFEXITED(retcode) :
79                status = os.WEXITSTATUS(retcode)
80            else :   
81                status = retcode
82            self.filter.logger.log_message(_("Software accounter %s exit code is %s") % (self.arguments, repr(retcode)))
83        self.filter.logdebug("Software accounter %s said job is %s pages long." % (self.arguments, pagecount))
84        return pagecount   
85           
Note: See TracBrowser for help on using the browser.