Spaces:
Sleeping
Sleeping
File size: 9,028 Bytes
f6213fc | 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 | //! HTTP routes for the deliveries tutorial app.
//!
//! Each handler follows the same beginner-friendly shape:
//! decode request -> prepare the domain model if needed -> call the retained
//! solver facade -> encode a DTO for the browser.
use axum::{
extract::{Path, Query, State},
http::StatusCode,
routing::{get, post},
Json, Router,
};
use serde::{Deserialize, Serialize};
use std::sync::Arc;
use super::dto::{
analysis_response, DeliveryInsertionCandidateDto, DeliveryInsertionRequestDto,
DeliveryInsertionResponseDto, JobAnalysisDto, JobRoutesDto, JobSnapshotDto, JobSummaryDto,
PlanDto,
};
use super::errors::{parse_job_id, status_from_routing_error, status_from_solver_error};
use super::sse;
use crate::data::{generate, DemoData};
use crate::domain::{build_routes_snapshot, prepare_plan, rank_delivery_insertions};
use crate::solver::SolverService;
/// Shared application state stored once inside Axum.
pub struct AppState {
pub solver: SolverService,
}
impl AppState {
pub fn new() -> Self {
Self {
solver: SolverService::new(),
}
}
}
impl Default for AppState {
fn default() -> Self {
Self::new()
}
}
/// Registers the public HTTP surface used by the browser and tests.
pub fn router(state: Arc<AppState>) -> Router {
Router::new()
.route("/health", get(health))
.route("/info", get(info))
.route("/demo-data", get(list_demo_data))
.route("/demo-data/{id}", get(get_demo_data))
.route("/jobs", post(create_job))
.route("/jobs/{id}", get(get_job).delete(delete_job))
.route("/jobs/{id}/status", get(get_job_status))
.route("/jobs/{id}/snapshot", get(get_snapshot))
.route("/jobs/{id}/analysis", get(analyze_by_id))
.route("/jobs/{id}/routes", get(get_routes))
.route("/jobs/{id}/pause", post(pause_job))
.route("/jobs/{id}/resume", post(resume_job))
.route("/jobs/{id}/cancel", post(cancel_job))
.route("/jobs/{id}/events", get(sse::events))
.route(
"/recommendations/delivery-insertions",
post(recommend_delivery_insertions),
)
.with_state(state)
}
#[derive(Serialize)]
struct HealthResponse {
status: &'static str,
}
async fn health() -> Json<HealthResponse> {
Json(HealthResponse { status: "UP" })
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct InfoResponse {
name: &'static str,
version: &'static str,
solver_engine: &'static str,
}
async fn info() -> Json<InfoResponse> {
Json(InfoResponse {
name: "SolverForge Deliveries",
version: env!("CARGO_PKG_VERSION"),
solver_engine: "SolverForge",
})
}
/// Lists the deterministic demo datasets accepted by `/demo-data/{id}`.
async fn list_demo_data() -> Json<Vec<&'static str>> {
Json(vec![
DemoData::Philadelphia.id(),
DemoData::Hartford.id(),
DemoData::Firenze.id(),
])
}
/// Materializes one demo plan and sends it through the same DTO as snapshots.
async fn get_demo_data(Path(id): Path<String>) -> Result<Json<PlanDto>, StatusCode> {
let demo = id.parse::<DemoData>().map_err(|_| StatusCode::NOT_FOUND)?;
let plan = generate(demo);
Ok(Json(PlanDto::from_plan(&plan)))
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct CreateJobResponse {
id: String,
}
async fn create_job(
State(state): State<Arc<AppState>>,
Json(dto): Json<PlanDto>,
) -> Result<Json<CreateJobResponse>, StatusCode> {
let mut plan = dto.to_domain().map_err(|_| StatusCode::BAD_REQUEST)?;
// Route matrices and shadow variables must be ready before SolverForge
// starts construction, because the list-variable hooks read them directly.
prepare_plan(&mut plan)
.await
.map_err(status_from_routing_error)?;
let id = state
.solver
.start_job(plan)
.map_err(status_from_solver_error)?;
Ok(Json(CreateJobResponse { id }))
}
/// Returns the retained-job summary without requiring a snapshot payload.
async fn get_job(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
) -> Result<Json<JobSummaryDto>, StatusCode> {
let job_id = parse_job_id(&id)?;
let status = state
.solver
.get_status(&id)
.map_err(status_from_solver_error)?;
Ok(Json(JobSummaryDto::from_status(job_id, &status)))
}
/// Stock alias used by the shared SolverForge UI job-status helpers.
async fn get_job_status(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
) -> Result<Json<JobSummaryDto>, StatusCode> {
get_job(State(state), Path(id)).await
}
#[derive(Debug, Default, Deserialize)]
struct SnapshotQuery {
snapshot_revision: Option<u64>,
}
async fn get_snapshot(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
Query(query): Query<SnapshotQuery>,
) -> Result<Json<JobSnapshotDto>, StatusCode> {
let snapshot = state
.solver
.get_snapshot(&id, query.snapshot_revision)
.map_err(status_from_solver_error)?;
Ok(Json(JobSnapshotDto::from_snapshot(&snapshot)))
}
/// Runs exact score analysis against a retained snapshot revision.
async fn analyze_by_id(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
Query(query): Query<SnapshotQuery>,
) -> Result<Json<JobAnalysisDto>, StatusCode> {
let snapshot_analysis = state
.solver
.analyze_snapshot(&id, query.snapshot_revision)
.map_err(status_from_solver_error)?;
let analysis = analysis_response(&snapshot_analysis.analysis);
Ok(Json(JobAnalysisDto::from_snapshot_analysis(
&snapshot_analysis,
analysis,
)))
}
/// Builds route geometry for the exact retained snapshot the browser is viewing.
async fn get_routes(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
Query(query): Query<SnapshotQuery>,
) -> Result<Json<JobRoutesDto>, StatusCode> {
let job_id = parse_job_id(&id)?;
let mut snapshot = state
.solver
.get_snapshot(&id, query.snapshot_revision)
.map_err(status_from_solver_error)?;
if snapshot
.solution
.vehicles
.iter()
.any(|vehicle| vehicle.prepared_routing.is_none())
{
// Older snapshots can be reconstructed from transport data. If the
// transient routing cache is absent, rebuild it before drawing routes.
prepare_plan(&mut snapshot.solution)
.await
.map_err(status_from_routing_error)?;
}
let routes = build_routes_snapshot(&snapshot.solution)
.await
.map_err(status_from_routing_error)?;
Ok(Json(JobRoutesDto::new(
job_id,
snapshot.snapshot_revision,
routes,
)))
}
/// Requests a runtime-managed pause at the next safe solver point.
async fn pause_job(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
) -> Result<StatusCode, StatusCode> {
state.solver.pause(&id).map_err(status_from_solver_error)?;
Ok(StatusCode::ACCEPTED)
}
/// Resumes a paused retained job.
async fn resume_job(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
) -> Result<StatusCode, StatusCode> {
state.solver.resume(&id).map_err(status_from_solver_error)?;
Ok(StatusCode::ACCEPTED)
}
/// Cancels a live or paused retained job without deleting its final snapshot.
async fn cancel_job(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
) -> Result<StatusCode, StatusCode> {
state.solver.cancel(&id).map_err(status_from_solver_error)?;
Ok(StatusCode::ACCEPTED)
}
/// Deletes a terminal retained job and its cached SSE bootstrap state.
async fn delete_job(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
) -> Result<StatusCode, StatusCode> {
state.solver.delete(&id).map_err(status_from_solver_error)?;
Ok(StatusCode::NO_CONTENT)
}
/// Ranks candidate vehicle/position insertions for one delivery.
async fn recommend_delivery_insertions(
Json(request): Json<DeliveryInsertionRequestDto>,
) -> Result<Json<DeliveryInsertionResponseDto>, StatusCode> {
let mut plan = request
.plan
.to_domain()
.map_err(|_| StatusCode::BAD_REQUEST)?;
if request.delivery_id >= plan.deliveries.len() {
return Err(StatusCode::BAD_REQUEST);
}
// Candidate scoring uses the same prepared data as real solving so the
// modal preview matches the constraints and route metrics.
prepare_plan(&mut plan)
.await
.map_err(status_from_routing_error)?;
let candidates = rank_delivery_insertions(
&plan,
request.delivery_id,
request.limit.unwrap_or(8).min(24),
)
.await
.map_err(status_from_routing_error)?
.into_iter()
.map(DeliveryInsertionCandidateDto::from_candidate)
.collect();
Ok(Json(DeliveryInsertionResponseDto {
delivery_id: request.delivery_id,
candidates,
}))
}
|