~launchpad-pqm/launchpad/devel

3944.1.1 by Francis J. Lacoste
Use system version python2.4 for scripts.
1
#!/usr/bin/python2.4
2841.1.1 by Gustavo Niemeyer
Implementing update-branches cronscript.
2
# Copyright 2005 Canonical Ltd.  All rights reserved.
3
# Author: Gustavo Niemeyer <gustavo@niemeyer.net>
3249.6.1 by David Allouche
branch-scanner.py renaming and ScriptsAndDaemons compliance
4
#         David Allouche <david@allouche.net>
2841.1.1 by Gustavo Niemeyer
Implementing update-branches cronscript.
5
6
"""Update bzr branches information in the database"""
7
8
9
import _pythonpath
10
import logging
3691.348.13 by kiko
Convert a couple of cronscripts over to LaunchpadScript
11
2841.1.1 by Gustavo Niemeyer
Implementing update-branches cronscript.
12
from canonical.config import config
3691.348.13 by kiko
Convert a couple of cronscripts over to LaunchpadScript
13
from canonical.launchpad.scripts.base import LaunchpadScript
3249.6.1 by David Allouche
branch-scanner.py renaming and ScriptsAndDaemons compliance
14
from canonical.launchpad.scripts.branch_scanner import BranchScanner
2841.1.1 by Gustavo Niemeyer
Implementing update-branches cronscript.
15
3691.348.13 by kiko
Convert a couple of cronscripts over to LaunchpadScript
16
17
class UpdateBranches(LaunchpadScript):
18
    def main(self):
19
        # We don't want debug messages from bzr at that point.
20
        bzr_logger = logging.getLogger("bzr")
21
        bzr_logger.setLevel(logging.INFO)
22
3691.376.15 by David Allouche
do not use a separate launchpad.conf
23
        # Customize the oops reporting config
24
        oops_prefix = config.branchscanner.errorreports.oops_prefix
25
        config.launchpad.errorreports.oops_prefix = oops_prefix
26
        errordir = config.branchscanner.errorreports.errordir
27
        config.launchpad.errorreports.errordir = errordir
3691.376.16 by David Allouche
override copy_to_zlog as well
28
        copy_to_zlog = config.branchscanner.errorreports.copy_to_zlog
29
        config.launchpad.errorreports.copy_to_zlog = copy_to_zlog
3691.376.15 by David Allouche
do not use a separate launchpad.conf
30
3691.348.13 by kiko
Convert a couple of cronscripts over to LaunchpadScript
31
        BranchScanner(self.txn, self.logger).scanAllBranches()
2841.1.1 by Gustavo Niemeyer
Implementing update-branches cronscript.
32
3109.3.1 by David Allouche
improve logging in update-branches.py
33
2841.1.1 by Gustavo Niemeyer
Implementing update-branches cronscript.
34
if __name__ == '__main__':
3691.348.13 by kiko
Convert a couple of cronscripts over to LaunchpadScript
35
    script = UpdateBranches("updatebranches", dbuser=config.branchscanner.dbuser)
36
    script.lock_and_run()
37