kiwi-el8/kiwi/xml_state.py
2017-01-20 10:26:14 +01:00

1326 lines
44 KiB
Python

# Copyright (c) 2015 SUSE Linux GmbH. All rights reserved.
#
# This file is part of kiwi.
#
# kiwi is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# kiwi 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with kiwi. If not, see <http://www.gnu.org/licenses/>
#
import re
import copy
import platform
from collections import namedtuple
# project
from . import xml_parse
from .defaults import Defaults
from .exceptions import (
KiwiProfileNotFound,
KiwiTypeNotFound,
KiwiDistributionNameError
)
class XMLState(object):
"""
Implements methods to get stateful information from the XML data
Attributes
* :attr:`host_architecture`
system architecture, result from platform.machine
* :attr:`xml_data`
instance of XMLDescription
* :attr:`profiles`
list of used profiles
* :attr:`build_type`
build type section reference
"""
def __init__(self, xml_data, profiles=None, build_type=None):
self.host_architecture = platform.machine()
self.xml_data = xml_data
self.profiles = self._used_profiles(
profiles
)
self.build_type = self._build_type_section(
build_type
)
def get_preferences_sections(self):
"""
All preferences sections for the selected profiles
:return: <preferences>
:rtype: list
"""
return self._profiled(
self.xml_data.get_preferences()
)
def get_users_sections(self):
"""
All users sections for the selected profiles
:return: <users>
:rtype: list
"""
return self._profiled(
self.xml_data.get_users()
)
def get_build_type_name(self):
"""
Default build type name
:return: image attribute from build type
:rtype: string
"""
return self.build_type.get_image()
def get_image_version(self):
"""
Image version from preferences section.
Multiple occurences of version in preferences sections are not
forbidden, however only the first version found defines the
final image version
:return: <version>
:rtype: string
"""
for preferences in self.get_preferences_sections():
version = preferences.get_version()
if version:
return version[0]
def get_rpm_excludedocs(self):
"""
Gets the rpm-excludedocs configuration flag. Returns
False if not present.
:return: excludedocs flag
:rtype: bool
"""
for preferences in self.get_preferences_sections():
exclude_docs = preferences.get_rpm_excludedocs()
if exclude_docs:
return exclude_docs[0]
return False
def get_package_manager(self):
"""
Configured package manager
:return: <packagemanager>
:rtype: string
"""
for preferences in self.get_preferences_sections():
package_manager = preferences.get_packagemanager()
if package_manager:
return package_manager[0]
def get_packages_sections(self, section_types):
"""
List of packages sections matching given section type(s)
:param list section_types: type name(s) from packages sections
:return: <packages>
:rtype: list
"""
result = []
packages_sections = self._profiled(
self.xml_data.get_packages()
)
for packages in packages_sections:
packages_type = packages.get_type()
if packages_type in section_types:
result.append(packages)
return result
def package_matches_host_architecture(self, package):
"""
Tests if the given package is applicable for the current host
architecture. If no architecture is specified within the package
it is considered as a match.
:param package: <package>
:return: True if there is a match or if the package has no architecture.
:rtype: bool
"""
architectures = package.get_arch()
if architectures:
if self.host_architecture not in architectures.split(','):
return False
return True
def get_package_sections(self, packages_sections):
"""
List of package sections from the given packages sections.
Each list element contains a tuple with the <package> section
reference and the <packages> section this package belongs to
If a package entry specfies an architecture, it is only taken if
the host architecture matches the configured architecture
:param list packages_sections: <packages>
:return: package_type tuple list
:rtype: list
"""
package_type = namedtuple(
'package_type', ['packages_section', 'package_section']
)
result = []
if packages_sections:
for packages_section in packages_sections:
package_list = packages_section.get_package()
if package_list:
for package in package_list:
if self.package_matches_host_architecture(package):
result.append(
package_type(
packages_section=packages_section,
package_section=package
)
)
return result
def get_to_become_deleted_packages(self):
"""
List of packages from the type="delete" packages section(s)
:return: package names
:rtype: list
"""
result = []
to_become_deleted_packages_sections = self.get_packages_sections(
['delete']
)
package_list = self.get_package_sections(
to_become_deleted_packages_sections
)
if package_list:
for package in package_list:
result.append(package.package_section.get_name())
return sorted(list(set(result)))
def get_bootstrap_packages_sections(self):
"""
List of packages sections matching type="bootstrap"
:return: <packages>
:rtype: list
"""
return self.get_packages_sections(['bootstrap'])
def get_bootstrap_packages(self):
"""
List of packages from the type="bootstrap" packages section(s)
:return: package names
:rtype: list
"""
result = []
bootstrap_packages_sections = self.get_bootstrap_packages_sections()
package_list = self.get_package_sections(
bootstrap_packages_sections
)
if package_list:
for package in package_list:
result.append(package.package_section.get_name())
return sorted(list(set(result)))
def get_system_packages(self):
"""
List of packages from the packages sections matching
type="image" and type=build_type
:return: package names
:rtype: list
"""
result = []
image_packages_sections = self.get_packages_sections(
['image', self.get_build_type_name()]
)
package_list = self.get_package_sections(
image_packages_sections
)
if package_list:
for package in package_list:
result.append(package.package_section.get_name())
return sorted(list(set(result)))
def get_bootstrap_archives(self):
"""
List of archives from the type="bootstrap" packages section(s)
:return: archive names
:rtype: list
"""
result = []
bootstrap_packages_sections = self.get_bootstrap_packages_sections()
if bootstrap_packages_sections:
for bootstrap_packages_section in bootstrap_packages_sections:
archive_list = bootstrap_packages_section.get_archive()
if archive_list:
for archive in archive_list:
result.append(archive.get_name())
return sorted(result)
def get_system_archives(self):
"""
List of archives from the packages sections matching
type="image" and type=build_type
:return: archive names
:rtype: list
"""
result = []
image_packages_sections = self.get_packages_sections(
['image', self.get_build_type_name()]
)
for packages in image_packages_sections:
for archive in packages.get_archive():
result.append(archive.get_name())
return sorted(result)
def get_collection_type(self, section_type='image'):
"""
Collection type from packages sections matching given section
type.
If no collection type is specified the default collection
type is set to: onlyRequired
:param string section_type: type name from packages section
:return: collection type name
:rtype: string
"""
typed_packages_sections = self.get_packages_sections(
[section_type, self.get_build_type_name()]
)
collection_type = 'onlyRequired'
for packages in typed_packages_sections:
packages_collection_type = packages.get_patternType()
if packages_collection_type:
collection_type = packages_collection_type
break
return collection_type
def get_bootstrap_collection_type(self):
"""
Collection type for packages sections matching type="bootstrap"
:return: collection type name
:rtype: string
"""
return self.get_collection_type('bootstrap')
def get_system_collection_type(self):
"""
Collection type for packages sections matching type="image"
:return: collection type name
:rtype: string
"""
return self.get_collection_type('image')
def get_collections(self, section_type='image'):
"""
List of collection names from the packages sections matching
type=section_type and type=build_type
:return: collection names
:rtype: list
"""
result = []
typed_packages_sections = self.get_packages_sections(
[section_type, self.get_build_type_name()]
)
for packages in typed_packages_sections:
for collection in packages.get_namedCollection():
result.append(collection.get_name())
return list(set(result))
def get_bootstrap_collections(self):
"""
List of collection names from the packages sections
matching type="bootstrap"
:return: collection names
:rtype: list
"""
return self.get_collections('bootstrap')
def get_system_collections(self):
"""
List of collection names from the packages sections
matching type="image"
:return: collection names
:rtype: list
"""
return self.get_collections('image')
def get_products(self, section_type='image'):
"""
List of product names from the packages sections matching
type=section_type and type=build_type
:param string section_type: type name from packages section
:return: product names
:rtype: list
"""
result = []
typed_packages_sections = self.get_packages_sections(
[section_type, self.get_build_type_name()]
)
for packages in typed_packages_sections:
for product in packages.get_product():
result.append(product.get_name())
return list(set(result))
def get_bootstrap_products(self):
"""
List of product names from the packages sections
matching type="bootstrap"
:return: product names
:rtype: list
"""
return self.get_products('bootstrap')
def get_system_products(self):
"""
List of product names from the packages sections
matching type="image"
:return: product names
:rtype: list
"""
return self.get_products('image')
def get_build_type_system_disk_section(self):
"""
First system disk section from the build type section
:return: <systemdisk>
:rtype: xml_parse::systemdisk instance
"""
systemdisk_sections = self.build_type.get_systemdisk()
if systemdisk_sections:
return systemdisk_sections[0]
def get_build_type_pxedeploy_section(self):
"""
First pxedeploy section from the build type section
:return: <pxedeploy>
:rtype: xml_parse::pxedeploy instance
"""
pxedeploy_sections = self.build_type.get_pxedeploy()
if pxedeploy_sections:
return pxedeploy_sections[0]
def get_build_type_machine_section(self):
"""
First machine section from the build type section
:return: <machine>
:rtype: xml_parse::machine instance
"""
machine_sections = self.build_type.get_machine()
if machine_sections:
return machine_sections[0]
def get_build_type_vagrant_config_section(self):
"""
First vagrantconfig section from the build type section
:return: <vagrantconfig>
:rtype: xml_parse::vagrantconfig instance
"""
vagrant_config_sections = self.build_type.get_vagrantconfig()
if vagrant_config_sections:
return vagrant_config_sections[0]
def get_build_type_vmdisk_section(self):
"""
First vmdisk section from the first machine section in the
build type section
:return: <vmdisk>
:rtype: xml_parse::vmdisk instance
"""
machine_section = self.get_build_type_machine_section()
if machine_section:
vmdisk_sections = machine_section.get_vmdisk()
if vmdisk_sections:
return vmdisk_sections[0]
def get_build_type_vmnic_section(self):
"""
First vmnic section from the first machine section in the
build type section
:return: <vmnic>
:rtype: xml_parse::vmnic instance
"""
machine_section = self.get_build_type_machine_section()
if machine_section:
vmnic_sections = machine_section.get_vmnic()
if vmnic_sections:
return vmnic_sections[0]
def get_build_type_vmdvd_section(self):
"""
First vmdvd section from the first machine section in the
build type section
:return: <vmdvd>
:rtype: xml_parse::vmdvd instance
"""
machine_section = self.get_build_type_machine_section()
if machine_section:
vmdvd_sections = machine_section.get_vmdvd()
if vmdvd_sections:
return vmdvd_sections[0]
def get_build_type_vmconfig_entries(self):
"""
List of vmconfig-entry section values from the first
machine section in the build type section
:return: vmconfig_entry values
:rtype: list
"""
machine_section = self.get_build_type_machine_section()
if machine_section:
vmconfig_entries = machine_section.get_vmconfig_entry()
if vmconfig_entries:
return vmconfig_entries
return []
def get_build_type_oemconfig_section(self):
"""
First oemconfig section from the build type section
:return: <oemconfig>
:rtype: xml_parse::oemconfig instance
"""
oemconfig_sections = self.build_type.get_oemconfig()
if oemconfig_sections:
return oemconfig_sections[0]
def get_build_type_containerconfig_section(self):
"""
First containerconfig section from the build type section
:return: <containerconfig>
:rtype: xml_parse::containerconfig instance
"""
container_config_sections = self.build_type.get_containerconfig()
if container_config_sections:
return container_config_sections[0]
def get_build_type_size(self):
"""
Size information from the build type section.
If no unit is set the value is treated as mbytes
:return: mbytes
:rtype: int
"""
size_section = self.build_type.get_size()
if size_section:
unit = size_section[0].get_unit()
additive = size_section[0].get_additive()
value = int(size_section[0].get_valueOf_())
if unit == 'G':
value *= 1024
size_type = namedtuple(
'size_type', ['mbytes', 'additive']
)
return size_type(
mbytes=value, additive=additive
)
def get_volume_group_name(self):
"""
Volume group name from systemdisk section
:return: volume group name
:rtype: string
"""
systemdisk_section = self.get_build_type_system_disk_section()
volume_group_name = None
if systemdisk_section:
volume_group_name = systemdisk_section.get_name()
if not volume_group_name:
volume_group_name = Defaults.get_default_volume_group_name()
return volume_group_name
def get_users(self):
"""
List of configured users.
Each entry in the list is a single xml_parse::user instance.
:return: user data
:rtype: list
"""
users_list = []
users_names_added = []
for users_section in self.get_users_sections():
for user in users_section.get_user():
if user.get_name() not in users_names_added:
users_list.append(user)
users_names_added.append(user.get_name())
return users_list
def get_user_groups(self, user_name):
"""
List of group names matching specified user
Each entry in the list is the name of a group that the specified
user belongs to. The first item in the list is the login or primary
group. The list will be empty if no groups are specified in the
description file.
:return: groups data for the given user
:rtype: list
"""
groups_list = []
for users_section in self.get_users_sections():
for user in users_section.get_user():
if user.get_name() == user_name:
user_groups = user.get_groups()
if user_groups:
groups_list += user.get_groups().split(',')
# order of list items matter, thus we don't use set() here
# better faster, nicer solutions welcome :)
result_group_list = []
for item in groups_list:
if item not in result_group_list:
result_group_list.append(item)
return result_group_list
def get_volumes(self):
"""
List of configured systemdisk volumes.
Each entry in the list is a tuple with the following information
* name: name of the volume
* size: size of the volume
* realpath: system path to lookup volume data. If no mountpoint
is set the volume name is used as data path.
* mountpoint: volume mount point and volume data path
* fullsize: takes all space true|false
* attributes: volume attributes handled via chattr
:return: volume data
:rtype: list
"""
volume_type_list = []
systemdisk_section = self.get_build_type_system_disk_section()
if not systemdisk_section:
return volume_type_list
volume_type = namedtuple(
'volume_type', [
'name',
'size',
'realpath',
'mountpoint',
'fullsize',
'attributes'
]
)
volumes = systemdisk_section.get_volume()
have_root_volume_setup = False
have_full_size_volume = False
if volumes:
for volume in volumes:
# volume setup for a full qualified volume with name and
# mountpoint information. See below for exceptions
name = volume.get_name()
mountpoint = volume.get_mountpoint()
realpath = mountpoint
size = volume.get_size()
freespace = volume.get_freespace()
fullsize = False
attributes = []
if volume.get_copy_on_write() is False:
# by default copy-on-write is switched on for any
# filesystem. Thus only if no copy on write is requested
# the attribute is handled
attributes.append('no-copy-on-write')
if '@root' in name:
# setup root volume, it takes a fixed volume name and
# has no specific mountpoint
mountpoint = None
realpath = '/'
name = 'LVRoot'
have_root_volume_setup = True
elif not mountpoint:
# setup volume without mountpoint. In this case the name
# attribute is used as mountpoint path and a name for the
# volume is created from that path information
mountpoint = name
realpath = mountpoint
name = self._to_volume_name(name)
if size:
size = 'size:' + format(
self._to_mega_byte(size)
)
elif freespace:
size = 'freespace:' + format(
self._to_mega_byte(freespace)
)
else:
size = 'freespace:' + format(
Defaults.get_min_volume_mbytes()
)
if ':all' in size:
size = None
fullsize = True
have_full_size_volume = True
volume_type_list.append(
volume_type(
name=name,
size=size,
fullsize=fullsize,
mountpoint=mountpoint,
realpath=realpath,
attributes=attributes
)
)
if not have_root_volume_setup:
# There must always be a root volume setup. It will be the
# full size volume if no other volume has this setup
if have_full_size_volume:
size = 'freespace:' + format(
Defaults.get_min_volume_mbytes()
)
fullsize = False
else:
size = None
fullsize = True
volume_type_list.append(
volume_type(
name='LVRoot',
size=size,
fullsize=fullsize,
mountpoint=None,
realpath='/',
attributes=[]
)
)
return volume_type_list
def get_volume_management(self):
"""
Provides information which volume management system is used
:return: name of volume manager
:rtype: string
"""
volume_filesystems = ['btrfs']
selected_filesystem = self.build_type.get_filesystem()
selected_system_disk = self.get_build_type_system_disk_section()
volume_management = None
if selected_system_disk and selected_system_disk.get_preferlvm():
# LVM volume management is preferred, use it
volume_management = 'lvm'
elif selected_filesystem in volume_filesystems:
# specified filesystem has its own volume management system
volume_management = selected_filesystem
elif selected_system_disk:
# systemdisk section is specified with non volume capable
# filesystem and no volume management preference. So let's
# use LVM by default
volume_management = 'lvm'
return volume_management
def get_drivers_list(self):
"""
List of driver names from all drivers sections matching
configured profiles
:return: driver names
:rtype: list
"""
drivers_sections = self._profiled(
self.xml_data.get_drivers()
)
result = []
if drivers_sections:
for driver in drivers_sections:
for file_section in driver.get_file():
result.append(file_section.get_name())
return result
def get_strip_list(self, section_type):
"""
List of strip names matching the given section type
and profiles
:param string section_type: type name from packages section
:return: strip names
:rtype: list
"""
strip_sections = self._profiled(
self.xml_data.get_strip()
)
result = []
if strip_sections:
for strip in strip_sections:
if strip.get_type() == section_type:
for file_section in strip.get_file():
result.append(file_section.get_name())
return result
def get_strip_files_to_delete(self):
"""
Items to delete from strip section
:return: items to delete
:rtype: list
"""
return self.get_strip_list('delete')
def get_strip_tools_to_keep(self):
"""
Tools to keep from strip section
:return: tools to keep
:rtype: list
"""
return self.get_strip_list('tools')
def get_strip_libraries_to_keep(self):
"""
Libraries to keep from strip section
:return: libraries to keep
:rtype: list
"""
return self.get_strip_list('libs')
def get_repository_sections(self):
"""
List of all repository sections matching configured profiles
:return: <repository>
:rtype: list
"""
return self._profiled(
self.xml_data.get_repository()
)
def has_repositories_marked_as_imageinclude(self):
"""
Return true if has one or more repository section
marked as imageinclude.
:rtype: bool
"""
repos = self.get_repository_sections()
return bool(list(repo for repo in repos if repo.get_imageinclude()))
def delete_repository_sections(self):
"""
Delete all repository sections matching configured profiles
"""
self.xml_data.set_repository([])
def translate_obs_to_ibs_repositories(self):
"""
Change obs:// repotype to ibs:// type
This will result in pointing to build.suse.de instead of
build.opensuse.org
"""
for repository in self.get_repository_sections():
source_path = repository.get_source()
if 'obs://' in source_path.get_path():
source_path.set_path(
source_path.get_path().replace('obs://', 'ibs://')
)
def translate_obs_to_suse_repositories(self):
"""
Change obs:// repotype to suse:// type
This will result in a local repo path suitable for a
buildservice worker instance
"""
for repository in self.get_repository_sections():
source_path = repository.get_source()
if 'obs://' in source_path.get_path():
source_path.set_path(
source_path.get_path().replace('obs://', 'suse://')
)
def set_repository(self, repo_source, repo_type, repo_alias, repo_prio):
"""
Overwrite repository data of the first repository
:param string repo_source: repository URI
:param string repo_type: type name defined by schema
:param string repo_alias: alias name
:param string repo_prio: priority number, package manager specific
"""
repository_sections = self.get_repository_sections()
if repository_sections:
repository = repository_sections[0]
if repo_alias:
repository.set_alias(repo_alias)
if repo_type:
repository.set_type(repo_type)
if repo_source:
repository.get_source().set_path(repo_source)
if repo_prio:
repository.set_priority(int(repo_prio))
def add_repository(self, repo_source, repo_type, repo_alias, repo_prio):
"""
Add a new repository section at the end of the list
:param string repo_source: repository URI
:param string repo_type: type name defined by schema
:param string repo_alias: alias name
:param string repo_prio: priority number, package manager specific
"""
self.xml_data.add_repository(
xml_parse.repository(
type_=repo_type,
alias=repo_alias,
priority=repo_prio,
source=xml_parse.source(path=repo_source)
)
)
def copy_displayname(self, target_state):
"""
Copy image displayname from this xml state to the target xml state
:param object target_state: XMLState instance
"""
displayname = self.xml_data.get_displayname()
if displayname:
target_state.xml_data.set_displayname(displayname)
def copy_name(self, target_state):
"""
Copy image name from this xml state to the target xml state
:param object target_state: XMLState instance
"""
target_state.xml_data.set_name(
self.xml_data.get_name()
)
def copy_drivers_sections(self, target_state):
"""
Copy drivers sections from this xml state to the target xml state
:param object target_state: XMLState instance
"""
drivers_sections = self._profiled(
self.xml_data.get_drivers()
)
if drivers_sections:
for drivers_section in drivers_sections:
target_state.xml_data.add_drivers(drivers_section)
def copy_systemdisk_section(self, target_state):
"""
Copy systemdisk sections from this xml state to the target xml state
:param object target_state: XMLState instance
"""
systemdisk_section = self.get_build_type_system_disk_section()
if systemdisk_section:
target_state.build_type.set_systemdisk(
[systemdisk_section]
)
def copy_strip_sections(self, target_state):
"""
Copy strip sections from this xml state to the target xml state
:param object target_state: XMLState instance
"""
strip_sections = self._profiled(
self.xml_data.get_strip()
)
if strip_sections:
for strip_section in strip_sections:
target_state.xml_data.add_strip(strip_section)
def copy_machine_section(self, target_state):
"""
Copy machine sections from this xml state to the target xml state
:param object target_state: XMLState instance
"""
machine_section = self.get_build_type_machine_section()
if machine_section:
target_state.build_type.set_machine(
[machine_section]
)
def copy_oemconfig_section(self, target_state):
"""
Copy oemconfig sections from this xml state to the target xml state
:param object target_state: XMLState instance
"""
oemconfig_section = self.get_build_type_oemconfig_section()
if oemconfig_section:
target_state.build_type.set_oemconfig(
[oemconfig_section]
)
def copy_repository_sections(self, target_state, wipe=False):
"""
Copy repository sections from this xml state to the target xml state
:param object target_state: XMLState instance
:param bool wipe: delete all repos in target prior to copy
"""
repository_sections = self._profiled(
self.xml_data.get_repository()
)
if repository_sections:
if wipe:
target_state.xml_data.set_repository([])
for repository_section in repository_sections:
repository_copy = copy.deepcopy(repository_section)
# profiles are not copied because they might not exist
# in the target description
repository_copy.set_profiles(None)
target_state.xml_data.add_repository(repository_copy)
def copy_preferences_subsections(self, section_names, target_state):
"""
Copy subsections of the preferences sections, matching given
section names, from this xml state to the target xml state
:param list section_names: preferences subsection names
:param object target_state: XMLState instance
"""
target_preferences_sections = target_state.get_preferences_sections()
if target_preferences_sections:
target_preferences_section = target_preferences_sections[0]
for preferences_section in self.get_preferences_sections():
for section_name in section_names:
get_section_method = getattr(
preferences_section, 'get_' + section_name
)
section = get_section_method()
if section:
set_section_method = getattr(
target_preferences_section, 'set_' + section_name
)
set_section_method(section)
def copy_build_type_attributes(self, attribute_names, target_state):
"""
Copy specified attributes from this build type section to the
target xml state build type section
:param list attribute_names: type section attributes
:param object target_state: XMLState instance
"""
for attribute in attribute_names:
get_type_method = getattr(
self.build_type, 'get_' + attribute
)
attribute_value = get_type_method()
if attribute_value:
set_type_method = getattr(
target_state.build_type, 'set_' + attribute
)
set_type_method(attribute_value)
def copy_bootincluded_packages(self, target_state):
"""
Copy packages marked as bootinclude to the packages type=bootstrap
section in the target xml state. The package will also be removed
from the packages type=delete section in the target xml state
if present there
:param object target_state: XMLState instance
"""
target_bootstrap_packages_sections = \
target_state.get_bootstrap_packages_sections()
if target_bootstrap_packages_sections:
target_bootstrap_packages_section = \
target_bootstrap_packages_sections[0]
package_names_added = []
packages_sections = self.get_packages_sections(
['image', 'bootstrap', self.get_build_type_name()]
)
package_list = self.get_package_sections(
packages_sections
)
if package_list:
for package in package_list:
if package.package_section.get_bootinclude():
target_bootstrap_packages_section.add_package(
xml_parse.package(
name=package.package_section.get_name()
)
)
package_names_added.append(
package.package_section.get_name()
)
delete_packages_sections = target_state.get_packages_sections(
['delete']
)
package_list = self.get_package_sections(
delete_packages_sections
)
if package_list:
for package in package_list:
package_name = package.package_section.get_name()
if package_name in package_names_added:
package.packages_section.package.remove(
package.package_section
)
def copy_bootincluded_archives(self, target_state):
"""
Copy archives marked as bootinclude to the packages type=bootstrap
section in the target xml state
:param object target_state: XMLState instance
"""
target_bootstrap_packages_sections = \
target_state.get_bootstrap_packages_sections()
if target_bootstrap_packages_sections:
target_bootstrap_packages_section = \
target_bootstrap_packages_sections[0]
packages_sections = self.get_packages_sections(
['image', 'bootstrap', self.get_build_type_name()]
)
for packages_section in packages_sections:
archive_list = packages_section.get_archive()
if archive_list:
for archive in archive_list:
if archive.get_bootinclude():
target_bootstrap_packages_section.add_archive(
xml_parse.archive(
name=archive.get_name()
)
)
def copy_bootdelete_packages(self, target_state):
"""
Copy packages marked as bootdelete to the packages type=delete
section in the target xml state
:param object target_state: XMLState instance
"""
target_delete_packages_sections = target_state.get_packages_sections(
['delete']
)
if not target_delete_packages_sections:
target_delete_packages_sections = [
xml_parse.packages(type_='delete')
]
target_state.xml_data.add_packages(
target_delete_packages_sections[0]
)
target_delete_packages_section = \
target_delete_packages_sections[0]
packages_sections = self.get_packages_sections(
['image', 'bootstrap', self.get_build_type_name()]
)
package_list = self.get_package_sections(
packages_sections
)
if package_list:
for package in package_list:
if package.package_section.get_bootdelete():
target_delete_packages_section.add_package(
xml_parse.package(
name=package.package_section.get_name()
)
)
def get_distribution_name_from_boot_attribute(self):
"""
Extract the distribution name from the boot attribute of the
build type section.
If no boot attribute is configured or the contents does not
match the kiwi defined naming schema for boot image descriptions,
an exception is thrown
:return: lowercase distribution name
:rtype: string
"""
boot_attribute = self.build_type.get_boot()
if not boot_attribute:
raise KiwiDistributionNameError(
'No boot attribute to extract distribution name from found'
)
boot_attribute_format = '^.*-(.*)$'
boot_attribute_expression = re.match(
boot_attribute_format, boot_attribute
)
if not boot_attribute_expression:
raise KiwiDistributionNameError(
'Boot attribute "%s" does not match expected format %s' %
(boot_attribute, boot_attribute_format)
)
return boot_attribute_expression.group(1).lower()
def get_fs_mount_option_list(self):
"""
List of root filesystem mount options
The list contains one element with the information from the
fsmountoptions attribute. The value there is passed along to
the -o mount option
:return: max one element list with mount option string
:rtype: list
"""
option_list = []
mount_options = self.build_type.get_fsmountoptions()
if mount_options:
option_list = [mount_options]
return option_list
def _used_profiles(self, profiles=None):
"""
return list of profiles to use. The method looks up the
profiles section in the XML description and searches for
profiles marked with import=true. Profiles specified in
the argument list of this method will take the highest
priority and causes to skip the lookup of import profiles
in the XML description
"""
profile_names = []
import_profiles = []
profiles_section = self.xml_data.get_profiles()
if profiles_section:
for profile in profiles_section[0].get_profile():
name = profile.get_name()
profile_names.append(name)
if profile.get_import():
import_profiles.append(name)
if not profiles:
return import_profiles
else:
for profile in profiles:
if profile not in profile_names:
raise KiwiProfileNotFound(
'profile %s not found' % profile
)
return profiles
def _build_type_section(self, build_type=None):
"""
find type section matching build type and profiles or default
"""
# lookup all preferences sections for selected profiles
image_type_sections = []
for preferences in self.get_preferences_sections():
image_type_sections += preferences.get_type()
# lookup if build type matches provided type
if build_type:
for image_type in image_type_sections:
if build_type == image_type.get_image():
return image_type
raise KiwiTypeNotFound(
'build type %s not found' % build_type
)
# lookup if build type matches primary type
for image_type in image_type_sections:
if image_type.get_primary():
return image_type
# build type is first type section in XML sequence
if image_type_sections:
return image_type_sections[0]
def _profiled(self, xml_abstract):
"""
return only those sections matching the instance stored
profile list from the given XML abstract. Sections without
a profile are wildcard sections and will be used in any
case
"""
result = []
for section in xml_abstract:
profiles = section.get_profiles()
if profiles:
for profile in profiles.split(','):
if self.profiles and profile in self.profiles:
result.append(section)
break
else:
result.append(section)
return result
def _to_volume_name(self, name):
"""
build a valid volume name
"""
name = name.strip()
name = re.sub(r'^\/+', r'', name)
name = name.replace('/', '_')
return name
def _to_mega_byte(self, size):
value = re.search('(\d+)([MG]*)', format(size))
if value:
number = value.group(1)
unit = value.group(2)
if unit == 'G':
return int(number) * 1024
else:
return int(number)
else:
return size