~launchpad-pqm/launchpad/devel

3944.1.1 by Francis J. Lacoste
Use system version python2.4 for scripts.
1
#!/usr/bin/python2.4
2770.1.4 by Guilherme Salgado
Change all bug reports on people's page to use the google-style lists and have search/sort widgets. Also adds a new targetnamecache column in the BugTask table to allow sorting/searching on that value. Plus *a lot* other cleanup.
2
# Copyright 2005 Canonical Ltd.  All rights reserved.
4935.3.7 by Curtis Hovey
Added bad name suppression to cronscripts.
3
# pylint: disable-msg=C0103,W0403
2770.1.4 by Guilherme Salgado
Change all bug reports on people's page to use the google-style lists and have search/sort widgets. Also adds a new targetnamecache column in the BugTask table to allow sorting/searching on that value. Plus *a lot* other cleanup.
4
5
# This script updates the cached stats in the system
6
7
import _pythonpath
8
4264.2.1 by James Henstridge
add a LaunchpadCronScript subclass, and make cronscripts/*.py use it
9
from canonical.launchpad.scripts.base import LaunchpadCronScript
5781.3.1 by Graham Binns
Updated update-bugtargetnamecaches.py to use LoopTuner.
10
from canonical.launchpad.scripts.bugtasktargetnamecaches import (
5781.3.2 by Graham Binns
Added tests.
11
    BugTaskTargetNameCacheUpdater)
2770.1.4 by Guilherme Salgado
Change all bug reports on people's page to use the google-style lists and have search/sort widgets. Also adds a new targetnamecache column in the BugTask table to allow sorting/searching on that value. Plus *a lot* other cleanup.
12
from canonical.config import config
13
14
4264.2.1 by James Henstridge
add a LaunchpadCronScript subclass, and make cronscripts/*.py use it
15
class UpdateBugTaskTargetNameCaches(LaunchpadCronScript):
2770.1.4 by Guilherme Salgado
Change all bug reports on people's page to use the google-style lists and have search/sort widgets. Also adds a new targetnamecache column in the BugTask table to allow sorting/searching on that value. Plus *a lot* other cleanup.
16
    """Update the targetnamecache for all IBugTasks.
17
3691.348.18 by kiko
Convert most other scripts; 6 remain, of which one looks like it's going to be a bit tricky...
18
    This ensures that the cache values are up-to-date even after, for
19
    example, an IDistribution being renamed.
2770.1.4 by Guilherme Salgado
Change all bug reports on people's page to use the google-style lists and have search/sort widgets. Also adds a new targetnamecache column in the BugTask table to allow sorting/searching on that value. Plus *a lot* other cleanup.
20
    """
3691.348.18 by kiko
Convert most other scripts; 6 remain, of which one looks like it's going to be a bit tricky...
21
    def main(self):
5781.3.2 by Graham Binns
Added tests.
22
        updater = BugTaskTargetNameCacheUpdater(self.txn, self.logger)
23
        updater.run()
2770.1.4 by Guilherme Salgado
Change all bug reports on people's page to use the google-style lists and have search/sort widgets. Also adds a new targetnamecache column in the BugTask table to allow sorting/searching on that value. Plus *a lot* other cleanup.
24
25
if __name__ == '__main__':
5781.3.3 by Graham Binns
Cleaned up lint.
26
    script = UpdateBugTaskTargetNameCaches(
27
        'launchpad-targetnamecacheupdater',
3691.348.18 by kiko
Convert most other scripts; 6 remain, of which one looks like it's going to be a bit tricky...
28
        dbuser=config.targetnamecacheupdater.dbuser)
29
    script.lock_and_run(implicit_begin=False)
30