X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=db_access.py;h=45ce1c1f3b377ac4a0a163831ea0409ff59686a8;hb=155a2a479011874c09351074f2970cce66275b82;hp=ed0c482047ed5cf8c3cf536f3172243b32cbe001;hpb=80ba7d5f206f1ddff863968989697d99f6aefde5;p=dak.git diff --git a/db_access.py b/db_access.py index ed0c4820..45ce1c1f 100644 --- a/db_access.py +++ b/db_access.py @@ -1,6 +1,8 @@ +#!/usr/bin/env python + # DB access fucntions -# Copyright (C) 2000, 2001, 2002 James Troup -# $Id: db_access.py,v 1.13 2002-05-03 16:06:45 troup Exp $ +# Copyright (C) 2000, 2001, 2002, 2003, 2004 James Troup +# $Id: db_access.py,v 1.17 2005-12-05 03:45:12 ajt Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,11 +18,11 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -############################################################################################ +################################################################################ -import string, sys, time; +import sys, time, types; -############################################################################################ +################################################################################ Cnf = None; projectB = None; @@ -37,8 +39,10 @@ source_id_cache = {}; files_id_cache = {}; maintainer_cache = {}; fingerprint_id_cache = {}; +queue_id_cache = {}; +uid_id_cache = {}; -############################################################################################ +################################################################################ def init (config, sql): global Cnf, projectB @@ -53,9 +57,15 @@ def do_query(q): r = projectB.query(q); time_diff = time.time()-before; sys.stderr.write("took %.3f seconds.\n" % (time_diff)); + if type(r) is int: + sys.stderr.write("int result: %s\n" % (r)); + elif type(r) is types.NoneType: + sys.stderr.write("result: None\n"); + else: + sys.stderr.write("pgresult: %s\n" % (r.getresult())); return r; -############################################################################################ +################################################################################ def get_suite_id (suite): global suite_id_cache @@ -140,7 +150,7 @@ def get_architecture_id (architecture): def get_archive_id (archive): global archive_id_cache - archive = string.lower(archive); + archive = archive.lower(); if archive_id_cache.has_key(archive): return archive_id_cache[archive] @@ -158,7 +168,7 @@ def get_archive_id (archive): def get_component_id (component): global component_id_cache - component = string.lower(component); + component = component.lower(); if component_id_cache.has_key(component): return component_id_cache[component] @@ -213,7 +223,7 @@ def get_source_id (source, version): return source_id -########################################################################################## +################################################################################ def get_or_set_maintainer_id (maintainer): global maintainer_id_cache @@ -230,24 +240,41 @@ def get_or_set_maintainer_id (maintainer): return maintainer_id -########################################################################################## +################################################################################ + +def get_or_set_uid_id (uid): + global uid_id_cache; + + if uid_id_cache.has_key(uid): + return uid_id_cache[uid]; + + q = projectB.query("SELECT id FROM uid WHERE uid = '%s'" % (uid)) + if not q.getresult(): + projectB.query("INSERT INTO uid (uid) VALUES ('%s')" % (uid)); + q = projectB.query("SELECT id FROM uid WHERE uid = '%s'" % (uid)); + uid_id = q.getresult()[0][0]; + uid_id_cache[uid] = uid_id; + + return uid_id; + +################################################################################ def get_or_set_fingerprint_id (fingerprint): - global fingerprint_id_cache + global fingerprint_id_cache; if fingerprint_id_cache.has_key(fingerprint): return fingerprint_id_cache[fingerprint] - q = projectB.query("SELECT id FROM fingerprint WHERE fingerprint = '%s'" % (fingerprint)) + q = projectB.query("SELECT id FROM fingerprint WHERE fingerprint = '%s'" % (fingerprint)); if not q.getresult(): - projectB.query("INSERT INTO fingerprint (fingerprint) VALUES ('%s')" % (fingerprint)) - q = projectB.query("SELECT id FROM fingerprint WHERE fingerprint = '%s'" % (fingerprint)) - fingerprint_id = q.getresult()[0][0] - fingerprint_id_cache[fingerprint] = fingerprint_id + projectB.query("INSERT INTO fingerprint (fingerprint) VALUES ('%s')" % (fingerprint)); + q = projectB.query("SELECT id FROM fingerprint WHERE fingerprint = '%s'" % (fingerprint)); + fingerprint_id = q.getresult()[0][0]; + fingerprint_id_cache[fingerprint] = fingerprint_id; - return fingerprint_id + return fingerprint_id; -########################################################################################## +################################################################################ def get_files_id (filename, size, md5sum, location_id): global files_id_cache @@ -273,8 +300,23 @@ def get_files_id (filename, size, md5sum, location_id): else: return None +################################################################################ + +def get_or_set_queue_id (queue): + global queue_id_cache + if queue_id_cache.has_key(queue): + return queue_id_cache[queue] + + q = projectB.query("SELECT id FROM queue WHERE queue_name = '%s'" % (queue)) + if not q.getresult(): + projectB.query("INSERT INTO queue (queue_name) VALUES ('%s')" % (queue)) + q = projectB.query("SELECT id FROM queue WHERE queue_name = '%s'" % (queue)) + queue_id = q.getresult()[0][0] + queue_id_cache[queue] = queue_id + + return queue_id -########################################################################################## +################################################################################ def set_files_id (filename, size, md5sum, location_id): global files_id_cache @@ -293,7 +335,7 @@ def set_files_id (filename, size, md5sum, location_id): ##files_id_cache[cache_key] = ql[0] ##return files_id_cache[cache_key]; -########################################################################################## +################################################################################ def get_maintainer (maintainer_id): global maintainer_cache; @@ -304,4 +346,4 @@ def get_maintainer (maintainer_id): return maintainer_cache[maintainer_id]; -########################################################################################## +################################################################################