Source code for aiida_fleur.parsers.fleur_inputgen

# -*- coding: utf-8 -*-
###############################################################################
# Copyright (c), Forschungszentrum Jülich GmbH, IAS-1/PGI-1, Germany.         #
#                All rights reserved.                                         #
# This file is part of the AiiDA-FLEUR package.                               #
#                                                                             #
# The code is hosted on GitHub at https://github.com/JuDFTteam/aiida-fleur    #
# For further information on the license, see the LICENSE.txt file            #
# For further information please visit http://www.flapw.de or                 #
# http://aiida-fleur.readthedocs.io/en/develop/                               #
###############################################################################
"""
This module contains the parser for a inpgen calculation and methods for
parsing different files produced by inpgen.
"""

from __future__ import absolute_import

from aiida.parsers import Parser
from aiida.common.exceptions import NotExistent, InputValidationError, ValidationError

from aiida_fleur.data.fleurinp import FleurinpData
from aiida_fleur.calculation.fleurinputgen import FleurinputgenCalculation


[docs]class Fleur_inputgenParser(Parser): """ This class is the implementation of the Parser class for the FLEUR inpgen. It takes the files received from an inpgen calculation and creates AiiDA nodes for the Database. From the inp.xml file a FleurinpData object is created, also some information from the out file is stored in a ParameterData node. """ _setting_key = 'parser_options' def __init__(self, node): """ Initialize the instance of Fleur_inputgenParser """ super(Fleur_inputgenParser, self).__init__(node) # these files should be at least present after success of inpgen self._default_files = {FleurinputgenCalculation._OUTPUT_FILE_NAME, FleurinputgenCalculation._INPXML_FILE_NAME} self._other_files = {FleurinputgenCalculation._SHELLOUT_FILE_NAME}
[docs] def parse(self, **kwargs): """ Takes inp.xml generated by inpgen calculation and created an FleurinpData node. :return: a dictionary of AiiDA nodes to be stored in the database. """ try: output_folder = self.retrieved except NotExistent: self.logger.error('No retrieved folder found') return self.exit_codes.ERROR_NO_RETRIEVED_FOLDER # check what is inside the folder list_of_files = output_folder.list_object_names() self.logger.info('file list {}'.format(list_of_files)) errorfile = FleurinputgenCalculation._ERROR_FILE_NAME if errorfile in list_of_files: try: with output_folder.open(errorfile, 'r') as error_file: error_file_lines = error_file.read() except IOError: self.logger.error('Failed to open error file: {}.'.format(errorfile)) return self.exit_codes.ERROR_OPENING_OUTPUTS # if not empty, has_error equals True, parse error. if error_file_lines: self.logger.error("The following was written to the error file {} : \n '{}'" ''.format(errorfile, error_file_lines)) inpxml_file = FleurinputgenCalculation._INPXML_FILE_NAME if inpxml_file not in list_of_files: self.logger.error("XML inp not found '{}'".format(inpxml_file)) return self.exit_codes.ERROR_NO_INPXML for file1 in self._default_files: if file1 not in list_of_files: self.logger.error("'{}' file not found in retrived folder, it was probably " 'not created by inpgen'.format(file1)) return self.exit_codes.ERROR_MISSING_RETRIEVED_FILES try: fleurinp = FleurinpData(files=[inpxml_file], node=output_folder) except InputValidationError as ex: self.logger.error('FleurinpData initialization failed: {}'.format(str(ex))) return self.exit_codes.ERROR_FLEURINPDATA_INPUT_NOT_VALID except ValidationError as ex: self.logger.error('FleurinpData validation failed: {}'.format(str(ex))) return self.exit_codes.ERROR_FLEURINPDATA_NOT_VALID self.logger.info('FleurinpData initialized') self.out('fleurinpData', fleurinp)