2013-01-22 01:35:31 +00:00
|
|
|
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
2015-01-27 02:01:50 +00:00
|
|
|
from __future__ import print_function
|
2013-01-22 01:35:31 +00:00
|
|
|
import argparse
|
2014-04-07 16:59:33 +00:00
|
|
|
import collections
|
2016-06-28 05:41:50 +00:00
|
|
|
import errno
|
2016-06-10 04:04:26 +00:00
|
|
|
import logging
|
2013-01-22 01:35:31 +00:00
|
|
|
import os
|
|
|
|
import sys
|
2016-06-28 05:57:55 +00:00
|
|
|
import yaml
|
2013-01-22 01:35:31 +00:00
|
|
|
|
2016-06-10 04:04:26 +00:00
|
|
|
import diskimage_builder.logging_config
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2013-01-22 01:35:31 +00:00
|
|
|
|
2016-12-05 19:55:38 +00:00
|
|
|
class MissingElementException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class AlreadyProvidedException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class MissingOSException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidElementDir(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2016-06-28 05:41:50 +00:00
|
|
|
class Element(object):
|
|
|
|
"""An element"""
|
2017-02-02 07:05:18 +00:00
|
|
|
|
|
|
|
def _get_element_set(self, path):
|
|
|
|
"""Get element set from element-[deps|provides] file
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
:param path: path to element description
|
|
|
|
|
|
|
|
:return: the set of elements in the file, or a blank set if
|
|
|
|
the file is not found.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
with open(path) as f:
|
|
|
|
lines = (line.strip() for line in f)
|
|
|
|
# Strip blanks, but do we want to strip comment lines
|
|
|
|
# too? No use case at the moment, and comments might
|
|
|
|
# break other things that poke at the element-* files.
|
|
|
|
lines = (line for line in lines if line)
|
|
|
|
return set(lines)
|
|
|
|
except IOError as e:
|
|
|
|
if e.errno == errno.ENOENT:
|
|
|
|
return set([])
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
|
2017-01-19 21:00:21 +00:00
|
|
|
def _make_rdeps(self, all_elements):
|
|
|
|
"""Make a list of reverse dependencies (who depends on us).
|
|
|
|
|
|
|
|
Only valid after _find_all_elements()
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
:param all_elements: dict as returned by _find_all_elements()
|
|
|
|
|
|
|
|
:return: nothing, but elements will have r_depends var
|
|
|
|
"""
|
|
|
|
|
|
|
|
# note; deliberatly left out of __init__ so that accidental
|
|
|
|
# access without init raises error
|
|
|
|
self.r_depends = []
|
|
|
|
for name, element in all_elements.items():
|
|
|
|
if self.name in element.depends:
|
|
|
|
self.r_depends.append(element.name)
|
|
|
|
|
2016-06-28 05:41:50 +00:00
|
|
|
def __init__(self, name, path):
|
|
|
|
"""A new element
|
|
|
|
|
|
|
|
:param name: The element name
|
|
|
|
:param path: Full path to element. element-deps and
|
|
|
|
element-provides files will be parsed
|
|
|
|
"""
|
|
|
|
self.name = name
|
|
|
|
self.path = path
|
|
|
|
|
|
|
|
# read the provides & depends files for this element into a
|
|
|
|
# set; if the element has them.
|
2017-02-02 07:05:18 +00:00
|
|
|
self.provides = self._get_element_set(
|
|
|
|
os.path.join(path, 'element-provides'))
|
|
|
|
self.depends = self._get_element_set(
|
|
|
|
os.path.join(path, 'element-deps'))
|
2013-02-25 09:17:32 +00:00
|
|
|
|
2019-08-14 03:07:16 +00:00
|
|
|
# Uncomment to see all elements and deps listed as they're found
|
|
|
|
# logger.debug("New element : %s", str(self))
|
2014-03-10 13:46:44 +00:00
|
|
|
|
2016-12-05 19:55:38 +00:00
|
|
|
def __eq__(self, other):
|
|
|
|
return self.name == other.name
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return self.name
|
|
|
|
|
2016-06-28 05:41:50 +00:00
|
|
|
def __str__(self):
|
|
|
|
return '%s p:<%s> d:<%s>' % (self.name,
|
|
|
|
','.join(self.provides),
|
|
|
|
','.join(self.depends))
|
2014-03-10 13:46:44 +00:00
|
|
|
|
|
|
|
|
2016-12-05 19:55:38 +00:00
|
|
|
def _get_elements_dir():
|
2016-06-28 05:41:50 +00:00
|
|
|
if not os.environ.get('ELEMENTS_PATH'):
|
|
|
|
raise Exception("$ELEMENTS_PATH must be set.")
|
|
|
|
return os.environ['ELEMENTS_PATH']
|
2014-03-10 13:46:44 +00:00
|
|
|
|
|
|
|
|
2016-12-05 19:55:38 +00:00
|
|
|
def _expand_element_dependencies(user_elements, all_elements):
|
2013-07-27 02:32:01 +00:00
|
|
|
"""Expand user requested elements using element-deps files.
|
2013-01-22 01:35:31 +00:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
:param user_elements: iterable enumerating the elements a user requested
|
2016-06-28 05:41:50 +00:00
|
|
|
:param all_elements: Element object dictionary from find_all_elements
|
2013-01-22 01:35:31 +00:00
|
|
|
|
2016-06-28 05:41:50 +00:00
|
|
|
:return: a set containing the names of user_elements and all
|
|
|
|
dependent elements including any transitive dependencies.
|
2013-01-22 01:35:31 +00:00
|
|
|
"""
|
|
|
|
final_elements = set(user_elements)
|
2014-04-07 16:59:33 +00:00
|
|
|
check_queue = collections.deque(user_elements)
|
2014-03-10 13:46:44 +00:00
|
|
|
provided = set()
|
2016-03-10 03:52:02 +00:00
|
|
|
provided_by = collections.defaultdict(list)
|
2013-01-22 01:35:31 +00:00
|
|
|
|
|
|
|
while check_queue:
|
2014-04-07 16:59:33 +00:00
|
|
|
# bug #1303911 - run through the provided elements first to avoid
|
|
|
|
# adding unwanted dependencies and looking for virtual elements
|
|
|
|
element = check_queue.popleft()
|
2014-03-10 13:46:44 +00:00
|
|
|
if element in provided:
|
|
|
|
continue
|
2016-06-28 05:41:50 +00:00
|
|
|
elif element not in all_elements:
|
2016-12-05 19:55:38 +00:00
|
|
|
raise MissingElementException("Element '%s' not found" % element)
|
2016-06-28 05:41:50 +00:00
|
|
|
|
|
|
|
element_obj = all_elements[element]
|
|
|
|
|
|
|
|
element_deps = element_obj.depends
|
|
|
|
element_provides = element_obj.provides
|
2018-01-31 02:16:57 +00:00
|
|
|
# Check that we are not providing an element which has already
|
|
|
|
# been provided by someone else, and additionally save which
|
|
|
|
# elements provide another element
|
2016-03-10 03:52:02 +00:00
|
|
|
for provide in element_provides:
|
2018-01-31 02:16:57 +00:00
|
|
|
if provide in provided:
|
|
|
|
raise AlreadyProvidedException(
|
|
|
|
"%s: already provided by %s" %
|
|
|
|
(provide, provided_by[provide]))
|
2016-03-10 03:52:02 +00:00
|
|
|
provided_by[provide].append(element)
|
|
|
|
provided.update(element_provides)
|
|
|
|
check_queue.extend(element_deps - (final_elements | provided))
|
|
|
|
final_elements.update(element_deps)
|
2013-01-22 01:35:31 +00:00
|
|
|
|
2014-03-10 13:46:44 +00:00
|
|
|
conflicts = set(user_elements) & provided
|
|
|
|
if conflicts:
|
2016-03-10 03:52:02 +00:00
|
|
|
logger.error(
|
|
|
|
"The following elements are already provided by another element")
|
|
|
|
for element in conflicts:
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.error("%s : already provided by %s",
|
|
|
|
element, provided_by[element])
|
2016-12-05 19:55:38 +00:00
|
|
|
raise AlreadyProvidedException()
|
2016-06-28 05:41:50 +00:00
|
|
|
|
2016-12-05 19:55:38 +00:00
|
|
|
if "operating-system" not in provided:
|
|
|
|
raise MissingOSException("Please include an operating system element")
|
|
|
|
|
|
|
|
out = final_elements - provided
|
|
|
|
return([all_elements[element] for element in out])
|
2013-01-22 01:35:31 +00:00
|
|
|
|
|
|
|
|
2016-12-05 19:55:38 +00:00
|
|
|
def _find_all_elements(paths=None):
|
2016-06-28 05:41:50 +00:00
|
|
|
"""Build a dictionary Element() objects
|
|
|
|
|
|
|
|
Walk ELEMENTS_PATH and find all elements. Make an Element object
|
|
|
|
for each element we wish to consider. Note we process overrides
|
|
|
|
such that elements specified earlier in the ELEMENTS_PATH override
|
|
|
|
those seen later.
|
|
|
|
|
|
|
|
:param paths: A list of paths to find elements in. If None will
|
2016-12-05 19:55:38 +00:00
|
|
|
use ELEMENTS_PATH from environment
|
2016-06-28 05:41:50 +00:00
|
|
|
|
|
|
|
:return: a dictionary of all elements
|
|
|
|
"""
|
|
|
|
|
|
|
|
all_elements = {}
|
|
|
|
|
|
|
|
# note we process the later entries *first*, so that earlier
|
|
|
|
# entries will override later ones. i.e. with
|
|
|
|
# ELEMENTS_PATH=path1:path2:path3
|
|
|
|
# we want the elements in "path1" to override "path3"
|
|
|
|
if not paths:
|
2017-02-02 07:05:18 +00:00
|
|
|
paths = list(reversed(_get_elements_dir().split(':')))
|
2016-12-05 19:55:38 +00:00
|
|
|
else:
|
2017-02-02 07:05:18 +00:00
|
|
|
paths = list(reversed(paths.split(':')))
|
2016-12-05 19:55:38 +00:00
|
|
|
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.debug("ELEMENTS_PATH is: %s", ":".join(paths))
|
2016-12-05 19:55:38 +00:00
|
|
|
|
2016-06-28 05:41:50 +00:00
|
|
|
for path in paths:
|
|
|
|
if not os.path.isdir(path):
|
2016-12-05 19:55:38 +00:00
|
|
|
raise InvalidElementDir("ELEMENTS_PATH entry '%s' "
|
|
|
|
"is not a directory " % path)
|
2016-06-28 05:41:50 +00:00
|
|
|
|
|
|
|
# In words : make a list of directories in "path". Since an
|
|
|
|
# element is a directory, this is our list of elements.
|
|
|
|
elements = [os.path.realpath(os.path.join(path, f))
|
|
|
|
for f in os.listdir(path)
|
|
|
|
if os.path.isdir(os.path.join(path, f))]
|
|
|
|
|
|
|
|
for element in elements:
|
|
|
|
# the element name is the last part of the full path in
|
|
|
|
# element (these are all directories, we know that from
|
|
|
|
# above)
|
|
|
|
name = os.path.basename(element)
|
|
|
|
|
|
|
|
new_element = Element(name, element)
|
|
|
|
if name in all_elements:
|
|
|
|
logger.warning("Element <%s> overrides <%s>",
|
|
|
|
new_element.path, all_elements[name].path)
|
|
|
|
|
|
|
|
all_elements[name] = new_element
|
|
|
|
|
2017-01-19 21:00:21 +00:00
|
|
|
# Now we have all the elements, make a call on each element to
|
|
|
|
# store it's reverse dependencies
|
|
|
|
for name, element in all_elements.items():
|
|
|
|
element._make_rdeps(all_elements)
|
|
|
|
|
2016-06-28 05:41:50 +00:00
|
|
|
return all_elements
|
|
|
|
|
|
|
|
|
2016-12-05 19:55:38 +00:00
|
|
|
def _get_elements(elements, paths=None):
|
|
|
|
"""Return the canonical list of Element objects
|
|
|
|
|
|
|
|
This function returns Element objects. For exernal calls, use
|
|
|
|
get_elements which returns a simple tuple & list.
|
|
|
|
|
|
|
|
:param elements: user specified list of elements
|
|
|
|
:param paths: element paths, default to environment
|
|
|
|
|
|
|
|
"""
|
|
|
|
all_elements = _find_all_elements(paths)
|
|
|
|
return _expand_element_dependencies(elements, all_elements)
|
|
|
|
|
|
|
|
|
|
|
|
def get_elements(elements, paths=None):
|
|
|
|
"""Return the canonical list of elements with their dependencies
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
You probably do not want to use this! Elements that require
|
|
|
|
access to the list of all other elements should generally use
|
|
|
|
the environment variables exported by disk-image-create below.
|
|
|
|
|
|
|
|
:param elements: user specified elements
|
|
|
|
:param paths: Alternative ELEMENTS_PATH; default is to use from env
|
|
|
|
|
|
|
|
:return: A de-duplicated list of tuples [(element, path),
|
|
|
|
(element, path) ...] with all elements and their
|
|
|
|
dependents, including any transitive dependencies.
|
|
|
|
"""
|
|
|
|
|
|
|
|
elements = _get_elements(elements, paths)
|
|
|
|
return [(element.name, element.path) for element in elements]
|
|
|
|
|
|
|
|
|
|
|
|
def expand_dependencies(user_elements, element_dirs):
|
|
|
|
"""Deprecated method for expanding element dependencies.
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
2017-05-31 04:16:17 +00:00
|
|
|
DO NOT USE THIS FUNCTION. For compatibility reasons, this
|
2016-12-05 19:55:38 +00:00
|
|
|
function does not provide paths to the returned elements. This
|
|
|
|
means the caller must process override rules if two elements
|
|
|
|
with the same name appear in element_dirs
|
|
|
|
|
|
|
|
:param user_elements: iterable enumerating the elements a user requested
|
2017-05-31 04:16:17 +00:00
|
|
|
:param element_dirs: The ELEMENTS_PATH to process
|
2016-12-05 19:55:38 +00:00
|
|
|
|
2017-05-31 04:16:17 +00:00
|
|
|
:return: a set containing user_elements and all dependent
|
2016-12-05 19:55:38 +00:00
|
|
|
elements including any transitive dependencies.
|
|
|
|
"""
|
|
|
|
logger.warning("expand_dependencies() deprecated, use get_elements")
|
|
|
|
elements = _get_elements(user_elements, element_dirs)
|
|
|
|
return set([element.name for element in elements])
|
|
|
|
|
|
|
|
|
|
|
|
def _output_env_vars(elements):
|
|
|
|
"""Output eval-able bash strings for IMAGE_ELEMENT vars
|
|
|
|
|
|
|
|
:param elements: list of Element objects to represent
|
|
|
|
"""
|
|
|
|
# first the "legacy" environment variable that just lists the
|
|
|
|
# elements
|
|
|
|
print("export IMAGE_ELEMENT='%s'" %
|
|
|
|
' '.join([element.name for element in elements]))
|
|
|
|
|
|
|
|
# Then YAML
|
|
|
|
output = {}
|
|
|
|
for element in elements:
|
|
|
|
output[element.name] = element.path
|
|
|
|
print("export IMAGE_ELEMENT_YAML='%s'" % yaml.safe_dump(output))
|
|
|
|
|
|
|
|
# Then bash array. Unfortunately, bash can't export array
|
|
|
|
# variables. So we take a compromise and produce an exported
|
|
|
|
# function that outputs the string to re-create the array.
|
|
|
|
# You can then simply do
|
|
|
|
# eval declare -A element_array=$(get_image_element_array)
|
|
|
|
# and you have it.
|
|
|
|
output = ""
|
|
|
|
for element in elements:
|
|
|
|
output += '[%s]=%s ' % (element.name, element.path)
|
|
|
|
print("function get_image_element_array {\n"
|
|
|
|
" echo \"%s\"\n"
|
|
|
|
"};\n"
|
|
|
|
"export -f get_image_element_array;" % output)
|
|
|
|
|
|
|
|
|
2016-06-17 05:45:20 +00:00
|
|
|
def main():
|
2016-06-10 04:04:26 +00:00
|
|
|
diskimage_builder.logging_config.setup()
|
|
|
|
|
2013-01-22 01:35:31 +00:00
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('elements', nargs='+',
|
2015-01-27 02:01:50 +00:00
|
|
|
help='display dependencies of the given elements')
|
2016-06-28 05:57:55 +00:00
|
|
|
parser.add_argument('--env', '-e', action='store_true',
|
|
|
|
default=False,
|
|
|
|
help=('Output eval-able bash strings for '
|
|
|
|
'IMAGE_ELEMENT variables'))
|
2013-01-22 01:35:31 +00:00
|
|
|
|
2016-06-17 05:45:20 +00:00
|
|
|
args = parser.parse_args(sys.argv[1:])
|
2013-01-22 01:35:31 +00:00
|
|
|
|
2016-12-05 19:55:38 +00:00
|
|
|
elements = _get_elements(args.elements)
|
2016-06-28 05:57:55 +00:00
|
|
|
|
|
|
|
if args.env:
|
2016-12-05 19:55:38 +00:00
|
|
|
_output_env_vars(elements)
|
2016-06-28 05:57:55 +00:00
|
|
|
else:
|
2017-05-31 04:16:17 +00:00
|
|
|
# deprecated compatibility output; doesn't include paths.
|
2016-12-05 19:55:38 +00:00
|
|
|
print(' '.join([element.name for element in elements]))
|
2016-06-28 05:57:55 +00:00
|
|
|
|
2015-01-27 02:01:50 +00:00
|
|
|
return 0
|
2016-06-17 05:45:20 +00:00
|
|
|
|
2020-02-22 23:25:38 +00:00
|
|
|
|
2016-06-17 05:45:20 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|