dbconn.py 41.4 KB
Newer Older
1
#!/usr/bin/python
M
Mark Hymers 已提交
2

3 4 5 6 7 8
""" DB access class

@contact: Debian FTPMaster <ftpmaster@debian.org>
@copyright: 2000, 2001, 2002, 2003, 2004, 2006  James Troup <james@nocrew.org>
@copyright: 2008-2009  Mark Hymers <mhy@debian.org>
@copyright: 2009  Joerg Jaspert <joerg@debian.org>
9
@copyright: 2009  Mike O'Connor <stew@debian.org>
10 11
@license: GNU General Public License version 2 or later
"""
M
Mark Hymers 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

# 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

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

# < mhy> I need a funny comment
# < sgran> two peanuts were walking down a dark street
# < sgran> one was a-salted
#  * mhy looks up the definition of "funny"

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

36
import os
M
Mark Hymers 已提交
37
import psycopg2
38
import traceback
M
Mark Hymers 已提交
39

M
Mark Hymers 已提交
40
from sqlalchemy import create_engine, Table, MetaData, select
M
Mark Hymers 已提交
41
from sqlalchemy.orm import sessionmaker, mapper, relation
M
Mark Hymers 已提交
42

M
Mark Hymers 已提交
43 44 45
# Don't remove this, we re-export the exceptions to scripts which import us
from sqlalchemy.exc import *

46
from singleton import Singleton
M
Mark Hymers 已提交
47
from textutils import fix_maintainer
M
Mark Hymers 已提交
48 49 50

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

M
Mark Hymers 已提交
51
__all__ = ['IntegrityError', 'SQLAlchemyError']
52 53 54

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

M
Mark Hymers 已提交
55
class Architecture(object):
M
Mark Hymers 已提交
56 57
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
58 59 60 61

    def __repr__(self):
        return '<Architecture %s>' % self.arch_string

62 63
__all__.append('Architecture')

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
def get_architecture(architecture, session=None):
    """
    Returns database id for given C{architecture}.

    @type architecture: string
    @param architecture: The name of the architecture

    @type session: Session
    @param session: Optional SQLA session object (a temporary one will be
    generated if not supplied)

    @rtype: Architecture
    @return: Architecture object for the given arch (None if not present)

    """
    if session is None:
        session = DBConn().session()
    q = session.query(Architecture).filter_by(arch_string=architecture)
    if q.count() == 0:
        return None
    return q.one()

86 87
__all__.append('get_architecture')

M
Mark Hymers 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
def get_architecture_suites(architecture, session=None):
    """
    Returns list of Suite objects for given C{architecture} name

    @type source: str
    @param source: Architecture name to search for

    @type session: Session
    @param session: Optional SQL session object (a temporary one will be
    generated if not supplied)

    @rtype: list
    @return: list of Suite objects for the given name (may be empty)
    """

    if session is None:
        session = DBConn().session()

    q = session.query(Suite)
    q = q.join(SuiteArchitecture)
    q = q.join(Architecture).filter_by(arch_string=architecture).order_by('suite_name')
    return q.all()

111 112
__all__.append('get_architecture_suites')

M
Mark Hymers 已提交
113 114
################################################################################

M
Mark Hymers 已提交
115
class Archive(object):
M
Mark Hymers 已提交
116 117
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
118 119 120 121

    def __repr__(self):
        return '<Archive %s>' % self.name

122 123
__all__.append('Archive')

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
def get_archive(archive, session=None):
    """
    returns database id for given c{archive}.

    @type archive: string
    @param archive: the name of the arhive

    @type session: Session
    @param session: Optional SQLA session object (a temporary one will be
    generated if not supplied)

    @rtype: Archive
    @return: Archive object for the given name (None if not present)

    """
    archive = archive.lower()
    if session is None:
        session = DBConn().session()
    q = session.query(Archive).filter_by(archive_name=archive)
    if q.count() == 0:
        return None
    return q.one()

147
__all__.append('get_archive')
148

M
Mark Hymers 已提交
149 150
################################################################################

M
Mark Hymers 已提交
151
class BinAssociation(object):
M
Mark Hymers 已提交
152 153
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
154 155

    def __repr__(self):
M
Mark Hymers 已提交
156
        return '<BinAssociation %s (%s, %s)>' % (self.ba_id, self.binary, self.suite)
M
Mark Hymers 已提交
157

158 159
__all__.append('BinAssociation')

M
Mark Hymers 已提交
160 161
################################################################################

162
class DBBinary(object):
M
Mark Hymers 已提交
163 164
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
165 166

    def __repr__(self):
167
        return '<DBBinary %s (%s, %s)>' % (self.package, self.version, self.architecture)
M
Mark Hymers 已提交
168

169
__all__.append('DBBinary')
170

171 172
def get_binary_from_id(id, session=None):
    """
173
    Returns DBBinary object for given C{id}
174 175 176 177 178 179 180 181

    @type id: int
    @param id: Id of the required binary

    @type session: Session
    @param session: Optional SQLA session object (a temporary one will be
    generated if not supplied)

182 183
    @rtype: DBBinary
    @return: DBBinary object for the given binary (None if not present)
184 185 186
    """
    if session is None:
        session = DBConn().session()
187
    q = session.query(DBBinary).filter_by(binary_id=id)
188 189 190
    if q.count() == 0:
        return None
    return q.one()
M
Mark Hymers 已提交
191

192 193
__all__.append('get_binary_from_id')

