summaryrefslogtreecommitdiff
path: root/examples/traintrack
blob: e667fe4a4191b3426e46a21b46a563d529e2f959 (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
#!/usr/bin/env perl
use strict;
use warnings;
use 5.014;
use utf8;

use Cache::Memory;
use Encode qw(decode);
use IO::Handle;
use Time::Progress;
use Travel::Status::DE::IRIS;
use Travel::Status::DE::IRIS::Stations;

STDOUT->autoflush(1);

my $now = DateTime->now( time_zone => 'Europe/Berlin' );

binmode( STDOUT, ':encoding(utf-8)' );

@ARGV = map { decode( 'UTF-8', $_ ) } @ARGV;

my ($dest_station, $train_type, $train_no, $max_stations) = @ARGV;

$max_stations //= 20;

my $main_cache = Cache::Memory->new(
	namespace => 'IRISMain',
	default_expires => '6 hours',
);

my $rt_cache = Cache::Memory->new(
	namespace => 'IRISRT',
	default_expires => '90 seconds'
);

sub get_train_or_undef {
	my ($station, $ignore_errors) = @_;

	my @candidates = Travel::Status::DE::IRIS::Stations::get_station($station);

	if (@candidates == 1) {
		$station = $candidates[0][0];
	}

	my $status = Travel::Status::DE::IRIS->new(
		datetime => $now,
		station => $station,
		with_related => 0,
		main_cache     => $main_cache,
		realtime_cache => $rt_cache,
		lookahead => 300,
	);

	if (my $err = $status->errstr) {
		if ($ignore_errors) {
			return undef;
		}
		else {
			say STDERR "Request error at ${station}: ${err}";
			exit 1;
		}
	}
	if (my $warn = $status->warnstr and not $ignore_errors) {
		say STDERR "Request warning at ${station}: ${warn}";
	}

	my @res = grep { $_->type eq $train_type and $_->train_no eq $train_no } $status->results;

	if (@res == 1) {
		return $res[0];
	}
	return undef;
}

sub get_train_at_next_station_or_undef {
	my ($train) = @_;

	my @route_next = $train->route_post;

	if (not @route_next) {
		return (undef, undef);
	}
	return ($route_next[0], get_train_or_undef($route_next[0]));
}

sub get_train_at_prev_station_or_undef {
	my ($train) = @_;

	my @route_prev = $train->route_pre;

	if (not @route_prev) {
		return (undef, undef);
	}
	return ($route_prev[-1], get_train_or_undef($route_prev[-1]));
}

sub format_datetime {
	my ($dt) = @_;

	if (not defined $dt) {
		return q{};
	}

	return $dt->strftime('%H:%M');
}

sub format_delay {
	my ($delay) = @_;

	if (not defined $delay) {
		return q{};
	}

	return sprintf('%+d', $delay);
}

sub update_trainstatus {
	my ($train) = @_;
	return {
		sched_arrival => $train->sched_arrival,
		rt_arrival => $train->arrival,
		sched_departure => $train->sched_departure,
		rt_departure => $train->departure,
		cancelled_arrival => $train->arrival_is_cancelled,
		cancelled_departure => $train->departure_is_cancelled,
		sched_platform => $train->sched_platform,
		delay => $train->delay,
		arrival_delay => $train->arrival_delay,
		departure_delay => $train->departure_delay,
		platform => $train->platform,
		epoch => ($train->arrival // $train->departure)->epoch,
		last_update => DateTime->now(time_zone => 'Europe/Berlin')->epoch,
	};
}

my $initial_train = get_train_or_undef($dest_station);

if (not defined $initial_train) {
	say STDERR "Did not find $train_type $train_no at $dest_station\n";
	say STDERR "Note that its arrival must not be more than 5 hours in the future\n";
}

my @stations = ($initial_train->route_pre, $dest_station);
my @all_messages = $initial_train->messages;

if (@stations > $max_stations) {
	splice(@stations, 0, @stations - $max_stations);
}

my %status = (
	$dest_station => update_trainstatus($initial_train),
);

my $timer_current = 0;
my $timer_max = @stations;
my $timer = Time::Progress->new(
	min => 1,
	max => $timer_max,
);

for my $station (@stations) {
	print $timer->report(
		"\r\e[2KGetting initial departures  %20b %p  "
		. "(${timer_current}/${timer_max})  ${station}",
		++$timer_current
	);
	if (my $train = get_train_or_undef($station, 1)) {
		$status{$station} = update_trainstatus($train);
	}
	else {
		$status{$station}{skip} = 1;
	}
}

print "\r\e[2K";

while (1) {

	my $prev_epoch = 0;
	my $now = DateTime->now(time_zone => 'Europe/Berlin');

	for my $station (@stations) {
		if ($status{$station}{skip}) {
			printf("%30s   ??:?? → ??:??\n\n", $station);
		}
		else {
			my $epoch = $status{$station}{epoch};
			my @messages = grep { $_->[0]->epoch > $prev_epoch and $_->[0]->epoch <= $epoch } @all_messages;
			for my $message (@messages) {
				printf("%30s   %5s   %s\n", q{}, $message->[0]->strftime('%H:%M'), $message->[1]);
			}
			if (@messages) {
				print "\n";
			}

			if ($prev_epoch < $now->epoch and $now->epoch <= $epoch) {
				printf("%30s   %5s\n\n", '>' x 15, $now->strftime('%H:%M'));
			}

			printf("%30s   %5s → %5s   %s\n",
				$station, format_datetime($status{$station}{sched_arrival}),
				format_datetime($status{$station}{sched_departure}),
				format_delay($status{$station}{delay}),
			);

			if ($status{$station}{arrival_delay} or $status{$station}{departure_delay}) {
				printf("%30s   %5s → %5s\n",
					q{},
					format_datetime($status{$station}{rt_arrival}),
					format_datetime($status{$station}{rt_departure}),
				);
			}

			print "\n";

			$prev_epoch = $epoch;
		}
	}

	sleep(60);

	for my $station (@stations) {
		if (my $train = get_train_or_undef($station, 1)) {
			$status{$station} = update_trainstatus($train);
			@all_messages = $train->messages;
		}
	}
	say "\n----\n";
}