Skip to content
XmlFile.py 2.13 KiB
Newer Older
####################################################################################################
#
Fabrice Salvaire's avatar
Fabrice Salvaire committed
# Patro - A Python library to make patterns for fashion design
# Copyright (C) 2017 Fabrice Salvaire
#
# This program 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.
#
# This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
#
####################################################################################################

####################################################################################################

import logging

from lxml import etree

####################################################################################################

_module_logger = logging.getLogger(__name__)

####################################################################################################

class XmlFileMixin:

Fabrice Salvaire's avatar
Fabrice Salvaire committed
    """Class mixin to parse a XML file using lxml module"""

    # _logger = _module_logger.getChild('XmlFile')

    ##############################################

    def __init__(self, path):

    ##############################################

    @property
    def path(self):
        return self._path

    ##############################################

    def _parse(self):
Fabrice Salvaire's avatar
Fabrice Salvaire committed
        """Parse a XML file and return the etree"""
        with open(str(self._path), 'rb') as f:
            source = f.read()
        return etree.fromstring(source)

    ##############################################

    @staticmethod
    def _get_xpath_element(root, path):
Fabrice Salvaire's avatar
Fabrice Salvaire committed
        """Utility function to get an element from a xpath and a root"""
        return root.xpath(path)[0]