~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/oops-prune.py

Merged db-devel into replication.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python -S
2
 
#
3
 
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
4
 
# GNU Affero General Public License version 3 (see the file LICENSE).
5
 
 
6
 
# pylint: disable-msg=C0103,W0403
7
 
 
8
 
"""Cronscript to prune old and unreferenced OOPS reports from the archive."""
9
 
 
10
 
__metaclass__ = type
11
 
 
12
 
import os
13
 
 
14
 
import _pythonpath
15
 
 
16
 
from canonical.config import config
17
 
from canonical.launchpad.scripts.oops import (
18
 
    prune_empty_oops_directories,
19
 
    unwanted_oops_files,
20
 
    )
21
 
from lp.services.scripts.base import (
22
 
    LaunchpadCronScript,
23
 
    LaunchpadScriptFailure,
24
 
    )
25
 
 
26
 
 
27
 
default_lock_filename = '/var/lock/oops-prune.lock'
28
 
 
29
 
 
30
 
class OOPSPruner(LaunchpadCronScript):
31
 
    def add_my_options(self):
32
 
        self.parser.add_option(
33
 
                '-n', '--dry-run', default=False, action='store_true',
34
 
                dest="dry_run", help="Do a test run. No files are removed."
35
 
                )
36
 
 
37
 
    def main(self):
38
 
        # Default to using the OOPS directory in config file.
39
 
        if not self.args:
40
 
            self.args = [config.error_reports.error_dir]
41
 
 
42
 
        oops_directories = []
43
 
        for oops_dir in self.args:
44
 
            if not os.path.isdir(oops_dir):
45
 
                raise LaunchpadScriptFailure(
46
 
                    "%s is not a directory" % oops_dir)
47
 
 
48
 
            oops_directories.append(oops_dir)
49
 
 
50
 
        for oops_directory in oops_directories:
51
 
            for oops_path in unwanted_oops_files(oops_directory,
52
 
                                                 40, self.logger):
53
 
                self.logger.info("Removing %s", oops_path)
54
 
                if not self.options.dry_run:
55
 
                    os.unlink(oops_path)
56
 
 
57
 
            prune_empty_oops_directories(oops_directory)
58
 
 
59
 
 
60
 
if __name__ == '__main__':
61
 
    script = OOPSPruner('oops-prune', dbuser='oopsprune')
62
 
    script.lock_and_run(isolation='autocommit')