-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcache_handler.py
72 lines (57 loc) · 2.61 KB
/
cache_handler.py
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
66
67
68
69
70
71
72
"""Cache handler module for AWS Security Group Mapper."""
import json
import time
from pathlib import Path
from typing import Dict, Optional, List
from config import CACHE_DIR, CACHE_DURATION
from utils import logger
class CacheHandler:
"""Handle caching of security group data."""
def __init__(self) -> None:
"""Initialize cache handler and create cache directory if needed."""
self.cache_dir = CACHE_DIR
self._ensure_cache_dir()
def _ensure_cache_dir(self) -> None:
"""Create cache directory if it doesn't exist."""
self.cache_dir.mkdir(parents=True, exist_ok=True)
def _get_cache_path(self, profile: str, region: str) -> Path:
"""Generate cache file path for given profile and region."""
return self.cache_dir / f"{profile}_{region}_sg_cache.json"
def get_cached_data(self, profile: str, region: str) -> Optional[List[Dict]]:
"""Retrieve cached security group data if valid."""
cache_path = self._get_cache_path(profile, region)
if not cache_path.exists():
return None
try:
with open(cache_path, "r", encoding="utf-8") as f:
cache_data = json.load(f)
if time.time() - cache_data["timestamp"] > CACHE_DURATION:
logger.debug("Cache expired")
return None
return cache_data["data"]
except Exception as e:
logger.error("Error reading cache: %s", str(e))
return None
def save_to_cache(self, profile: str, region: str, data: List[Dict]) -> None:
"""Save security group data to cache."""
cache_path = self._get_cache_path(profile, region)
try:
cache_data = {"timestamp": time.time(), "data": data}
with open(cache_path, "w", encoding="utf-8") as f:
json.dump(cache_data, f)
logger.debug("Data cached successfully for %s in %s", profile, region)
except Exception as e:
logger.error("Error saving to cache: %s", str(e))
def clear_cache(
self, profile: Optional[str] = None, region: Optional[str] = None
) -> None:
"""Clear cache files for specified profile and region, or all if not specified."""
if profile and region:
cache_path = self._get_cache_path(profile, region)
if cache_path.exists():
cache_path.unlink()
logger.info("Cleared cache for %s in %s", profile, region)
else:
for cache_file in self.cache_dir.glob("*_sg_cache.json"):
cache_file.unlink()
logger.info("Cleared all cache files")