M
Mark Hymers 已提交
194 195
def get_binaries_from_name(package, session=None):
    """
196
    Returns list of DBBinary objects for given C{package} name
M
Mark Hymers 已提交
197 198

    @type package: str
199
    @param package: DBBinary package name to search for
M
Mark Hymers 已提交
200 201 202 203 204 205

    @type session: Session
    @param session: Optional SQL session object (a temporary one will be
    generated if not supplied)

    @rtype: list
206
    @return: list of DBBinary objects for the given name (may be empty)
M
Mark Hymers 已提交
207 208 209
    """
    if session is None:
        session = DBConn().session()
210
    return session.query(DBBinary).filter_by(package=package).all()
M
Mark Hymers 已提交
211

212 213
__all__.append('get_binaries_from_name')

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
def get_binary_components(package, suitename, arch, session=None):
# Check for packages that have moved from one component to another
    query = """SELECT c.name FROM binaries b, bin_associations ba, suite s, location l, component c, architecture a, files f
    WHERE b.package=:package AND s.suite_name=:suitename
      AND (a.arch_string = :arch OR a.arch_string = 'all')
      AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
      AND f.location = l.id
      AND l.component = c.id
      AND b.file = f.id"""

    vals = {'package': package, 'suitename': suitename, 'arch': arch}

    if session is None:
        session = DBConn().session()
    return session.execute(query, vals)

__all__.append('get_binary_components')
M
Mark Hymers 已提交
231 232
################################################################################

M
Mark Hymers 已提交
233
class Component(object):
M
Mark Hymers 已提交
234 235
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
236 237 238 239

    def __repr__(self):
        return '<Component %s>' % self.component_name

240 241 242

__all__.append('Component')

243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
def get_component(component, session=None):
    """
    Returns database id for given C{component}.

    @type component: string
    @param component: The name of the override type

    @rtype: int
    @return: the database id for the given component

    """
    component = component.lower()
    if session is None:
        session = DBConn().session()
    q = session.query(Component).filter_by(component_name=component)
    if q.count() == 0:
        return None
    return q.one()

262 263
__all__.append('get_component')

M
Mark Hymers 已提交
264 265
################################################################################

M
Mark Hymers 已提交
266
class DBConfig(object):
M
Mark Hymers 已提交
267 268
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
269 270 271 272

    def __repr__(self):
        return '<DBConfig %s>' % self.name

273 274
__all__.append('DBConfig')

M
Mark Hymers 已提交
275 276
################################################################################

M
Mark Hymers 已提交
277
class ContentFilename(object):
M
Mark Hymers 已提交
278 279
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
280 281 282 283

    def __repr__(self):
        return '<ContentFilename %s>' % self.filename

284 285
__all__.append('ContentFilename')

286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
def get_or_set_contents_file_id(filename, session=None):
    """
    Returns database id for given filename.

    If no matching file is found, a row is inserted.

    @type filename: string
    @param filename: The filename
    @type session: SQLAlchemy
    @param session: Optional SQL session object (a temporary one will be
    generated if not supplied)

    @rtype: int
    @return: the database id for the given component
    """
    if session is None:
        session = DBConn().session()

    try:
        q = session.query(ContentFilename).filter_by(filename=filename)
        if q.count() < 1:
            cf = ContentFilename()
            cf.filename = filename
            session.add(cf)
            return cf.cafilename_id
        else:
            return q.one().cafilename_id

    except:
        traceback.print_exc()
        raise

__all__.append('get_or_set_contents_file_id')

M
Mark Hymers 已提交
320 321
################################################################################

M
Mark Hymers 已提交
322
class ContentFilepath(object):
M
Mark Hymers 已提交
323 324
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
325 326 327 328

    def __repr__(self):
        return '<ContentFilepath %s>' % self.filepath

329 330
__all__.append('ContentFilepath')

331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
def get_or_set_contents_path_id(filepath, session):
    """
    Returns database id for given path.

    If no matching file is found, a row is inserted.

    @type filename: string
    @param filename: The filepath
    @type session: SQLAlchemy
    @param session: Optional SQL session object (a temporary one will be
    generated if not supplied)

    @rtype: int
    @return: the database id for the given path
    """
    if session is None:
        session = DBConn().session()

    try:
        q = session.query(ContentFilepath).filter_by(filepath=filepath)
        if q.count() < 1:
            cf = ContentFilepath()
            cf.filepath = filepath
            session.add(cf)
            return cf.cafilepath_id
        else:
            return q.one().cafilepath_id

    except:
        traceback.print_exc()
        raise

__all__.append('get_or_set_contents_path_id')

M
Mark Hymers 已提交
365 366
################################################################################

367
class ContentAssociation(object):
M
Mark Hymers 已提交
368 369
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
370 371 372 373

    def __repr__(self):
        return '<ContentAssociation %s>' % self.ca_id

374 375
__all__.append('ContentAssociation')

376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
def insert_content_paths(binary_id, fullpaths, session=None):
    """
    Make sure given path is associated with given binary id

    @type binary_id: int
    @param binary_id: the id of the binary
    @type fullpaths: list
    @param fullpaths: the list of paths of the file being associated with the binary
    @type session: SQLAlchemy session
    @param session: Optional SQLAlchemy session.  If this is passed, the caller
    is responsible for ensuring a transaction has begun and committing the
    results or rolling back based on the result code.  If not passed, a commit
    will be performed at the end of the function

    @return: True upon success
    """

    privatetrans = False

    if session is None:
        session = DBConn().session()
        privatetrans = True

    try:
        for fullpath in fullpaths:
            (path, file) = os.path.split(fullpath)

            # Get the necessary IDs ...
            ca = ContentAssociation()
            ca.binary_id = binary_id
            ca.filename_id = get_or_set_contents_file_id(file)
            ca.filepath_id = get_or_set_contents_path_id(path)
            session.add(ca)

        # Only commit if we set up the session ourself
        if privatetrans:
            session.commit()

        return True
    except:
        traceback.print_exc()

        # Only rollback if we set up the session ourself
        if privatetrans:
            session.rollback()

        return False

