mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-09-21 06:47:42 +00:00
28 lines
968 B
Python
28 lines
968 B
Python
from datetime import datetime
|
|
from typing import Any
|
|
|
|
import pytz
|
|
|
|
|
|
class StaticDataProvider:
|
|
"""Generic static reference data provider class. Subclasses of this query the individual URLs or files for data."""
|
|
|
|
def __init__(self, name: str, provider_config: dict[str, Any]) -> None:
|
|
"""Constructor"""
|
|
|
|
self.name = name
|
|
self.enabled: bool = provider_config["enabled"]
|
|
self.last_update_time = datetime.min.replace(tzinfo=pytz.UTC)
|
|
self.status = "Not Started" if self.enabled else "Disabled"
|
|
self.reference_count = 0
|
|
|
|
def start(self) -> None:
|
|
"""Start the provider. This should return immediately after spawning threads to access the remote resources"""
|
|
|
|
raise NotImplementedError("Subclasses must implement this method")
|
|
|
|
def stop(self) -> None:
|
|
"""Stop any threads and prepare for application shutdown"""
|
|
|
|
raise NotImplementedError("Subclasses must implement this method")
|