File size: 6,948 Bytes
aefe381 | 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 | """Queue management service with virtual queue support."""
import logging
from datetime import datetime, timedelta
from typing import List, Dict, Optional
from models.queue import QueueStation, VirtualQueueTicket
logger = logging.getLogger(__name__)
class QueueService:
"""Manages queues, wait times, and virtual queue reservations."""
def __init__(self):
self._stations: Dict[str, QueueStation] = {}
self._virtual_tickets: Dict[str, VirtualQueueTicket] = {}
self._station_history: Dict[str, List[Dict]] = {}
def register_station(self, station: QueueStation):
"""Register a queue station."""
self._stations[station.id] = station
def register_stations(self, stations: List[QueueStation]):
"""Register multiple queue stations."""
for s in stations:
self._stations[s.id] = s
def get_station(self, station_id: str) -> Optional[QueueStation]:
"""Get a station by ID."""
return self._stations.get(station_id)
def get_all_stations(self) -> List[Dict]:
"""Get all stations as dicts."""
return [s.to_dict() for s in self._stations.values()]
def get_stations_by_category(self, category: str) -> List[Dict]:
"""Get stations filtered by category."""
return [
s.to_dict()
for s in self._stations.values()
if s.category == category and s.is_open
]
def get_stations_by_zone(self, zone_id: str) -> List[Dict]:
"""Get stations in a specific zone."""
return [
s.to_dict()
for s in self._stations.values()
if s.zone_id == zone_id
]
def update_queue_length(self, station_id: str, new_length: int) -> Optional[Dict]:
"""Update the queue length for a station."""
station = self._stations.get(station_id)
if not station:
return None
station.current_length = max(0, new_length)
# Track history
if station_id not in self._station_history:
self._station_history[station_id] = []
self._station_history[station_id].append({
"length": station.current_length,
"wait_min": station.estimated_wait_minutes,
"timestamp": datetime.utcnow().isoformat(),
})
# Trim history
if len(self._station_history[station_id]) > 100:
self._station_history[station_id] = self._station_history[station_id][-50:]
return station.to_dict()
def get_shortest_queue(self, category: str = None) -> Optional[Dict]:
"""Find the station with the shortest wait time."""
stations = [
s for s in self._stations.values()
if s.is_open and (category is None or s.category == category)
]
if not stations:
return None
shortest = min(stations, key=lambda s: s.estimated_wait_minutes)
return shortest.to_dict()
def get_queue_summary(self) -> Dict:
"""Get an overview of all queues."""
open_stations = [s for s in self._stations.values() if s.is_open]
categories = {}
for station in open_stations:
cat = station.category
if cat not in categories:
categories[cat] = {
"category": cat,
"total_stations": 0,
"total_in_queue": 0,
"avg_wait_minutes": 0.0,
"shortest_wait": float("inf"),
"shortest_station": None,
}
categories[cat]["total_stations"] += 1
categories[cat]["total_in_queue"] += station.current_length
wait = station.estimated_wait_minutes
if wait < categories[cat]["shortest_wait"]:
categories[cat]["shortest_wait"] = wait
categories[cat]["shortest_station"] = station.name
# Calculate averages
for cat_data in categories.values():
if cat_data["total_stations"] > 0:
cat_data["avg_wait_minutes"] = round(
sum(
s.estimated_wait_minutes
for s in open_stations
if s.category == cat_data["category"]
) / cat_data["total_stations"],
1,
)
if cat_data["shortest_wait"] == float("inf"):
cat_data["shortest_wait"] = 0
return {
"total_stations": len(open_stations),
"total_people_waiting": sum(s.current_length for s in open_stations),
"categories": categories,
"stations": [s.to_dict() for s in open_stations],
}
# βββ Virtual Queue βββββββββββββββββββββββββββββββββββββββββββββββββββ
def join_virtual_queue(self, user_id: str, station_id: str) -> Optional[Dict]:
"""Create a virtual queue reservation."""
station = self._stations.get(station_id)
if not station or not station.is_open:
return None
# Check if user already has a ticket for this station
existing = [
t for t in self._virtual_tickets.values()
if t.user_id == user_id and t.station_id == station_id and t.status == "waiting"
]
if existing:
return existing[0].to_dict()
# Count waiting tickets for this station
waiting_count = sum(
1 for t in self._virtual_tickets.values()
if t.station_id == station_id and t.status == "waiting"
)
ticket = VirtualQueueTicket(
user_id=user_id,
station_id=station_id,
station_name=station.name,
category=station.category,
position=waiting_count + 1,
estimated_ready_time=datetime.utcnow() + timedelta(
seconds=station.avg_service_time_sec * (waiting_count + 1)
),
)
self._virtual_tickets[ticket.id] = ticket
return ticket.to_dict()
def get_user_tickets(self, user_id: str) -> List[Dict]:
"""Get all virtual tickets for a user."""
return [
t.to_dict()
for t in self._virtual_tickets.values()
if t.user_id == user_id
]
def cancel_ticket(self, ticket_id: str, user_id: str) -> bool:
"""Cancel a virtual queue ticket."""
ticket = self._virtual_tickets.get(ticket_id)
if ticket and ticket.user_id == user_id and ticket.status == "waiting":
ticket.status = "expired"
return True
return False
def get_station_history(self, station_id: str, last_n: int = 20) -> List[Dict]:
"""Get queue length history for a station."""
return self._station_history.get(station_id, [])[-last_n:]
|