summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2014-01-03 21:03:43 +0100
committerDaniel Friesel <derf@finalrewind.org>2014-01-03 21:03:43 +0100
commit4f59829f6ec70e7322d7d51a885672be46d60792 (patch)
treef9c96926a9fd57351a9100af789c1a750d30e1ad /lib
parent3ad6a8d06d2edc53a20bf905bcaecb8713ead15d (diff)
support unscheduled replacement trains
Diffstat (limited to 'lib')
-rw-r--r--lib/Travel/Status/DE/IRIS.pm105
1 files changed, 59 insertions, 46 deletions
diff --git a/lib/Travel/Status/DE/IRIS.pm b/lib/Travel/Status/DE/IRIS.pm
index 56b438c..6cec7d7 100644
--- a/lib/Travel/Status/DE/IRIS.pm
+++ b/lib/Travel/Status/DE/IRIS.pm
@@ -54,14 +54,65 @@ sub new {
$dt_req->add( hours => 1 );
}
+ $self->get_realtime;
+
@{ $self->{results} }
= sort { $a->{datetime} <=> $b->{datetime} } @{ $self->{results} };
- $self->get_realtime;
-
return $self;
}
+sub add_result {
+ my ( $self, $station, $s ) = @_;
+
+ my $id = $s->getAttribute('id');
+ my $e_tl = ( $s->findnodes('./tl') )[0];
+ my $e_ar = ( $s->findnodes('./ar') )[0];
+ my $e_dp = ( $s->findnodes('./dp') )[0];
+
+ if ( not $e_tl ) {
+ return;
+ }
+
+ my %data = (
+ raw_id => $id,
+ class => $e_tl->getAttribute('f'), # D N S F
+ unknown_t => $e_tl->getAttribute('t'), # p
+ train_no => $e_tl->getAttribute('n'), # dep number
+ type => $e_tl->getAttribute('c'), # S/ICE/ERB/...
+ line_no => $e_tl->getAttribute('l'), # 1 -> S1, ...
+ station => $station,
+ unknown_o => $e_tl->getAttribute('o'), # owner: 03/80/R2/...
+ );
+
+ if ($e_ar) {
+ $data{arrival_ts} = $e_ar->getAttribute('pt');
+ $data{platform} = $e_ar->getAttribute('pp'); # string, not number!
+ $data{route_pre} = $e_ar->getAttribute('ppth');
+ $data{route_start} = $e_ar->getAttribute('pde');
+ $data{arrival_wings} = $e_ar->getAttribute('wings');
+ }
+
+ if ($e_dp) {
+ $data{departure_ts} = $e_dp->getAttribute('pt');
+ $data{platform} = $e_dp->getAttribute('pp'); # string, not number!
+ $data{route_post} = $e_dp->getAttribute('ppth');
+ $data{route_end} = $e_dp->getAttribute('pde');
+ $data{departure_wings} = $e_dp->getAttribute('wings');
+ }
+
+ my $result = Travel::Status::DE::IRIS::Result->new(%data);
+
+ # if scheduled departure and current departure are not within the
+ # same hour, trains are reported twice. Don't add duplicates in
+ # that case.
+ if ( not first { $_->raw_id eq $id } @{ $self->{results} } ) {
+ push( @{ $self->{results} }, $result, );
+ }
+
+ return $result;
+}
+
sub get_timetable {
my ( $self, $eva, $dt ) = @_;
my $ua = $self->{user_agent};
@@ -83,51 +134,8 @@ sub get_timetable {
my $station = ( $xml->findnodes('/timetable') )[0]->getAttribute('station');
for my $s ( $xml->findnodes('/timetable/s') ) {
- my $id = $s->getAttribute('id');
- my $e_tl = ( $s->findnodes('./tl') )[0];
- my $e_ar = ( $s->findnodes('./ar') )[0];
- my $e_dp = ( $s->findnodes('./dp') )[0];
-
- if ( not $e_tl ) {
- next;
- }
-
- my %data = (
- raw_id => $id,
- class => $e_tl->getAttribute('f'), # D N S F
- unknown_t => $e_tl->getAttribute('t'), # p
- train_no => $e_tl->getAttribute('n'), # dep number
- type => $e_tl->getAttribute('c'), # S/ICE/ERB/...
- line_no => $e_tl->getAttribute('l'), # 1 -> S1, ...
- station => $station,
- unknown_o => $e_tl->getAttribute('o'), # owner: 03/80/R2/...
- );
-
- if ($e_ar) {
- $data{arrival_ts} = $e_ar->getAttribute('pt');
- $data{platform} = $e_ar->getAttribute('pp'); # string, not number!
- $data{route_pre} = $e_ar->getAttribute('ppth');
- $data{route_start} = $e_ar->getAttribute('pde');
- $data{arrival_wings} = $e_ar->getAttribute('wings');
- }
- if ($e_dp) {
- $data{departure_ts} = $e_dp->getAttribute('pt');
- $data{platform} = $e_dp->getAttribute('pp'); # string, not number!
- $data{route_post} = $e_dp->getAttribute('ppth');
- $data{route_end} = $e_dp->getAttribute('pde');
- $data{departure_wings} = $e_dp->getAttribute('wings');
- }
-
- # if scheduled departure and current departure are not within the
- # same hour, trains are reported twice. Don't add duplicates in
- # that case.
- if ( not first { $_->raw_id eq $id } @{ $self->{results} } ) {
- push(
- @{ $self->{results} },
- Travel::Status::DE::IRIS::Result->new(%data)
- );
- }
+ $self->add_result( $station, $s );
}
return $self;
@@ -147,6 +155,8 @@ sub get_realtime {
my $xml = XML::LibXML->load_xml( string => $res->decoded_content );
+ my $station = ( $xml->findnodes('/timetable') )[0]->getAttribute('station');
+
for my $s ( $xml->findnodes('/timetable/s') ) {
my $id = $s->getAttribute('id');
my $e_tl = ( $s->findnodes('./tl') )[0];
@@ -159,6 +169,9 @@ sub get_realtime {
my $result = first { $_->raw_id eq $id } $self->results;
if ( not $result ) {
+ $result = $self->add_result( $station, $s );
+ }
+ if ( not $result ) {
next;
}