Source code for gemseo.utils.run_folder_manager

# 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.
"""Tools for unique run folder name generation."""
from __future__ import annotations

from ast import literal_eval
from multiprocessing import Lock
from multiprocessing import Value
from pathlib import Path
from uuid import uuid4

from strenum import StrEnum


FoldersIter = StrEnum("FoldersIter", "NUMBERED UUID")


[docs]class RunFolderManager: """Class generating unique names for run folders.""" __counter: Value """The number of existing run folders.""" __output_folder_basepath: Path """The absolute path of the root folder of the run folders.""" __lock: Lock """The non-recursive lock object.""" _folders_iter: FoldersIter """The type of unique identifiers for the output folders.""" def __init__( self, output_folder_basepath: str | Path = "", folders_iter: FoldersIter = FoldersIter.NUMBERED, ) -> None: """ Args: output_folder_basepath: The path the root folder of the run folders. If ``""`` is passed then use the current working directory. folders_iter: The type of unique identifiers for the output folders. If :attr:`~.FoldersIter.NUMBERED`, the generated output folders will be ``f"output_folder_basepath{i+1}"``, where ``i`` is the maximum value of the already existing ``f"output_folder_basepath{i}"`` folders. Otherwise, a unique number based on the UUID function is generated. This last option shall be used if multiple MDO processes are run in the same work folder. """ # noqa:D205 D212 D415 self.__output_folder_basepath = ( Path.cwd() if output_folder_basepath == "" else Path(output_folder_basepath).absolute().resolve() ) self._folders_iter = folders_iter if folders_iter == FoldersIter.NUMBERED: self.__lock = Lock() self.__counter = Value("i", self.__get_max_outdir()) else: self.__counter = 1
[docs] def get_unique_run_folder_path(self) -> Path: """Generate a unique folder path for the run folder. Returns: A unique Path to be used as run folder. """ return self.__output_folder_basepath / self.__generate_uid()
def __generate_uid(self) -> str: """Generate a unique identifier for the execution folder. Generate a unique identifier for the current execution. If the _folders_iter strategy is :attr:`~.FoldersIter.NUMBERED`, the successive iterations are named by an integer 1, 2, 3 etc. This is multiprocess safe. Otherwise, a unique number based on the UUID function is generated. This last option shall be used if multiple MDO processes are run in the same workdir. Returns: An unique string identifier (either a number or a UUID). Raises: ValueError: If ``_folders_iter`` is not a :class:`.FoldersIter` object. """ if self._folders_iter == FoldersIter.NUMBERED: with self.__lock: self.__counter.value += 1 return str(self.__counter.value) elif self._folders_iter == FoldersIter.UUID: return str(uuid4()).split("-")[-1] raise ValueError( f"{self._folders_iter} is not a valid method " "for creating the execution folders." ) def __get_max_outdir(self) -> int: """Get the maximum current index of output folders. Different files or directories can be contained in the ``output_folder_basepath``. Returns: The maximum index in the output folders. """ # Only keep directories which are a number. out_dirs = [ path.name for path in self.__output_folder_basepath.iterdir() if path.is_dir() and path.name.isdigit() ] if not out_dirs: return 0 return max(literal_eval(n) for n in out_dirs)