summaryrefslogtreecommitdiff
path: root/morphlib/localartifactcache.py
blob: 7ad53db0131a214da14df222209564a8d1b00cb6 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Copyright (C) 2012  Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


import os

import morphlib


class LocalArtifactCache(object):

    def __init__(self, cachedir):
        self.cachedir = cachedir

    def put(self, artifact):
        filename = self.artifact_filename(artifact)
        return morphlib.savefile.SaveFile(filename, mode='w')

    def put_artifact_metadata(self, artifact, name):
        filename = self._artifact_metadata_filename(artifact, name)
        return morphlib.savefile.SaveFile(filename, mode='w')

    def put_source_metadata(self, source, cachekey, name):
        filename = self._source_metadata_filename(source, cachekey, name)
        return morphlib.savefile.SaveFile(filename, mode='w')

    def has(self, artifact):
        filename = self.artifact_filename(artifact)
        return os.path.exists(filename)

    def has_artifact_metadata(self, artifact, name):
        filename = self._artifact_metadata_filename(artifact, name)
        return os.path.exists(filename)

    def has_source_metadata(self, source, cachekey, name):
        filename = self._source_metadata_filename(source, cachekey, name)
        return os.path.exists(filename)

    def get(self, artifact):
        filename = self.artifact_filename(artifact)
        return open(filename)

    def get_artifact_metadata(self, artifact, name):
        filename = self._artifact_metadata_filename(artifact, name)
        return open(filename)

    def get_source_metadata(self, source, cachekey, name):
        filename = self._source_metadata_filename(source, cachekey, name)
        return open(filename)

    def artifact_filename(self, artifact):
        basename = artifact.basename()
        return os.path.join(self.cachedir, basename)

    def _artifact_metadata_filename(self, artifact, name):
        basename = artifact.metadata_basename(name)
        return os.path.join(self.cachedir, basename)

    def _source_metadata_filename(self, source, cachekey, name):
        basename = '%s.%s' % (cachekey, name)
        return os.path.join(self.cachedir, basename)

    def clear(self):
        '''Clear everything from the artifact cache directory.
        
        After calling this, the artifact cache will be entirely empty.
        Caveat caller.
        
        '''

        for dirname, subdirs, basenames in os.walk(self.cachedir):
            for basename in basenames:
                os.remove(os.path.join(dirname, basename))