Jürg Billeter pushed to branch juerg/symlinks at BuildStream / buildstream
Commits:
-
da1560e4
by Javier Jardón at 2019-02-09T09:10:01Z
-
79fbab61
by Jürg Billeter at 2019-02-09T10:30:20Z
-
354c563d
by Jürg Billeter at 2019-02-10T20:03:46Z
-
5e1be71f
by Jürg Billeter at 2019-02-11T05:10:56Z
-
99e1be45
by Jürg Billeter at 2019-02-11T05:12:25Z
-
f95e222e
by Jürg Billeter at 2019-02-11T05:12:25Z
-
89973fb3
by Jürg Billeter at 2019-02-11T05:12:25Z
-
d1da3fb0
by Jürg Billeter at 2019-02-11T05:12:25Z
-
7cf67ed3
by Jürg Billeter at 2019-02-11T05:12:25Z
6 changed files:
- .gitlab-ci.yml
- buildstream/plugins/elements/import.py
- buildstream/plugins/sources/local.py
- buildstream/sandbox/sandbox.py
- buildstream/storage/_casbaseddirectory.py
- buildstream/utils.py
Changes:
... | ... | @@ -49,10 +49,6 @@ tests-debian-9: |
49 | 49 |
image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-debian:9-master-46405991
|
50 | 50 |
<<: *tests
|
51 | 51 |
|
52 |
-tests-fedora-27:
|
|
53 |
- image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:27-master-46405991
|
|
54 |
- <<: *tests
|
|
55 |
- |
|
56 | 52 |
tests-fedora-28:
|
57 | 53 |
image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:28-master-46405991
|
58 | 54 |
<<: *tests
|
... | ... | @@ -95,7 +91,7 @@ overnight-fedora-28-aarch64: |
95 | 91 |
tests-unix:
|
96 | 92 |
# Use fedora here, to a) run a test on fedora and b) ensure that we
|
97 | 93 |
# can get rid of ostree - this is not possible with debian-8
|
98 |
- image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:27-master-46405991
|
|
94 |
+ image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:28-master-46405991
|
|
99 | 95 |
<<: *tests
|
100 | 96 |
variables:
|
101 | 97 |
BST_FORCE_BACKEND: "unix"
|
... | ... | @@ -291,7 +287,6 @@ coverage: |
291 | 287 |
- cp -a .coverage-reports/ ./coverage-report
|
292 | 288 |
dependencies:
|
293 | 289 |
- tests-debian-9
|
294 |
- - tests-fedora-27
|
|
295 | 290 |
- tests-fedora-28
|
296 | 291 |
- tests-fedora-missing-deps
|
297 | 292 |
- tests-ubuntu-18.04
|
... | ... | @@ -42,6 +42,10 @@ class ImportElement(Element): |
42 | 42 |
BST_VIRTUAL_DIRECTORY = True
|
43 | 43 |
|
44 | 44 |
def configure(self, node):
|
45 |
+ self.node_validate(node, [
|
|
46 |
+ 'source', 'target'
|
|
47 |
+ ])
|
|
48 |
+ |
|
45 | 49 |
self.source = self.node_subst_member(node, 'source')
|
46 | 50 |
self.target = self.node_subst_member(node, 'target')
|
47 | 51 |
|
... | ... | @@ -97,7 +97,7 @@ class LocalSource(Source): |
97 | 97 |
with self.timed_activity("Staging local files at {}".format(self.path)):
|
98 | 98 |
|
99 | 99 |
if os.path.isdir(self.fullpath):
|
100 |
- files = list(utils.list_relative_paths(self.fullpath, list_dirs=True))
|
|
100 |
+ files = list(utils.list_relative_paths(self.fullpath))
|
|
101 | 101 |
utils.copy_files(self.fullpath, directory, files=files)
|
102 | 102 |
else:
|
103 | 103 |
destfile = os.path.join(directory, os.path.basename(self.path))
|
... | ... | @@ -133,11 +133,11 @@ def unique_key(filename): |
133 | 133 |
|
134 | 134 |
# Return some hard coded things for files which
|
135 | 135 |
# have no content to calculate a key for
|
136 |
- if os.path.isdir(filename):
|
|
137 |
- return "0"
|
|
138 |
- elif os.path.islink(filename):
|
|
136 |
+ if os.path.islink(filename):
|
|
139 | 137 |
# For a symbolic link, use the link target as its unique identifier
|
140 | 138 |
return os.readlink(filename)
|
139 |
+ elif os.path.isdir(filename):
|
|
140 |
+ return "0"
|
|
141 | 141 |
|
142 | 142 |
return utils.sha256sum(filename)
|
143 | 143 |
|
... | ... | @@ -525,11 +525,11 @@ class Sandbox(): |
525 | 525 |
# (bool): Whether a command exists inside the sandbox.
|
526 | 526 |
def _has_command(self, command, env=None):
|
527 | 527 |
if os.path.isabs(command):
|
528 |
- return os.path.exists(os.path.join(
|
|
528 |
+ return os.path.lexists(os.path.join(
|
|
529 | 529 |
self._root, command.lstrip(os.sep)))
|
530 | 530 |
|
531 | 531 |
for path in env.get('PATH').split(':'):
|
532 |
- if os.path.exists(os.path.join(
|
|
532 |
+ if os.path.lexists(os.path.join(
|
|
533 | 533 |
self._root, path.lstrip(os.sep), command)):
|
534 | 534 |
return True
|
535 | 535 |
|
... | ... | @@ -795,24 +795,11 @@ class CasBasedDirectory(Directory): |
795 | 795 |
Return value: List(str) - list of all paths
|
796 | 796 |
"""
|
797 | 797 |
|
798 |
- symlink_list = filter(lambda i: isinstance(i[1].pb_object, remote_execution_pb2.SymlinkNode),
|
|
799 |
- self.index.items())
|
|
800 |
- file_list = list(filter(lambda i: isinstance(i[1].pb_object, remote_execution_pb2.FileNode),
|
|
798 |
+ file_list = list(filter(lambda i: not isinstance(i[1].buildstream_object, CasBasedDirectory),
|
|
801 | 799 |
self.index.items()))
|
802 | 800 |
directory_list = filter(lambda i: isinstance(i[1].buildstream_object, CasBasedDirectory),
|
803 | 801 |
self.index.items())
|
804 | 802 |
|
805 |
- # We need to mimic the behaviour of os.walk, in which symlinks
|
|
806 |
- # to directories count as directories and symlinks to file or
|
|
807 |
- # broken symlinks count as files. os.walk doesn't follow
|
|
808 |
- # symlinks, so we don't recurse.
|
|
809 |
- for (k, v) in sorted(symlink_list):
|
|
810 |
- target = self._resolve(k, absolute_symlinks_resolve=True)
|
|
811 |
- if isinstance(target, CasBasedDirectory):
|
|
812 |
- yield os.path.join(relpath, k)
|
|
813 |
- else:
|
|
814 |
- file_list.append((k, v))
|
|
815 |
- |
|
816 | 803 |
if file_list == [] and relpath != "":
|
817 | 804 |
yield relpath
|
818 | 805 |
else:
|
... | ... | @@ -111,7 +111,7 @@ class FileListResult(): |
111 | 111 |
return ret
|
112 | 112 |
|
113 | 113 |
|
114 |
-def list_relative_paths(directory, *, list_dirs=True):
|
|
114 |
+def list_relative_paths(directory):
|
|
115 | 115 |
"""A generator for walking directory relative paths
|
116 | 116 |
|
117 | 117 |
This generator is useful for checking the full manifest of
|
... | ... | @@ -125,13 +125,26 @@ def list_relative_paths(directory, *, list_dirs=True): |
125 | 125 |
|
126 | 126 |
Args:
|
127 | 127 |
directory (str): The directory to list files in
|
128 |
- list_dirs (bool): Whether to list directories
|
|
129 | 128 |
|
130 | 129 |
Yields:
|
131 | 130 |
Relative filenames in `directory`
|
132 | 131 |
"""
|
133 | 132 |
for (dirpath, dirnames, filenames) in os.walk(directory):
|
134 | 133 |
|
134 |
+ # os.walk does not decend into symlink directories, which
|
|
135 |
+ # makes sense because otherwise we might have redundant
|
|
136 |
+ # directories, or end up descending into directories outside
|
|
137 |
+ # of the walk() directory.
|
|
138 |
+ #
|
|
139 |
+ # But symlinks to directories are still identified as
|
|
140 |
+ # subdirectories in the walked `dirpath`, so we extract
|
|
141 |
+ # these symlinks from `dirnames` and add them to `filenames`.
|
|
142 |
+ #
|
|
143 |
+ for d in dirnames:
|
|
144 |
+ fullpath = os.path.join(dirpath, d)
|
|
145 |
+ if os.path.islink(fullpath):
|
|
146 |
+ filenames.append(d)
|
|
147 |
+ |
|
135 | 148 |
# Modifying the dirnames directly ensures that the os.walk() generator
|
136 | 149 |
# allows us to specify the order in which they will be iterated.
|
137 | 150 |
dirnames.sort()
|
... | ... | @@ -143,25 +156,10 @@ def list_relative_paths(directory, *, list_dirs=True): |
143 | 156 |
# `directory`, prefer to have no prefix in that case.
|
144 | 157 |
basepath = relpath if relpath != '.' and dirpath != directory else ''
|
145 | 158 |
|
146 |
- # os.walk does not decend into symlink directories, which
|
|
147 |
- # makes sense because otherwise we might have redundant
|
|
148 |
- # directories, or end up descending into directories outside
|
|
149 |
- # of the walk() directory.
|
|
150 |
- #
|
|
151 |
- # But symlinks to directories are still identified as
|
|
152 |
- # subdirectories in the walked `dirpath`, so we extract
|
|
153 |
- # these symlinks from `dirnames`
|
|
154 |
- #
|
|
155 |
- if list_dirs:
|
|
156 |
- for d in dirnames:
|
|
157 |
- fullpath = os.path.join(dirpath, d)
|
|
158 |
- if os.path.islink(fullpath):
|
|
159 |
- yield os.path.join(basepath, d)
|
|
160 |
- |
|
161 | 159 |
# We've decended into an empty directory, in this case we
|
162 | 160 |
# want to include the directory itself, but not in any other
|
163 | 161 |
# case.
|
164 |
- if list_dirs and not filenames:
|
|
162 |
+ if not filenames:
|
|
165 | 163 |
yield relpath
|
166 | 164 |
|
167 | 165 |
# List the filenames in the walked directory
|