__all__.append('insert_content_paths')

M
Mark Hymers 已提交
426 427
################################################################################

M
Mark Hymers 已提交
428
class DSCFile(object):
M
Mark Hymers 已提交
429 430
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
431 432 433 434

    def __repr__(self):
        return '<DSCFile %s>' % self.dscfile_id

435 436
__all__.append('DSCFile')

M
Mark Hymers 已提交
437 438
################################################################################

M
Mark Hymers 已提交
439
class PoolFile(object):
M
Mark Hymers 已提交
440 441
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
442 443 444 445

    def __repr__(self):
        return '<PoolFile %s>' % self.filename

446 447
__all__.append('PoolFile')

448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
def get_poolfile_by_name(filename, location_id=None, session=None):
    """
    Returns an array of PoolFile objects for the given filename and
    (optionally) location_id

    @type filename: string
    @param filename: the filename of the file to check against the DB

    @type location_id: int
    @param location_id: the id of the location to look in (optional)

    @rtype: array
    @return: array of PoolFile objects
    """

    if session is not None:
        session = DBConn().session()

    q = session.query(PoolFile).filter_by(filename=filename)

    if location_id is not None:
        q = q.join(Location).filter_by(location_id=location_id)

    return q.all()

__all__.append('get_poolfile_by_name')

M
Mark Hymers 已提交
475 476
################################################################################

M
Mark Hymers 已提交
477
class Fingerprint(object):
M
Mark Hymers 已提交
478 479
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
480 481 482 483

    def __repr__(self):
        return '<Fingerprint %s>' % self.fingerprint

484 485
__all__.append('Fingerprint')

M
Mark Hymers 已提交
486 487
################################################################################

M
Mark Hymers 已提交
488
class Keyring(object):
M
Mark Hymers 已提交
489 490
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
491 492 493 494

    def __repr__(self):
        return '<Keyring %s>' % self.keyring_name

495 496
__all__.append('Keyring')

M
Mark Hymers 已提交
497 498
################################################################################

M
Mark Hymers 已提交
499
class Location(object):
M
Mark Hymers 已提交
500 501
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
502 503 504 505

    def __repr__(self):
        return '<Location %s (%s)>' % (self.path, self.location_id)

506 507
__all__.append('Location')

508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
def get_location(location, component=None, archive=None, session=None):
    """
    Returns Location object for the given combination of location, component
    and archive

    @type location: string
    @param location: the path of the location, e.g. I{/srv/ftp.debian.org/ftp/pool/}

    @type component: string
    @param component: the component name (if None, no restriction applied)

    @type archive: string
    @param archive_id: the archive name (if None, no restriction applied)

    @rtype: Location / None
    @return: Either a Location object or None if one can't be found
    """

    if session is None:
        session = DBConn().session()

    q = session.query(Location).filter_by(path=location)

    if archive is not None:
        q = q.join(Archive).filter_by(archive_name=archive)

    if component is not None:
        q = q.join(Component).filter_by(component_name=component)

    if q.count() < 1:
        return None
    else:
        return q.one()

__all__.append('get_location')

M
Mark Hymers 已提交
544 545
################################################################################

M
Mark Hymers 已提交
546
class Maintainer(object):
M
Mark Hymers 已提交
547 548
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
549 550 551 552

    def __repr__(self):
        return '''<Maintainer '%s' (%s)>''' % (self.name, self.maintainer_id)

M
Mark Hymers 已提交
553 554 555 556 557 558
    def get_split_maintainer(self):
        if not hasattr(self, 'name') or self.name is None:
            return ('', '', '', '')

        return fix_maintainer(self.name.strip())

559 560
__all__.append('Maintainer')

M
Mark Hymers 已提交
561 562
################################################################################

M
Mark Hymers 已提交
563
class Override(object):
M
Mark Hymers 已提交
564 565
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
566 567 568 569

    def __repr__(self):
        return '<Override %s (%s)>' % (self.package, self.suite_id)

570 571
__all__.append('Override')

M
Mark Hymers 已提交
572 573
################################################################################

M
Mark Hymers 已提交
574
class OverrideType(object):
M
Mark Hymers 已提交
575 576
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
577 578 579 580

    def __repr__(self):
        return '<OverrideType %s>' % self.overridetype

581 582
__all__.append('OverrideType')

583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
def get_override_type(override_type, session=None):
    """
    Returns OverrideType object for given C{override type}.

    @type override_type: string
    @param override_type: The name of the override type

    @type session: Session
    @param session: Optional SQLA session object (a temporary one will be
    generated if not supplied)

    @rtype: int
    @return: the database id for the given override type

    """
    if session is None:
        session = DBConn().session()
    q = session.query(Priority).filter_by(priority=priority)
    if q.count() == 0:
        return None
    return q.one()

605 606
__all__.append('get_override_type')

M
Mark Hymers 已提交
607 608
################################################################################

M
Mark Hymers 已提交
609
class PendingContentAssociation(object):
M
Mark Hymers 已提交
610 611
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
612 613 614 615

    def __repr__(self):
        return '<PendingContentAssociation %s>' % self.pca_id

616 617
__all__.append('PendingContentAssociation')

