root / pykota / trunk / pykota / storages / pgstorage.py @ 1520

Revision 1520, 7.8 kB (checked in by jalet, 20 years ago)

Now stores the job's size in bytes in the database.
Preliminary work on payments storage : database schemas are OK now,
but no code to store payments yet.
Removed schema picture, not relevant anymore.

  • 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.36  2004/06/03 23:14:11  jalet
25# Now stores the job's size in bytes in the database.
26# Preliminary work on payments storage : database schemas are OK now,
27# but no code to store payments yet.
28# Removed schema picture, not relevant anymore.
29#
30# Revision 1.35  2004/02/02 22:44:16  jalet
31# Preliminary work on Relationnal Database Independance via DB-API 2.0
32#
33# Revision 1.34  2004/01/12 15:12:50  jalet
34# Small fix for history
35#
36# Revision 1.33  2004/01/12 14:44:47  jalet
37# Missing space in SQL query
38#
39# Revision 1.32  2004/01/12 14:35:02  jalet
40# Printing history added to CGI script.
41#
42# Revision 1.31  2004/01/10 09:44:02  jalet
43# Fixed potential accuracy problem if a user printed on several printers at
44# the very same time.
45#
46# Revision 1.30  2004/01/08 16:33:27  jalet
47# Additionnal check to not create a circular printers group.
48#
49# Revision 1.29  2004/01/08 16:24:49  jalet
50# edpykota now supports adding printers to printer groups.
51#
52# Revision 1.28  2004/01/08 14:10:33  jalet
53# Copyright year changed.
54#
55# Revision 1.27  2004/01/06 14:24:59  jalet
56# Printer groups should be cached now, if caching is enabled.
57#
58# Revision 1.26  2003/12/29 14:12:48  uid67467
59# Tries to workaround possible integrity violations when retrieving printer groups
60#
61# Revision 1.25  2003/12/27 16:49:25  uid67467
62# Should be ok now.
63#
64# Revision 1.24  2003/11/29 22:02:14  jalet
65# Don't try to retrieve the user print quota information if current printer
66# doesn't exist.
67#
68# Revision 1.23  2003/11/23 19:01:37  jalet
69# Job price added to history
70#
71# Revision 1.22  2003/11/21 14:28:46  jalet
72# More complete job history.
73#
74# Revision 1.21  2003/11/12 13:06:38  jalet
75# Bug fix wrt no user/group name command line argument to edpykota
76#
77# Revision 1.20  2003/10/09 21:25:26  jalet
78# Multiple printer names or wildcards can be passed on the command line
79# separated with commas.
80# Beta phase.
81#
82# Revision 1.19  2003/10/08 07:01:20  jalet
83# Job history can be disabled.
84# Some typos in README.
85# More messages in setup script.
86#
87# Revision 1.18  2003/10/07 09:07:30  jalet
88# Character encoding added to please latest version of Python
89#
90# Revision 1.17  2003/10/06 13:12:28  jalet
91# More work on caching
92#
93# Revision 1.16  2003/10/03 18:01:49  jalet
94# Nothing interesting...
95#
96# Revision 1.15  2003/10/03 12:27:03  jalet
97# Several optimizations, especially with LDAP backend
98#
99# Revision 1.14  2003/10/03 08:57:55  jalet
100# Caching mechanism now caches all that's cacheable.
101#
102# Revision 1.13  2003/10/02 20:23:18  jalet
103# Storage caching mechanism added.
104#
105# Revision 1.12  2003/08/17 14:20:25  jalet
106# Bug fix by Oleg Biteryakov
107#
108# Revision 1.11  2003/07/29 20:55:17  jalet
109# 1.14 is out !
110#
111# Revision 1.10  2003/07/16 21:53:08  jalet
112# Really big modifications wrt new configuration file's location and content.
113#
114# Revision 1.9  2003/07/14 17:20:15  jalet
115# Bug in postgresql storage when modifying the prices for a printer
116#
117# Revision 1.8  2003/07/14 14:18:17  jalet
118# Wrong documentation strings
119#
120# Revision 1.7  2003/07/09 20:17:07  jalet
121# Email field added to PostgreSQL schema
122#
123# Revision 1.6  2003/07/07 11:49:24  jalet
124# Lots of small fixes with the help of PyChecker
125#
126# Revision 1.5  2003/07/07 08:33:19  jalet
127# Bug fix due to a typo in LDAP code
128#
129# Revision 1.4  2003/06/30 13:54:21  jalet
130# Sorts by user / group name
131#
132# Revision 1.3  2003/06/25 14:10:01  jalet
133# Hey, it may work (edpykota --reset excepted) !
134#
135# Revision 1.2  2003/06/12 21:09:57  jalet
136# wrongly placed code.
137#
138# Revision 1.1  2003/06/10 16:37:54  jalet
139# Deletion of the second user which is not needed anymore.
140# Added a debug configuration field in /etc/pykota.conf
141# All queries can now be sent to the logger in debug mode, this will
142# greatly help improve performance when time for this will come.
143#
144#
145#
146#
147
148from pykota.storage import PyKotaStorageError,BaseStorage,StorageObject,StorageUser,StorageGroup,StoragePrinter,StorageJob,StorageLastJob,StorageUserPQuota,StorageGroupPQuota
149from pykota.storages.sql import SQLStorage
150
151try :
152    import pg
153except ImportError :   
154    import sys
155    # TODO : to translate or not to translate ?
156    raise PyKotaStorageError, "This python version (%s) doesn't seem to have the PygreSQL module installed correctly." % sys.version.split()[0]
157
158class Storage(BaseStorage, SQLStorage) :
159    def __init__(self, pykotatool, host, dbname, user, passwd) :
160        """Opens the PostgreSQL database connection."""
161        BaseStorage.__init__(self, pykotatool)
162        try :
163            (host, port) = host.split(":")
164            port = int(port)
165        except ValueError :   
166            port = -1         # Use PostgreSQL's default tcp/ip port (5432).
167       
168        try :
169            self.database = pg.connect(host=host, port=port, dbname=dbname, user=user, passwd=passwd)
170        except pg.error, msg :
171            raise PyKotaStorageError, msg
172        else :   
173            self.closed = 0
174            self.tool.logdebug("Database opened (host=%s, port=%s, dbname=%s, user=%s)" % (host, port, dbname, user))
175           
176    def close(self) :   
177        """Closes the database connection."""
178        if not self.closed :
179            self.database.close()
180            self.closed = 1
181            self.tool.logdebug("Database closed.")
182       
183    def beginTransaction(self) :   
184        """Starts a transaction."""
185        self.database.query("BEGIN;")
186        self.tool.logdebug("Transaction begins...")
187       
188    def commitTransaction(self) :   
189        """Commits a transaction."""
190        self.database.query("COMMIT;")
191        self.tool.logdebug("Transaction committed.")
192       
193    def rollbackTransaction(self) :     
194        """Rollbacks a transaction."""
195        self.database.query("ROLLBACK;")
196        self.tool.logdebug("Transaction aborted.")
197       
198    def doSearch(self, query) :
199        """Does a search query."""
200        query = query.strip()   
201        if not query.endswith(';') :   
202            query += ';'
203        try :
204            self.tool.logdebug("QUERY : %s" % query)
205            result = self.database.query(query)
206        except pg.error, msg :   
207            raise PyKotaStorageError, msg
208        else :   
209            if (result is not None) and (result.ntuples() > 0) : 
210                return result.dictresult()
211           
212    def doModify(self, query) :
213        """Does a (possibly multiple) modify query."""
214        query = query.strip()   
215        if not query.endswith(';') :   
216            query += ';'
217        try :
218            self.tool.logdebug("QUERY : %s" % query)
219            result = self.database.query(query)
220        except pg.error, msg :   
221            raise PyKotaStorageError, msg
222        else :   
223            return result
224           
225    def doQuote(self, field) :
226        """Quotes a field for use as a string in SQL queries."""
227        if type(field) == type(0.0) : 
228            typ = "decimal"
229        elif type(field) == type(0) :   
230            typ = "int"
231        elif type(field) == type(0L) :   
232            typ = "int"
233        else :   
234            typ = "text"
235        return pg._quote(field, typ)
Note: See TracBrowser for help on using the browser.