db_access.py 8.0 KB
Newer Older
J
James Troup 已提交
1
# DB access fucntions
J
James Troup 已提交
2
# Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
J
James Troup 已提交
3
# $Id: db_access.py,v 1.8 2001-09-27 01:12:42 troup Exp $
J
James Troup 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

# 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
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

import pg, string

J
sync  
James Troup 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
############################################################################################

Cnf = None;
projectB = None;
suite_id_cache = {};
section_id_cache = {};
priority_id_cache = {};
override_type_id_cache = {};
architecture_id_cache = {};
archive_id_cache = {};
component_id_cache = {};
location_id_cache = {};
maintainer_id_cache = {};
source_id_cache = {};
files_id_cache = {};
J
James Troup 已提交
36
maintainer_cache = {}
J
sync  
James Troup 已提交
37 38

############################################################################################
J
James Troup 已提交
39 40 41

def init (config, sql):
    global Cnf, projectB
J
James Troup 已提交
42

J
James Troup 已提交
43 44 45 46 47 48 49 50 51 52 53 54
    Cnf = config;
    projectB = sql;

############################################################################################

def get_suite_id (suite):
    global suite_id_cache

    if suite_id_cache.has_key(suite):
        return suite_id_cache[suite]

    q = projectB.query("SELECT id FROM suite WHERE suite_name = '%s'" % (suite))
J
James Troup 已提交
55 56
    ql = q.getresult();
    if ql == []:
J
James Troup 已提交
57 58
        return -1;

J
sync  
James Troup 已提交
59
    suite_id = ql[0][0];
J
James Troup 已提交
60 61 62 63
    suite_id_cache[suite] = suite_id

    return suite_id

J
sync  
James Troup 已提交
64 65 66 67 68 69 70 71 72
def get_section_id (section):
    global section_id_cache

    if section_id_cache.has_key(section):
        return section_id_cache[section]

    q = projectB.query("SELECT id FROM section WHERE section = '%s'" % (section))
    ql = q.getresult();
    if ql == []:
J
James Troup 已提交
73 74
        return -1;

J
sync  
James Troup 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88
    section_id = ql[0][0];
    section_id_cache[section] = section_id

    return section_id

def get_priority_id (priority):
    global priority_id_cache

    if priority_id_cache.has_key(priority):
        return priority_id_cache[priority]

    q = projectB.query("SELECT id FROM priority WHERE priority = '%s'" % (priority))
    ql = q.getresult();
    if ql == []:
J
James Troup 已提交
89 90
        return -1;

J
sync  
James Troup 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104
    priority_id = ql[0][0];
    priority_id_cache[priority] = priority_id

    return priority_id

def get_override_type_id (type):
    global override_type_id_cache;

    if override_type_id_cache.has_key(type):
        return override_type_id_cache[type];

    q = projectB.query("SELECT id FROM override_type WHERE type = '%s'" % (type));
    ql = q.getresult();
    if ql == []:
J
James Troup 已提交
105 106
        return -1;

J
sync  
James Troup 已提交
107 108 109 110 111
    override_type_id = ql[0][0];
    override_type_id_cache[type] = override_type_id;

    return override_type_id;

J
James Troup 已提交
112
def get_architecture_id (architecture):
J
sync  
James Troup 已提交
113
    global architecture_id_cache;
J
James Troup 已提交
114 115

    if architecture_id_cache.has_key(architecture):
J
sync  
James Troup 已提交
116
        return architecture_id_cache[architecture];
J
James Troup 已提交
117 118

    q = projectB.query("SELECT id FROM architecture WHERE arch_string = '%s'" % (architecture))
J
sync  
James Troup 已提交
119 120 121
    ql = q.getresult();
    if ql == []:
        return -1;
J
James Troup 已提交
122

J
sync  
James Troup 已提交
123 124
    architecture_id = ql[0][0];
    architecture_id_cache[architecture] = architecture_id;
J
James Troup 已提交
125

J
sync  
James Troup 已提交
126
    return architecture_id;
J
James Troup 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150

def get_archive_id (archive):
    global archive_id_cache

    if archive_id_cache.has_key(archive):
        return archive_id_cache[archive]

    q = projectB.query("SELECT id FROM archive WHERE name = '%s'" % (archive))
    archive_id = q.getresult()[0][0]
    archive_id_cache[archive] = archive_id

    return archive_id

def get_component_id (component):
    global component_id_cache

    if component_id_cache.has_key(component):
        return component_id_cache[component]

    q = projectB.query("SELECT id FROM component WHERE lower(name) = '%s'" % (string.lower(component)))
    ql = q.getresult();
    if ql == []:
        return -1;

