Source code for gemseo.utils.source_parsing

# -*- coding: utf-8 -*-
# Copyright 2021 IRT Saint Exupéry, https://www.irt-saintexupery.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 3 as published by the Free Software Foundation.
#
# 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

# Contributors:
#    INITIAL AUTHORS - initial API and implementation and/or
#                      initial documentation
#        :author:  Francois Gallard
#    OTHER AUTHORS   - MACROSCOPIC CHANGES

"""Parse source code to extract information."""

from __future__ import division, unicode_literals

import inspect
import re
from typing import Callable, Dict

from gemseo.utils.py23_compat import getargspec


[docs]def get_options_doc( method, # type: Callable ): # type: (...) -> Dict[str, str] """Get the documentation of a method. Args: method: The method to retrieve the doc from. Returns: The descriptions of the options. """ # the docstring has all the leading and common white spaces removed docstring = inspect.getdoc(method) if docstring is None: raise ValueError("Empty doc for {}".format(method)) for parse in (parse_google, parse_rest): parsed_docstring = parse(docstring) if parsed_docstring: return parsed_docstring raise ValueError( "The docstring of the arguments is malformed: " "please use Google style docstrings" )
[docs]def get_default_options_values( cls, ): # type: (...) -> Dict[str, str] """Get the options default values for the given class, by only addressing kwargs. Args: cls: The class. """ args, _, _, defaults = getargspec(cls.__init__) if "self" in args: args.remove("self") n_def = len(defaults) return {args[-n_def:][i]: defaults[i] for i in range(n_def)}
[docs]def parse_rest( docstring, # type: str ): # type: (...) -> Dict[str, str] """Parse a reST docstring. Args: docstring: The docstring to be parsed. Returns: The parsed docstring. """ pattern = r":param ([\*\w]+): (.*?)(?:(?=:param)|(?=:return)|\Z)" param_re = re.compile(pattern, re.S) doc_list = param_re.findall(docstring) parsed_doc = {txt[0]: txt[1].replace(" " * 4, "").rstrip("\n") for txt in doc_list} parsed_doc = { name: description.replace(" ", " ").replace("\n", " ").replace(" ", "\n\n") for name, description in parsed_doc.items() } return parsed_doc
# regex pattern for finding the arguments section of a google docstring # doc_inherit.DocInheritMeta replaces the section title "Args" with "Parameters" RE_PATTERN_ARGS_SECTION = re.compile( r"(?:Args|Parameters)\s*:\s*\n(.*?)(?:Returns:|Raises:|$)", flags=re.DOTALL ) # regex pattern for finding the arguments names and description of a google docstring RE_PATTERN_ARGS = re.compile( r"\**(\w+)\s*:\s*(.*?)(?:$|(?=\n\**\w+\s*:))", flags=re.DOTALL )
[docs]def parse_google( docstring, # type: str ): # type: (...) -> Dict[str, str] """Parse a Google docstring. Args: docstring: The docstring to be parsed. Returns: The parsed docstring with the function arguments names bound to their descriptions. """ args_sections = RE_PATTERN_ARGS_SECTION.findall(docstring) if len(args_sections) != 1: # This is not a google docstring return {} # remove leading common blank spaces args_section = inspect.cleandoc(args_sections[0]) parsed_doc = {} for name, desc in RE_PATTERN_ARGS.findall(args_section): # remove multiple blank spaces and carriage returns parsed_doc[name] = re.sub(r"\s+", " ", desc).strip() return parsed_doc