1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#!/usr/bin/python -S
#
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=W0403
"""Process branches with translation to import.
This script processes code branches that have new translations imports
pending.
"""
__metaclass__ = type
import _pythonpath
from zope.component import getUtility
from lp.code.interfaces.branchjob import IRosettaUploadJobSource
from lp.codehosting.vfs.branchfs import get_ro_server
from lp.services.config import config
from lp.services.job.runner import JobRunner
from lp.services.scripts.base import LaunchpadCronScript
from lp.services.webapp.errorlog import globalErrorUtility
class RunRosettaBranchJobs(LaunchpadCronScript):
"""Run pending branch translations jobs."""
def main(self):
globalErrorUtility.configure('rosettabranches')
runner = JobRunner.fromReady(
getUtility(IRosettaUploadJobSource), self.logger)
server = get_ro_server()
server.start_server()
try:
runner.runAll()
finally:
server.stop_server()
self.logger.info('Ran %d RosettaBranchJobs.',
len(runner.completed_jobs))
if __name__ == '__main__':
script = RunRosettaBranchJobs('rosettabranches',
config.rosettabranches.dbuser)
script.lock_and_run()
|