#!/usr/bin/env perl use strict; use warnings; use 5.010; no if $] >= 5.018, warnings => "experimental::smartmatch"; our $VERSION = '1.05'; binmode( STDOUT, ':encoding(utf-8)' ); use Getopt::Long qw(:config no_ignore_case); use List::Util qw(max); use Travel::Status::DE::VRR; my ( $date, $time, $input_type, $list_lines, $relative_times ); my ( @grep_lines, @grep_platforms ); GetOptions( 'd|date=s' => \$date, 'h|help' => sub { show_help(0) }, 'l|line=s@' => \@grep_lines, 'L|linelist' => \$list_lines, 'p|platform=s@' => \@grep_platforms, 'r|relative' => \$relative_times, 't|time=s' => \$time, 'V|version' => \&show_version, ) or show_help(1); if ( @ARGV != 2 ) { show_help(1); } # --line=foo,bar support @grep_lines = split( qr{,}, join( q{,}, @grep_lines ) ); @grep_platforms = split( qr{,}, join( q{,}, @grep_platforms ) ); my ( $place, $input ) = @ARGV; if ( $input =~ s{ ^ (? address|poi|stop) : }{}x ) { $input_type = $+{type}; } my $status = Travel::Status::DE::VRR->new( date => $date, place => $place, name => $input, time => $time, type => $input_type, ); sub show_help { my ($code) = @_; print "Usage: efa-m [-d ] [-t ] \n" . "See also: man efa-m\n"; exit $code; } sub show_version { say "efa-m version ${VERSION}"; exit 0; } sub display_result { my (@lines) = @_; my @line_length; if ( not @lines ) { die("Nothing to show\n"); } for my $i ( 0 .. 3 ) { $line_length[$i] = max map { length( $_->[$i] ) } @lines; } for my $line (@lines) { if ( length( $line->[4] ) ) { $line->[4] =~ tr{\n\x0d}{ }s; chomp $line->[4]; print "\n"; for my $info_line ( split( qr{\n}, $line->[4] ) ) { say "# ${info_line}"; } } printf( join( q{ }, ( map { "%-${_}s" } @line_length ) ) . "\n", @{$line}[ 0 .. 3 ] ); } return; } sub show_lines { my @output; for my $l ( $status->lines ) { if ( @grep_lines and not( $l->name ~~ \@grep_lines ) ) { next; } push( @output, [ $l->type, $l->name, $l->direction // q{}, $l->route // q{} ] ); } display_result(@output); return; } sub show_results { my @output; for my $d ( $status->results ) { my $platform = $d->platform; my $dtime = ( $relative_times ? sprintf( '%2d min', $d->countdown ) : $d->time ); if ( $d->platform_db ) { $platform .= ' (DB)'; } if ( ( @grep_lines and not( $d->line ~~ \@grep_lines ) ) or ( @grep_platforms and not( $platform ~~ \@grep_platforms ) ) ) { next; } if ( $d->is_cancelled ) { if ($relative_times) { next; } else { $dtime .= ' CANCELED'; } } if ( $d->delay ) { $dtime .= ' (+' . $d->delay . ')'; } push( @output, [ $dtime, $platform, $d->line, $d->destination, $d->info ] ); } display_result(@output); return; } if ( my $err = $status->errstr ) { say STDERR "Request error: ${err}"; exit 2; } if ($list_lines) { show_lines(); } else { show_results(); } __END__ =head1 NAME efa-m - Unofficial interface to the efa.vrr.de departure monitor =head1 SYNOPSIS B [B<-d> I] [B<-t> I