package Travel::Routing::DE::HAFAS::Connection::Section; # vim:foldmethod=marker use strict; use warnings; use 5.014; use parent 'Class::Accessor'; use DateTime::Duration; use Travel::Routing::DE::HAFAS::Utils; our $VERSION = '0.00'; Travel::Routing::DE::HAFAS::Connection::Section->mk_ro_accessors( qw(type schep_dep rt_dep sched_arr rt_arr dep_datetime arr_datetime arr_delay dep_delay journey distance duration transfer_duration dep_loc arr_loc dep_platform arr_platform dep_cancelled arr_cancelled operator id name category category_long class number line line_no load delay direction) ); # {{{ Constructor sub new { my ( $obj, %opt ) = @_; my $hafas = $opt{hafas}; my $sec = $opt{sec}; my $date = $opt{date}; my $locs = $opt{locL}; my @prodL = @{ $opt{common}{prodL} // [] }; # himL may only be present in departure monitor mode my @remL = @{ $opt{common}{remL} // [] }; my @himL = @{ $opt{common}{himL} // [] }; my @msgL = ( @{ $sec->{dep}{msgL} // [] }, @{ $sec->{arr}{msgL} // [] }, @{ $sec->{jny}{msgL} // [] } ); my @messages; for my $msg (@msgL) { if ( $msg->{type} eq 'REM' and defined $msg->{remX} ) { push( @messages, $hafas->add_message( $remL[ $msg->{remX} ] ) ); } elsif ( $msg->{type} eq 'HIM' and defined $msg->{himX} ) { push( @messages, $hafas->add_message( $himL[ $msg->{himX} ], 1 ) ); } else { say "Unknown message type $msg->{type}"; } } my $strptime = DateTime::Format::Strptime->new( pattern => '%Y%m%dT%H%M%S', time_zone => 'Europe/Berlin' ); my $sched_dep = $sec->{dep}{dTimeS}; my $rt_dep = $sec->{dep}{dTimeR}; my $sched_arr = $sec->{arr}{aTimeS}; my $rt_arr = $sec->{arr}{aTimeR}; for my $ts ( $sched_dep, $rt_dep, $sched_arr, $rt_arr ) { if ($ts) { $ts = handle_day_change( date => $date, time => $ts, strp_obj => $strptime, ); } } my $ref = { type => $sec->{type}, sched_dep => $sched_dep, rt_dep => $rt_dep, sched_arr => $sched_arr, rt_arr => $rt_arr, dep_datetime => $rt_dep // $sched_dep, arr_datetime => $rt_arr // $sched_arr, dep_loc => $locs->[ $sec->{dep}{locX} ], arr_loc => $locs->[ $sec->{arr}{locX} ], dep_platform => $sec->{dep}{dplatfR} // $sec->{dep}{dPlatfS}, arr_platform => $sec->{arr}{aplatfR} // $sec->{arr}{aPlatfS}, dep_cancelled => $sec->{dep}{dCncl}, arr_cancelled => $sec->{arr}{aCncl}, messages => \@messages, }; if ( $sched_dep and $rt_dep ) { $ref->{dep_delay} = ( $rt_dep->epoch - $sched_dep->epoch ) / 60; } if ( $sched_arr and $rt_arr ) { $ref->{arr_delay} = ( $rt_arr->epoch - $sched_arr->epoch ) / 60; } if ( $sec->{type} eq 'JNY' ) { #operator id name type type_long class number line line_no load delay direction) my $journey = $sec->{jny}; my $product = $prodL[ $journey->{prodX} ]; $ref->{id} = $journey->{jid}; $ref->{direction} = $journey->{dirTxt}; $ref->{name} = $product->{addName} // $product->{name}; $ref->{category} = $product->{prodCtx}{catOut}; $ref->{category_long} = $product->{prodCtx}{catOutL}; $ref->{class} = $product->{cls}; $ref->{number} = $product->{prodCtx}{num}; $ref->{line} = $ref->{name}; $ref->{line_no} = $product->{prodCtx}{line}; if ( $ref->{name} and $ref->{category} and $ref->{name} eq $ref->{category} and $product->{nameS} ) { $ref->{name} .= ' ' . $product->{nameS}; } } elsif ( $sec->{type} eq 'WALK' ) { $ref->{distance} = $sec->{gis}{dist}; my $duration = $sec->{gis}{durS}; $ref->{duration} = DateTime::Duration->new( hours => substr( $duration, 0, 2 ), minutes => substr( $duration, 2, 2 ), seconds => substr( $duration, 4, 2 ), ); } bless( $ref, $obj ); return $ref; } # }}} # {{{ Private sub set_transfer_from_previous_section { my ( $self, $prev_sec ) = @_; my $delta = $self->dep_datetime - $prev_sec->arr_datetime; $self->{transfer_duration} = $delta; } # }}} # {{{ Accessors sub messages { my ($self) = @_; if ( $self->{messages} ) { return @{ $self->{messages} }; } return; } # }}} 1; __END__ =head1 NAME Travel::Routing::DE::HAFAS::Connection::Section - A single trip between two stops =head1 SYNOPSIS # $connection is a Travel::Routing::DE::HAFAS::Connection object for my $sec ( $connection->sections ) { printf("%s -> %s\n%s ab %s\n%s an %s\n\n", $sec->name, $sec->direction, $sec->dep_datetime->strftime('%H:%M'), $sec->dep_loc->name, $sec->arr_datetime->strftime('%H:%M'), $sec->arr_loc->name, ); } =head1 VERSION version 0.01 =head1 DESCRIPTION Travel::Routing::DE::HAFAS::Connection::Section describes a single section between two stops, which is typically a public transit trip or a walk. It is part of a series of sections held by Travel::Routing::DE::HAFAS::Connection(3pm). =head1 METHODS Some accessors depend on the section type. Those are annotated with the types in which they are valid and return undef when called in other contexts. =head2 ACCESSORS =over =item $section->arr_cancelled True if the arrival at the end of this section has been cancelled. False otherwise. =item $section->arr_datetime DateTime(3pm) object holding the arrival time and date. Based on real-time data if available, falls back to schedule data otherwise. =item $section->arr_delay Arrival delay in minutes. Undef if unknown. =item $section->arr_loc Travel::Routing::DE::HAFAS::Location(3pm) object describing the arrival stop. =item $section->arr_platform Arrival platform as string, not necessarily numeric. Undef if unknown. =item $section->dep_cancelled True if the departure at the start of this section has been cancelled. False otherwise. =item $section->dep_datetime DateTime(3pm) object holding the departure time and date. Based on real-time data if available, falls back to schedule data otherwise. =item $section->dep_delay Departure dlay in minutes. Undef if unknown. =item $section->dep_loc Travel::Routing::DE::HAFAS::Location(3pm) object describing the departure stop. =item $section->dep_platform Deprarture platform as string, not necessarily numeric. Undef if unknown. =item $section->direction (JNY) Travel direction of this trip; this is typically the text printed on the transport vehicle itself. May differ from its terminus. =item $section->distance (WALK) Walking distance in meters. Does not take vertical elevation changes into account. =item $section->duration (WALK) DateTime::Duration(3pm) oobject holding the walking duration. Typically assumes a slow pace. =item $section->id (JNY) HAFAS-internal journey ID. =item $section->line (JNY) Trip or line name in a format like "Bus SB16" (Bus line SB16), "RE 42" (RegionalExpress train 42) or "IC 2901" (InterCity train 2901, no line information). Note that this accessor does not return line information for IC/ICE/EC services, even if it is available. Use B for those. =item $section->line_no (JNY) Line identifier; undef if unknown. The line identifier may be a single number such as "11" (underground train line U 11), a single word such as "AIR" or a combination (e.g. "SB16"). May also provide line numbers of IC/ICE services. =item $section->messages List of Travel::Status::DE::HAFAS::Message(3pm) objects associated with this connection section. Typically contains messages related to the mode of transport, such as construction sites, Wi-Fi availability, and the like. =item $section->name (JNY) Trip or line name in a format like "Bus SB16" (Bus line SB16) or "RE 10111" (RegionalExpress train 10111, no line information). =item $section->number (JNY) Trip number (e.g. train number); undef if unknown. =item $section->rt_arr DateTime(3pm) object holding real-time arrival if available. Undef otherwise. =item $section->rt_dep DateTime(3pm) object holding real-time departure if available. Undef otherwise. =item $section->sched_arr DateTime(3pm) object holding scheduled arrival if available. Undef otherwise. =item $section->schep_dep DateTime(3pm) object holding scheduled departure if available. Undef otherwise. =item $section->transfer_duration (JNY) DateTime::Duration(3pm) object holding the difference between the departure of this journey and the arrival of the previous journey in the connection -- i.e., the amount of time available for changing platforms. Undef for the first journey in a connuction. =item $section->type Type of this section as exposeed by the HAFAS backend. Known types: B (a public transit journey) and B (walking). =back =head1 DIAGNOSTICS None. =head1 DEPENDENCIES DateTime::Duration(3pm), Travel::Routing::DE::HAFAS::Utils(3pm). =head1 BUGS AND LIMITATIONS None known. =head1 SEE ALSO Travel::Routing::DE::HAFAS(3pm), Travel::Routing::DE::HAFAS::Connection(3pm). =head1 AUTHOR Copyright (C) 2023 by Birte Kristina Friesel Ederf@finalrewind.orgE =head1 LICENSE This program is licensed under the same terms as Perl itself.