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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
#!/usr/bin/env python3
#
# Copyright (C) 2017 Codethink Limited
#
# 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/>.
#
# Authors:
# Tristan Maat <tristan.maat@codethink.co.uk>
import os
from collections import Mapping
from .._exceptions import ImplError, LoadError, LoadErrorReason
from .. import utils
from .. import _yaml
def artifact_cache_url_from_spec(spec):
_yaml.node_validate(spec, ['url'])
url = _yaml.node_get(spec, str, 'url')
if len(url) == 0:
provenance = _yaml.node_get_provenance(spec)
raise LoadError(LoadErrorReason.INVALID_DATA,
"{}: empty artifact cache URL".format(provenance))
return url
# artifact_cache_urls_from_config_node()
#
# Parses the configuration of remote artifact caches from a config block.
#
# Args:
# config_node (dict): The config block, which may contain the 'artifacts' key
#
# Returns:
# A list of URLs pointing to remote artifact caches.
#
# Raises:
# LoadError, if the config block contains invalid keys.
#
def artifact_cache_urls_from_config_node(config_node):
urls = []
artifacts = config_node.get('artifacts', [])
if isinstance(artifacts, Mapping):
urls.append(artifact_cache_url_from_spec(artifacts))
elif isinstance(artifacts, list):
for spec in artifacts:
urls.append(artifact_cache_url_from_spec(spec))
else:
provenance = _yaml.node_get_provenance(config_node, key='artifacts')
raise _yaml.LoadError(_yaml.LoadErrorReason.INVALID_DATA,
"%s: 'artifacts' must be a single 'url:' mapping, or a list of mappings" %
(str(provenance)))
return urls
# configured_artifact_cache_urls():
#
# Return the list of configured artifact remotes for a given project, in priority
# order. This takes into account the user and project configuration.
#
# Args:
# context (Context): The BuildStream context
# project (Project): The BuildStream project
#
# Returns:
# A list of URLs pointing to remote artifact caches.
#
def configured_artifact_cache_urls(context, project):
project_overrides = context._get_overrides(project.name)
project_extra_urls = artifact_cache_urls_from_config_node(project_overrides)
return list(utils._deduplicate(
project_extra_urls + project.artifact_urls + context.artifact_urls))
# An ArtifactCache manages artifacts.
#
# Args:
# context (Context): The BuildStream context
# project (Project): The BuildStream project
#
class ArtifactCache():
def __init__(self, context, project):
self.context = context
self.project = project
os.makedirs(context.artifactdir, exist_ok=True)
self.extractdir = os.path.join(context.artifactdir, 'extract')
self._local = False
self.urls = []
# set_remotes():
#
# Set the list of remote caches, which is initially empty. This will
# contact each remote cache.
#
# Args:
# urls (list): List of artifact remote URLs, in priority order.
# on_failure (callable): Called if we fail to contact one of the caches.
def set_remotes(self, urls, on_failure=None):
self.urls = urls
# contains():
#
# Check whether the artifact for the specified Element is already available
# in the local artifact cache.
#
# Args:
# element (Element): The Element to check
# strength (_KeyStrength): Either STRONG or WEAK key strength, or None
#
# Returns: True if the artifact is in the cache, False otherwise
#
def contains(self, element, strength=None):
raise ImplError("Cache '{kind}' does not implement contains()"
.format(kind=type(self).__name__))
# extract():
#
# Extract cached artifact for the specified Element if it hasn't
# already been extracted.
#
# Assumes artifact has previously been fetched or committed.
#
# Args:
# element (Element): The Element to extract
#
# Raises:
# ArtifactError: In cases there was an OSError, or if the artifact
# did not exist.
#
# Returns: path to extracted artifact
#
def extract(self, element):
raise ImplError("Cache '{kind}' does not implement extract()"
.format(kind=type(self).__name__))
# commit():
#
# Commit built artifact to cache.
#
# Args:
# element (Element): The Element commit an artifact for
# content (str): The element's content directory
#
def commit(self, element, content):
raise ImplError("Cache '{kind}' does not implement commit()"
.format(kind=type(self).__name__))
# has_fetch_remotes():
#
# Check whether any remote repositories are available for fetching.
#
# Returns: True if any remote repositories are configured, False otherwise
#
def has_fetch_remotes(self):
return (len(self.urls) > 0)
# has_push_remotes():
#
# Check whether any remote repositories are available for pushing.
#
# Returns: True if any remote repository is configured, False otherwise
#
def has_push_remotes(self):
return (len(self.urls) > 0)
# remote_contains_key():
#
# Check whether the artifact for the specified Element is already available
# in any remote artifact cache.
#
# Args:
# element (Element): The Element to check
# strength (_KeyStrength): Either STRONG or WEAK key strength, or None
#
# Returns: True if the artifact is in the cache, False otherwise
#
def remote_contains(self, element, strength=None):
return False
|