aboutsummaryrefslogtreecommitdiff
path: root/src/net/cbaines/suma/BusRoute.java
blob: e38d06a0a2da39827624b41fb27fc7ac8a8ceded (plain)
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
/*
 * Southampton University Map App
 * Copyright (C) 2011  Christopher Baines
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

package net.cbaines.suma;

import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import android.content.Context;
import android.util.Log;

import com.j256.ormlite.android.apptools.OpenHelperManager;
import com.j256.ormlite.dao.Dao;
import com.j256.ormlite.field.DatabaseField;
import com.j256.ormlite.stmt.PreparedQuery;
import com.j256.ormlite.stmt.QueryBuilder;
import com.j256.ormlite.table.DatabaseTable;

/**
 * This class represents a bus route (U1, U1N, ..).
 * 
 * @author Christopher Baines <cbaines8@gmail.com>
 * 
 */
@DatabaseTable(tableName = "busroutes")
public class BusRoute {

	private static final String TAG = "BusRoute";

	final static String ID_FIELD_NAME = "id";
	final static String CODE_FIELD_NAME = "code";
	final static String LABEL_FIELD_NAME = "label";

	@DatabaseField(id = true)
	public int id;

	/**
	 * The route code (U1, U1N, ...)
	 */
	@DatabaseField
	public String code;

	@DatabaseField(canBeNull = false)
	String label;

	/**
	 * The direction the bus is travelling if it is moving through the route and sequence is increasing.
	 * <ul>
	 * <li>U1 = A</li>
	 * <li>U2 = B</li>
	 * <li>U6 = H</li>
	 * </ul>
	 */
	@DatabaseField(canBeNull = true)
	String forwardDirection;

	/**
	 * The direction the bus is travelling if it is moving through the route and sequence is decreasing.
	 * <ul>
	 * <li>U1 = C</li>
	 * <li>U2 = C</li>
	 * <li>U6 = C</li>
	 * </ul>
	 */
	@DatabaseField(canBeNull = true)
	String reverseDirection;

	@DatabaseField(canBeNull = false)
	boolean uniLink;

	BusRoute() {
	}

	public BusRoute(Integer id, String code, String label, String forwardDirection, String reverseDirection, boolean uniLink) {
		this.id = id.intValue();
		this.code = code;
		this.label = label;
		this.forwardDirection = forwardDirection;
		this.reverseDirection = reverseDirection;
		this.uniLink = uniLink;
	}

	public BusRoute(Integer id, String code, String label, boolean uniLink) {
		this(id, code, label, null, null, uniLink);
	}

	public String toString() {
		return code;
	}

	/**
	 * Untested?
	 * 
	 * @param context
	 * @param stop
	 * @return
	 */
	BusStop getBusStopBefore(Context context, BusStop stop, String dir) {
		return moveInRoute(context, stop, dir, -1);
	}

	/**
	 * Untested?
	 * 
	 * @param context
	 * @param stop
	 * @return
	 */
	BusStop getStopAfter(Context context, BusStop stop, String dir) {
		return moveInRoute(context, stop, dir, 1);
	}

