Calendar-Slots
view release on metacpan or search on metacpan
lib/Calendar/Slots.pm view on Meta::CPAN
my @slots = @s_wk;
for( @s_date ) {
@slots = $self->_merge( { materialize => 1 }, $_, @slots ); # put the dates first
}
$self->clear_slots;
$self->add_slots( @slots );
return $self;
}
sub find {
my $self = shift;
my %args = @_;
for my $slot ( grep { $_->type eq 'date' } $self->all ) {
return $slot
if $slot->contains(%args);
}
for my $slot ( grep { $_->type eq 'weekday' } $self->all ) {
return $slot
if $slot->contains(%args);
}
}
sub name {
my $slot;
return $slot->name if $slot = find( @_ );
}
sub as_table {
my $self = shift;
require Data::Format::Pretty::Console;
return Data::Format::Pretty::Console::format_pretty(
[ map { { %$_ } } $self->sorted ],
{ table_column_orders=>[ [qw/name start end when type _weekday/] ] }
);
}
1;
__END__
=pod
=head1 NAME
Calendar::Slots - Manage time slots
=head1 VERSION
version 0.15
=head1 SYNOPSIS
use Calendar::Slots;
my $cal = new Calendar::Slots;
$cal->slot( date=>'2009-10-11', start=>'10:30', end=>'11:30', name=>'busy' );
my $slot = $cal->find( date=>'2009-10-11', time=>'11:00' );
print $slot->name; # 'busy'
=head1 DESCRIPTION
This is a simple module to manage a calendar of very generic time slots. Time slots are anything
with a start and end time on a given date or weekday. Time slots cannot overlap. If a new
time slot overlaps another pre-existing time slot, the calendar will acommodate the slot automatically.
It handles two types of slots: fixed dates, or recurring on weekdays.
When looking for an event, it will search from most specific (date) to more
generic (recurring). That is, if a slot exist for both a date and a weekday,
it returns the date slot only.
The calendar is able to compact itself and generate rows that can be easily
stored in a file or database.
=head1 LIMITATIONS
Some of it current limitations:
=over
=item * No overlapping of time slots.
=item * If a time-slot spans over midnight, two slots will be created, one for the
selected date until midnight, and another for the next day from midnight until end-time.
=item * It does not handle timezones.
=item * It does not know of daylight-savings or any other DateTime features.
=back
=head1 METHODS
=head2 slot ( name=>Str, { date=>'YYYY-MM-DD' | weekday=>1..7 | start_date/end_date }, start=>'HH:MM', end=>'HH:MM' )
Add a time slot to the calendar.
If the new time slot overlaps an existing slot with the same C<name>,
the slots are merged and become a single slot.
If the new time slot overlaps an existing slot with a different C<name>,
it overwrites the previous slot, splitting it if necessary.
my $cal = Calendar::Slots->new;
# reserve that monday slot
$cal->slot( date=>'2009-11-30', start=>'10:30', end=>'11:00', name=>'doctor appointment' );
# create a time slot for a given date
$cal->slot( date=>'2009-01-01', start=>'10:30', end=>'24:00' );
# create a recurring time slot over 3 calendar days
$cal->slot( start_date=>'2009-01-01', end_date=>'2009-02-01', start=>'10:30', end=>'24:00' );
=head2 find ( { date=>'YYYY-MM-DD' | weekday=>1..7 }, time=>'HH:MM' )
Returns a L<Calendar::Slots::Slot> object for a given .
$cal->find( weekday=>1, time=>'11:30' ); # find what's on Monday at 11:30
=head2 name
Shortcut method to L<find|/find> a slot and return a name.
=head2 sorted
Returns a ARRAY of all slot objects in the calendar.
=head2 materialize ( start_date, end_date )
Returns an instance of L<Calendar::Slots> with
date slots converted into weekdays for a given
date range.
my $new_cal = $cal->materialize( 2012_10_22, 2012_10_28 );
=head2 week_of ( date )
Returns a materialized instance of L<Calendar::Slots> with actual
dates merged for the week that comprises
the passed C<date>.
my $week = $cal->week_of( 2012_10_22 );
$week->find( weekday=>2, time=>10_30 ); # ...
=head2 all
Returns an ARRAY of all slot objects in the calendar.
=head2 as_table
Returns a console string as a table for the calendar.
Requires that L<Data::Format::Pretty::Console> be installed.
print $cal->as_table;
=head1 SEE ALSO
L<DateTime::SpanSet>
=head1 TODO
There are many improvements planned for this module, as this is just
an ALPHA release that allows me to get somethings done at $work...
=over
=item * Other types of recurrence: first Monday, last Friday of September...
=item * Merge several calendars into one.
=item * Create subclasses of Calendar::Slots::Slot for each slot type.
=item * Better input formatting based on DateTime objects and the such.
=head1 AUTHOR
Rodrigo de Oliveira C<rodrigolive@gmail.com>
=head1 LICENSE
This library is free software. You can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
( run in 2.048 seconds using v1.01-cache-2.11-cpan-98e64b0badf )