-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathtimetable.rs
420 lines (368 loc) · 12.4 KB
/
timetable.rs
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
410
411
412
413
414
415
416
417
418
419
420
pub mod stdcm;
use std::collections::HashMap;
use axum::extract::Json;
use axum::extract::Path;
use axum::extract::Query;
use axum::extract::State;
use axum::http::StatusCode;
use axum::response::IntoResponse;
use axum::Extension;
use derivative::Derivative;
use editoast_authz::BuiltinRole;
use editoast_derive::EditoastError;
use editoast_schemas::train_schedule::TrainScheduleBase;
use itertools::Itertools;
use serde::Deserialize;
use serde::Serialize;
use thiserror::Error;
use utoipa::IntoParams;
use utoipa::ToSchema;
use crate::core::conflict_detection::Conflict;
use crate::core::conflict_detection::ConflictDetectionRequest;
use crate::core::conflict_detection::TrainRequirements;
use crate::core::simulation::SimulationResponse;
use crate::core::AsCoreRequest;
use crate::error::Result;
use crate::models::prelude::*;
use crate::models::timetable::Timetable;
use crate::models::timetable::TimetableWithTrains;
use crate::models::train_schedule::TrainSchedule;
use crate::models::train_schedule::TrainScheduleChangeset;
use crate::models::Infra;
use crate::views::train_schedule::train_simulation_batch;
use crate::views::train_schedule::TrainScheduleForm;
use crate::views::train_schedule::TrainScheduleResult;
use crate::views::AuthenticationExt;
use crate::views::AuthorizationError;
use crate::AppState;
use crate::RetrieveBatch;
use editoast_models::DbConnectionPoolV2;
crate::routes! {
"/timetable" => {
post,
"/{id}" => {
delete,
get,
"/conflicts" => conflicts,
"/train_schedule" => train_schedule,
&stdcm,
},
},
}
editoast_common::schemas! {
TimetableResult,
TimetableDetailedResult,
stdcm::schemas(),
}
#[derive(Debug, Error, EditoastError)]
#[editoast_error(base_id = "timetable")]
enum TimetableError {
#[error("Timetable '{timetable_id}', could not be found")]
#[editoast_error(status = 404)]
NotFound { timetable_id: i64 },
#[error("Infra '{infra_id}', could not be found")]
#[editoast_error(status = 404)]
InfraNotFound { infra_id: i64 },
}
/// Creation result for a Timetable
#[derive(Debug, Default, Serialize, Deserialize, Derivative, ToSchema)]
#[cfg_attr(test, derive(PartialEq))]
struct TimetableResult {
pub timetable_id: i64,
}
impl From<Timetable> for TimetableResult {
fn from(timetable: Timetable) -> Self {
Self {
timetable_id: timetable.id,
}
}
}
/// Creation result for a Timetable
#[derive(Debug, Default, Serialize, Deserialize, Derivative, ToSchema)]
#[cfg_attr(test, derive(PartialEq))]
struct TimetableDetailedResult {
pub timetable_id: i64,
pub train_ids: Vec<i64>,
}
impl From<TimetableWithTrains> for TimetableDetailedResult {
fn from(val: TimetableWithTrains) -> Self {
Self {
timetable_id: val.id,
train_ids: val.train_ids,
}
}
}
#[derive(IntoParams, Deserialize)]
struct TimetableIdParam {
/// A timetable ID
id: i64,
}
/// Return a specific timetable with its associated schedules
#[utoipa::path(
get, path = "",
tag = "timetable",
params(TimetableIdParam),
responses(
(status = 200, description = "Timetable with train schedules ids", body = TimetableDetailedResult),
(status = 404, description = "Timetable not found"),
),
)]
async fn get(
State(db_pool): State<DbConnectionPoolV2>,
Extension(auth): AuthenticationExt,
Path(TimetableIdParam { id: timetable_id }): Path<TimetableIdParam>,
) -> Result<Json<TimetableDetailedResult>> {
let authorized = auth
.check_roles([BuiltinRole::TimetableRead].into())
.await
.map_err(AuthorizationError::AuthError)?;
if !authorized {
return Err(AuthorizationError::Unauthorized.into());
}
let conn = &mut db_pool.get().await?;
let timetable = TimetableWithTrains::retrieve_or_fail(conn, timetable_id, || {
TimetableError::NotFound { timetable_id }
})
.await?;
Ok(Json(timetable.into()))
}
/// Create a timetable
#[utoipa::path(
post, path = "",
tag = "timetable",
responses(
(status = 200, description = "Timetable with train schedules ids", body = TimetableResult),
(status = 404, description = "Timetable not found"),
),
)]
async fn post(
State(db_pool): State<DbConnectionPoolV2>,
Extension(auth): AuthenticationExt,
) -> Result<Json<TimetableResult>> {
let authorized = auth
.check_roles([BuiltinRole::TimetableWrite].into())
.await
.map_err(AuthorizationError::AuthError)?;
if !authorized {
return Err(AuthorizationError::Unauthorized.into());
}
let conn = &mut db_pool.get().await?;
let timetable = Timetable::create(conn).await?;
Ok(Json(timetable.into()))
}
/// Delete a timetable
#[utoipa::path(
delete, path = "",
tag = "timetable",
params(TimetableIdParam),
responses(
(status = 204, description = "No content"),
(status = 404, description = "Timetable not found"),
),
)]
async fn delete(
State(db_pool): State<DbConnectionPoolV2>,
Extension(auth): AuthenticationExt,
Path(TimetableIdParam { id: timetable_id }): Path<TimetableIdParam>,
) -> Result<impl IntoResponse> {
let authorized = auth
.check_roles([BuiltinRole::TimetableWrite].into())
.await
.map_err(AuthorizationError::AuthError)?;
if !authorized {
return Err(AuthorizationError::Unauthorized.into());
}
let conn = &mut db_pool.get().await?;
Timetable::delete_static_or_fail(conn, timetable_id, || TimetableError::NotFound {
timetable_id,
})
.await?;
Ok(StatusCode::NO_CONTENT)
}
/// Create train schedule by batch
#[utoipa::path(
post, path = "",
tag = "timetable,train_schedule",
params(TimetableIdParam),
request_body = Vec<TrainScheduleBase>,
responses(
(status = 200, description = "The created train schedules", body = Vec<TrainScheduleResult>)
)
)]
async fn train_schedule(
State(db_pool): State<DbConnectionPoolV2>,
Extension(auth): AuthenticationExt,
Path(TimetableIdParam { id: timetable_id }): Path<TimetableIdParam>,
Json(train_schedules): Json<Vec<TrainScheduleBase>>,
) -> Result<Json<Vec<TrainScheduleResult>>> {
let authorized = auth
.check_roles([BuiltinRole::TimetableWrite].into())
.await
.map_err(AuthorizationError::AuthError)?;
if !authorized {
return Err(AuthorizationError::Unauthorized.into());
}
let conn = &mut db_pool.get().await?;
TimetableWithTrains::retrieve_or_fail(conn, timetable_id, || TimetableError::NotFound {
timetable_id,
})
.await?;
let changesets: Vec<TrainScheduleChangeset> = train_schedules
.into_iter()
.map(|ts| TrainScheduleForm {
timetable_id: Some(timetable_id),
train_schedule: ts,
})
.map_into()
.collect();
// Create a batch of train_schedule
let train_schedule: Vec<_> = TrainSchedule::create_batch(conn, changesets).await?;
Ok(Json(train_schedule.into_iter().map_into().collect()))
}
#[derive(Debug, Default, Clone, Serialize, Deserialize, IntoParams, ToSchema)]
#[into_params(parameter_in = Query)]
pub struct InfraIdQueryParam {
infra_id: i64,
}
#[derive(Debug, Default, Clone, Serialize, Deserialize, IntoParams, ToSchema)]
#[into_params(parameter_in = Query)]
pub struct ElectricalProfileSetIdQueryParam {
electrical_profile_set_id: Option<i64>,
}
/// Retrieve the list of conflict of the timetable (invalid trains are ignored)
#[utoipa::path(
get, path = "",
tag = "timetable",
params(TimetableIdParam, InfraIdQueryParam, ElectricalProfileSetIdQueryParam),
responses(
(status = 200, description = "List of conflict", body = Vec<Conflict>),
),
)]
async fn conflicts(
State(AppState {
db_pool,
valkey: valkey_client,
core_client,
..
}): State<AppState>,
Extension(auth): AuthenticationExt,
Path(TimetableIdParam { id: timetable_id }): Path<TimetableIdParam>,
Query(InfraIdQueryParam { infra_id }): Query<InfraIdQueryParam>,
Query(ElectricalProfileSetIdQueryParam {
electrical_profile_set_id,
}): Query<ElectricalProfileSetIdQueryParam>,
) -> Result<Json<Vec<Conflict>>> {
let authorized = auth
.check_roles([BuiltinRole::InfraRead, BuiltinRole::TimetableRead].into())
.await
.map_err(AuthorizationError::AuthError)?;
if !authorized {
return Err(AuthorizationError::Unauthorized.into());
}
// 1. Retrieve Timetable / Infra / Trains / Simultion
let timetable_trains =
TimetableWithTrains::retrieve_or_fail(&mut db_pool.get().await?, timetable_id, || {
TimetableError::NotFound { timetable_id }
})
.await?;
let infra = Infra::retrieve_or_fail(&mut db_pool.get().await?, infra_id, || {
TimetableError::InfraNotFound { infra_id }
})
.await?;
let (trains, _): (Vec<_>, _) =
TrainSchedule::retrieve_batch(&mut db_pool.get().await?, timetable_trains.train_ids)
.await?;
let simulations = train_simulation_batch(
&mut db_pool.get().await?,
valkey_client.clone(),
core_client.clone(),
&trains,
&infra,
electrical_profile_set_id,
)
.await?;
// 2. Build core request
let mut trains_requirements = HashMap::with_capacity(trains.len());
for (train, sim) in trains.into_iter().zip(simulations) {
let (sim, _) = sim;
let final_output = match sim {
SimulationResponse::Success { final_output, .. } => final_output,
_ => continue,
};
trains_requirements.insert(
train.id,
TrainRequirements {
start_time: train.start_time,
spacing_requirements: final_output.spacing_requirements,
routing_requirements: final_output.routing_requirements,
},
);
}
let conflict_detection_request = ConflictDetectionRequest {
infra: infra_id,
expected_version: infra.version,
trains_requirements,
work_schedules: None,
};
// 3. Call core
let conflict_detection_response = conflict_detection_request.fetch(&core_client).await?;
Ok(Json(conflict_detection_response.conflicts))
}
#[cfg(test)]
mod tests {
use axum::http::StatusCode;
use pretty_assertions::assert_eq;
use rstest::rstest;
use super::*;
use crate::models::fixtures::create_timetable;
use crate::views::test_app::TestAppBuilder;
#[rstest]
async fn get_timetable() {
let app = TestAppBuilder::default_app();
let pool = app.db_pool();
let timetable = create_timetable(&mut pool.get_ok()).await;
let request = app.get(&format!("/timetable/{}", timetable.id));
let timetable_from_response: TimetableDetailedResult =
app.fetch(request).assert_status(StatusCode::OK).json_into();
assert_eq!(
timetable_from_response,
TimetableDetailedResult {
timetable_id: timetable.id,
train_ids: vec![],
}
);
}
#[rstest]
async fn get_unexisting_timetable() {
let app = TestAppBuilder::default_app();
let request = app.get(&format!("/timetable/{}", 0));
app.fetch(request).assert_status(StatusCode::NOT_FOUND);
}
#[rstest]
async fn timetable_post() {
let app = TestAppBuilder::default_app();
let pool = app.db_pool();
// Insert timetable
let request = app.post("/timetable");
let created_timetable: TimetableResult =
app.fetch(request).assert_status(StatusCode::OK).json_into();
let retrieved_timetable =
Timetable::retrieve(&mut pool.get_ok(), created_timetable.timetable_id)
.await
.expect("Failed to retrieve timetable")
.expect("Timetable not found");
assert_eq!(created_timetable, retrieved_timetable.into());
}
#[rstest]
async fn timetable_delete() {
let app = TestAppBuilder::default_app();
let pool = app.db_pool();
let timetable = create_timetable(&mut pool.get_ok()).await;
let request = app.delete(format!("/timetable/{}", timetable.id).as_str());
app.fetch(request).assert_status(StatusCode::NO_CONTENT);
let exists = Timetable::exists(&mut pool.get_ok(), timetable.id)
.await
.expect("Failed to check if timetable exists");
assert!(!exists);
}
}