	/**
	 * Return the set of bus stops that can be thought of moveAmount away from the busStop. The method returns a set as for some
	 * movements, the destination stop is ambiguous.
	 * 
	 * @param context
	 * @param busStop
	 * @param moveAmount
	 * @return
	 */
	Set<BusStop> moveInRoute(final Context context, final BusStop busStop, final int moveAmount) {

		Set<BusStop> busStops = new HashSet<BusStop>();

		if (moveAmount == 0) {
			busStops.add(busStop);
			return busStops;
		}

		DatabaseHelper helper = OpenHelperManager.getHelper(context, DatabaseHelper.class);

		try {
			Dao<RouteStop, Integer> routeStopsDao = helper.getRouteStopsDao();
			Dao<BusStop, String> busStopDao = helper.getBusStopDao();

			QueryBuilder<RouteStop, Integer> routeStopsQueryBuilder = routeStopsDao.queryBuilder();
			routeStopsQueryBuilder.where().eq(RouteStop.ROUTE_ID_FIELD_NAME, this.id);
			PreparedQuery<RouteStop> routeStopsPreparedQuery = routeStopsQueryBuilder.prepare();

			List<RouteStop> routeStopsFound = routeStopsDao.query(routeStopsPreparedQuery);
			Collections.sort(routeStopsFound);

			// Starting from 1, as the data does :(
			Set<Integer> stopIndexs = new HashSet<Integer>();

			for (RouteStop routeStop : routeStopsFound) {
				if (routeStop.busStop.id.equals(busStop.id)) {
					stopIndexs.add(routeStop.sequence);
				}
			}

			for (int stopIndex : stopIndexs) {

				if (moveAmount > 0) {
					Log.v(TAG, "Moving forward " + moveAmount + " stops from " + busStop + " (" + stopIndex + "/"
							+ routeStopsFound.size() + ")");
					int stopWantedSeq = stopIndex + moveAmount;
					if (stopWantedSeq > routeStopsFound.size()) {
						Log.v(TAG, "Off the end of the route");
						stopWantedSeq = ((stopWantedSeq - 1) % (routeStopsFound.size())) + 1;
					}
					Log.v(TAG, "  Stop wanted " + stopWantedSeq);
					BusStop busStopWanted = routeStopsFound.get(stopWantedSeq - 1).busStop;

					busStopDao.refresh(busStopWanted);

					Log.v(TAG, "  Moving to " + busStopWanted + " (" + stopWantedSeq + ") in route " + this);

					busStops.add(busStopWanted);
				} else {
					Log.v(TAG, "stopIndex " + stopIndex);
					int stopWanted = stopIndex + moveAmount; // This will end up as the sequence number of the wanted stop
					if (stopWanted < 1) {
						stopWanted = routeStopsFound.size() - (Math.abs(stopWanted) % routeStopsFound.size());
					}
					Log.v(TAG, "stopWanted " + stopWanted);
					BusStop wantedBusStop = routeStopsFound.get(stopWanted - 1).busStop; // Need the -1 as sequence starts at 1
					busStopDao.refresh(wantedBusStop);

					Log.v(TAG, "Moving backwards " + (-1 * moveAmount) + " stops from " + busStop + " to " + wantedBusStop
							+ " in route " + this);

					busStops.add(wantedBusStop);
				}
			}

			return busStops;
		} catch (SQLException e) {
			e.printStackTrace();
		}
		Log.e(TAG, "Error moving in route");
		return null;
	}

