blob: 665a98e761da0c1069fba1627b91d2ea9b8edf81 (
plain)
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
|
package Travel::Routing::DE::HAFAS::Utils;
# vim:foldmethod=marker
use strict;
use warnings;
use 5.014;
use parent 'Exporter';
our @EXPORT = qw(handle_day_change);
sub handle_day_change {
my (%opt) = @_;
my $datestr = $opt{date};
my $timestr = $opt{time};
my $offset_days = 0;
# timestr may include a day offset, resulting in DDHHMMSS
if ( length($timestr) == 8 ) {
$offset_days = substr( $timestr, 0, 2, q{} );
}
my $ts = $opt{strp_obj}->parse_datetime("${datestr}T${timestr}");
if ($offset_days) {
$ts->add( days => $offset_days );
}
return $ts;
}
1;
__END__
=head1 NAME
Travel::Routing::DE::HAFAS::Utils - Internal Travel::Routing::DE::HAFAS utilities
=head1 SYNOPSIS
None.
=head1 VERSION
version 0.04
=head1 METHODS
This methods are not meant to be called externally.
=over
=item handle_day_change(I<%opt>)
Use B<strp_obj> to parse HAFAS-provided B<date> and B<time> and handle a day
change (encoded by prefixing B<time> with two additional digits) if necessary.
Returns a DateTime(3pm) object.
=back
=head1 DIAGNOSTICS
None.
=head1 DEPENDENCIES
None.
=head1 AUTHOR
Copyright (C) 2023 by Birte Kristina Friesel E<lt>derf@finalrewind.orgE<gt>
=head1 LICENSE
This program is licensed under the same terms as Perl itself.
|