summaryrefslogtreecommitdiff
path: root/src/buildstream/_scheduler/queues/cachequeryqueue.py
blob: 7ed7dcedecab7dd14e47fce7e9dfc027274cd786 (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
#
#  Copyright (C) 2020 Bloomberg Finance LP
#
#  This program is free software; you can redistribute it and/or
#  modify it under the terms of the GNU Lesser General Public
#  License as published by the Free Software Foundation; either
#  version 2 of the License, or (at your option) any later version.
#
#  This library 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
#  Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public
#  License along with this library. If not, see <http://www.gnu.org/licenses/>.

from . import Queue, QueueStatus
from ..resources import ResourceType
from ..jobs import JobStatus
from ...types import _KeyStrength


# A queue which queries the cache for artifacts and sources
#
class CacheQueryQueue(Queue):

    action_name = "Cache-query"
    complete_name = "Cache queried"
    resources = [ResourceType.CACHE]

    def get_process_func(self):
        if self._query_artifacts:
            return CacheQueryQueue._query_artifacts_or_sources
        else:
            return CacheQueryQueue._query_sources

    def status(self, element):
        if not element._get_cache_key(strength=_KeyStrength.WEAK):
            # Strict and weak cache keys are unavailable if the element or
            # a dependency has an unresolved source
            return QueueStatus.SKIP

        return QueueStatus.READY

    def done(self, _, element, result, status):
        if status is JobStatus.FAIL:
            return

        element._cache_query_done()

    @staticmethod
    def _query_artifacts_or_sources(element):
        element._query_cache()
        if not element._can_query_cache() or not element._cached_success():
            element._query_source_cache()

    @staticmethod
    def _query_sources(element):
        element._query_source_cache()