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.
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link or
or How to display code and escape characters
are good places to start.
|