1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
import os
from pathlib import Path
from ._error import CruException
from ._path import CruPath
class CruApplication:
def __init__(self, name: str) -> None:
self._name = name
class ApplicationPathError(CruException):
def __init__(self, message, _path: Path, *args, **kwargs):
super().__init__(message, *args, **kwargs)
self._path = _path
@property
def path(self) -> Path:
return self._path
class ApplicationPath:
def __init__(self, p: str | Path, is_dir: bool) -> None:
self._path = CruPath(p)
self._is_dir = is_dir
@property
def path(self) -> CruPath:
return self._path
@property
def is_dir(self) -> bool:
return self._is_dir
def check_parents(self, must_exist: bool = False) -> bool:
return self._path.check_parents_dir(must_exist)
def check_self(self, must_exist: bool = False) -> bool:
if not self.check_parents(must_exist):
return False
if not self.path.exists():
if not must_exist:
return False
raise ApplicationPathError("Not exist.", self.path)
if self.is_dir:
if not self.path.is_dir():
raise ApplicationPathError("Should be a directory, but not.", self.path)
else:
return False
else:
if not self.path.is_file():
raise ApplicationPathError("Should be a file, but not.", self.path)
else:
return False
def ensure(self, create_file: bool = False) -> None:
e = self.check_self(False)
if not e:
os.makedirs(self.path.parent, exist_ok=True)
if self.is_dir:
os.mkdir(self.path)
elif create_file:
with open(self.path, "w") as f:
f.write("")
|