	/**
	 * Untested?
	 * 
	 * @param context
	 * @param busStop
	 * @param moveAmount
	 * @return
	 */
	BusStop moveInRoute(final Context context, final BusStop busStop, String direction, final int moveAmount) {

		if (moveAmount == 0) {
			return busStop;
		}

		DatabaseHelper helper = OpenHelperManager.getHelper(context, DatabaseHelper.class);

		if (forwardDirection != null) {

			if (direction != null) {

				if (direction.equals("E"))
					direction = "A"; // Quick hack for U1E
			} else {
				throw new NullPointerException("direction is null");
			}
		}

		try {
			Dao<RouteStop, Integer> routeStopsDao = helper.getRouteStopsDao();
			Dao<BusStop, String> busStopDao = helper.getBusStopDao();

			QueryBuilder<RouteStop, Integer> routeStopsQueryBuilder = routeStopsDao.queryBuilder();
			routeStopsQueryBuilder.where().eq(RouteStop.ROUTE_ID_FIELD_NAME, this.id);
			PreparedQuery<RouteStop> routeStopsPreparedQuery = routeStopsQueryBuilder.prepare();

			List<RouteStop> routeStopsFound = routeStopsDao.query(routeStopsPreparedQuery);
			Collections.sort(routeStopsFound);

			int stopIndex = -1;

			for (RouteStop routeStop : routeStopsFound) {
				if (routeStop.busStop.id.equals(busStop.id)) {
					if (stopIndex == -1) {
						stopIndex = routeStop.sequence - 1;
					} else { // ARGH, weird route
						if (busStop.id.equals("HAA13651") && id == 327) { // U6
																			// by
																			// Wessex
																			// Lane
							if (direction.equals(forwardDirection)) {
								stopIndex = 23;
							} else {
								stopIndex = 68;
							}
						} else if (busStop.id.equals("SN120134") && id == 327) { // U6
																					// opposite
																					// the
																					// Stile
							if (direction.equals(forwardDirection)) {
								stopIndex = 30;
							} else {
								stopIndex = 59;
							}
						} else if (busStop.id.equals("SN120163") && id == 327) { // U6
																					// just
																					// up
																					// past
																					// wessex
																					// lane
							if (direction.equals(forwardDirection)) {
								stopIndex = 22;
							} else {
								stopIndex = 67;
							}
						} else if (busStop.id.equals("SNA19482") && id == 327) { // U6
																					// General
																					// Hosp
																					// West
																					// Door
							if (moveAmount > 0) {
								stopIndex = 44;
							} else {
								stopIndex = 43;
							}
						} else if (busStop.id.equals("SN120134") && id == 329) { // U2
																					// opposite
																					// the
																					// Stile
							if (direction.equals(forwardDirection)) {
								stopIndex = 13;
							} else {
								stopIndex = 30;
							}
						} else if (busStop.id.equals("SN120527") && id == 329) { // U2
																					// Civic
																					// Centre
																					// Rd
																					// os
																					// stop
																					// AO
																					// Civic
							// Ctr E
							if (moveAmount > 0) {
								stopIndex = 0;
							} else {
								stopIndex = 42;
							}
						} else if (busStop.id.equals("SNA09298") && id == 329) { // U2
																					// Bassett
																					// Green
																					// Rd
																					// nr
																					// Bassett
																					// Green
							// Cl SE
							if (moveAmount > 0) {
								stopIndex = 22;
							} else {
								stopIndex = 21;
							}
						} else if (busStop.id.equals("SN120520") && id == 326) { // U1
																					// By
																					// the
																					// station
							if (direction.equals(forwardDirection)) {
								stopIndex = 7;
							} else {
								stopIndex = 80;
							}
						} else if (busStop.id.equals("HA030183") && id == 326) { // U1
																					// Up
																					// past
																					// Wessex
																					// Lane
							if (direction.equals(forwardDirection)) {
								stopIndex = 35;
							} else {
								stopIndex = 50;
							}
						} else if (busStop.id.equals("HA030212") && id == 326) { // U1
																					// At
																					// Eastleigh
							if (moveAmount > 0) {
								stopIndex = 43;
							} else {
								stopIndex = 42;
							}
						} else if (busStop.id.equals("SN120171") && id == 354) { // U9
							if (moveAmount > 0) {
								stopIndex = 0;
							} else {
								stopIndex = 73;
							}
						} else {
							Log.e(TAG, "Error, unknown bus stop " + busStop.id + " (" + busStop.description
									+ ") that appears mutiple times in " + toString());
							throw new RuntimeException("Error, unknown bus stop " + busStop.id
									+ " that appears mutiple times in " + toString());
						}
						Log.v(TAG, "Selecting " + stopIndex + " for " + busStop.id + " as direction == " + direction);
					}
				}
			}

			if (moveAmount > 0) {
				Log.v(TAG,
						"Moving forward " + moveAmount + " stops from " + busStop + " (" + stopIndex + "/"
								+ routeStopsFound.size() + ")");
				int stopWanted = stopIndex + moveAmount;
				if (stopWanted > routeStopsFound.size()) {
					Log.v(TAG, "Off the end of the route");
					stopWanted = stopWanted % (routeStopsFound.size() - 1);
				}
				Log.v(TAG, "  Stop wanted " + stopWanted);
				BusStop busStopWanted = routeStopsFound.get(stopWanted).busStop;

				busStopDao.refresh(busStopWanted);

				Log.v(TAG, "  Moving to " + busStopWanted + " (" + stopWanted + ") in route " + this);

				return busStopWanted;
			} else {
				Log.v(TAG, "stopIndex " + stopIndex);
				int stopWanted = stopIndex + moveAmount;
				if (stopWanted < 0) {
					stopWanted = routeStopsFound.size() - (Math.abs(stopWanted) % routeStopsFound.size());
				}
				Log.v(TAG, "stopWanted " + stopWanted);
				busStopDao.refresh(routeStopsFound.get(stopWanted).busStop);

				Log.v(TAG, "Moving backwards " + moveAmount + " stops from " + busStop + " to "
						+ routeStopsFound.get(stopWanted).busStop + " in route " + this);

				return routeStopsFound.get(stopWanted).busStop;
			}

		} catch (SQLException e) {
			e.printStackTrace();
		}
		Log.e(TAG, "Error moving in route");
		return null;
	}

