From 5859764fbf3b2bb63edc1d4cbb1a501441ea33f3 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Sat, 27 Apr 2024 09:17:20 +0200 Subject: Always parse wagons --- lib/Travel/Status/DE/DBWagenreihung.pm | 35 ++++++++-------------------------- 1 file changed, 8 insertions(+), 27 deletions(-) (limited to 'lib/Travel/Status/DE') diff --git a/lib/Travel/Status/DE/DBWagenreihung.pm b/lib/Travel/Status/DE/DBWagenreihung.pm index eaaabd0..5f7f0ba 100644 --- a/lib/Travel/Status/DE/DBWagenreihung.pm +++ b/lib/Travel/Status/DE/DBWagenreihung.pm @@ -17,7 +17,7 @@ use Travel::Status::DE::DBWagenreihung::Wagon; our $VERSION = '0.12'; Travel::Status::DE::DBWagenreihung->mk_ro_accessors( - qw(platform station train_no train_type)); + qw(direction platform station train_no train_type)); my %is_redesign = ( "02" => 1, @@ -197,6 +197,8 @@ sub parse_wagonorder { $self->{train_type} = $self->{data}{istformation}{zuggattung}; $self->{train_no} = $self->{data}{istformation}{zugnummer}; + + $self->parse_wagons; } sub errstr { @@ -209,13 +211,11 @@ sub TO_JSON { my ($self) = @_; # ensure that all objects are available - $self->direction; $self->origins; $self->destinations; $self->train_numbers; $self->train_descriptions; $self->sections; - $self->wagons; my %copy = %{$self}; @@ -224,18 +224,6 @@ sub TO_JSON { return {%copy}; } -sub direction { - my ($self) = @_; - - if ( not exists $self->{direction} ) { - - # direction is set while parsing wagons - $self->wagons; - } - - return $self->{direction}; -} - sub has_bad_wagons { my ($self) = @_; @@ -393,12 +381,6 @@ sub train_descriptions { return @{ $self->{train_descriptions} }; } - if ( not exists $self->{wagons} ) { - - # wagongroups are set while parsong wagons - $self->wagons; - } - for my $wagons ( @{ $self->{wagongroups} } ) { my ( $short, $desc ) = $self->wagongroup_description( @{$wagons} ); my @sections = uniq map { $_->section } @{$wagons}; @@ -663,10 +645,11 @@ sub wagongroup_subtype { sub wagons { my ($self) = @_; + return @{ $self->{wagons} // [] }; +} - if ( exists $self->{wagons} ) { - return @{ $self->{wagons} }; - } +sub parse_wagons { + my ($self) = @_; my @wagon_groups; @@ -711,8 +694,6 @@ sub wagons { } $self->{wagongroups} = [@wagon_groups]; - - return @{ $self->{wagons} // [] }; } sub get_with_cache { @@ -931,7 +912,7 @@ L =head1 AUTHOR -Copyright (C) 2018-2019 by Birte Kristina Friesel Ederf@finalrewind.orgE +Copyright (C) 2018-2024 by Birte Kristina Friesel Ederf@finalrewind.orgE =head1 LICENSE -- cgit v1.2.3