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
  • Loading branch information
mabw-rte committed Oct 15, 2024
1 parent 9d8371a commit 6eb6359
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 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,15 @@

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 str(path).endswith(
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 +100,8 @@ 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 6eb6359

Please sign in to comment.