root / pykota / trunk / pykota / requesters / snmp.py @ 744

Revision 744, 1.8 kB (checked in by jalet, 21 years ago)

Bad old comment

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1#! /usr/bin/env python
2
3# PyKota - Print Quotas for CUPS
4#
5# (c) 2003 Jerome Alet <alet@librelogiciel.com>
6# You're welcome to redistribute this software under the
7# terms of the GNU General Public Licence version 2.0
8# or, at your option, any higher version.
9#
10# You can read the complete GNU GPL in the file COPYING
11# which should come along with this software, or visit
12# the Free Software Foundation's WEB site http://www.fsf.org
13#
14# $Id$
15#
16# $Log$
17# Revision 1.3  2003/02/07 13:12:41  jalet
18# Bad old comment
19#
20# Revision 1.2  2003/02/05 23:00:12  jalet
21# Forgotten import
22# Bad datetime conversion
23#
24# Revision 1.1  2003/02/05 21:28:17  jalet
25# Initial import into CVS
26#
27#
28#
29
30import os
31from pykota.requester import PyKotaRequesterError
32
33class Requester :
34    """A class to send queries to printers via SNMP."""
35    def __init__(self, config, printername) :
36        """Sets instance vars depending on the current printer."""
37        self.printername = printername
38        self.community = config.config.get(printername, "snmpcmnty")
39        self.oid = config.config.get(printername, "snmpoid")
40       
41    def getPrinterPageCounter(self, hostname) :
42        """Returns the page counter from the hostname printer via SNMP.
43       
44           Currently uses the snmpget external command. TODO : do it internally
45        """
46        if hostname is None :
47            raise PyKotaRequesterError, "Unknown printer address in SNMP(%s, %s) for printer %s" % (self.community, self.oid, self.printername)
48        answer = os.popen("snmpget -c %s -Ov %s %s" % (self.community, hostname, self.oid))
49        try :
50            pagecounter = int(answer.readline().split()[-1].strip())
51        except IndexError :   
52            raise PyKotaRequesterError, "Unable to query printer %s via SNMP(%s, %s)" % (hostname, self.community, self.oid) 
53        answer.close()
54        return pagecounter
55   
Note: See TracBrowser for help on using the browser.