Tom Pollard pushed to branch tpollard/483 at BuildStream / buildstream
Commits:
-
a38d9163
by Valentin David at 2018-08-30T10:26:57Z
-
02138181
by Tristan Van Berkom at 2018-08-30T11:36:00Z
-
d23d4f3e
by Tristan Van Berkom at 2018-08-30T12:02:27Z
-
bb6aa5a5
by Tristan Van Berkom at 2018-08-30T12:27:55Z
-
680e4fe1
by knownexus at 2018-08-30T13:37:55Z
-
8cd719eb
by Phillip Smyth at 2018-08-30T15:47:06Z
-
18d0bfb4
by Tom Pollard at 2018-08-30T19:14:33Z
-
95121148
by Tiago Gomes at 2018-08-30T20:52:29Z
-
775d3fca
by Tristan Van Berkom at 2018-08-31T06:05:32Z
-
0682aa1c
by Josh Smith at 2018-08-31T10:58:12Z
-
68eff9ba
by Josh Smith at 2018-08-31T10:58:20Z
-
9b18e1bf
by Tristan Van Berkom at 2018-08-31T11:22:51Z
-
e2d8fedf
by Josh Smith at 2018-08-31T15:53:43Z
-
6805a2ab
by Tristan Van Berkom at 2018-09-01T08:24:05Z
-
f8b06acc
by Tristan Van Berkom at 2018-09-02T09:33:39Z
-
559b6fbc
by Tristan Van Berkom at 2018-09-02T09:34:10Z
-
43ad22d7
by Tristan Van Berkom at 2018-09-02T09:34:10Z
-
16462e9c
by Tristan Van Berkom at 2018-09-02T09:36:49Z
-
1f9c4147
by Tristan Van Berkom at 2018-09-02T09:37:12Z
-
f9b2f1a9
by Tristan Van Berkom at 2018-09-02T09:37:21Z
-
88460cd2
by Tristan Van Berkom at 2018-09-03T06:23:38Z
-
2339f0c4
by Tom Pollard at 2018-09-03T09:44:36Z
-
c96fec5d
by Tom Pollard at 2018-09-03T09:44:36Z
16 changed files:
- buildstream/_artifactcache/artifactcache.py
- buildstream/_project.py
- buildstream/_scheduler/jobs/job.py
- buildstream/_scheduler/queues/trackqueue.py
- buildstream/_scheduler/scheduler.py
- buildstream/element.py
- buildstream/plugin.py
- buildstream/plugins/sources/git.py
- buildstream/source.py
- tests/frontend/project/sources/fetch_source.py
- tests/frontend/track.py
- tests/sources/deb.py
- tests/sources/git.py
- tests/sources/tar.py
- tests/sources/zip.py
- tests/testutils/repo/bzr.py
Changes:
... | ... | @@ -571,7 +571,7 @@ class ArtifactCache(): |
571 | 571 |
def _write_cache_size(self, size):
|
572 | 572 |
assert isinstance(size, int)
|
573 | 573 |
size_file_path = os.path.join(self.context.artifactdir, CACHE_SIZE_FILE)
|
574 |
- with open(size_file_path, "w") as f:
|
|
574 |
+ with utils.save_file_atomic(size_file_path, "w") as f:
|
|
575 | 575 |
f.write(str(size))
|
576 | 576 |
|
577 | 577 |
# _read_cache_size()
|
... | ... | @@ -398,6 +398,17 @@ class Project(): |
398 | 398 |
"Project requested format version {}, but BuildStream {}.{} only supports up until format version {}"
|
399 | 399 |
.format(format_version, major, minor, BST_FORMAT_VERSION))
|
400 | 400 |
|
401 |
+ # FIXME:
|
|
402 |
+ #
|
|
403 |
+ # Performing this check manually in the absense
|
|
404 |
+ # of proper support from _yaml.node_get(), this should
|
|
405 |
+ # be removed in favor of a proper accessor function
|
|
406 |
+ # from the _yaml module when #591 is fixed.
|
|
407 |
+ #
|
|
408 |
+ if self._project_conf.get('name') is None:
|
|
409 |
+ raise LoadError(LoadErrorReason.INVALID_DATA,
|
|
410 |
+ "{}: project.conf does not contain expected key '{}'".format(projectfile, 'name'))
|
|
411 |
+ |
|
401 | 412 |
# The project name, element path and option declarations
|
402 | 413 |
# are constant and cannot be overridden by option conditional statements
|
403 | 414 |
self.name = _yaml.node_get(pre_config_node, str, 'name')
|
... | ... | @@ -403,7 +403,7 @@ class Job(): |
403 | 403 |
if self._retry_flag and (self._tries <= self._max_retries):
|
404 | 404 |
self.message(MessageType.FAIL,
|
405 | 405 |
"Try #{} failed, retrying".format(self._tries),
|
406 |
- elapsed=elapsed)
|
|
406 |
+ elapsed=elapsed, logfile=filename)
|
|
407 | 407 |
else:
|
408 | 408 |
self.message(MessageType.FAIL, str(e),
|
409 | 409 |
elapsed=elapsed, detail=e.detail,
|
... | ... | @@ -430,7 +430,8 @@ class Job(): |
430 | 430 |
self.message(MessageType.BUG, self.action_name,
|
431 | 431 |
elapsed=elapsed, detail=detail,
|
432 | 432 |
logfile=filename)
|
433 |
- self._child_shutdown(RC_FAIL)
|
|
433 |
+ # Unhandled exceptions should permenantly fail
|
|
434 |
+ self._child_shutdown(RC_PERM_FAIL)
|
|
434 | 435 |
|
435 | 436 |
else:
|
436 | 437 |
# No exception occurred in the action
|
... | ... | @@ -509,11 +510,6 @@ class Job(): |
509 | 510 |
message.action_name = self.action_name
|
510 | 511 |
message.task_id = self._task_id
|
511 | 512 |
|
512 |
- if (message.message_type == MessageType.FAIL and
|
|
513 |
- self._tries <= self._max_retries and self._retry_flag):
|
|
514 |
- # Job will be retried, display failures as warnings in the frontend
|
|
515 |
- message.message_type = MessageType.WARN
|
|
516 |
- |
|
517 | 513 |
# Send to frontend if appropriate
|
518 | 514 |
if context.silent_messages() and (message.message_type not in unconditional_messages):
|
519 | 515 |
return
|
... | ... | @@ -58,18 +58,9 @@ class TrackQueue(Queue): |
58 | 58 |
# Set the new refs in the main process one by one as they complete
|
59 | 59 |
for unique_id, new_ref in result:
|
60 | 60 |
source = _plugin_lookup(unique_id)
|
61 |
- try:
|
|
62 |
- # We appear processed if at least one source has changed
|
|
63 |
- if source._save_ref(new_ref):
|
|
64 |
- changed = True
|
|
65 |
- except SourceError as e:
|
|
66 |
- # FIXME: We currently dont have a clear path to
|
|
67 |
- # fail the scheduler from the main process, so
|
|
68 |
- # this will just warn and BuildStream will exit
|
|
69 |
- # with a success code.
|
|
70 |
- #
|
|
71 |
- source.warn("Failed to update project file",
|
|
72 |
- detail="{}".format(e))
|
|
61 |
+ # We appear processed if at least one source has changed
|
|
62 |
+ if source._save_ref(new_ref):
|
|
63 |
+ changed = True
|
|
73 | 64 |
|
74 | 65 |
element._tracking_done()
|
75 | 66 |
|
... | ... | @@ -329,7 +329,7 @@ class Scheduler(): |
329 | 329 |
self.schedule_jobs([job])
|
330 | 330 |
|
331 | 331 |
def _check_cache_size_real(self):
|
332 |
- job = CacheSizeJob(self, 'cache_size', 'cache_size',
|
|
332 |
+ job = CacheSizeJob(self, 'cache_size', 'cache_size/cache_size',
|
|
333 | 333 |
resources=[ResourceType.CACHE,
|
334 | 334 |
ResourceType.PROCESS],
|
335 | 335 |
exclusive_resources=[ResourceType.CACHE],
|
... | ... | @@ -245,7 +245,7 @@ class Element(Plugin): |
245 | 245 |
# Collect the composited element configuration and
|
246 | 246 |
# ask the element to configure itself.
|
247 | 247 |
self.__config = self.__extract_config(meta)
|
248 |
- self.configure(self.__config)
|
|
248 |
+ self._configure(self.__config)
|
|
249 | 249 |
|
250 | 250 |
# Extract Sandbox config
|
251 | 251 |
self.__sandbox_config = self.__extract_sandbox_config(meta)
|
... | ... | @@ -179,6 +179,7 @@ class Plugin(): |
179 | 179 |
self.__provenance = provenance # The Provenance information
|
180 | 180 |
self.__type_tag = type_tag # The type of plugin (element or source)
|
181 | 181 |
self.__unique_id = _plugin_register(self) # Unique ID
|
182 |
+ self.__configuring = False # Whether we are currently configuring
|
|
182 | 183 |
|
183 | 184 |
# Infer the kind identifier
|
184 | 185 |
modulename = type(self).__module__
|
... | ... | @@ -682,7 +683,32 @@ class Plugin(): |
682 | 683 |
else:
|
683 | 684 |
yield log
|
684 | 685 |
|
686 |
+ # _configure():
|
|
687 |
+ #
|
|
688 |
+ # Calls configure() for the plugin, this must be called by
|
|
689 |
+ # the core instead of configure() directly, so that the
|
|
690 |
+ # _get_configuring() state is up to date.
|
|
691 |
+ #
|
|
692 |
+ # Args:
|
|
693 |
+ # node (dict): The loaded configuration dictionary
|
|
694 |
+ #
|
|
695 |
+ def _configure(self, node):
|
|
696 |
+ self.__configuring = True
|
|
697 |
+ self.configure(node)
|
|
698 |
+ self.__configuring = False
|
|
699 |
+ |
|
700 |
+ # _get_configuring():
|
|
701 |
+ #
|
|
702 |
+ # Checks whether the plugin is in the middle of having
|
|
703 |
+ # its Plugin.configure() method called
|
|
704 |
+ #
|
|
705 |
+ # Returns:
|
|
706 |
+ # (bool): Whether we are currently configuring
|
|
707 |
+ def _get_configuring(self):
|
|
708 |
+ return self.__configuring
|
|
709 |
+ |
|
685 | 710 |
# _preflight():
|
711 |
+ #
|
|
686 | 712 |
# Calls preflight() for the plugin, and allows generic preflight
|
687 | 713 |
# checks to be added
|
688 | 714 |
#
|
... | ... | @@ -690,6 +716,7 @@ class Plugin(): |
690 | 716 |
# SourceError: If it's a Source implementation
|
691 | 717 |
# ElementError: If it's an Element implementation
|
692 | 718 |
# ProgramNotFoundError: If a required host tool is not found
|
719 |
+ #
|
|
693 | 720 |
def _preflight(self):
|
694 | 721 |
self.preflight()
|
695 | 722 |
|
... | ... | @@ -74,6 +74,9 @@ This plugin provides the following configurable warnings: |
74 | 74 |
|
75 | 75 |
- 'git:inconsistent-submodule' - A submodule was found to be missing from the underlying git repository.
|
76 | 76 |
|
77 |
+This plugin also utilises the following configurable core plugin warnings:
|
|
78 |
+ |
|
79 |
+- 'ref-not-in-track' - The provided ref was not found in the provided track in the element's git repository.
|
|
77 | 80 |
"""
|
78 | 81 |
|
79 | 82 |
import os
|
... | ... | @@ -87,6 +90,7 @@ from configparser import RawConfigParser |
87 | 90 |
|
88 | 91 |
from buildstream import Source, SourceError, Consistency, SourceFetcher
|
89 | 92 |
from buildstream import utils
|
93 |
+from buildstream.plugin import CoreWarnings
|
|
90 | 94 |
|
91 | 95 |
GIT_MODULES = '.gitmodules'
|
92 | 96 |
|
... | ... | @@ -100,13 +104,14 @@ INCONSISTENT_SUBMODULE = "inconsistent-submodules" |
100 | 104 |
#
|
101 | 105 |
class GitMirror(SourceFetcher):
|
102 | 106 |
|
103 |
- def __init__(self, source, path, url, ref):
|
|
107 |
+ def __init__(self, source, path, url, ref, *, primary=False):
|
|
104 | 108 |
|
105 | 109 |
super().__init__()
|
106 | 110 |
self.source = source
|
107 | 111 |
self.path = path
|
108 | 112 |
self.url = url
|
109 | 113 |
self.ref = ref
|
114 |
+ self.primary = primary
|
|
110 | 115 |
self.mirror = os.path.join(source.get_mirror_directory(), utils.url_directory_name(url))
|
111 | 116 |
self.mark_download_url(url)
|
112 | 117 |
|
... | ... | @@ -124,7 +129,8 @@ class GitMirror(SourceFetcher): |
124 | 129 |
# system configured tmpdir is not on the same partition.
|
125 | 130 |
#
|
126 | 131 |
with self.source.tempdir() as tmpdir:
|
127 |
- url = self.source.translate_url(self.url, alias_override=alias_override)
|
|
132 |
+ url = self.source.translate_url(self.url, alias_override=alias_override,
|
|
133 |
+ primary=self.primary)
|
|
128 | 134 |
self.source.call([self.source.host_git, 'clone', '--mirror', '-n', url, tmpdir],
|
129 | 135 |
fail="Failed to clone git repository {}".format(url),
|
130 | 136 |
fail_temporarily=True)
|
... | ... | @@ -146,7 +152,9 @@ class GitMirror(SourceFetcher): |
146 | 152 |
.format(self.source, url, tmpdir, self.mirror, e)) from e
|
147 | 153 |
|
148 | 154 |
def _fetch(self, alias_override=None):
|
149 |
- url = self.source.translate_url(self.url, alias_override=alias_override)
|
|
155 |
+ url = self.source.translate_url(self.url,
|
|
156 |
+ alias_override=alias_override,
|
|
157 |
+ primary=self.primary)
|
|
150 | 158 |
|
151 | 159 |
if alias_override:
|
152 | 160 |
remote_name = utils.url_directory_name(alias_override)
|
... | ... | @@ -199,7 +207,7 @@ class GitMirror(SourceFetcher): |
199 | 207 |
cwd=self.mirror)
|
200 | 208 |
return output.rstrip('\n')
|
201 | 209 |
|
202 |
- def stage(self, directory):
|
|
210 |
+ def stage(self, directory, track=None):
|
|
203 | 211 |
fullpath = os.path.join(directory, self.path)
|
204 | 212 |
|
205 | 213 |
# Using --shared here avoids copying the objects into the checkout, in any
|
... | ... | @@ -213,10 +221,14 @@ class GitMirror(SourceFetcher): |
213 | 221 |
fail="Failed to checkout git ref {}".format(self.ref),
|
214 | 222 |
cwd=fullpath)
|
215 | 223 |
|
224 |
+ # Check that the user specified ref exists in the track if provided & not already tracked
|
|
225 |
+ if track:
|
|
226 |
+ self.assert_ref_in_track(fullpath, track)
|
|
227 |
+ |
|
216 | 228 |
# Remove .git dir
|
217 | 229 |
shutil.rmtree(os.path.join(fullpath, ".git"))
|
218 | 230 |
|
219 |
- def init_workspace(self, directory):
|
|
231 |
+ def init_workspace(self, directory, track=None):
|
|
220 | 232 |
fullpath = os.path.join(directory, self.path)
|
221 | 233 |
url = self.source.translate_url(self.url)
|
222 | 234 |
|
... | ... | @@ -232,6 +244,10 @@ class GitMirror(SourceFetcher): |
232 | 244 |
fail="Failed to checkout git ref {}".format(self.ref),
|
233 | 245 |
cwd=fullpath)
|
234 | 246 |
|
247 |
+ # Check that the user specified ref exists in the track if provided & not already tracked
|
|
248 |
+ if track:
|
|
249 |
+ self.assert_ref_in_track(fullpath, track)
|
|
250 |
+ |
|
235 | 251 |
# List the submodules (path/url tuples) present at the given ref of this repo
|
236 | 252 |
def submodule_list(self):
|
237 | 253 |
modules = "{}:{}".format(self.ref, GIT_MODULES)
|
... | ... | @@ -296,6 +312,28 @@ class GitMirror(SourceFetcher): |
296 | 312 |
|
297 | 313 |
return None
|
298 | 314 |
|
315 |
+ # Assert that ref exists in track, if track has been specified.
|
|
316 |
+ def assert_ref_in_track(self, fullpath, track):
|
|
317 |
+ _, branch = self.source.check_output([self.source.host_git, 'branch', '--list', track,
|
|
318 |
+ '--contains', self.ref],
|
|
319 |
+ cwd=fullpath,)
|
|
320 |
+ if branch:
|
|
321 |
+ return True
|
|
322 |
+ else:
|
|
323 |
+ _, tag = self.source.check_output([self.source.host_git, 'tag', '--list', track,
|
|
324 |
+ '--contains', self.ref],
|
|
325 |
+ cwd=fullpath,)
|
|
326 |
+ if tag:
|
|
327 |
+ return True
|
|
328 |
+ |
|
329 |
+ detail = "The ref provided for the element does not exist locally in the provided track branch / tag " + \
|
|
330 |
+ "'{}'.\nYou may wish to track the element to update the ref from '{}' ".format(track, track) + \
|
|
331 |
+ "with `bst track`,\nor examine the upstream at '{}' for the specific ref.".format(self.url)
|
|
332 |
+ |
|
333 |
+ self.source.warn("{}: expected ref '{}' was not found in given track '{}' for staged repository: '{}'\n"
|
|
334 |
+ .format(self.source, self.ref, track, self.url),
|
|
335 |
+ detail=detail, warning_token=CoreWarnings.REF_NOT_IN_TRACK)
|
|
336 |
+ |
|
299 | 337 |
|
300 | 338 |
class GitSource(Source):
|
301 | 339 |
# pylint: disable=attribute-defined-outside-init
|
... | ... | @@ -307,7 +345,7 @@ class GitSource(Source): |
307 | 345 |
self.node_validate(node, config_keys + Source.COMMON_CONFIG_KEYS)
|
308 | 346 |
|
309 | 347 |
self.original_url = self.node_get_member(node, str, 'url')
|
310 |
- self.mirror = GitMirror(self, '', self.original_url, ref)
|
|
348 |
+ self.mirror = GitMirror(self, '', self.original_url, ref, primary=True)
|
|
311 | 349 |
self.tracking = self.node_get_member(node, str, 'track', None)
|
312 | 350 |
|
313 | 351 |
# At this point we now know if the source has a ref and/or a track.
|
... | ... | @@ -327,12 +365,18 @@ class GitSource(Source): |
327 | 365 |
for path, _ in self.node_items(modules):
|
328 | 366 |
submodule = self.node_get_member(modules, Mapping, path)
|
329 | 367 |
url = self.node_get_member(submodule, str, 'url', None)
|
368 |
+ |
|
369 |
+ # Make sure to mark all URLs that are specified in the configuration
|
|
370 |
+ if url:
|
|
371 |
+ self.mark_download_url(url, primary=False)
|
|
372 |
+ |
|
330 | 373 |
self.submodule_overrides[path] = url
|
331 | 374 |
if 'checkout' in submodule:
|
332 | 375 |
checkout = self.node_get_member(submodule, bool, 'checkout')
|
333 | 376 |
self.submodule_checkout_overrides[path] = checkout
|
334 | 377 |
|
335 | 378 |
self.mark_download_url(self.original_url)
|
379 |
+ self.tracked = False
|
|
336 | 380 |
|
337 | 381 |
def preflight(self):
|
338 | 382 |
# Check if git is installed, get the binary at the same time
|
... | ... | @@ -398,6 +442,8 @@ class GitSource(Source): |
398 | 442 |
# Update self.mirror.ref and node.ref from the self.tracking branch
|
399 | 443 |
ret = self.mirror.latest_commit(self.tracking)
|
400 | 444 |
|
445 |
+ # Set tracked attribute, parameter for if self.mirror.assert_ref_in_track is needed
|
|
446 |
+ self.tracked = True
|
|
401 | 447 |
return ret
|
402 | 448 |
|
403 | 449 |
def init_workspace(self, directory):
|
... | ... | @@ -405,7 +451,7 @@ class GitSource(Source): |
405 | 451 |
self.refresh_submodules()
|
406 | 452 |
|
407 | 453 |
with self.timed_activity('Setting up workspace "{}"'.format(directory), silent_nested=True):
|
408 |
- self.mirror.init_workspace(directory)
|
|
454 |
+ self.mirror.init_workspace(directory, track=(self.tracking if not self.tracked else None))
|
|
409 | 455 |
for mirror in self.submodules:
|
410 | 456 |
mirror.init_workspace(directory)
|
411 | 457 |
|
... | ... | @@ -421,7 +467,7 @@ class GitSource(Source): |
421 | 467 |
# Stage the main repo in the specified directory
|
422 | 468 |
#
|
423 | 469 |
with self.timed_activity("Staging {}".format(self.mirror.url), silent_nested=True):
|
424 |
- self.mirror.stage(directory)
|
|
470 |
+ self.mirror.stage(directory, track=(self.tracking if not self.tracked else None))
|
|
425 | 471 |
for mirror in self.submodules:
|
426 | 472 |
if mirror.path in self.submodule_checkout_overrides:
|
427 | 473 |
checkout = self.submodule_checkout_overrides[mirror.path]
|
... | ... | @@ -28,6 +28,18 @@ Abstract Methods |
28 | 28 |
For loading and configuration purposes, Sources must implement the
|
29 | 29 |
:ref:`Plugin base class abstract methods <core_plugin_abstract_methods>`.
|
30 | 30 |
|
31 |
+.. attention::
|
|
32 |
+ |
|
33 |
+ In order to ensure that all configuration data is processed at
|
|
34 |
+ load time, it is important that all URLs have been processed during
|
|
35 |
+ :func:`Plugin.configure() <buildstream.plugin.Plugin.configure>`.
|
|
36 |
+ |
|
37 |
+ Source implementations *must* either call
|
|
38 |
+ :func:`Source.translate_url() <buildstream.source.Source.translate_url>` or
|
|
39 |
+ :func:`Source.mark_download_url() <buildstream.source.Source.mark_download_url>`
|
|
40 |
+ for every URL that has been specified in the configuration during
|
|
41 |
+ :func:`Plugin.configure() <buildstream.plugin.Plugin.configure>`
|
|
42 |
+ |
|
31 | 43 |
Sources expose the following abstract methods. Unless explicitly mentioned,
|
32 | 44 |
these methods are mandatory to implement.
|
33 | 45 |
|
... | ... | @@ -184,6 +196,13 @@ class SourceFetcher(): |
184 | 196 |
fetching and substituting aliases.
|
185 | 197 |
|
186 | 198 |
*Since: 1.2*
|
199 |
+ |
|
200 |
+ .. attention::
|
|
201 |
+ |
|
202 |
+ When implementing a SourceFetcher, remember to call
|
|
203 |
+ :func:`Source.mark_download_url() <buildstream.source.Source.mark_download_url>`
|
|
204 |
+ for every URL found in the configuration data at
|
|
205 |
+ :func:`Plugin.configure() <buildstream.plugin.Plugin.configure>` time.
|
|
187 | 206 |
"""
|
188 | 207 |
def __init__(self):
|
189 | 208 |
self.__alias = None
|
... | ... | @@ -206,7 +225,7 @@ class SourceFetcher(): |
206 | 225 |
Implementors should raise :class:`.SourceError` if the there is some
|
207 | 226 |
network error or if the source reference could not be matched.
|
208 | 227 |
"""
|
209 |
- raise ImplError("Source fetcher '{}' does not implement fetch()".format(type(self)))
|
|
228 |
+ raise ImplError("SourceFetcher '{}' does not implement fetch()".format(type(self)))
|
|
210 | 229 |
|
211 | 230 |
#############################################################
|
212 | 231 |
# Public Methods #
|
... | ... | @@ -277,8 +296,11 @@ class Source(Plugin): |
277 | 296 |
self.__element_kind = meta.element_kind # The kind of the element owning this source
|
278 | 297 |
self.__directory = meta.directory # Staging relative directory
|
279 | 298 |
self.__consistency = Consistency.INCONSISTENT # Cached consistency state
|
299 |
+ |
|
300 |
+ # The alias_override is only set on a re-instantiated Source
|
|
280 | 301 |
self.__alias_override = alias_override # Tuple of alias and its override to use instead
|
281 |
- self.__expected_alias = None # A hacky way to store the first alias used
|
|
302 |
+ self.__expected_alias = None # The primary alias
|
|
303 |
+ self.__marked_urls = set() # Set of marked download URLs
|
|
282 | 304 |
|
283 | 305 |
# FIXME: Reconstruct a MetaSource from a Source instead of storing it.
|
284 | 306 |
self.__meta = meta # MetaSource stored so we can copy this source later.
|
... | ... | @@ -289,7 +311,7 @@ class Source(Plugin): |
289 | 311 |
self.__config = self.__extract_config(meta)
|
290 | 312 |
self.__first_pass = meta.first_pass
|
291 | 313 |
|
292 |
- self.configure(self.__config)
|
|
314 |
+ self._configure(self.__config)
|
|
293 | 315 |
|
294 | 316 |
COMMON_CONFIG_KEYS = ['kind', 'directory']
|
295 | 317 |
"""Common source config keys
|
... | ... | @@ -351,10 +373,10 @@ class Source(Plugin): |
351 | 373 |
Args:
|
352 | 374 |
ref (simple object): The internal source reference to set, or ``None``
|
353 | 375 |
node (dict): The same dictionary which was previously passed
|
354 |
- to :func:`~buildstream.source.Source.configure`
|
|
376 |
+ to :func:`Plugin.configure() <buildstream.plugin.Plugin.configure>`
|
|
355 | 377 |
|
356 |
- See :func:`~buildstream.source.Source.get_ref` for a discussion on
|
|
357 |
- the *ref* parameter.
|
|
378 |
+ See :func:`Source.get_ref() <buildstream.source.Source.get_ref>`
|
|
379 |
+ for a discussion on the *ref* parameter.
|
|
358 | 380 |
|
359 | 381 |
.. note::
|
360 | 382 |
|
... | ... | @@ -384,8 +406,8 @@ class Source(Plugin): |
384 | 406 |
backend store allows one to query for a new ref from a symbolic
|
385 | 407 |
tracking data without downloading then that is desirable.
|
386 | 408 |
|
387 |
- See :func:`~buildstream.source.Source.get_ref` for a discussion on
|
|
388 |
- the *ref* parameter.
|
|
409 |
+ See :func:`Source.get_ref() <buildstream.source.Source.get_ref>`
|
|
410 |
+ for a discussion on the *ref* parameter.
|
|
389 | 411 |
"""
|
390 | 412 |
# Allow a non implementation
|
391 | 413 |
return None
|
... | ... | @@ -435,7 +457,7 @@ class Source(Plugin): |
435 | 457 |
:class:`.SourceError`
|
436 | 458 |
|
437 | 459 |
Default implementation is to call
|
438 |
- :func:`~buildstream.source.Source.stage`.
|
|
460 |
+ :func:`Source.stage() <buildstream.source.Source.stage>`.
|
|
439 | 461 |
|
440 | 462 |
Implementors overriding this method should assume that *directory*
|
441 | 463 |
already exists.
|
... | ... | @@ -453,8 +475,15 @@ class Source(Plugin): |
453 | 475 |
is recommended.
|
454 | 476 |
|
455 | 477 |
Returns:
|
456 |
- list: A list of SourceFetchers. If SourceFetchers are not supported,
|
|
457 |
- this will be an empty list.
|
|
478 |
+ iterable: The Source's SourceFetchers, if any.
|
|
479 |
+ |
|
480 |
+ .. note::
|
|
481 |
+ |
|
482 |
+ Implementors can implement this as a generator.
|
|
483 |
+ |
|
484 |
+ The :func:`SourceFetcher.fetch() <buildstream.source.SourceFetcher.fetch>`
|
|
485 |
+ method will be called on the returned fetchers one by one,
|
|
486 |
+ before consuming the next fetcher in the list.
|
|
458 | 487 |
|
459 | 488 |
*Since: 1.2*
|
460 | 489 |
"""
|
... | ... | @@ -477,17 +506,27 @@ class Source(Plugin): |
477 | 506 |
os.makedirs(directory, exist_ok=True)
|
478 | 507 |
return directory
|
479 | 508 |
|
480 |
- def translate_url(self, url, *, alias_override=None):
|
|
509 |
+ def translate_url(self, url, *, alias_override=None, primary=True):
|
|
481 | 510 |
"""Translates the given url which may be specified with an alias
|
482 | 511 |
into a fully qualified url.
|
483 | 512 |
|
484 | 513 |
Args:
|
485 |
- url (str): A url, which may be using an alias
|
|
514 |
+ url (str): A URL, which may be using an alias
|
|
486 | 515 |
alias_override (str): Optionally, an URI to override the alias with. (*Since: 1.2*)
|
516 |
+ primary (bool): Whether this is the primary URL for the source. (*Since: 1.2*)
|
|
487 | 517 |
|
488 | 518 |
Returns:
|
489 |
- str: The fully qualified url, with aliases resolved
|
|
519 |
+ str: The fully qualified URL, with aliases resolved
|
|
520 |
+ .. note::
|
|
521 |
+ |
|
522 |
+ This must be called for every URL in the configuration during
|
|
523 |
+ :func:`Plugin.configure() <buildstream.plugin.Plugin.configure>` if
|
|
524 |
+ :func:`Source.mark_download_url() <buildstream.source.Source.mark_download_url>`
|
|
525 |
+ is not called.
|
|
490 | 526 |
"""
|
527 |
+ # Ensure that the download URL is also marked
|
|
528 |
+ self.mark_download_url(url, primary=primary)
|
|
529 |
+ |
|
491 | 530 |
# Alias overriding can happen explicitly (by command-line) or
|
492 | 531 |
# implicitly (the Source being constructed with an __alias_override).
|
493 | 532 |
if alias_override or self.__alias_override:
|
... | ... | @@ -506,25 +545,55 @@ class Source(Plugin): |
506 | 545 |
url = override_url + url_body
|
507 | 546 |
return url
|
508 | 547 |
else:
|
509 |
- # Sneakily store the alias if it hasn't already been stored
|
|
510 |
- if not self.__expected_alias and url and utils._ALIAS_SEPARATOR in url:
|
|
511 |
- self.mark_download_url(url)
|
|
512 |
- |
|
513 | 548 |
project = self._get_project()
|
514 | 549 |
return project.translate_url(url, first_pass=self.__first_pass)
|
515 | 550 |
|
516 |
- def mark_download_url(self, url):
|
|
551 |
+ def mark_download_url(self, url, *, primary=True):
|
|
517 | 552 |
"""Identifies the URL that this Source uses to download
|
518 | 553 |
|
519 |
- This must be called during :func:`~buildstream.plugin.Plugin.configure` if
|
|
520 |
- :func:`~buildstream.source.Source.translate_url` is not called.
|
|
521 |
- |
|
522 | 554 |
Args:
|
523 |
- url (str): The url used to download
|
|
555 |
+ url (str): The URL used to download
|
|
556 |
+ primary (bool): Whether this is the primary URL for the source
|
|
557 |
+ |
|
558 |
+ .. note::
|
|
559 |
+ |
|
560 |
+ This must be called for every URL in the configuration during
|
|
561 |
+ :func:`Plugin.configure() <buildstream.plugin.Plugin.configure>` if
|
|
562 |
+ :func:`Source.translate_url() <buildstream.source.Source.translate_url>`
|
|
563 |
+ is not called.
|
|
524 | 564 |
|
525 | 565 |
*Since: 1.2*
|
526 | 566 |
"""
|
527 |
- self.__expected_alias = _extract_alias(url)
|
|
567 |
+ # Only mark the Source level aliases on the main instance, not in
|
|
568 |
+ # a reinstantiated instance in mirroring.
|
|
569 |
+ if not self.__alias_override:
|
|
570 |
+ if primary:
|
|
571 |
+ expected_alias = _extract_alias(url)
|
|
572 |
+ |
|
573 |
+ assert (self.__expected_alias is None or
|
|
574 |
+ self.__expected_alias == expected_alias), \
|
|
575 |
+ "Primary URL marked twice with different URLs"
|
|
576 |
+ |
|
577 |
+ self.__expected_alias = expected_alias
|
|
578 |
+ |
|
579 |
+ # Enforce proper behaviour of plugins by ensuring that all
|
|
580 |
+ # aliased URLs have been marked at Plugin.configure() time.
|
|
581 |
+ #
|
|
582 |
+ if self._get_configuring():
|
|
583 |
+ # Record marked urls while configuring
|
|
584 |
+ #
|
|
585 |
+ self.__marked_urls.add(url)
|
|
586 |
+ else:
|
|
587 |
+ # If an unknown aliased URL is seen after configuring,
|
|
588 |
+ # this is an error.
|
|
589 |
+ #
|
|
590 |
+ # It is still possible that a URL that was not mentioned
|
|
591 |
+ # in the element configuration can be marked, this is
|
|
592 |
+ # the case for git submodules which might be automatically
|
|
593 |
+ # discovered.
|
|
594 |
+ #
|
|
595 |
+ assert (url in self.__marked_urls or not _extract_alias(url)), \
|
|
596 |
+ "URL was not seen at configure time: {}".format(url)
|
|
528 | 597 |
|
529 | 598 |
def get_project_directory(self):
|
530 | 599 |
"""Fetch the project base directory
|
... | ... | @@ -15,14 +15,17 @@ from buildstream import Source, Consistency, SourceError, SourceFetcher |
15 | 15 |
|
16 | 16 |
|
17 | 17 |
class FetchFetcher(SourceFetcher):
|
18 |
- def __init__(self, source, url):
|
|
18 |
+ def __init__(self, source, url, primary=False):
|
|
19 | 19 |
super().__init__()
|
20 | 20 |
self.source = source
|
21 | 21 |
self.original_url = url
|
22 |
+ self.primary = primary
|
|
22 | 23 |
self.mark_download_url(url)
|
23 | 24 |
|
24 | 25 |
def fetch(self, alias_override=None):
|
25 |
- url = self.source.translate_url(self.original_url, alias_override=alias_override)
|
|
26 |
+ url = self.source.translate_url(self.original_url,
|
|
27 |
+ alias_override=alias_override,
|
|
28 |
+ primary=self.primary)
|
|
26 | 29 |
with open(self.source.output_file, "a") as f:
|
27 | 30 |
success = url in self.source.fetch_succeeds and self.source.fetch_succeeds[url]
|
28 | 31 |
message = "Fetch {} {} from {}\n".format(self.original_url,
|
... | ... | @@ -37,12 +40,21 @@ class FetchSource(Source): |
37 | 40 |
# Read config to know which URLs to fetch
|
38 | 41 |
def configure(self, node):
|
39 | 42 |
self.original_urls = self.node_get_member(node, list, 'urls')
|
40 |
- self.fetchers = [FetchFetcher(self, url) for url in self.original_urls]
|
|
41 | 43 |
self.output_file = self.node_get_member(node, str, 'output-text')
|
42 | 44 |
self.fetch_succeeds = {}
|
43 | 45 |
if 'fetch-succeeds' in node:
|
44 | 46 |
self.fetch_succeeds = {x[0]: x[1] for x in self.node_items(node['fetch-succeeds'])}
|
45 | 47 |
|
48 |
+ # First URL is the primary one for this test
|
|
49 |
+ #
|
|
50 |
+ primary = True
|
|
51 |
+ self.fetchers = []
|
|
52 |
+ for url in self.original_urls:
|
|
53 |
+ self.mark_download_url(url, primary=primary)
|
|
54 |
+ fetcher = FetchFetcher(self, url, primary=primary)
|
|
55 |
+ self.fetchers.append(fetcher)
|
|
56 |
+ primary = False
|
|
57 |
+ |
|
46 | 58 |
def get_source_fetchers(self):
|
47 | 59 |
return self.fetchers
|
48 | 60 |
|
1 |
+import stat
|
|
1 | 2 |
import os
|
2 | 3 |
import pytest
|
3 | 4 |
from tests.testutils import cli, create_repo, ALL_REPO_KINDS, generate_junction
|
... | ... | @@ -634,3 +635,36 @@ def test_track_junction_included(cli, tmpdir, datafiles, ref_storage, kind): |
634 | 635 |
|
635 | 636 |
result = cli.run(project=project, args=['track', 'junction.bst'])
|
636 | 637 |
result.assert_success()
|
638 |
+ |
|
639 |
+ |
|
640 |
+@pytest.mark.datafiles(DATA_DIR)
|
|
641 |
+@pytest.mark.parametrize("kind", [(kind) for kind in ALL_REPO_KINDS])
|
|
642 |
+def test_track_error_cannot_write_file(cli, tmpdir, datafiles, kind):
|
|
643 |
+ if os.geteuid() == 0:
|
|
644 |
+ pytest.skip("This is not testable with root permissions")
|
|
645 |
+ |
|
646 |
+ project = str(datafiles)
|
|
647 |
+ dev_files_path = os.path.join(project, 'files', 'dev-files')
|
|
648 |
+ element_path = os.path.join(project, 'elements')
|
|
649 |
+ element_name = 'track-test-{}.bst'.format(kind)
|
|
650 |
+ |
|
651 |
+ configure_project(project, {
|
|
652 |
+ 'ref-storage': 'inline'
|
|
653 |
+ })
|
|
654 |
+ |
|
655 |
+ repo = create_repo(kind, str(tmpdir))
|
|
656 |
+ ref = repo.create(dev_files_path)
|
|
657 |
+ |
|
658 |
+ element_full_path = os.path.join(element_path, element_name)
|
|
659 |
+ generate_element(repo, element_full_path)
|
|
660 |
+ |
|
661 |
+ st = os.stat(element_path)
|
|
662 |
+ try:
|
|
663 |
+ read_mask = stat.S_IWUSR | stat.S_IWGRP | stat.S_IWOTH
|
|
664 |
+ os.chmod(element_path, stat.S_IMODE(st.st_mode) & ~read_mask)
|
|
665 |
+ |
|
666 |
+ result = cli.run(project=project, args=['track', element_name])
|
|
667 |
+ result.assert_main_error(ErrorDomain.STREAM, None)
|
|
668 |
+ result.assert_task_error(ErrorDomain.SOURCE, 'save-ref-error')
|
|
669 |
+ finally:
|
|
670 |
+ os.chmod(element_path, stat.S_IMODE(st.st_mode))
|
... | ... | @@ -56,7 +56,7 @@ def test_fetch_bad_url(cli, tmpdir, datafiles): |
56 | 56 |
result = cli.run(project=project, args=[
|
57 | 57 |
'fetch', 'target.bst'
|
58 | 58 |
])
|
59 |
- assert "Try #" in result.stderr
|
|
59 |
+ assert "FAILURE Try #" in result.stderr
|
|
60 | 60 |
result.assert_main_error(ErrorDomain.STREAM, None)
|
61 | 61 |
result.assert_task_error(ErrorDomain.SOURCE, None)
|
62 | 62 |
|
... | ... | @@ -25,6 +25,7 @@ import pytest |
25 | 25 |
|
26 | 26 |
from buildstream._exceptions import ErrorDomain
|
27 | 27 |
from buildstream import _yaml
|
28 |
+from buildstream.plugin import CoreWarnings
|
|
28 | 29 |
|
29 | 30 |
from tests.testutils import cli, create_repo
|
30 | 31 |
from tests.testutils.site import HAVE_GIT
|
... | ... | @@ -408,3 +409,70 @@ def test_submodule_track_no_ref_or_track(cli, tmpdir, datafiles): |
408 | 409 |
result = cli.run(project=project, args=['show', 'target.bst'])
|
409 | 410 |
result.assert_main_error(ErrorDomain.SOURCE, "missing-track-and-ref")
|
410 | 411 |
result.assert_task_error(None, None)
|
412 |
+ |
|
413 |
+ |
|
414 |
+@pytest.mark.skipif(HAVE_GIT is False, reason="git is not available")
|
|
415 |
+@pytest.mark.datafiles(os.path.join(DATA_DIR, 'template'))
|
|
416 |
+def test_ref_not_in_track_warn(cli, tmpdir, datafiles):
|
|
417 |
+ project = os.path.join(datafiles.dirname, datafiles.basename)
|
|
418 |
+ |
|
419 |
+ # Create the repo from 'repofiles', create a branch without latest commit
|
|
420 |
+ repo = create_repo('git', str(tmpdir))
|
|
421 |
+ ref = repo.create(os.path.join(project, 'repofiles'))
|
|
422 |
+ |
|
423 |
+ gitsource = repo.source_config(ref=ref)
|
|
424 |
+ |
|
425 |
+ # Overwrite the track value to the added branch
|
|
426 |
+ gitsource['track'] = 'foo'
|
|
427 |
+ |
|
428 |
+ # Write out our test target
|
|
429 |
+ element = {
|
|
430 |
+ 'kind': 'import',
|
|
431 |
+ 'sources': [
|
|
432 |
+ gitsource
|
|
433 |
+ ]
|
|
434 |
+ }
|
|
435 |
+ _yaml.dump(element, os.path.join(project, 'target.bst'))
|
|
436 |
+ |
|
437 |
+ # Assert the warning is raised as ref is not in branch foo.
|
|
438 |
+ # Assert warning not error to the user, when not set as fatal.
|
|
439 |
+ result = cli.run(project=project, args=['build', 'target.bst'])
|
|
440 |
+ assert "The ref provided for the element does not exist locally" in result.stderr
|
|
441 |
+ |
|
442 |
+ |
|
443 |
+@pytest.mark.skipif(HAVE_GIT is False, reason="git is not available")
|
|
444 |
+@pytest.mark.datafiles(os.path.join(DATA_DIR, 'template'))
|
|
445 |
+def test_ref_not_in_track_warn_error(cli, tmpdir, datafiles):
|
|
446 |
+ project = os.path.join(datafiles.dirname, datafiles.basename)
|
|
447 |
+ |
|
448 |
+ # Add fatal-warnings ref-not-in-track to project.conf
|
|
449 |
+ project_template = {
|
|
450 |
+ "name": "foo",
|
|
451 |
+ "fatal-warnings": [CoreWarnings.REF_NOT_IN_TRACK]
|
|
452 |
+ }
|
|
453 |
+ |
|
454 |
+ _yaml.dump(project_template, os.path.join(project, 'project.conf'))
|
|
455 |
+ |
|
456 |
+ # Create the repo from 'repofiles', create a branch without latest commit
|
|
457 |
+ repo = create_repo('git', str(tmpdir))
|
|
458 |
+ ref = repo.create(os.path.join(project, 'repofiles'))
|
|
459 |
+ |
|
460 |
+ gitsource = repo.source_config(ref=ref)
|
|
461 |
+ |
|
462 |
+ # Overwrite the track value to the added branch
|
|
463 |
+ gitsource['track'] = 'foo'
|
|
464 |
+ |
|
465 |
+ # Write out our test target
|
|
466 |
+ element = {
|
|
467 |
+ 'kind': 'import',
|
|
468 |
+ 'sources': [
|
|
469 |
+ gitsource
|
|
470 |
+ ]
|
|
471 |
+ }
|
|
472 |
+ _yaml.dump(element, os.path.join(project, 'target.bst'))
|
|
473 |
+ |
|
474 |
+ # Assert that build raises a warning here that is captured
|
|
475 |
+ # as plugin error, due to the fatal warning being set
|
|
476 |
+ result = cli.run(project=project, args=['build', 'target.bst'])
|
|
477 |
+ result.assert_main_error(ErrorDomain.STREAM, None)
|
|
478 |
+ result.assert_task_error(ErrorDomain.PLUGIN, CoreWarnings.REF_NOT_IN_TRACK)
|
... | ... | @@ -67,7 +67,7 @@ def test_fetch_bad_url(cli, tmpdir, datafiles): |
67 | 67 |
result = cli.run(project=project, args=[
|
68 | 68 |
'fetch', 'target.bst'
|
69 | 69 |
])
|
70 |
- assert "Try #" in result.stderr
|
|
70 |
+ assert "FAILURE Try #" in result.stderr
|
|
71 | 71 |
result.assert_main_error(ErrorDomain.STREAM, None)
|
72 | 72 |
result.assert_task_error(ErrorDomain.SOURCE, None)
|
73 | 73 |
|
... | ... | @@ -53,7 +53,7 @@ def test_fetch_bad_url(cli, tmpdir, datafiles): |
53 | 53 |
result = cli.run(project=project, args=[
|
54 | 54 |
'fetch', 'target.bst'
|
55 | 55 |
])
|
56 |
- assert "Try #" in result.stderr
|
|
56 |
+ assert "FAILURE Try #" in result.stderr
|
|
57 | 57 |
result.assert_main_error(ErrorDomain.STREAM, None)
|
58 | 58 |
result.assert_task_error(ErrorDomain.SOURCE, None)
|
59 | 59 |
|
... | ... | @@ -2,6 +2,7 @@ import os |
2 | 2 |
import subprocess
|
3 | 3 |
import pytest
|
4 | 4 |
|
5 |
+from buildstream import utils
|
|
5 | 6 |
from .repo import Repo
|
6 | 7 |
from ..site import HAVE_BZR
|
7 | 8 |
|
... | ... | @@ -16,15 +17,16 @@ class Bzr(Repo): |
16 | 17 |
if not HAVE_BZR:
|
17 | 18 |
pytest.skip("bzr is not available")
|
18 | 19 |
super(Bzr, self).__init__(directory, subdir)
|
20 |
+ self.bzr = utils.get_host_tool('bzr')
|
|
19 | 21 |
|
20 | 22 |
def create(self, directory):
|
21 | 23 |
branch_dir = os.path.join(self.repo, 'trunk')
|
22 | 24 |
|
23 |
- subprocess.call(['bzr', 'init-repo', self.repo], env=BZR_ENV)
|
|
24 |
- subprocess.call(['bzr', 'init', branch_dir], env=BZR_ENV)
|
|
25 |
+ subprocess.call([self.bzr, 'init-repo', self.repo], env=BZR_ENV)
|
|
26 |
+ subprocess.call([self.bzr, 'init', branch_dir], env=BZR_ENV)
|
|
25 | 27 |
self.copy_directory(directory, branch_dir)
|
26 |
- subprocess.call(['bzr', 'add', '.'], env=BZR_ENV, cwd=branch_dir)
|
|
27 |
- subprocess.call(['bzr', 'commit', '--message="Initial commit"'],
|
|
28 |
+ subprocess.call([self.bzr, 'add', '.'], env=BZR_ENV, cwd=branch_dir)
|
|
29 |
+ subprocess.call([self.bzr, 'commit', '--message="Initial commit"'],
|
|
28 | 30 |
env=BZR_ENV, cwd=branch_dir)
|
29 | 31 |
|
30 | 32 |
return self.latest_commit()
|
... | ... | @@ -42,7 +44,7 @@ class Bzr(Repo): |
42 | 44 |
|
43 | 45 |
def latest_commit(self):
|
44 | 46 |
output = subprocess.check_output([
|
45 |
- 'bzr', 'version-info',
|
|
47 |
+ self.bzr, 'version-info',
|
|
46 | 48 |
'--custom', '--template={revno}',
|
47 | 49 |
os.path.join(self.repo, 'trunk')
|
48 | 50 |
], env=BZR_ENV)
|