summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-21 17:56:52 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-21 17:56:52 -0600
commitb25c7e31eadd82addd528e5d78c4857a83c9f87a (patch)
tree5c300c3b86881e17fdb002a46691ac7ca6ecfe2a /methods.py
parent579c19a9ce15eca504b3e07be72b7e0c5fd4c383 (diff)
parent31c8aadc47170abce59226cf5b4ca547a7636f7b (diff)
downloadredot-engine-b25c7e31eadd82addd528e5d78c4857a83c9f87a.tar.gz
Merge pull request #99501 from AThousandShips/fix_cache_time
[Buildsystem] Prevent cache check mangling access time
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/methods.py b/methods.py
index 225ea21211..203f0dd8a5 100644
--- a/methods.py
+++ b/methods.py
@@ -863,16 +863,21 @@ def clean_cache(cache_path: str, cache_limit: int, verbose: bool):
texts = []
stats = []
for file in files:
- # Failing a utf-8 decode is the easiest way to determine if a file is binary.
try:
- with open(file, encoding="utf-8") as out:
- out.read(1024)
- except UnicodeDecodeError:
- stats.append((file, *os.stat(file)[6:8]))
+ # Save file stats to rewrite after modifying.
+ tmp_stat = os.stat(file)
+ # Failing a utf-8 decode is the easiest way to determine if a file is binary.
+ try:
+ with open(file, encoding="utf-8") as out:
+ out.read(1024)
+ except UnicodeDecodeError:
+ stats.append((file, *tmp_stat[6:8]))
+ # Restore file stats after reading.
+ os.utime(file, (tmp_stat[7], tmp_stat[8]))
+ else:
+ texts.append(file)
except OSError:
print_error(f'Failed to access cache file "{file}"; skipping.')
- else:
- texts.append(file)
if texts:
count = len(texts)