618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
def insert_pending_content_paths(package, fullpaths, session=None):
    """
    Make sure given paths are temporarily associated with given
    package

    @type package: dict
    @param package: the package to associate with should have been read in from the binary control file
    @type fullpaths: list
    @param fullpaths: the list of paths of the file being associated with the binary
    @type session: SQLAlchemy session
    @param session: Optional SQLAlchemy session.  If this is passed, the caller
    is responsible for ensuring a transaction has begun and committing the
    results or rolling back based on the result code.  If not passed, a commit
    will be performed at the end of the function

    @return: True upon success, False if there is a problem
    """

    privatetrans = False

    if session is None:
        session = DBConn().session()
        privatetrans = True

    try:
        arch = get_architecture(package['Architecture'], session)
        arch_id = arch.arch_id

        # Remove any already existing recorded files for this package
        q = session.query(PendingContentAssociation)
        q = q.filter_by(package=package['Package'])
        q = q.filter_by(version=package['Version'])
        q = q.filter_by(architecture=arch_id)
        q.delete()

        # Insert paths
        for fullpath in fullpaths:
            (path, file) = os.path.split(fullpath)

            if path.startswith( "./" ):
                path = path[2:]

            pca = PendingContentAssociation()
            pca.package = package['Package']
            pca.version = package['Version']
            pca.filename_id = get_or_set_contents_file_id(file, session)
            pca.filepath_id = get_or_set_contents_path_id(path, session)
            pca.architecture = arch_id
            session.add(pca)

        # Only commit if we set up the session ourself
        if privatetrans:
            session.commit()

        return True
    except:
        traceback.print_exc()

        # Only rollback if we set up the session ourself
        if privatetrans:
            session.rollback()

        return False

__all__.append('insert_pending_content_paths')

M
Mark Hymers 已提交
684 685
################################################################################

M
Mark Hymers 已提交
686
class Priority(object):
M
Mark Hymers 已提交
687 688
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
689 690 691 692

    def __repr__(self):
        return '<Priority %s (%s)>' % (self.priority, self.priority_id)

693 694
__all__.append('Priority')

695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
def get_priority(priority, session=None):
    """
    Returns Priority object for given C{priority name}.

    @type priority: string
    @param priority: The name of the priority

    @type session: Session
    @param session: Optional SQLA session object (a temporary one will be
    generated if not supplied)

    @rtype: Priority
    @return: Priority object for the given priority

    """
    if session is None:
        session = DBConn().session()
    q = session.query(Priority).filter_by(priority=priority)
    if q.count() == 0:
        return None
    return q.one()

717 718
__all__.append('get_priority')

M
Mark Hymers 已提交
719 720
################################################################################

M
Mark Hymers 已提交
721
class Queue(object):
M
Mark Hymers 已提交
722 723
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
724 725 726 727

    def __repr__(self):
        return '<Queue %s>' % self.queue_name

728 729
__all__.append('Queue')

M
Mark Hymers 已提交
730 731
################################################################################

M
Mark Hymers 已提交
732
class QueueBuild(object):
M
Mark Hymers 已提交
733 734
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
735 736 737 738

    def __repr__(self):
        return '<QueueBuild %s (%s)>' % (self.filename, self.queue_id)

739 740
__all__.append('QueueBuild')

M
Mark Hymers 已提交
741 742
################################################################################

M
Mark Hymers 已提交
743
class Section(object):
M
Mark Hymers 已提交
744 745
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
746 747 748 749

    def __repr__(self):
        return '<Section %s>' % self.section

750 751
__all__.append('Section')

752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
def get_section(section, session=None):
    """
    Returns Section object for given C{section name}.

    @type section: string
    @param section: The name of the section

    @type session: Session
    @param session: Optional SQLA session object (a temporary one will be
    generated if not supplied)

    @rtype: Section
    @return: Section object for the given section name

    """
    if session is None:
        session = DBConn().session()
    q = session.query(Section).filter_by(section=section)
    if q.count() == 0:
        return None
    return q.one()

774 775
__all__.append('get_section')

M
Mark Hymers 已提交
776 777
################################################################################

778
class DBSource(object):
M
Mark Hymers 已提交
779 780
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
781 782

    def __repr__(self):
783
        return '<DBSource %s (%s)>' % (self.source, self.version)
M
Mark Hymers 已提交
784

785
__all__.append('DBSource')
786

787
def get_sources_from_name(source, dm_upload_allowed=None, session=None):
M
Mark Hymers 已提交
788
    """
789
    Returns list of DBSource objects for given C{source} name
M
Mark Hymers 已提交
790 791

    @type source: str
792
    @param source: DBSource package name to search for
M
Mark Hymers 已提交
793

794 795 796 797
    @type dm_upload_allowed: bool
    @param dm_upload_allowed: If None, no effect.  If True or False, only
    return packages with that dm_upload_allowed setting

M
Mark Hymers 已提交
798 799 800 801 802
    @type session: Session
    @param session: Optional SQL session object (a temporary one will be
    generated if not supplied)

    @rtype: list
803
    @return: list of DBSource objects for the given name (may be empty)
M
Mark Hymers 已提交
804 805 806
    """
    if session is None:
        session = DBConn().session()
807 808 809 810 811 812

    q = session.query(DBSource).filter_by(source=source)
    if dm_upload_allowed is not None:
        q = q.filter_by(dm_upload_allowed=dm_upload_allowed)

    return q.all()
M
Mark Hymers 已提交
813

814 815
__all__.append('get_sources_from_name')

