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
use std::cell::RefCell;
use std::collections::HashMap;
use serde::{Deserialize, Serialize};
use thread_local::ThreadLocal;
use abstutil::{Timer, VecMap};
use geom::Duration;
use crate::pathfind::engine::CreateEngine;
use crate::pathfind::vehicles::VehiclePathfinder;
use crate::pathfind::walking::SidewalkPathfinder;
use crate::{
BusRouteID, BusStopID, DirectedRoadID, Map, PathConstraints, PathRequest, PathV2, Position,
RoutingParams,
};
#[derive(Serialize, Deserialize)]
pub struct Pathfinder {
car_graph: VehiclePathfinder,
bike_graph: VehiclePathfinder,
bus_graph: VehiclePathfinder,
train_graph: VehiclePathfinder,
walking_graph: SidewalkPathfinder,
walking_with_transit_graph: SidewalkPathfinder,
params: RoutingParams,
#[serde(skip_serializing, skip_deserializing)]
cached_alternatives: ThreadLocal<RefCell<VecMap<(PathConstraints, RoutingParams), Pathfinder>>>,
}
impl Clone for Pathfinder {
fn clone(&self) -> Self {
Self {
car_graph: self.car_graph.clone(),
bike_graph: self.bike_graph.clone(),
bus_graph: self.bus_graph.clone(),
train_graph: self.train_graph.clone(),
walking_graph: self.walking_graph.clone(),
walking_with_transit_graph: self.walking_with_transit_graph.clone(),
params: self.params.clone(),
cached_alternatives: ThreadLocal::new(),
}
}
}
impl Pathfinder {
pub fn empty() -> Pathfinder {
Pathfinder {
car_graph: VehiclePathfinder::empty(),
bike_graph: VehiclePathfinder::empty(),
bus_graph: VehiclePathfinder::empty(),
train_graph: VehiclePathfinder::empty(),
walking_graph: SidewalkPathfinder::empty(),
walking_with_transit_graph: SidewalkPathfinder::empty(),
params: RoutingParams::default(),
cached_alternatives: ThreadLocal::new(),
}
}
pub fn new(
map: &Map,
params: RoutingParams,
engine: CreateEngine,
timer: &mut Timer,
) -> Pathfinder {
timer.start("prepare pathfinding for cars");
let car_graph = VehiclePathfinder::new(map, PathConstraints::Car, ¶ms, &engine);
timer.stop("prepare pathfinding for cars");
timer.start("prepare pathfinding for bikes");
let bike_graph = VehiclePathfinder::new(map, PathConstraints::Bike, ¶ms, &engine);
timer.stop("prepare pathfinding for bikes");
timer.start("prepare pathfinding for buses");
let bus_graph = VehiclePathfinder::new(
map,
PathConstraints::Bus,
¶ms,
&car_graph.engine.reuse_ordering(),
);
timer.stop("prepare pathfinding for buses");
timer.start("prepare pathfinding for trains");
let train_graph = VehiclePathfinder::new(
map,
PathConstraints::Train,
¶ms,
&CreateEngine::Dijkstra,
);
timer.stop("prepare pathfinding for trains");
timer.start("prepare pathfinding for pedestrians");
let walking_graph = SidewalkPathfinder::new(map, None, &engine);
timer.stop("prepare pathfinding for pedestrians");
timer.start("prepare pathfinding for pedestrians using transit");
let walking_with_transit_graph =
SidewalkPathfinder::new(map, Some((&bus_graph, &train_graph)), &engine);
timer.stop("prepare pathfinding for pedestrians using transit");
Pathfinder {
car_graph,
bike_graph,
bus_graph,
train_graph,
walking_graph,
walking_with_transit_graph,
params,
cached_alternatives: ThreadLocal::new(),
}
}
pub fn new_limited(
map: &Map,
params: RoutingParams,
engine: CreateEngine,
modes: Vec<PathConstraints>,
timer: &mut Timer,
) -> Pathfinder {
let mut p = Pathfinder::empty();
for constraints in modes {
timer.start(format!("prepare pathfinding for just {:?}", constraints));
match constraints {
PathConstraints::Pedestrian => {
p.walking_graph = SidewalkPathfinder::new(map, None, &engine);
}
PathConstraints::Car => {
p.car_graph = VehiclePathfinder::new(map, constraints, ¶ms, &engine);
}
PathConstraints::Bike => {
p.bike_graph = VehiclePathfinder::new(map, constraints, ¶ms, &engine);
}
PathConstraints::Bus => {
p.bus_graph = VehiclePathfinder::new(map, constraints, ¶ms, &engine);
}
PathConstraints::Train => {
p.train_graph = VehiclePathfinder::new(map, constraints, ¶ms, &engine);
}
}
timer.stop(format!("prepare pathfinding for just {:?}", constraints));
}
p.params = params;
p
}
pub fn pathfind(&self, req: PathRequest, map: &Map) -> Option<PathV2> {
self.pathfind_with_params(req, map.routing_params(), false, map)
}
pub fn pathfind_with_params(
&self,
req: PathRequest,
params: &RoutingParams,
cache_custom: bool,
map: &Map,
) -> Option<PathV2> {
let constraints = req.constraints;
if params == &self.params {
return match constraints {
PathConstraints::Pedestrian => self.walking_graph.pathfind(req, map),
PathConstraints::Car => self.car_graph.pathfind(req, map),
PathConstraints::Bike => self.bike_graph.pathfind(req, map),
PathConstraints::Bus => self.bus_graph.pathfind(req, map),
PathConstraints::Train => self.train_graph.pathfind(req, map),
};
}
if let Some(alt) = self
.cached_alternatives
.get_or(|| RefCell::new(VecMap::new()))
.borrow()
.get(&(constraints, params.clone()))
{
return alt.pathfind_with_params(req, params, false, map);
}
let mut timer = Timer::new(format!("Pathfinding slowly for {} with custom params", req));
let tmp_pathfinder = Pathfinder::new_limited(
map,
params.clone(),
CreateEngine::Dijkstra,
vec![constraints],
&mut timer,
);
let result = tmp_pathfinder.pathfind_with_params(req, params, false, map);
if cache_custom {
self.cached_alternatives
.get_or(|| RefCell::new(VecMap::new()))
.borrow_mut()
.push((constraints, params.clone()), tmp_pathfinder);
}
result
}
pub fn all_costs_from(
&self,
req: PathRequest,
map: &Map,
) -> Option<(Duration, HashMap<DirectedRoadID, Duration>)> {
let req_cost = self.pathfind(req.clone(), map)?.get_cost();
let all_costs = match req.constraints {
PathConstraints::Pedestrian => self.walking_graph.all_costs_from(req.start, map),
PathConstraints::Car => self.car_graph.all_costs_from(req.start, map),
PathConstraints::Bike => self.bike_graph.all_costs_from(req.start, map),
PathConstraints::Bus | PathConstraints::Train => unreachable!(),
};
Some((req_cost, all_costs))
}
pub fn should_use_transit(
&self,
map: &Map,
start: Position,
end: Position,
) -> Option<(BusStopID, Option<BusStopID>, BusRouteID)> {
self.walking_with_transit_graph
.should_use_transit(map, start, end)
}
pub fn apply_edits(&mut self, map: &Map, timer: &mut Timer) {
timer.start("apply edits to car pathfinding");
self.car_graph.apply_edits(map);
timer.stop("apply edits to car pathfinding");
timer.start("apply edits to bike pathfinding");
self.bike_graph.apply_edits(map);
timer.stop("apply edits to bike pathfinding");
timer.start("apply edits to bus pathfinding");
self.bus_graph.apply_edits(map);
timer.stop("apply edits to bus pathfinding");
timer.start("apply edits to train pathfinding");
self.train_graph.apply_edits(map);
timer.stop("apply edits to train pathfinding");
timer.start("apply edits to pedestrian pathfinding");
self.walking_graph.apply_edits(map, None);
timer.stop("apply edits to pedestrian pathfinding");
timer.start("apply edits to pedestrian using transit pathfinding");
self.walking_with_transit_graph
.apply_edits(map, Some((&self.bus_graph, &self.train_graph)));
timer.stop("apply edits to pedestrian using transit pathfinding");
}
}