~launchpad-pqm/launchpad/devel

2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
1
#!/usr/bin/env python
2
# Copyright 2004 Canonical Ltd.  All rights reserved.
3
# Author: Daniel Silverstone <daniel.silverstone@canonical.com>
4
#         Celso Providelo <celso.providelo@canonical.com>
5
#
6
# Builder Slave Scanner and result collector
7
8
__metaclass__ = type
9
10
import sys
11
import logging
12
import os
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
13
from optparse import OptionParser
14
15
from zope.component import getUtility
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
16
17
from canonical.lp import initZopeless
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
18
from canonical.launchpad.interfaces import IDistroArchReleaseSet
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
19
20
from canonical.launchpad.scripts.builddmaster import BuilddMaster
21
from canonical.launchpad.scripts.lockfile import LockFile
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
22
from canonical.launchpad.scripts import (
23
        execute_zcml_for_scripts, logger_options, logger
24
        )
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
25
2555 by Canonical.com Patch Queue Manager
[trivial] Fix buildd scoring algorithm, remove queue_time parameter as described in specification, repair the tests, other minor fixes on failnotes writes and commiting data more frenquently.
26
_default_lockfile = '/var/lock/buildd-master.lock'
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
27
28
def doSlaveScan(logger):
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
29
    """Proceed the Slave Scanning Process."""    
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
30
    # XXX cprov 20051019
31
    # retrive the user infromation from the config file
32
    
33
    # setup a transaction manager
34
    tm = initZopeless(dbuser='fiera')
35
2214 by Canonical.com Patch Queue Manager
[trivial] BuildFarm works again, bits repaired and ready for deep redesign.
36
    buildMaster = BuilddMaster(logger, tm)
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
37
2214 by Canonical.com Patch Queue Manager
[trivial] BuildFarm works again, bits repaired and ready for deep redesign.
38
    logger.info("Setting Builders.")
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
39
    
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
40
    # For every distroarchrelease we can find;
41
    # put it into the build master
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
42
    for archrelease in getUtility(IDistroArchReleaseSet):
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
43
        buildMaster.addDistroArchRelease(archrelease)
44
        try:
45
            buildMaster.setupBuilders(archrelease)
46
        except KeyError, key:
47
            info = ("Unable to setup builder for %s/%s/%s."
48
                    % (archrelease.distrorelease.distribution.name,
49
                       archrelease.distrorelease.name,
50
                       archrelease.architecturetag))
51
            # less is more, noisely verbose
2214 by Canonical.com Patch Queue Manager
[trivial] BuildFarm works again, bits repaired and ready for deep redesign.
52
            #logger.warn(info, exc_info=1)
53
            logger.warn(info)
54
55
    logger.info("Scanning Builders.")
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
56
    # Scan all the pending builds; update logtails; retrieve
57
    # builds where they are compled
58
    buildMaster.scanActiveBuilders()
2214 by Canonical.com Patch Queue Manager
[trivial] BuildFarm works again, bits repaired and ready for deep redesign.
59
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
60
    # Now that the slaves are free, ask the buildmaster to calculate
61
    # the set of build candiates
62
    buildCandidatesSortedByProcessor = buildMaster.sortAndSplitByProcessor()
63
    
2214 by Canonical.com Patch Queue Manager
[trivial] BuildFarm works again, bits repaired and ready for deep redesign.
64
    logger.info("Dispatching Jobs.")
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
65
    # Now that we've gathered in all the builds;
66
    # dispatch the pending ones
67
    for processor, buildCandidates in \
68
            buildCandidatesSortedByProcessor.iteritems():
69
        buildMaster.dispatchByProcessor(processor, buildCandidates)
70
2214 by Canonical.com Patch Queue Manager
[trivial] BuildFarm works again, bits repaired and ready for deep redesign.
71
if __name__ == '__main__':
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
72
    parser = OptionParser()
73
    logger_options(parser)
74
    (options, arguments) = parser.parse_args()
75
76
    if arguments:
77
        parser.error("Unhandled arguments %s" % repr(arguments))
78
    execute_zcml_for_scripts()
79
80
    log = logger(options, 'slavescanner')
81
82
    log.info("Slave Scan Process Initiated.")
83
84
    locker = LockFile(_default_lockfile, logger=log)
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
85
    try:
86
        locker.acquire()
87
    except OSError:
2214 by Canonical.com Patch Queue Manager
[trivial] BuildFarm works again, bits repaired and ready for deep redesign.
88
        logger.info("Cannot acquire lock.")
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
89
        sys.exit(1)
90
91
    try:
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
92
        doSlaveScan(log)
2094 by Canonical.com Patch Queue Manager
[r=spiv,jamesh] Auto Buildd System implementation.
93
    finally:
94
        # release process lock file if the procedure finished properly
95
        locker.release()
96
2755 by Canonical.com Patch Queue Manager
[r=stevea] Fixing bug # 2812, loading zcml info in builddmaster and consequently removing the database imports, fixing bug # 1305 by using standards in both buildd cronscripts.
97
    log.info("Slave Scan Process Finished.")