816 817
def get_source_in_suite(source, suite, session=None):
    """
818
    Returns list of DBSource objects for a combination of C{source} and C{suite}.
819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834

      - B{source} - source package name, eg. I{mailfilter}, I{bbdb}, I{glibc}
      - B{suite} - a suite name, eg. I{unstable}

    @type source: string
    @param source: source package name

    @type suite: string
    @param suite: the suite name

    @rtype: string
    @return: the version for I{source} in I{suite}

    """
    if session is None:
        session = DBConn().session()
M
updates  
Mark Hymers 已提交
835 836 837
    q = session.query(SrcAssociation)
    q = q.join('source').filter_by(source=source)
    q = q.join('suite').filter_by(suite_name=suite)
838 839
    if q.count() == 0:
        return None
M
updates  
Mark Hymers 已提交
840 841
    # ???: Maybe we should just return the SrcAssociation object instead
    return q.one().source
842

843 844
__all__.append('get_source_in_suite')

M
Mark Hymers 已提交
845 846
################################################################################

M
Mark Hymers 已提交
847
class SrcAssociation(object):
M
Mark Hymers 已提交
848 849
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
850 851

    def __repr__(self):
M
Mark Hymers 已提交
852
        return '<SrcAssociation %s (%s, %s)>' % (self.sa_id, self.source, self.suite)
M
Mark Hymers 已提交
853

854 855
__all__.append('SrcAssociation')

M
Mark Hymers 已提交
856 857
################################################################################

M
Mark Hymers 已提交
858
class SrcUploader(object):
M
Mark Hymers 已提交
859 860
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
861 862 863 864

    def __repr__(self):
        return '<SrcUploader %s>' % self.uploader_id

865 866
__all__.append('SrcUploader')

M
Mark Hymers 已提交
867 868
################################################################################

M
Mark Hymers 已提交
869
class Suite(object):
M
Mark Hymers 已提交
870 871
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
872 873 874 875

    def __repr__(self):
        return '<Suite %s>' % self.suite_name

876 877
__all__.append('Suite')

M
Mark Hymers 已提交
878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
def get_suite_architecture(suite, architecture, session=None):
    """
    Returns a SuiteArchitecture object given C{suite} and ${arch} or None if it
    doesn't exist

    @type suite: str
    @param suite: Suite name to search for

    @type architecture: str
    @param architecture: Architecture name to search for

    @type session: Session
    @param session: Optional SQL session object (a temporary one will be
    generated if not supplied)

    @rtype: SuiteArchitecture
    @return: the SuiteArchitecture object or None
    """

    if session is None:
        session = DBConn().session()

    q = session.query(SuiteArchitecture)
    q = q.join(Architecture).filter_by(arch_string=architecture)
    q = q.join(Suite).filter_by(suite_name=suite)
    if q.count() == 0:
        return None
    return q.one()

907
__all__.append('get_suite_architecture')
M
Mark Hymers 已提交
908

909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
def get_suite(suite, session=None):
    """
    Returns Suite object for given C{suite name}.

    @type suite: string
    @param suite: The name of the suite

    @type session: Session
    @param session: Optional SQLA session object (a temporary one will be
    generated if not supplied)

    @rtype: Suite
    @return: Suite object for the requested suite name (None if not presenT)

    """
    if session is None:
        session = DBConn().session()
    q = session.query(Suite).filter_by(suite_name=suite)
    if q.count() == 0:
        return None
    return q.one()

931 932
__all__.append('get_suite')

M
Mark Hymers 已提交
933 934
################################################################################

M
Mark Hymers 已提交
935
class SuiteArchitecture(object):
M
Mark Hymers 已提交
936 937
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
938 939 940 941

    def __repr__(self):
        return '<SuiteArchitecture (%s, %s)>' % (self.suite_id, self.arch_id)

942 943
__all__.append('SuiteArchitecture')

944
def get_suite_architectures(suite, skipsrc=False, skipall=False, session=None):
M
Mark Hymers 已提交
945 946 947 948 949 950
    """
    Returns list of Architecture objects for given C{suite} name

    @type source: str
    @param source: Suite name to search for

951 952 953 954 955 956 957 958
    @type skipsrc: boolean
    @param skipsrc: Whether to skip returning the 'source' architecture entry
    (Default False)

    @type skipall: boolean
    @param skipall: Whether to skip returning the 'all' architecture entry
    (Default False)

M
Mark Hymers 已提交
959 960 961 962 963 964 965 966 967 968 969 970 971
    @type session: Session
    @param session: Optional SQL session object (a temporary one will be
    generated if not supplied)

    @rtype: list
    @return: list of Architecture objects for the given name (may be empty)
    """

    if session is None:
        session = DBConn().session()

    q = session.query(Architecture)
    q = q.join(SuiteArchitecture)
972 973 974 975 976 977
    q = q.join(Suite).filter_by(suite_name=suite)
    if skipsrc:
        q = q.filter(Architecture.arch_string != 'source')
    if skipall:
        q = q.filter(Architecture.arch_string != 'all')
    q = q.order_by('arch_string')
M
Mark Hymers 已提交
978 979
    return q.all()

980
__all__.append('get_suite_architectures')
M
Mark Hymers 已提交
981

M
Mark Hymers 已提交
982 983
################################################################################

M
Mark Hymers 已提交
984
class Uid(object):
M
Mark Hymers 已提交
985 986
    def __init__(self, *args, **kwargs):
        pass
M
Mark Hymers 已提交
987 988 989 990

    def __repr__(self):
        return '<Uid %s (%s)>' % (self.uid, self.name)

991 992
__all__.append('Uid')

