Spaces:
Runtime error
Runtime error
File size: 14,460 Bytes
c7b4c40 b5bd850 c7b4c40 b5bd850 c7b4c40 a34989b c7b4c40 b5bd850 c7b4c40 b5bd850 c7b4c40 b5bd850 c7b4c40 b5bd850 | 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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | # services/data/cache.py
"""
TTL Cache Service - File-Based Caching for Web Scraping
This module provides a simple, file-based caching system with TTL (time-to-live)
functionality to reduce load on websites and improve response times for
web scraping operations.
Purpose:
- Cache expensive web scraping operations with configurable TTL
- Reduce load on OMIRL and other websites (respectful scraping)
- Improve tool response times for repeated queries
- Handle cache invalidation and cleanup
- Store both scraped data and metadata
Implementation:
- File-based storage in data/cache/ directory
- JSON serialization for simple data structures
- Atomic writes to prevent corruption
- Automatic cleanup of expired entries
- Cache key generation from tool + task + optional params
Called by:
- tools/omirl/: Caches OMIRL scraping results
- Future: Any tool needing to cache web scraping operations
Dependencies:
- None from other services/* modules (independent utility)
- Standard library only (os, time, json, hashlib, pathlib)
Main Function:
get_cached(tool, task, data_fn, ttl, **params) -> Any
Cache Strategy:
- Default 15-minute TTL for live data (emergency management needs freshness)
- Longer TTL for static reference data
- Cache invalidation on scraping errors
- Separate cache for screenshots/artifacts
Web Scraping Considerations:
- Cache key includes tool, task, and optional parameters
- Invalidate cache if website structure changes detected
- Store scraping metadata (timestamp, source URL, warnings)
- Balance freshness needs vs. website load reduction
"""
import json
import hashlib
import time
import asyncio
import inspect
from pathlib import Path
from typing import Any, Callable, Dict, Optional
from datetime import datetime
class CacheService:
"""
Simple file-based caching service with TTL support.
Thread-safe for single-process use. For multi-process scenarios,
consider file locking or a proper cache like Redis.
"""
def __init__(self, cache_dir: str = "data/cache"):
"""
Initialize cache service.
Args:
cache_dir: Directory to store cache files (relative to project root)
"""
self.cache_dir = Path(cache_dir)
self.cache_dir.mkdir(parents=True, exist_ok=True)
def _generate_cache_key(self, tool: str, task: str, **params) -> str:
"""
Generate a unique cache key from tool, task, and parameters.
Args:
tool: Tool name (e.g., "omirl")
task: Task name (e.g., "livelli_idrometrici")
**params: Optional parameters to include in cache key
Returns:
Hex string cache key
"""
# Create a deterministic string from inputs
key_parts = [tool, task]
# Add sorted params for deterministic key
if params:
sorted_params = sorted(params.items())
key_parts.extend([f"{k}={v}" for k, v in sorted_params])
key_string = "|".join(key_parts)
# Hash for filesystem-safe key
return hashlib.md5(key_string.encode()).hexdigest()
def _get_cache_path(self, cache_key: str) -> Path:
"""Get the file path for a cache key."""
return self.cache_dir / f"{cache_key}.json"
def get_cached(
self,
tool: str,
task: str,
data_fn: Callable[[], Any],
ttl: int = 900, # 15 minutes default
**params
) -> Dict[str, Any]:
"""
Get cached data or fetch fresh data if cache is expired/missing.
Args:
tool: Tool name (e.g., "omirl")
task: Task name (e.g., "livelli_idrometrici")
data_fn: Function to call if cache miss (must return dict-serializable data)
ttl: Time-to-live in seconds (default: 900 = 15 minutes)
**params: Optional parameters for cache key differentiation
Returns:
Dict with keys:
- 'data': The cached or freshly fetched data
- 'metadata': Cache metadata (timestamp, ttl, cache_hit, etc.)
"""
cache_key = self._generate_cache_key(tool, task, **params)
cache_path = self._get_cache_path(cache_key)
# Try to load from cache
if cache_path.exists():
try:
with open(cache_path, 'r', encoding='utf-8') as f:
cached_entry = json.load(f)
# Check if cache is still valid
cached_time = cached_entry['metadata']['timestamp']
age = time.time() - cached_time
if age < ttl:
# Cache hit!
cached_entry['metadata']['cache_hit'] = True
cached_entry['metadata']['cache_age_seconds'] = int(age)
cached_entry['metadata']['cache_age_human'] = self._format_age(age)
return cached_entry
else:
# Cache expired
cached_entry['metadata']['cache_expired'] = True
except (json.JSONDecodeError, KeyError, IOError) as e:
# Cache file corrupted or invalid, will refetch
print(f"โ ๏ธ Cache read error: {e}")
# Cache miss or expired - fetch fresh data
print(f"๐ Cache miss for {tool}/{task}, fetching fresh data...")
try:
fresh_data = data_fn()
# Prepare cache entry
cache_entry = {
'data': fresh_data,
'metadata': {
'tool': tool,
'task': task,
'params': params,
'timestamp': time.time(),
'datetime': datetime.now().isoformat(),
'ttl': ttl,
'cache_hit': False,
'cache_key': cache_key
}
}
# Write to cache atomically
self._write_cache(cache_path, cache_entry)
return cache_entry
except Exception as e:
# If fetching fails, return error info
print(f"โ Error fetching fresh data: {e}")
raise
async def get_cached_async(
self,
tool: str,
task: str,
data_fn: Callable,
ttl: int = 900, # 15 minutes default
**params
) -> Dict[str, Any]:
"""
Get cached data or fetch fresh data if cache is expired/missing (async version).
This version supports async data_fn functions. If data_fn is sync, it will
still work but run in the current thread.
Args:
tool: Tool name (e.g., "omirl")
task: Task name (e.g., "livelli_idrometrici")
data_fn: Function to call if cache miss (async or sync, must return dict-serializable data)
ttl: Time-to-live in seconds (default: 900 = 15 minutes)
**params: Optional parameters for cache key differentiation
Returns:
Dict with keys:
- 'data': The cached or freshly fetched data
- 'metadata': Cache metadata (timestamp, ttl, cache_hit, etc.)
"""
cache_key = self._generate_cache_key(tool, task, **params)
cache_path = self._get_cache_path(cache_key)
# Try to load from cache (same as sync version)
if cache_path.exists():
try:
with open(cache_path, 'r', encoding='utf-8') as f:
cached_entry = json.load(f)
# Check if cache is still valid
cached_time = cached_entry['metadata']['timestamp']
age = time.time() - cached_time
if age < ttl:
# Cache hit!
cached_entry['metadata']['cache_hit'] = True
cached_entry['metadata']['cache_age_seconds'] = int(age)
cached_entry['metadata']['cache_age_human'] = self._format_age(age)
return cached_entry
else:
# Cache expired
cached_entry['metadata']['cache_expired'] = True
except (json.JSONDecodeError, KeyError, IOError) as e:
# Cache file corrupted or invalid, will refetch
print(f"โ ๏ธ Cache read error: {e}")
# Cache miss or expired - fetch fresh data
print(f"๐ Cache miss for {tool}/{task}, fetching fresh data...")
try:
# Call data_fn to get result or coroutine
result = data_fn()
# Check if result is a coroutine (not just if data_fn is async)
if inspect.iscoroutine(result):
fresh_data = await result
else:
fresh_data = result
# Prepare cache entry
cache_entry = {
'data': fresh_data,
'metadata': {
'tool': tool,
'task': task,
'params': params,
'timestamp': time.time(),
'datetime': datetime.now().isoformat(),
'ttl': ttl,
'cache_hit': False,
'cache_key': cache_key
}
}
# Write to cache atomically
self._write_cache(cache_path, cache_entry)
return cache_entry
except Exception as e:
# If fetching fails, return error info
print(f"โ Error fetching fresh data: {e}")
raise
def _write_cache(self, cache_path: Path, cache_entry: Dict[str, Any]):
"""
Write cache entry to file atomically.
Uses temp file + rename for atomic write to prevent corruption.
"""
temp_path = cache_path.with_suffix('.tmp')
try:
with open(temp_path, 'w', encoding='utf-8') as f:
json.dump(cache_entry, f, indent=2, ensure_ascii=False)
# Atomic rename
temp_path.replace(cache_path)
print(f"โ
Cache written: {cache_path.name}")
except Exception as e:
print(f"โ Cache write error: {e}")
if temp_path.exists():
temp_path.unlink()
raise
def invalidate(self, tool: str, task: str, **params):
"""
Invalidate (delete) a specific cache entry.
Args:
tool: Tool name
task: Task name
**params: Parameters used in cache key
"""
cache_key = self._generate_cache_key(tool, task, **params)
cache_path = self._get_cache_path(cache_key)
if cache_path.exists():
cache_path.unlink()
print(f"๐๏ธ Cache invalidated: {tool}/{task}")
return True
return False
def cleanup_expired(self, max_age_hours: int = 24):
"""
Remove all cache files older than max_age_hours.
Args:
max_age_hours: Maximum age in hours before deletion
"""
max_age_seconds = max_age_hours * 3600
current_time = time.time()
removed_count = 0
for cache_file in self.cache_dir.glob("*.json"):
try:
with open(cache_file, 'r', encoding='utf-8') as f:
entry = json.load(f)
age = current_time - entry['metadata']['timestamp']
if age > max_age_seconds:
cache_file.unlink()
removed_count += 1
except (json.JSONDecodeError, KeyError, IOError):
# Corrupted file, remove it
cache_file.unlink()
removed_count += 1
if removed_count > 0:
print(f"๐งน Cleaned up {removed_count} expired cache entries")
return removed_count
def clear_all(self, tool: Optional[str] = None, task: Optional[str] = None):
"""
Clear all cache or filter by tool/task.
Args:
tool: If provided, only clear caches for this tool
task: If provided (with tool), only clear caches for this task
"""
removed_count = 0
for cache_file in self.cache_dir.glob("*.json"):
should_remove = True
if tool or task:
try:
with open(cache_file, 'r', encoding='utf-8') as f:
entry = json.load(f)
metadata = entry.get('metadata', {})
if tool and metadata.get('tool') != tool:
should_remove = False
if task and metadata.get('task') != task:
should_remove = False
except (json.JSONDecodeError, KeyError, IOError):
# Corrupted file, remove anyway
pass
if should_remove:
cache_file.unlink()
removed_count += 1
filter_msg = f" for {tool}/{task}" if tool or task else ""
print(f"๐๏ธ Cleared {removed_count} cache entries{filter_msg}")
return removed_count
@staticmethod
def _format_age(seconds: float) -> str:
"""Format age in seconds to human-readable string."""
if seconds < 60:
return f"{int(seconds)}s"
elif seconds < 3600:
return f"{int(seconds / 60)}m"
else:
hours = int(seconds / 3600)
minutes = int((seconds % 3600) / 60)
return f"{hours}h {minutes}m"
# Global cache instance
_cache_service = None
def get_cache_service() -> CacheService:
"""Get or create the global cache service instance."""
global _cache_service
if _cache_service is None:
_cache_service = CacheService()
return _cache_service |