BEGIN {
$Setup::File::Dir::VERSION = '0.07';
}
# ABSTRACT: Setup directory (existence, mode, permission)
use 5.010;
use strict;
use Log::Any '$log';
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(setup_dir);
our %SPEC;
$SPEC{setup_dir} = {
summary => "Setup directory (existence, mode, permission)",
description => <<'_',
On do, will create directory (if it doesn't already exist) and fix its
mode/permission.
On undo, will restore old mode/permission (and delete directory if it is empty
and was created by this function).
If given, -undo_hint should contain {tmp_dir=>...} to specify temporary
directory to save replaced file/dir. Temporary directory defaults to ~/.setup,
it will be created if not exists.
_
args => {
path => ['str*' => {
summary => 'Path to dir',
description => <<'_',
Dir path needs to be absolute so it's normalized.
_
arg_pos => 1,
match => qr!^/!,
}],
should_exist => ['bool' => {
summary => 'Whether dir should exist',
description => <<'_',
If undef, dir need not exist. If set to 0, dir must not exist and will be
deleted if it does. If set to 1, dir must exist and will be created if it
doesn't.
_
}],
mode => ['str' => {
summary => 'Expected permission mode',
}],
owner => ['str' => {
summary => 'Expected owner',
}],
group => ['str' => {
summary => 'Expected group',
}],
allow_symlink => ['bool*' => {
summary => 'Whether symlink is allowed',
description => <<'_',
If existing dir is a symlink then if allow_symlink is false then it is an
unacceptable condition (the symlink will be replaced if replace_symlink is
true).
Note: if you want to setup symlink instead, use Setup::Symlink.
_
default => 0,
}],
replace_symlink => ['bool*' => {
summary => "Replace existing symlink if it needs to be replaced",
default => 1,
}],
replace_file => ['bool*' => {
summary => "Replace existing file if it needs to be replaced",
default => 1,
}],
replace_dir => ['bool*' => {
summary => "Replace existing dir if it needs to be replaced",
default => 1,
}],
},
features => {undo=>1, dry_run=>1},
};
sub setup_dir {
my %args = @_;
Setup::File::_setup_file_or_dir('dir' , %args);
}
1;
=pod
=head1 NAME
Setup::File::Dir - Setup directory (existence, mode, permission)
=head1 VERSION
version 0.07
=head1 SYNOPSIS
use Setup::File::Dir 'setup_dir';
# simple usage (doesn't save undo data)
$res = setup_dir path => '/etc/myapp',
should_exist => 1,
owner => 'root', group => 0, mode => 0755;
die unless $res->[0] == 200;
# perform setup and save undo data (undo data should be serializable)
$res = setup_dir ..., -undo_action => 'do';
die unless $res->[0] == 200;
my $undo_data = $res->[3]{undo_data};
# perform undo
$res = setup_dir ..., -undo_action => "undo", -undo_data=>$undo_data;
die unless $res->[0] == 200;
# state that dir must not exist
setup_dir path => '/foo/bar', should_exist => 0;
=head1 DESCRIPTION
This module provides one function: B<setup_dir>.
This module is part of the Setup modules family.
This module uses L<Log::Any> logging framework.
This module's functions have L<Sub::Spec> specs.
=head1 THE SETUP MODULES FAMILY
I use the C<Setup::> namespace for the Setup modules family. See L<Setup::File>
for more details on the goals, characteristics, and implementation of Setup
modules family.
=head1 FUNCTIONS
None are exported by default, but they are exportable.
=head2 setup_dir(%args) -> [STATUS_CODE, ERR_MSG, RESULT]
Setup directory (existence, mode, permission).
On do, will create directory (if it doesn't already exist) and fix its
mode/permission.
On undo, will restore old mode/permission (and delete directory if it is empty
and was created by this function).
If given, -undo_hint should contain {tmp_dir=>...} to specify temporary
directory to save replaced file/dir. Temporary directory defaults to ~/.setup,
it will be created if not exists.
Returns a 3-element arrayref. STATUS_CODE is 200 on success, or an error code
between 3xx-5xx (just like in HTTP). ERR_MSG is a string containing error
message, RESULT is the actual result.
This function supports undo operation. See L<Sub::Spec::Clause::features> for
details on how to perform do/undo/redo.
This function supports dry-run (simulation) mode. To run in dry-run mode, add
argument C<-dry_run> => 1.
Arguments (C<*> denotes required arguments):
=over 4
=item * B<path>* => I<str>
Path to dir.
Dir path needs to be absolute so it's normalized.
=item * B<allow_symlink>* => I<bool> (default C<0>)
Whether symlink is allowed.
If existing dir is a symlink then if allow_symlink is false then it is an
unacceptable condition (the symlink will be replaced if replace_symlink is
true).
Note: if you want to setup symlink instead, use Setup::Symlink.
=item * B<group> => I<str>
Expected group.
=item * B<mode> => I<str>
Expected permission mode.
=item * B<owner> => I<str>
Expected owner.
=item * B<replace_dir>* => I<bool> (default C<1>)
Replace existing dir if it needs to be replaced.
=item * B<replace_file>* => I<bool> (default C<1>)
Replace existing file if it needs to be replaced.
=item * B<replace_symlink>* => I<bool> (default C<1>)
Replace existing symlink if it needs to be replaced.
=item * B<should_exist> => I<bool>
Whether dir should exist.
If undef, dir need not exist. If set to 0, dir must not exist and will be
deleted if it does. If set to 1, dir must exist and will be created if it
doesn't.
=back
=head1 SEE ALSO
L<Setup::File>.
Other modules in Setup:: namespace.
=head1 AUTHOR
Steven Haryanto <stevenharyanto@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Steven Haryanto.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
__END__