993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
def get_uid_from_fingerprint(fpr, session=None):
    if session is None:
        session = DBConn().session()

    q = session.query(Uid)
    q = q.join(Fingerprint).filter_by(fingerprint=fpr)

    if q.count() != 1:
        return None
    else:
        return q.one()

__all__.append('get_uid_from_fingerprint')

M
Mark Hymers 已提交
1007 1008
################################################################################

M
Mark Hymers 已提交
1009 1010
class DBConn(Singleton):
    """
1011
    database module init.
M
Mark Hymers 已提交
1012 1013 1014 1015 1016
    """
    def __init__(self, *args, **kwargs):
        super(DBConn, self).__init__(*args, **kwargs)

    def _startup(self, *args, **kwargs):
M
updates  
Mark Hymers 已提交
1017 1018 1019
        self.debug = False
        if kwargs.has_key('debug'):
            self.debug = True
M
Mark Hymers 已提交
1020 1021
        self.__createconn()

M
Mark Hymers 已提交
1022 1023
    def __setuptables(self):
        self.tbl_architecture = Table('architecture', self.db_meta, autoload=True)
M
Mark Hymers 已提交
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
        self.tbl_archive = Table('archive', self.db_meta, autoload=True)
        self.tbl_bin_associations = Table('bin_associations', self.db_meta, autoload=True)
        self.tbl_binaries = Table('binaries', self.db_meta, autoload=True)
        self.tbl_component = Table('component', self.db_meta, autoload=True)
        self.tbl_config = Table('config', self.db_meta, autoload=True)
        self.tbl_content_associations = Table('content_associations', self.db_meta, autoload=True)
        self.tbl_content_file_names = Table('content_file_names', self.db_meta, autoload=True)
        self.tbl_content_file_paths = Table('content_file_paths', self.db_meta, autoload=True)
        self.tbl_dsc_files = Table('dsc_files', self.db_meta, autoload=True)
        self.tbl_files = Table('files', self.db_meta, autoload=True)
        self.tbl_fingerprint = Table('fingerprint', self.db_meta, autoload=True)
        self.tbl_keyrings = Table('keyrings', self.db_meta, autoload=True)
        self.tbl_location = Table('location', self.db_meta, autoload=True)
        self.tbl_maintainer = Table('maintainer', self.db_meta, autoload=True)
        self.tbl_override = Table('override', self.db_meta, autoload=True)
        self.tbl_override_type = Table('override_type', self.db_meta, autoload=True)
        self.tbl_pending_content_associations = Table('pending_content_associations', self.db_meta, autoload=True)
        self.tbl_priority = Table('priority', self.db_meta, autoload=True)
        self.tbl_queue = Table('queue', self.db_meta, autoload=True)
        self.tbl_queue_build = Table('queue_build', self.db_meta, autoload=True)
        self.tbl_section = Table('section', self.db_meta, autoload=True)
        self.tbl_source = Table('source', self.db_meta, autoload=True)
        self.tbl_src_associations = Table('src_associations', self.db_meta, autoload=True)
        self.tbl_src_uploaders = Table('src_uploaders', self.db_meta, autoload=True)
        self.tbl_suite = Table('suite', self.db_meta, autoload=True)
        self.tbl_suite_architectures = Table('suite_architectures', self.db_meta, autoload=True)
        self.tbl_uid = Table('uid', self.db_meta, autoload=True)

    def __setupmappers(self):
M
Mark Hymers 已提交
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062
        mapper(Architecture, self.tbl_architecture,
               properties = dict(arch_id = self.tbl_architecture.c.id))

        mapper(Archive, self.tbl_archive,
               properties = dict(archive_id = self.tbl_archive.c.id,
                                 archive_name = self.tbl_archive.c.name))

        mapper(BinAssociation, self.tbl_bin_associations,
               properties = dict(ba_id = self.tbl_bin_associations.c.id,
                                 suite_id = self.tbl_bin_associations.c.suite,
M
Mark Hymers 已提交
1063 1064
                                 suite = relation(Suite),
                                 binary_id = self.tbl_bin_associations.c.bin,
1065
                                 binary = relation(DBBinary)))
M
Mark Hymers 已提交
1066

1067
        mapper(DBBinary, self.tbl_binaries,
M
Mark Hymers 已提交
1068
               properties = dict(binary_id = self.tbl_binaries.c.id,
M
Mark Hymers 已提交
1069 1070
                                 package = self.tbl_binaries.c.package,
                                 version = self.tbl_binaries.c.version,
M
Mark Hymers 已提交
1071
                                 maintainer_id = self.tbl_binaries.c.maintainer,
M
Mark Hymers 已提交
1072
                                 maintainer = relation(Maintainer),
M
Mark Hymers 已提交
1073
                                 source_id = self.tbl_binaries.c.source,
1074
                                 source = relation(DBSource),
M
Mark Hymers 已提交
1075
                                 arch_id = self.tbl_binaries.c.architecture,
M
Mark Hymers 已提交
1076 1077 1078 1079 1080 1081 1082 1083 1084
                                 architecture = relation(Architecture),
                                 poolfile_id = self.tbl_binaries.c.file,
                                 poolfile = relation(PoolFile),
                                 binarytype = self.tbl_binaries.c.type,
                                 fingerprint_id = self.tbl_binaries.c.sig_fpr,
                                 fingerprint = relation(Fingerprint),
                                 install_date = self.tbl_binaries.c.install_date,
                                 binassociations = relation(BinAssociation,
                                                            primaryjoin=(self.tbl_binaries.c.id==self.tbl_bin_associations.c.bin))))
