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
|
package Travel::Routing::DE::DBRIS::Connection::Segment;
use strict;
use warnings;
use 5.020;
use parent 'Class::Accessor';
use DateTime::Duration;
use Travel::Status::DE::DBRIS::Location;
our $VERSION = '0.01';
Travel::Routing::DE::DBRIS::Connection::Segment->mk_ro_accessors(
qw(
dep_name dep_eva arr_name arr_eva
train train_long train_mid train_short direction
sched_dep rt_dep dep dep_platform
sched_arr rt_arr arr arr_platform
sched_duration rt_duration duration duration_percent
journey_id
occupancy occupancy_first occupancy_second
is_transfer is_walk walk_name distance_m
)
);
sub new {
my ( $obj, %opt ) = @_;
my $json = $opt{json};
my $strptime = $opt{strptime_obj};
my $ref = {
arr_eva => $json->{ankunftsOrtExtId},
arr_name => $json->{ankunftsOrt},
dep_eva => $json->{abfahrtsOrtExtId},
dep_name => $json->{abfahrtsOrt},
train => $json->{verkehrsmittel}{name},
train_short => $json->{verkehrsmittel}{kurzText},
train_mid => $json->{verkehrsmittel}{mittelText},
train_long => $json->{verkehrsmittel}{langText},
direction => $json->{verkehrsmittel}{richtung},
distance_m => $json->{distanz},
};
if ( my $ts = $json->{abfahrtsZeitpunkt} ) {
$ref->{sched_dep} = $strptime->parse_datetime($ts);
}
if ( my $ts = $json->{ezAbfahrtsZeitpunkt} ) {
$ref->{rt_dep} = $strptime->parse_datetime($ts);
}
$ref->{dep} = $ref->{rt_dep} // $ref->{sched_dep};
if ( my $ts = $json->{ankunftsZeitpunkt} ) {
$ref->{sched_arr} = $strptime->parse_datetime($ts);
}
if ( my $ts = $json->{ezAnkunftsZeitpunkt} ) {
$ref->{rt_arr} = $strptime->parse_datetime($ts);
}
$ref->{arr} = $ref->{rt_arr} // $ref->{sched_arr};
# PUBLICTRANSPORT uses abschnittsDauerInSeconds; WALK uses abschnittsDauer
if ( my $d = $json->{abschnittsDauerInSeconds} // $json->{abschnittsDauer} )
{
$ref->{sched_duration} = DateTime::Duration->new(
hours => int( $d / 3600 ),
minutes => int( ( $d % 3600 ) / 60 ),
seconds => $d % 60,
);
}
if ( my $d = $json->{ezAbschnittsDauerInSeconds}
// $json->{ezAbschnittsDauer} )
{
$ref->{rt_duration} = DateTime::Duration->new(
hours => int( $d / 3600 ),
minutes => int( ( $d % 3600 ) / 60 ),
seconds => $d % 60,
);
}
$ref->{duration} = $ref->{rt_duration} // $ref->{sched_duration};
for my $occupancy ( @{ $json->{auslastungsmeldungen} // [] } ) {
if ( $occupancy->{klasse} eq 'KLASSE_1' ) {
$ref->{occupancy_first} = $occupancy->{stufe};
}
if ( $occupancy->{klasse} eq 'KLASSE_2' ) {
$ref->{occupancy_second} = $occupancy->{stufe};
}
}
if ( $ref->{occupancy_first} and $ref->{occupancy_second} ) {
$ref->{occupancy}
= ( $ref->{occupancy_first} + $ref->{occupancy_second} ) / 2;
}
elsif ( $ref->{occupancy_first} ) {
$ref->{occupancy} = $ref->{occupancy_first};
}
elsif ( $ref->{occupancy_second} ) {
$ref->{occupancy} = $ref->{occupancy_second};
}
for my $stop ( @{ $json->{halte} // [] } ) {
push(
@{ $ref->{route} },
Travel::Status::DE::DBRIS::Location->new(
json => $stop,
strptime_obj => $strptime
)
);
}
for my $attr ( @{ $json->{verkehrsmittel}{zugattribute} // [] } ) {
push( @{ $ref->{attributes} }, $attr );
}
for my $message ( @{ $json->{himMeldungen} // [] } ) {
push( @{ $ref->{messages_him} }, $message );
}
for my $message ( @{ $json->{risNotizen} // [] } ) {
push( @{ $ref->{messages_ris} }, $message );
}
for my $message ( @{ $json->{priorisierteMeldungen} // [] } ) {
push( @{ $ref->{messages_prio} }, $message );
}
if ( $json->{verkehrsmittel}{typ} eq 'WALK' ) {
$ref->{is_walk} = 1;
$ref->{walk_name} = $json->{verkehrsmittel}{name};
}
if ( $json->{verkehrsmittel}{typ} eq 'TRANSFER' ) {
$ref->{is_transfer} = 1;
$ref->{transfer_notes}
= [ map { $_->{value} } @{ $json->{transferNotes} // [] } ];
}
if ( @{ $ref->{route} // [] } ) {
$ref->{dep_platform} = $ref->{route}[0]->platform;
$ref->{arr_platform} = $ref->{route}[-1]->platform;
}
bless( $ref, $obj );
return $ref;
}
sub attributes {
my ($self) = @_;
return @{ $self->{attributes} // [] };
}
sub messages_him {
my ($self) = @_;
return @{ $self->{messages_him} // [] };
}
sub messages_ris {
my ($self) = @_;
return @{ $self->{messages_ris} // [] };
}
sub messages_prio {
my ($self) = @_;
return @{ $self->{messages_prio} // [] };
}
sub route {
my ($self) = @_;
return @{ $self->{route} // [] }[ 1 .. $#{ $self->{route} } - 1 ];
}
sub transfer_notes {
my ($self) = @_;
return @{ $self->{transfer_notes} // [] };
}
1;
|