Untested — I didn't install the modules &mdash but the following should do the trick:
sub next_workday_9am {
my ($dt) = @_;
$dt = $dt->add(days => 1)
if $dt->hour() >= 9;
my $wday = $dt->wday();
if ($wday == 6) { $dt = $dt->add(days => 2); }
elsif ($wday == 7) { $dt = $dt->add(days => 1); }
$dt = $dt->truncate(to => 'day')->set(hour => 9);
return $dt;
}
my $sla_period = DateTime::SpanSet->from_set_and_duration(
set => DateTime::Set->from_recurrence(
recurrence => \&next_workday_9am,
),
hours => 8,
);
);
my $outage_start = 1124424000;
my $outage_end = 1140807162;
my $outage = DateTime::Span->from_datetimes(
start => DateTime->from_epoch($outage_start),
before => DateTime->from_epoch($outage_end),
);
print($sla_period->intersection($outage)->duration(), "\n");
DateTime::Set and related modules are definitely the way to go, although they are very daunting at first.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.