M
Mark Hymers 已提交
1085 1086 1087 1088 1089 1090 1091 1092

        mapper(Component, self.tbl_component,
               properties = dict(component_id = self.tbl_component.c.id,
                                 component_name = self.tbl_component.c.name))

        mapper(DBConfig, self.tbl_config,
               properties = dict(config_id = self.tbl_config.c.id))

1093
        mapper(ContentAssociation, self.tbl_content_associations,
M
Mark Hymers 已提交
1094 1095
               properties = dict(ca_id = self.tbl_content_associations.c.id,
                                 filename_id = self.tbl_content_associations.c.filename,
M
Mark Hymers 已提交
1096
                                 filename    = relation(ContentFilename),
M
Mark Hymers 已提交
1097
                                 filepath_id = self.tbl_content_associations.c.filepath,
M
Mark Hymers 已提交
1098 1099
                                 filepath    = relation(ContentFilepath),
                                 binary_id   = self.tbl_content_associations.c.binary_pkg,
1100
                                 binary      = relation(DBBinary)))
M
Mark Hymers 已提交
1101

M
Mark Hymers 已提交
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113

        mapper(ContentFilename, self.tbl_content_file_names,
               properties = dict(cafilename_id = self.tbl_content_file_names.c.id,
                                 filename = self.tbl_content_file_names.c.file))

        mapper(ContentFilepath, self.tbl_content_file_paths,
               properties = dict(cafilepath_id = self.tbl_content_file_paths.c.id,
                                 filepath = self.tbl_content_file_paths.c.path))

        mapper(DSCFile, self.tbl_dsc_files,
               properties = dict(dscfile_id = self.tbl_dsc_files.c.id,
                                 source_id = self.tbl_dsc_files.c.source,
1114
                                 source = relation(DBSource),
M
Mark Hymers 已提交
1115 1116
                                 poolfile_id = self.tbl_dsc_files.c.file,
                                 poolfile = relation(PoolFile)))
M
Mark Hymers 已提交
1117 1118 1119 1120

        mapper(PoolFile, self.tbl_files,
               properties = dict(file_id = self.tbl_files.c.id,
                                 filesize = self.tbl_files.c.size,
M
Mark Hymers 已提交
1121 1122
                                 location_id = self.tbl_files.c.location,
                                 location = relation(Location)))
M
Mark Hymers 已提交
1123 1124 1125 1126

        mapper(Fingerprint, self.tbl_fingerprint,
               properties = dict(fingerprint_id = self.tbl_fingerprint.c.id,
                                 uid_id = self.tbl_fingerprint.c.uid,
M
Mark Hymers 已提交
1127 1128 1129
                                 uid = relation(Uid),
                                 keyring_id = self.tbl_fingerprint.c.keyring,
                                 keyring = relation(Keyring)))
M
Mark Hymers 已提交
1130 1131 1132 1133 1134 1135 1136 1137

        mapper(Keyring, self.tbl_keyrings,
               properties = dict(keyring_name = self.tbl_keyrings.c.name,
                                 keyring_id = self.tbl_keyrings.c.id))

        mapper(Location, self.tbl_location,
               properties = dict(location_id = self.tbl_location.c.id,
                                 component_id = self.tbl_location.c.component,
M
Mark Hymers 已提交
1138
                                 component = relation(Component),
M
Mark Hymers 已提交
1139
                                 archive_id = self.tbl_location.c.archive,
M
Mark Hymers 已提交
1140
                                 archive = relation(Archive),
M
Mark Hymers 已提交
1141 1142 1143 1144 1145 1146 1147
                                 archive_type = self.tbl_location.c.type))

        mapper(Maintainer, self.tbl_maintainer,
               properties = dict(maintainer_id = self.tbl_maintainer.c.id))

        mapper(Override, self.tbl_override,
               properties = dict(suite_id = self.tbl_override.c.suite,
M
Mark Hymers 已提交
1148
                                 suite = relation(Suite),
M
Mark Hymers 已提交
1149
                                 component_id = self.tbl_override.c.component,
M
Mark Hymers 已提交
1150
                                 component = relation(Component),
M
Mark Hymers 已提交
1151
                                 priority_id = self.tbl_override.c.priority,
M
Mark Hymers 已提交
1152
                                 priority = relation(Priority),
M
Mark Hymers 已提交
1153
                                 section_id = self.tbl_override.c.section,
M
Mark Hymers 已提交
1154 1155 1156
                                 section = relation(Section),
                                 overridetype_id = self.tbl_override.c.type,
                                 overridetype = relation(OverrideType)))
M
Mark Hymers 已提交
1157 1158 1159 1160 1161 1162 1163 1164

        mapper(OverrideType, self.tbl_override_type,
               properties = dict(overridetype = self.tbl_override_type.c.type,
                                 overridetype_id = self.tbl_override_type.c.id))

        mapper(PendingContentAssociation, self.tbl_pending_content_associations,
               properties = dict(pca_id = self.tbl_pending_content_associations.c.id,
                                 filepath_id = self.tbl_pending_content_associations.c.filepath,
M
Mark Hymers 已提交
1165 1166 1167
                                 filepath = relation(ContentFilepath),
                                 filename_id = self.tbl_pending_content_associations.c.filename,
                                 filename = relation(ContentFilename)))
M
Mark Hymers 已提交
1168 1169 1170 1171 1172 1173 1174 1175 1176

        mapper(Priority, self.tbl_priority,
               properties = dict(priority_id = self.tbl_priority.c.id))

        mapper(Queue, self.tbl_queue,
               properties = dict(queue_id = self.tbl_queue.c.id))

        mapper(QueueBuild, self.tbl_queue_build,
               properties = dict(suite_id = self.tbl_queue_build.c.suite,
M
Mark Hymers 已提交
1177 1178
                                 queue_id = self.tbl_queue_build.c.queue,
                                 queue = relation(Queue)))