	/**
	 * Untested?
	 * 
	 * @param context
	 * @param busStop
	 * @param moveAmount
	 * @return
	 */
	List<BusStop> getRouteSection(final Context context, String direction) {

		DatabaseHelper helper = OpenHelperManager.getHelper(context, DatabaseHelper.class);

		if (forwardDirection != null) {

			if (direction != null) {

			} else {
				throw new NullPointerException("direction is null");
			}
		}

		List<BusStop> busStops = new ArrayList<BusStop>();

		try {

			Dao<RouteStop, Integer> routeStopsDao = helper.getRouteStopsDao();
			Dao<BusStop, String> busStopDao = helper.getBusStopDao();

			QueryBuilder<RouteStop, Integer> routeStopsQueryBuilder = routeStopsDao.queryBuilder();
			routeStopsQueryBuilder.where().eq(RouteStop.ROUTE_ID_FIELD_NAME, this.id);
			PreparedQuery<RouteStop> routeStopsPreparedQuery = routeStopsQueryBuilder.prepare();

			List<RouteStop> routeStopsFound = routeStopsDao.query(routeStopsPreparedQuery);
			Collections.sort(routeStopsFound);

			int startStopSeq = -1;
			int endStopSeq = -1;

			if (id == 326) { // U1
				if (direction.equals("E")) {
					startStopSeq = 1;
					endStopSeq = 43;
				} else if (direction.equals(forwardDirection)) {
					startStopSeq = 1;
					endStopSeq = 36;
				} else if (direction.equals(reverseDirection)) {
					startStopSeq = 51;
					endStopSeq = 88;
				} else {
					Log.e(TAG, "Error, unrecognised direction " + direction);
				}
			} else if (id == 468) { // U1N
				startStopSeq = 1;
				endStopSeq = 29;
			} else if (id == 329) { // U2
				if (direction.equals(forwardDirection)) {
					startStopSeq = 1;
					endStopSeq = 22;
				} else if (direction.equals(reverseDirection)) {
					startStopSeq = 23;
					endStopSeq = 43;
				} else {
					Log.e(TAG, "Error, unrecognised direction " + direction);
				}
			} else if (id == 327) { // U6
				if (direction.equals(forwardDirection)) {
					startStopSeq = 1;
					endStopSeq = 44;
				} else if (direction.equals(reverseDirection)) {
					startStopSeq = 45;
					endStopSeq = 93;
				} else {
					Log.e(TAG, "Error, unrecognised direction " + direction);
				}
			} else if (id == 354) { // U9
				Calendar rightNow = Calendar.getInstance();
				if (rightNow.get(Calendar.HOUR_OF_DAY) < 12) {
					startStopSeq = 1;
					endStopSeq = 40; // TODO: Guess, and untested
				} else {
					startStopSeq = 41; // TODO: Guess, and untested
					endStopSeq = 74;
				}
			} else {
				Log.e(TAG, "Error, unrecognised route " + id);
			}

			for (RouteStop routeStop : routeStopsFound) {
				if (routeStop.sequence >= startStopSeq && routeStop.sequence <= endStopSeq) {
					busStopDao.refresh(routeStop.busStop);
					busStops.add(routeStop.busStop);
				}
			}

			return busStops;

		} catch (SQLException e) {
			e.printStackTrace();
		}
		Log.e(TAG, "Error moving in route");
		return null;

	}

	List<BusStop> getRouteBusStops(final Context context) {

		DatabaseHelper helper = OpenHelperManager.getHelper(context, DatabaseHelper.class);

		List<BusStop> busStops = new ArrayList<BusStop>();

		try {

			Dao<RouteStop, Integer> routeStopsDao = helper.getRouteStopsDao();
			Dao<BusStop, String> busStopDao = helper.getBusStopDao();

			QueryBuilder<RouteStop, Integer> routeStopsQueryBuilder = routeStopsDao.queryBuilder();
			routeStopsQueryBuilder.where().eq(RouteStop.ROUTE_ID_FIELD_NAME, this.id);
			PreparedQuery<RouteStop> routeStopsPreparedQuery = routeStopsQueryBuilder.prepare();

			List<RouteStop> routeStopsFound = routeStopsDao.query(routeStopsPreparedQuery);
			Collections.sort(routeStopsFound);

			for (RouteStop routeStop : routeStopsFound) {
				busStopDao.refresh(routeStop.busStop);
				busStops.add(routeStop.busStop);
			}

			return busStops;
		} catch (SQLException e) {
			e.printStackTrace();
		}
		Log.e(TAG, "Error moving in route");
		return null;

	}

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + id;
		return result;
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		BusRoute other = (BusRoute) obj;
		if (id != other.id)
			return false;
		return true;
	}

}