package AudioFile::Find; use warnings; use strict; use File::Find::Rule; use AudioFile::Info; use List::MoreUtils qw( zip ); use Data::Dumper; =head1 NAME AudioFile::Find - Find Audiofiles located on your harddisk. Supports MP3, WMA and Ogg Vorbis files. =head1 VERSION Version 0.01 =cut our $VERSION = '0.01'; =head1 SYNOPSIS use AudioFile::Find; my $finder = AudioFile::Find->new( 'some/dir' ); # find everything my @audiofiles = $finder->search(); # specify a search directory my @audiofiles = $finder->search( 'some/other/dir' ); #same for genre, title, track, artist and album my @audiofiles = $finder->search( artist => 'Seeed' ); #search using a regex my @audiofiles = $finder->search( 'some/other/dir', title => qr/Ding/ ); # anonymous subroutine that returns true or false my @audiofiles = $finder->search( 'some/other/dir', track => sub { return shift > 10; } ); =head1 METHODS =head2 new Creates an object of this class. Takes an optional single argument which is the directory to search in. =cut sub new { my ($class, $dir) = @_; return bless { dir => $dir }, $class; } =head2 new Sets and returns the directory to search. =cut sub dir { my ($self, $dir) = @_; $self->{dir} = $dir if defined $dir; return $self->{dir}; } =head2 search Starts the search and returns a hash of filenames as keys and AudioFile::Info-Objects as values. You may specify a search directory as the first argument and also pass a hash with search criteria. See the synopsis for details. =cut sub search { my $self = shift; my $dir = @_ % 2 == 0 ? '' : shift; my $args = {@_}; my %audio; for ( File::Find::Rule->file()->name( '*.mp3', '*.ogg', '*.wma' )->in( $dir || $self->dir || '.' ) ) { my $info = AudioFile::Info->new($_); $audio{$_} = $info if $self->pass( $info, $args); } return %audio; } =head2 pass Checks wether a given AudioFile::Info-Object meets given criteria. First argument is the Info-Object, second argument is a reference to the criteria hash. =cut sub pass { my ($self, $file, $criteria) = @_; my $crit = Dumper($criteria); while ( my ($key, $criterium) = each %$criteria ) { my $value = $file->$key; if ( ref($criterium) eq "Regexp" ) { return unless $value =~ $criterium; } elsif ( ref($criterium) eq "CODE" ) { return unless $criterium->( $file->$key ); } else { return unless $file->$key eq $criterium; } } return 1; } =head1 AUTHOR Markus, C<< >> =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT You can find documentation for this module with the perldoc command. perldoc AudioFile::Find You can also look for information at: =over 4 =item * RT: CPAN's request tracker L =item * AnnoCPAN: Annotated CPAN documentation L =item * CPAN Ratings L =item * Search CPAN L =back =head1 ACKNOWLEDGEMENTS =head1 COPYRIGHT & LICENSE Copyright 2008 Markus 'holli' Holzer, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1; # End of AudioFile::Find