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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
package Directory::Scratch::Structured ;
use strict;
use warnings ;
BEGIN
{
use Sub::Exporter -setup => { exports => [ qw(create_structured_tree), piggyback_directory_scratch => \&piggyback ] } ;
use Sub::Install ;
use vars qw ($VERSION);
$VERSION = '0.04';
}
#-------------------------------------------------------------------------------
use English qw( -no_match_vars ) ;
use Readonly ;
Readonly my $EMPTY_STRING => q{} ;
Readonly my $ROOT_DIRECTORY => q{.} ;
use Carp qw(carp croak confess) ;
use Directory::Scratch ;
#-------------------------------------------------------------------------------
=head1 NAME
Directory::Scratch::Structured - creates temporary files and directories from a structured description
=head1 SYNOPSIS
my %tree_structure =
(
dir_1 =>
{
subdir_1 =>{},
file_1 =>[],
file_a => [],
},
dir_2 =>
{
subdir_2 =>
{
file_22 =>[],
file_2a =>[],
},
file_2 =>[],
file_a =>['12345'],
file_b =>[],
},
file_0 => [] ,
) ;
use Directory::Scratch::Structured qw(create_structured_tree) ;
my $temporary_directory = create_structured_tree(%tree_structure) ;
or
use Directory::Scratch ;
use Directory::Scratch::Structured qw(piggyback_directory_scratch) ;
my $temporary_directory = Directory::Scratch->new;
$temporary_directory->create_structured_tree(%tree_structure) ;
=head1 DESCRIPTION
This module adds a I<create_structured_tree> subroutine to the L<Directory::Scratch>.
=head1 DOCUMENTATION
I needed a subroutine to create a bunch of temporary directories and files while running tests. I used the excellent
L<Directory::Scratch> to implement such a functionality. I proposed the subroutine to the L<Directory::Scratch> author
but he preferred to implement a subroutine using an unstructured input data based on the fact that L<Directory::Scratch>
didn't use structured data. This is, IMHO, flawed design, though it may require slightly less typing.
I proposed a hybrid solution to reduce the amount of subroutines and integrate the subroutine using structured input into
L<Directory::Scratch> but we didn't reach an agreement on the API. Instead I decided that I would piggyback on L<Directory::Scratch>.
You can access I<create_structured_tree> through a subroutine or a method through a L<Directory::Scratch> object.
Whichever interface you choose, the argument to the I<create_structured_tree> consists of tuples (hash entries). The key represents
the name of the object to create in the directory.
If the value is of type:
=over 2
=item ARRAY
A file will be created, it's contents are the contents of the array (See L<Directory::Scratch>)
=item HASH
A directory will be created. the element of the hash will also be , recursively, created
=item OTHER
The subroutine will croak.
=back
=head1 SUBROUTINES/METHODS
=cut
#-------------------------------------------------------------------------------
sub create_structured_tree
{
=head2 create_structured_tree
use Directory::Scratch::Structured qw(create_structured_tree) ;
my $temporary_directory = create_structured_tree(%tree_structure) ;
my $base = $temporary_directory->base() ;
Returns a default L<Directory::Scratch> object.
=cut
my (%directory_entries) = @_ ;
my $temporary_directory = new Directory::Scratch() ;
_create_structured_tree($temporary_directory, \%directory_entries, $ROOT_DIRECTORY) ;
return($temporary_directory ) ;
}
#-------------------------------------------------------------------------------
sub directory_scratch_create_structured_tree
{
=head2 directory_scratch_create_structured_tree
Adds I<create_structured_tree> to L<Directory::Scratch> when you Load B<Directory::Scratch::Structured>
with the B<piggyback_directory_scratch> option.
use Directory::Scratch ;
use Directory::Scratch::Structured qw(piggyback_directory_scratch) ;
my $temporary_directory = Directory::Scratch->new;
$temporary_directory->create_structured_tree(%tree_structure) ;
=cut
my ($temporary_directory, @directory_entries) = @_ ;
Directory::Scratch::Structured::_create_structured_tree($temporary_directory, {@directory_entries}, $ROOT_DIRECTORY) ; ## no critic
return($temporary_directory) ;
}
#-------------------------------------------------------------------------------
sub _create_structured_tree
{
=head2 _create_structured_tree
Used internally by both interfaces
=cut
my ($temporary_directory, $directory, $path) = @_ ;
while( my ($entry_name, $contents) = each %{$directory})
{
for($contents)
{
'ARRAY' eq ref $_ and do
{
my $file = $temporary_directory->touch("$path/$entry_name", @{$contents}) ;
last ;
} ;
'HASH' eq ref $_ and do
{
$temporary_directory->mkdir("$path/$entry_name");
_create_structured_tree($temporary_directory, $contents, "$path/$entry_name") ;
last ;
} ;
croak "invalid element '$path/$entry_name' in tree structure\n" ;
}
}
return(1) ;
}
#-------------------------------------------------------------------------------
sub piggyback
{
=head2 piggyback
Used internally to piggyback L<Directory::Scratch>.
=cut
Sub::Install::install_sub({
code => \&directory_scratch_create_structured_tree,
into => 'Directory::Scratch',
as => 'create_structured_tree',
});
return('Directory::Scratch::create_structured_tree') ;
}
#-------------------------------------------------------------------------------
1 ;
=head1 BUGS AND LIMITATIONS
None so far.
=head1 AUTHOR
Khemir Nadim ibn Hamouda
CPAN ID: NKH
mailto:nadim@khemir.net
=head1 LICENSE AND COPYRIGHT
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Directory::Scratch::Structured
You can also look for information at:
=over 4
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/Directory-Scratch-Structured>
=item * RT: CPAN's request tracker
Please report any bugs or feature requests to L <bug-directory-scratch-structured@rt.cpan.org>.
We will be notified, and then you'll automatically be notified of progress on
your bug as we make changes.
=item * Search CPAN
L<http://search.cpan.org/dist/Directory-Scratch-Structured>
=back
=head1 SEE ALSO
L<Directory::Scratch>
=cut
|