J
sync  
James Troup 已提交
151
    component_id = ql[0][0];
J
James Troup 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
    component_id_cache[component] = component_id

    return component_id

def get_location_id (location, component, archive):
    global location_id_cache

    cache_key = location + '~' + component + '~' + location
    if location_id_cache.has_key(cache_key):
        return location_id_cache[cache_key]

    archive_id = get_archive_id (archive)
    if component != "":
        component_id = get_component_id (component)
        if component_id != -1:
            q = projectB.query("SELECT id FROM location WHERE path = '%s' AND component = %d AND archive = %d" % (location, component_id, archive_id))
    else:
        q = projectB.query("SELECT id FROM location WHERE path = '%s' AND archive = %d" % (location, archive_id))
    location_id = q.getresult()[0][0]
    location_id_cache[cache_key] = location_id

    return location_id

def get_source_id (source, version):
    global source_id_cache

    cache_key = source + '~' + version + '~'
    if source_id_cache.has_key(cache_key):
        return source_id_cache[cache_key]

    q = projectB.query("SELECT id FROM source s WHERE s.source = '%s' AND s.version = '%s'" % (source, version))

    if not q.getresult():
        return None

    source_id = q.getresult()[0][0]
    source_id_cache[cache_key] = source_id

    return source_id

##########################################################################################

def get_or_set_maintainer_id (maintainer):
    global maintainer_id_cache

    if maintainer_id_cache.has_key(maintainer):
        return maintainer_id_cache[maintainer]

    q = projectB.query("SELECT id FROM maintainer WHERE name = '%s'" % (maintainer))
    if not q.getresult():
        projectB.query("INSERT INTO maintainer (name) VALUES ('%s')" % (maintainer))
        q = projectB.query("SELECT id FROM maintainer WHERE name = '%s'" % (maintainer))
    maintainer_id = q.getresult()[0][0]
    maintainer_id_cache[maintainer] = maintainer_id

    return maintainer_id

##########################################################################################

def get_files_id (filename, size, md5sum, location_id):
    global files_id_cache

    cache_key = "%s~%d" % (filename, location_id);

    if files_id_cache.has_key(cache_key):
J
James Troup 已提交
217
        return files_id_cache[cache_key]
J
James Troup 已提交
218

J
James Troup 已提交
219
    size = int(size);
J
James Troup 已提交
220 221 222 223 224
    q = projectB.query("SELECT id, size, md5sum FROM files WHERE filename = '%s' AND location = %d" % (filename, location_id));
    ql = q.getresult();
    if ql:
        if len(ql) != 1:
            return -1;
J
James Troup 已提交
225
        ql = ql[0];
J
James Troup 已提交
226
        orig_size = int(ql[1]);
J
James Troup 已提交
227 228 229
        orig_md5sum = ql[2];
        if orig_size != size or orig_md5sum != md5sum:
            return -2;
J
sync  
James Troup 已提交
230
        files_id_cache[cache_key] = ql[0];
J
James Troup 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243
        return files_id_cache[cache_key]
    else:
        return None


##########################################################################################

def set_files_id (filename, size, md5sum, location_id):
    global files_id_cache

    cache_key = "%s~%d" % (filename, location_id);

    #print "INSERT INTO files (filename, size, md5sum, location) VALUES ('%s', %d, '%s', %d)" % (filename, long(size), md5sum, location_id);
J
James Troup 已提交
244
    projectB.query("INSERT INTO files (filename, size, md5sum, location) VALUES ('%s', %d, '%s', %d)" % (filename, long(size), md5sum, location_id));
J
James Troup 已提交
245 246 247 248 249 250 251 252
    q = projectB.query("SELECT id FROM files WHERE id = currval('files_id_seq')");
    ql = q.getresult()[0];
    files_id_cache[cache_key] = ql[0]

    return files_id_cache[cache_key]

##########################################################################################

J
James Troup 已提交
253 254
def get_maintainer (maintainer_id):
    global maintainer_cache;
J
James Troup 已提交
255

J
James Troup 已提交
256 257 258
    if not maintainer_cache.has_key(maintainer_id):
        q = projectB.query("SELECT name FROM maintainer WHERE id = %s" % (maintainer_id));
        maintainer_cache[maintainer_id] = q.getresult()[0][0];
J
James Troup 已提交
259

J
James Troup 已提交
260 261 262
    return maintainer_cache[maintainer_id];

##########################################################################################