M
Mark Hymers 已提交
1179 1180 1181 1182

        mapper(Section, self.tbl_section,
               properties = dict(section_id = self.tbl_section.c.id))

1183
        mapper(DBSource, self.tbl_source,
M
Mark Hymers 已提交
1184
               properties = dict(source_id = self.tbl_source.c.id,
M
Mark Hymers 已提交
1185
                                 version = self.tbl_source.c.version,
M
Mark Hymers 已提交
1186
                                 maintainer_id = self.tbl_source.c.maintainer,
M
Mark Hymers 已提交
1187 1188 1189 1190
                                 maintainer = relation(Maintainer,
                                                       primaryjoin=(self.tbl_source.c.maintainer==self.tbl_maintainer.c.id)),
                                 poolfile_id = self.tbl_source.c.file,
                                 poolfile = relation(PoolFile),
M
Mark Hymers 已提交
1191
                                 fingerprint_id = self.tbl_source.c.sig_fpr,
M
Mark Hymers 已提交
1192 1193 1194 1195 1196 1197 1198 1199
                                 fingerprint = relation(Fingerprint),
                                 changedby_id = self.tbl_source.c.changedby,
                                 changedby = relation(Maintainer,
                                                      primaryjoin=(self.tbl_source.c.changedby==self.tbl_maintainer.c.id)),
                                 srcfiles = relation(DSCFile,
                                                     primaryjoin=(self.tbl_source.c.id==self.tbl_dsc_files.c.source)),
                                 srcassociations = relation(SrcAssociation,
                                                            primaryjoin=(self.tbl_source.c.id==self.tbl_src_associations.c.source))))
M
Mark Hymers 已提交
1200 1201

        mapper(SrcAssociation, self.tbl_src_associations,
M
Mark Hymers 已提交
1202 1203 1204 1205
               properties = dict(sa_id = self.tbl_src_associations.c.id,
                                 suite_id = self.tbl_src_associations.c.suite,
                                 suite = relation(Suite),
                                 source_id = self.tbl_src_associations.c.source,
1206
                                 source = relation(DBSource)))
M
Mark Hymers 已提交
1207 1208 1209 1210

        mapper(SrcUploader, self.tbl_src_uploaders,
               properties = dict(uploader_id = self.tbl_src_uploaders.c.id,
                                 source_id = self.tbl_src_uploaders.c.source,
1211
                                 source = relation(DBSource,
M
Mark Hymers 已提交
1212 1213 1214 1215
                                                   primaryjoin=(self.tbl_src_uploaders.c.source==self.tbl_source.c.id)),
                                 maintainer_id = self.tbl_src_uploaders.c.maintainer,
                                 maintainer = relation(Maintainer,
                                                       primaryjoin=(self.tbl_src_uploaders.c.maintainer==self.tbl_maintainer.c.id))))
M
Mark Hymers 已提交
1216 1217 1218 1219 1220 1221

        mapper(Suite, self.tbl_suite,
               properties = dict(suite_id = self.tbl_suite.c.id))

        mapper(SuiteArchitecture, self.tbl_suite_architectures,
               properties = dict(suite_id = self.tbl_suite_architectures.c.suite,
1222
                                 suite = relation(Suite, backref='suitearchitectures'),
M
Mark Hymers 已提交
1223 1224
                                 arch_id = self.tbl_suite_architectures.c.architecture,
                                 architecture = relation(Architecture)))
M
Mark Hymers 已提交
1225 1226

        mapper(Uid, self.tbl_uid,
1227 1228
               properties = dict(uid_id = self.tbl_uid.c.id,
                                 fingerprint = relation(Fingerprint)))
M
Mark Hymers 已提交
1229

M
Mark Hymers 已提交
1230 1231
    ## Connection functions
    def __createconn(self):
M
Mark Hymers 已提交
1232
        from config import Config
1233 1234
        cnf = Config()
        if cnf["DB::Host"]:
M
Mark Hymers 已提交
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
            # TCP/IP
            connstr = "postgres://%s" % cnf["DB::Host"]
            if cnf["DB::Port"] and cnf["DB::Port"] != "-1":
                connstr += ":%s" % cnf["DB::Port"]
            connstr += "/%s" % cnf["DB::Name"]
        else:
            # Unix Socket
            connstr = "postgres:///%s" % cnf["DB::Name"]
            if cnf["DB::Port"] and cnf["DB::Port"] != "-1":
                connstr += "?port=%s" % cnf["DB::Port"]
1245

M
updates  
Mark Hymers 已提交
1246
        self.db_pg   = create_engine(connstr, echo=self.debug)
M
Mark Hymers 已提交
1247 1248 1249 1250
        self.db_meta = MetaData()
        self.db_meta.bind = self.db_pg
        self.db_smaker = sessionmaker(bind=self.db_pg,
                                      autoflush=True,
1251
                                      autocommit=False)
M
Mark Hymers 已提交
1252

M
Mark Hymers 已提交
1253
        self.__setuptables()
M
Mark Hymers 已提交
1254
        self.__setupmappers()
M
Mark Hymers 已提交
1255

M
Mark Hymers 已提交
1256 1257
    def session(self):
        return self.db_smaker()
M
Mark Hymers 已提交
1258

M
Mark Hymers 已提交
1259
__all__.append('DBConn')
M
Mike O'Connor 已提交
1260