kiwi-el8/kiwi/xml_description.py
Marcus Schäfer 9618a5189d
Fixed parse result description reference
The object that holds the parse result also contains an
information about description_dir and derived_description_dir.
The change on the markup processing impacted the value for
description_dir to be no longer the origin (user provided)
directory. That broke any reference of files that belongs
to the description directory like custom scripts config.sh,
images.sh and so on.
2020-05-22 14:31:43 +02:00

239 lines
8.7 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 os
import logging
from xml.dom import minidom
from lxml import (
etree,
isoschematron
)
from tempfile import NamedTemporaryFile
# project
from kiwi.markup import Markup
from kiwi.defaults import Defaults
from kiwi import xml_parse
from kiwi.command import Command
from kiwi.exceptions import (
KiwiSchemaImportError,
KiwiValidationError,
KiwiDescriptionInvalid,
KiwiDataStructureError,
KiwiDescriptionConflict,
KiwiExtensionError,
KiwiCommandNotFound
)
log = logging.getLogger('kiwi')
class XMLDescription:
"""
**Implements data management for the image description**
Supported description markup languages are XML, YAML, JSON and INI.
The provided input file is converted into XML, transformed to the
current RelaxNG schema via XSLT and validated against this result.
* XSLT Style Sheet processing to apply on this version of kiwi
* Schema Validation based on RelaxNG schema
* Loading XML data into internal data structures
Attributes
:param string description: path to description file
:param string derived_from: path to base description file
:param string xml_content: XML description data as content string
"""
def __init__(self, description=None, derived_from=None, xml_content=None):
if description and xml_content:
raise KiwiDescriptionConflict(
'description and xml_content are mutually exclusive'
)
self.markup = Markup(description or xml_content)
self.description = self.markup.get_xml_description()
self.derived_from = derived_from
self.description_origin = description
self.extension_data = {}
def load(self): # noqa C901
"""
Read XML description, validate it against the schema
and the schematron rules and pass it to the
autogenerated(generateDS) parser.
:return: instance of XML toplevel domain (image)
:rtype: object
"""
try:
schema_doc = etree.parse(Defaults.get_schema_file())
relaxng = etree.RelaxNG(schema_doc)
schematron = isoschematron.Schematron(
schema_doc, store_report=True
)
except Exception as issue:
raise KiwiSchemaImportError(issue)
try:
description = etree.parse(self.description)
validation_rng = relaxng.validate(description)
validation_schematron = schematron.validate(description)
except Exception as issue:
raise KiwiValidationError(issue)
if not validation_rng:
self._get_relaxng_validation_details(
Defaults.get_schema_file(),
self.description
)
if not validation_schematron:
self._get_schematron_validation_details(
schematron.validation_report
)
if not validation_rng or not validation_schematron:
raise KiwiDescriptionInvalid(
'Failed to validate schema and/or schematron rules'
)
parse_result = self._parse()
if parse_result.get_extension():
extension_namespace_map = \
description.getroot().xpath('extension')[0].nsmap
for namespace_name in extension_namespace_map:
extensions_for_namespace = description.getroot().xpath(
'extension/{namespace}:*'.format(namespace=namespace_name),
namespaces=extension_namespace_map
)
if extensions_for_namespace:
# one toplevel entry point per extension via xmlns
if len(extensions_for_namespace) > 1:
raise KiwiExtensionError(
'Multiple toplevel sections for "{0}" found'.format(
namespace_name
)
)
# store extension xml data parse tree for this namespace
self.extension_data[namespace_name] = \
etree.ElementTree(extensions_for_namespace[0])
# validate extension xml data
try:
xml_catalog = Command.run(
[
'xmlcatalog', '/etc/xml/catalog',
extension_namespace_map[namespace_name]
]
)
extension_schema = xml_catalog.output.rstrip().replace(
'file://', ''
)
extension_relaxng = etree.RelaxNG(
etree.parse(extension_schema)
)
except Exception as issue:
raise KiwiExtensionError(
'Extension schema error: {0}'.format(issue)
)
validation_result = extension_relaxng.validate(
self.extension_data[namespace_name]
)
if not validation_result:
xml_data_unformatted = etree.tostring(
self.extension_data[namespace_name],
encoding='utf-8'
)
xml_data_domtree = minidom.parseString(
xml_data_unformatted
)
extension_file = NamedTemporaryFile()
with open(extension_file.name, 'w') as xml_data:
xml_data.write(xml_data_domtree.toprettyxml())
self._get_relaxng_validation_details(
extension_schema, extension_file.name
)
raise KiwiExtensionError(
'Schema validation for extension XML data failed'
)
return parse_result
def get_extension_xml_data(self, namespace_name):
"""
Return the xml etree parse result for the specified extension namespace
:param string namespace_name: name of the extension namespace
:return: result of etree.parse
:rtype: object
"""
if namespace_name in self.extension_data:
return self.extension_data[namespace_name]
def _get_relaxng_validation_details(self, schema_file, description_file):
"""
Run jing program to validate description against the schema
Jing provides detailed error information in case of a schema
validation failure
"""
try:
cmd = Command.run(
['jing', schema_file, description_file],
raise_on_error=False
)
except KiwiCommandNotFound as issue:
log.info(
'For detailed schema validation report, please install: jing'
)
log.info(
'{0}: {1}: {2}'.format('jing', type(issue).__name__, issue)
)
return
log.info('RelaxNG validation failed. See jing report:')
log.info('--> %s', cmd.output)
def _get_schematron_validation_details(self, validation_report):
"""
Extract error message form the schematron validation report
:param etree validation_report: the schematron validation report
"""
nspaces = validation_report.getroot().nsmap
log.info('Schematron validation failed:')
for msg in validation_report.xpath(
'//svrl:failed-assert/svrl:text', namespaces=nspaces
):
log.info('--> %s', msg.text)
def _parse(self):
try:
parse = xml_parse.parse(
self.description, True
)
parse.description_dir = self.description_origin and os.path.dirname(
self.description_origin
)
parse.derived_description_dir = self.derived_from
return parse
except Exception as issue:
raise KiwiDataStructureError(issue)