Source code for gemseo.core.grammars.factory

# -*- 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, Matthias De Lozzo
#    OTHER AUTHORS   - MACROSCOPIC CHANGES
"""A factory to instantiate a derived class of :class:`.AbstractGrammar`."""
from __future__ import division, unicode_literals

import logging
from typing import List

from gemseo.core.factory import Factory
from gemseo.core.grammars.abstract_grammar import AbstractGrammar

LOGGER = logging.getLogger(__name__)


[docs]class GrammarFactory(object): """A factory of :class:`.AbstractGrammar`.""" def __init__(self): # type: (...) -> None self.__factory = Factory(AbstractGrammar, ("gemseo.core.grammars",))
[docs] def create( self, class_name, # type: str name, # type: str **options ): # type: (...) -> AbstractGrammar """Create a grammar. Args: class_name: The name of a class deriving from :class:`.AbstractGrammar`. name: The name to be given to the grammar. **options: The options to be passed to the initialization. """ return self.__factory.create(class_name, name=name, **options)
@property def grammars(self): # type: (...) -> List[str] """The sorted names of the available grammars.""" return self.__factory.classes
[docs] def is_available(self, class_name): # type: (...) -> bool """Return whether a grammar class exists. Args: class_name: The name of a class deriving from :class:`.AbstractGrammar`. Returns: Whether the grammar class exists. """ return self.__factory.is_available(class_name)