Skip to content

Commit

Permalink
feat(upgrade): add a function identifying upgrade temporary directo…
Browse files Browse the repository at this point in the history
…ries (#23)
  • Loading branch information
mabw-rte authored Oct 16, 2024
1 parent 9d8371a commit 9067a18
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/antares/study/version/upgrade_app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@

logger = logging.getLogger(__name__)

UPGRADE_TEMPORARY_DIR_SUFFIX = ".upgrade.tmp"
UPGRADE_TEMPORARY_DIR_PREFIX = "~"


def is_temporary_upgrade_dir(path: Path) -> bool:
"""Check if a directory is a temporary upgrade directory."""
return (
path.name.startswith(UPGRADE_TEMPORARY_DIR_PREFIX)
and "".join(path.suffixes[-2:]) == UPGRADE_TEMPORARY_DIR_SUFFIX
and path.is_dir()
)


def filter_out_child_files(files: t.Collection[str]) -> t.List[str]:
"""
Expand Down Expand Up @@ -91,7 +103,9 @@ def should_denormalize(self) -> bool:
return any(meth.should_denormalize for meth in self.upgrade_methods)

def __call__(self) -> None:
with tempfile.TemporaryDirectory(suffix=".upgrade.tmp", prefix="~", dir=self.study_dir.parent) as path:
with tempfile.TemporaryDirectory(
suffix=UPGRADE_TEMPORARY_DIR_SUFFIX, prefix=UPGRADE_TEMPORARY_DIR_PREFIX, dir=self.study_dir.parent
) as path:
tmp_path = Path(path)

# Prepare the upgrade
Expand Down

0 comments on commit 9067a18

Please sign in to comment.