2011-11-24 11:28:09 -05:00
|
|
|
#!/usr/bin/perl
|
2019-06-27 09:02:19 -04:00
|
|
|
#
|
|
|
|
# This file is part of GNU Stow.
|
|
|
|
#
|
|
|
|
# GNU Stow is free software: you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# GNU Stow is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see https://www.gnu.org/licenses/.
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
package Stow;
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2016-11-21 09:56:26 -05:00
|
|
|
Stow - manage farms of symbolic links
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
my $stow = new Stow(%$options);
|
|
|
|
|
|
|
|
$stow->plan_unstow(@pkgs_to_unstow);
|
|
|
|
$stow->plan_stow (@pkgs_to_stow);
|
|
|
|
|
2011-11-24 17:49:22 -05:00
|
|
|
my %conflicts = $stow->get_conflicts;
|
|
|
|
$stow->process_tasks() unless %conflicts;
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This is the backend Perl module for GNU Stow, a program for managing
|
|
|
|
the installation of software packages, keeping them separate
|
|
|
|
(C</usr/local/stow/emacs> vs. C</usr/local/stow/perl>, for example)
|
|
|
|
while making them appear to be installed in the same place
|
|
|
|
(C</usr/local>).
|
|
|
|
|
|
|
|
Stow doesn't store an extra state between runs, so there's no danger
|
|
|
|
of mangling directories when file hierarchies don't match the
|
|
|
|
database. Also, stow will never delete any files, directories, or
|
|
|
|
links that appear in a stow directory, so it is always possible to
|
|
|
|
rebuild the target tree.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2012-01-09 16:11:58 -05:00
|
|
|
use Carp qw(carp cluck croak confess longmess);
|
2012-01-09 16:25:35 -05:00
|
|
|
use File::Copy qw(move);
|
2011-11-24 11:28:09 -05:00
|
|
|
use File::Spec;
|
|
|
|
use POSIX qw(getcwd);
|
|
|
|
|
|
|
|
use Stow::Util qw(set_debug_level debug error set_test_mode
|
2016-07-31 16:55:55 -04:00
|
|
|
join_paths restore_cwd canon_path parent adjust_dotfile);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
our $ProgramName = 'stow';
|
|
|
|
our $VERSION = '@VERSION@';
|
|
|
|
|
2011-11-23 18:45:48 -05:00
|
|
|
our $LOCAL_IGNORE_FILE = '.stow-local-ignore';
|
|
|
|
our $GLOBAL_IGNORE_FILE = '.stow-global-ignore';
|
|
|
|
|
|
|
|
our @default_global_ignore_regexps =
|
|
|
|
__PACKAGE__->get_default_global_ignore_regexps();
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
# These are the default options for each Stow instance.
|
|
|
|
our %DEFAULT_OPTIONS = (
|
2012-02-18 15:13:32 -05:00
|
|
|
conflicts => 0,
|
|
|
|
simulate => 0,
|
|
|
|
verbose => 0,
|
|
|
|
paranoid => 0,
|
|
|
|
compat => 0,
|
|
|
|
test_mode => 0,
|
2016-07-31 16:55:55 -04:00
|
|
|
dotfiles => 0,
|
2012-02-18 15:13:32 -05:00
|
|
|
adopt => 0,
|
|
|
|
'no-folding' => 0,
|
|
|
|
ignore => [],
|
|
|
|
override => [],
|
|
|
|
defer => [],
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
=head1 CONSTRUCTORS
|
|
|
|
|
|
|
|
=head2 new(%options)
|
|
|
|
|
|
|
|
=head3 Required options
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
|
|
|
=item * dir - the stow directory
|
|
|
|
|
|
|
|
=item * target - the target directory
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head3 Non-mandatory options
|
|
|
|
|
2012-02-18 09:08:17 -05:00
|
|
|
See the documentation for the F<stow> CLI front-end for information on these.
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
=over 4
|
|
|
|
|
|
|
|
=item * conflicts
|
|
|
|
|
|
|
|
=item * simulate
|
|
|
|
|
|
|
|
=item * verbose
|
|
|
|
|
|
|
|
=item * paranoid
|
|
|
|
|
2012-02-18 09:08:17 -05:00
|
|
|
=item * compat
|
|
|
|
|
|
|
|
=item * test_mode
|
|
|
|
|
|
|
|
=item * adopt
|
|
|
|
|
2012-02-18 15:13:32 -05:00
|
|
|
=item * no-folding
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
=item * ignore
|
|
|
|
|
|
|
|
=item * override
|
|
|
|
|
|
|
|
=item * defer
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
N.B. This sets the current working directory to the target directory.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub new {
|
|
|
|
my $self = shift;
|
|
|
|
my $class = ref($self) || $self;
|
|
|
|
my %opts = @_;
|
|
|
|
|
|
|
|
my $new = bless { }, $class;
|
|
|
|
|
2011-11-24 17:49:22 -05:00
|
|
|
$new->{action_count} = 0;
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
for my $required_arg (qw(dir target)) {
|
|
|
|
croak "$class->new() called without '$required_arg' parameter\n"
|
|
|
|
unless exists $opts{$required_arg};
|
|
|
|
$new->{$required_arg} = delete $opts{$required_arg};
|
|
|
|
}
|
|
|
|
|
|
|
|
for my $opt (keys %DEFAULT_OPTIONS) {
|
|
|
|
$new->{$opt} = exists $opts{$opt} ? delete $opts{$opt}
|
|
|
|
: $DEFAULT_OPTIONS{$opt};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (%opts) {
|
|
|
|
croak "$class->new() called with unrecognised parameter(s): ",
|
|
|
|
join(", ", keys %opts), "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
set_debug_level($new->get_verbosity());
|
|
|
|
set_test_mode($new->{test_mode});
|
|
|
|
$new->set_stow_dir();
|
|
|
|
$new->init_state();
|
|
|
|
|
|
|
|
return $new;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_verbosity {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
return $self->{verbose} unless $self->{test_mode};
|
|
|
|
|
2012-01-13 06:34:55 -05:00
|
|
|
return 0 unless exists $ENV{TEST_VERBOSE};
|
2011-11-24 11:28:09 -05:00
|
|
|
return 0 unless length $ENV{TEST_VERBOSE};
|
|
|
|
|
|
|
|
# Convert TEST_VERBOSE=y into numeric value
|
|
|
|
$ENV{TEST_VERBOSE} = 3 if $ENV{TEST_VERBOSE} !~ /^\d+$/;
|
|
|
|
|
|
|
|
return $ENV{TEST_VERBOSE};
|
|
|
|
}
|
|
|
|
|
|
|
|
=head2 set_stow_dir([$dir])
|
|
|
|
|
|
|
|
Sets a new stow directory. This allows the use of multiple stow
|
|
|
|
directories within one Stow instance, e.g.
|
|
|
|
|
|
|
|
$stow->plan_stow('foo');
|
|
|
|
$stow->set_stow_dir('/different/stow/dir');
|
|
|
|
$stow->plan_stow('bar');
|
|
|
|
$stow->process_tasks;
|
|
|
|
|
|
|
|
If C<$dir> is omitted, uses the value of the C<dir> parameter passed
|
|
|
|
to the L<new()> constructor.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub set_stow_dir {
|
|
|
|
my $self = shift;
|
|
|
|
my ($dir) = @_;
|
|
|
|
if (defined $dir) {
|
|
|
|
$self->{dir} = $dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $stow_dir = canon_path($self->{dir});
|
2013-04-12 12:47:29 -04:00
|
|
|
my $target = canon_path($self->{target});
|
2024-03-09 13:11:00 -05:00
|
|
|
|
|
|
|
# Calculate relative path from target directory to stow directory.
|
|
|
|
# This will be commonly used as a prefix for constructing and
|
|
|
|
# recognising symlinks "installed" in the target directory which
|
|
|
|
# point to package files under the stow directory.
|
2013-04-12 12:47:29 -04:00
|
|
|
$self->{stow_path} = File::Spec->abs2rel($stow_dir, $target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "stow dir is $stow_dir");
|
|
|
|
debug(2, 0, "stow dir path relative to target $target is $self->{stow_path}");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
sub init_state {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Store conflicts during pre-processing
|
2011-11-24 17:49:22 -05:00
|
|
|
$self->{conflicts} = {};
|
|
|
|
$self->{conflict_count} = 0;
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
# Store command line packages to stow (-S and -R)
|
|
|
|
$self->{pkgs_to_stow} = [];
|
|
|
|
|
|
|
|
# Store command line packages to unstow (-D and -R)
|
|
|
|
$self->{pkgs_to_delete} = [];
|
|
|
|
|
|
|
|
# The following structures are used by the abstractions that allow us to
|
|
|
|
# defer operating on the filesystem until after all potential conflicts have
|
|
|
|
# been assessed.
|
|
|
|
|
|
|
|
# $self->{tasks}: list of operations to be performed (in order)
|
|
|
|
# each element is a hash ref of the form
|
|
|
|
# {
|
2012-01-09 16:25:35 -05:00
|
|
|
# action => ... ('create' or 'remove' or 'move')
|
|
|
|
# type => ... ('link' or 'dir' or 'file')
|
2011-11-24 11:28:09 -05:00
|
|
|
# path => ... (unique)
|
|
|
|
# source => ... (only for links)
|
2012-01-09 16:25:35 -05:00
|
|
|
# dest => ... (only for moving files)
|
2011-11-24 11:28:09 -05:00
|
|
|
# }
|
|
|
|
$self->{tasks} = [];
|
|
|
|
|
|
|
|
# $self->{dir_task_for}: map a path to the corresponding directory task reference
|
|
|
|
# This structure allows us to quickly determine if a path has an existing
|
|
|
|
# directory task associated with it.
|
|
|
|
$self->{dir_task_for} = {};
|
|
|
|
|
|
|
|
# $self->{link_task_for}: map a path to the corresponding directory task reference
|
|
|
|
# This structure allows us to quickly determine if a path has an existing
|
|
|
|
# directory task associated with it.
|
|
|
|
$self->{link_task_for} = {};
|
|
|
|
|
|
|
|
# N.B.: directory tasks and link tasks are NOT mutually exclusive due
|
|
|
|
# to tree splitting (which involves a remove link task followed by
|
|
|
|
# a create directory task).
|
|
|
|
}
|
|
|
|
|
|
|
|
=head1 METHODS
|
|
|
|
|
|
|
|
=head2 plan_unstow(@packages)
|
|
|
|
|
|
|
|
Plan which symlink/directory creation/removal tasks need to be executed
|
|
|
|
in order to unstow the given packages. Any potential conflicts are then
|
|
|
|
accessible via L<get_conflicts()>.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub plan_unstow {
|
|
|
|
my $self = shift;
|
|
|
|
my @packages = @_;
|
|
|
|
|
2020-11-11 13:19:43 -05:00
|
|
|
return unless @packages;
|
|
|
|
|
|
|
|
debug(2, 0, "Planning unstow of: @packages ...");
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->within_target_do(sub {
|
|
|
|
for my $package (@packages) {
|
2024-03-03 19:53:51 -05:00
|
|
|
my $pkg_path = join_paths($self->{stow_path}, $package);
|
|
|
|
if (not -d $pkg_path) {
|
2012-02-18 15:12:14 -05:00
|
|
|
error("The stow directory $self->{stow_path} does not contain package $package");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "Planning unstow of package $package...");
|
2011-11-23 19:45:29 -05:00
|
|
|
if ($self->{compat}) {
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->unstow_contents_orig(
|
2011-11-23 18:45:48 -05:00
|
|
|
$package,
|
|
|
|
'.',
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$self->unstow_contents(
|
2011-11-23 18:45:48 -05:00
|
|
|
$package,
|
|
|
|
'.',
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
|
|
|
}
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "Planning unstow of package $package... done");
|
2011-11-24 17:49:22 -05:00
|
|
|
$self->{action_count}++;
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
=head2 plan_stow(@packages)
|
|
|
|
|
|
|
|
Plan which symlink/directory creation/removal tasks need to be executed
|
|
|
|
in order to stow the given packages. Any potential conflicts are then
|
|
|
|
accessible via L<get_conflicts()>.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub plan_stow {
|
|
|
|
my $self = shift;
|
|
|
|
my @packages = @_;
|
|
|
|
|
2020-11-11 13:19:43 -05:00
|
|
|
return unless @packages;
|
|
|
|
|
|
|
|
debug(2, 0, "Planning stow of: @packages ...");
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->within_target_do(sub {
|
|
|
|
for my $package (@packages) {
|
2024-03-03 19:53:51 -05:00
|
|
|
my $pkg_path = join_paths($self->{stow_path}, $package);
|
|
|
|
if (not -d $pkg_path) {
|
2012-02-18 15:12:14 -05:00
|
|
|
error("The stow directory $self->{stow_path} does not contain package $package");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "Planning stow of package $package...");
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->stow_contents(
|
2011-11-23 18:45:48 -05:00
|
|
|
$self->{stow_path},
|
|
|
|
$package,
|
|
|
|
'.',
|
2024-03-03 19:53:51 -05:00
|
|
|
$pkg_path, # source from target
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "Planning stow of package $package... done");
|
2011-11-24 17:49:22 -05:00
|
|
|
$self->{action_count}++;
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : within_target_do()
|
|
|
|
# Purpose : execute code within target directory, preserving cwd
|
|
|
|
# Parameters: $code => anonymous subroutine to execute within target dir
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : n/a
|
|
|
|
# Comments : This is done to ensure that the consumer of the Stow interface
|
|
|
|
# : doesn't have to worry about (a) what their cwd is, and
|
|
|
|
# : (b) that their cwd might change.
|
|
|
|
#============================================================================
|
|
|
|
sub within_target_do {
|
|
|
|
my $self = shift;
|
|
|
|
my ($code) = @_;
|
|
|
|
|
|
|
|
my $cwd = getcwd();
|
2011-11-23 19:45:29 -05:00
|
|
|
chdir($self->{target})
|
2012-07-08 20:06:13 -04:00
|
|
|
or error("Cannot chdir to target tree: $self->{target} ($!)");
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 0, "cwd now $self->{target}");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
$self->$code();
|
|
|
|
|
|
|
|
restore_cwd($cwd);
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 0, "cwd restored to $cwd");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : stow_contents()
|
|
|
|
# Purpose : stow the contents of the given directory
|
2011-11-23 18:45:48 -05:00
|
|
|
# Parameters: $stow_path => relative path from current (i.e. target) directory
|
2024-03-09 12:33:25 -05:00
|
|
|
# : to the stow dir containing the package to be stowed.
|
|
|
|
# : This can differ from $self->{stow_path} when unfolding
|
|
|
|
# : a (sub)tree which is already stowed from a package
|
|
|
|
# : in a different stow directory (see the "Multiple Stow
|
|
|
|
# : Directories" section of the manual).
|
2011-11-23 18:45:48 -05:00
|
|
|
# : $package => the package whose contents are being stowed
|
2019-06-28 10:22:29 -04:00
|
|
|
# : $target => subpath relative to package directory which needs
|
|
|
|
# : stowing as a symlink at subpath relative to target
|
|
|
|
# : directory.
|
2011-11-23 18:45:48 -05:00
|
|
|
# : $source => relative path from the (sub)dir of target
|
|
|
|
# : to symlink source
|
2011-11-24 11:28:09 -05:00
|
|
|
# Returns : n/a
|
|
|
|
# Throws : a fatal error if directory cannot be read
|
2011-11-23 18:45:48 -05:00
|
|
|
# Comments : stow_node() and stow_contents() are mutually recursive.
|
2011-11-24 11:28:09 -05:00
|
|
|
# : $source and $target are used for creating the symlink
|
|
|
|
# : $path is used for folding/unfolding trees as necessary
|
|
|
|
#============================================================================
|
|
|
|
sub stow_contents {
|
|
|
|
my $self = shift;
|
2011-11-23 18:45:48 -05:00
|
|
|
my ($stow_path, $package, $target, $source) = @_;
|
|
|
|
|
2024-03-09 12:34:46 -05:00
|
|
|
# Calculate the path to the package directory or sub-directory
|
|
|
|
# whose contents need to be stowed, relative to the current
|
|
|
|
# (target directory). This is needed so that we can check it's a
|
|
|
|
# valid directory, and can read its contents to iterate over them.
|
|
|
|
#
|
|
|
|
# Note that $source refers to the same package (sub-)directory,
|
|
|
|
# but instead it's relative to the target directory or
|
|
|
|
# sub-directory where the symlink will be installed when the plans
|
|
|
|
# are executed.
|
2011-11-23 18:45:48 -05:00
|
|
|
my $path = join_paths($stow_path, $package, $target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2024-03-30 10:03:56 -04:00
|
|
|
return if $self->should_skip_target($target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
my $cwd = getcwd();
|
2011-11-26 13:55:10 -05:00
|
|
|
my $msg = "Stowing contents of $path (cwd=$cwd)";
|
|
|
|
$msg =~ s!$ENV{HOME}(/|$)!~$1!g;
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 0, $msg);
|
|
|
|
debug(4, 1, "=> $source");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2024-03-09 12:38:20 -05:00
|
|
|
error("stow_contents() called with non-directory package path: $path")
|
2011-11-24 11:28:09 -05:00
|
|
|
unless -d $path;
|
|
|
|
error("stow_contents() called with non-directory target: $target")
|
|
|
|
unless $self->is_a_node($target);
|
|
|
|
|
|
|
|
opendir my $DIR, $path
|
2012-07-08 20:06:13 -04:00
|
|
|
or error("cannot read directory: $path ($!)");
|
2011-11-24 11:28:09 -05:00
|
|
|
my @listing = readdir $DIR;
|
|
|
|
closedir $DIR;
|
|
|
|
|
|
|
|
NODE:
|
|
|
|
for my $node (@listing) {
|
|
|
|
next NODE if $node eq '.';
|
|
|
|
next NODE if $node eq '..';
|
2011-11-23 18:45:48 -05:00
|
|
|
my $node_target = join_paths($target, $node);
|
|
|
|
next NODE if $self->ignore($stow_path, $package, $node_target);
|
2016-07-31 16:55:55 -04:00
|
|
|
|
|
|
|
if ($self->{dotfiles}) {
|
|
|
|
my $adj_node_target = adjust_dotfile($node_target);
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "Adjusting: $node_target => $adj_node_target");
|
2016-07-31 16:55:55 -04:00
|
|
|
$node_target = $adj_node_target;
|
|
|
|
}
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->stow_node(
|
2011-11-23 18:45:48 -05:00
|
|
|
$stow_path,
|
|
|
|
$package,
|
2024-03-09 12:35:35 -05:00
|
|
|
$node_target, # target, potentially adjusted for dot- prefix
|
2011-11-24 11:28:09 -05:00
|
|
|
join_paths($source, $node), # source
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : stow_node()
|
|
|
|
# Purpose : stow the given node
|
2011-11-23 18:45:48 -05:00
|
|
|
# Parameters: $stow_path => relative path from current (i.e. target) directory
|
|
|
|
# : to the stow dir containing the node to be stowed
|
|
|
|
# : $package => the package containing the node being stowed
|
2019-06-28 10:22:29 -04:00
|
|
|
# : $target => subpath relative to package directory of node which
|
|
|
|
# : needs stowing as a symlink at subpath relative to
|
|
|
|
# : target directory.
|
2011-11-24 11:28:09 -05:00
|
|
|
# : $source => relative path to symlink source from the dir of target
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : fatal exception if a conflict arises
|
2024-03-09 12:36:19 -05:00
|
|
|
# Comments : stow_node() and stow_contents() are mutually recursive.
|
2011-11-24 11:28:09 -05:00
|
|
|
# : $source and $target are used for creating the symlink
|
|
|
|
# : $path is used for folding/unfolding trees as necessary
|
|
|
|
#============================================================================
|
|
|
|
sub stow_node {
|
|
|
|
my $self = shift;
|
2011-11-23 18:45:48 -05:00
|
|
|
my ($stow_path, $package, $target, $source) = @_;
|
|
|
|
|
|
|
|
my $path = join_paths($stow_path, $package, $target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2024-03-09 12:38:20 -05:00
|
|
|
debug(3, 0, "Stowing entry $stow_path / $package / $target");
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "=> $source");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Don't try to stow absolute symlinks (they can't be unstowed)
|
2011-11-24 11:28:09 -05:00
|
|
|
if (-l $source) {
|
|
|
|
my $second_source = $self->read_a_link($source);
|
|
|
|
if ($second_source =~ m{\A/}) {
|
2011-11-24 17:49:22 -05:00
|
|
|
$self->conflict(
|
|
|
|
'stow',
|
|
|
|
$package,
|
|
|
|
"source is an absolute symlink $source => $second_source"
|
|
|
|
);
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 0, "Absolute symlinks cannot be unstowed");
|
2011-11-24 11:28:09 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Does the target already exist?
|
2011-11-24 11:28:09 -05:00
|
|
|
if ($self->is_a_link($target)) {
|
2011-11-21 18:21:48 -05:00
|
|
|
# Where is the link pointing?
|
2011-11-22 10:59:07 -05:00
|
|
|
my $existing_source = $self->read_a_link($target);
|
|
|
|
if (not $existing_source) {
|
2011-11-24 11:28:09 -05:00
|
|
|
error("Could not read link: $target");
|
|
|
|
}
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "Evaluate existing link: $target => $existing_source");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-25 10:23:08 -05:00
|
|
|
# Does it point to a node under any stow directory?
|
2011-11-23 18:45:48 -05:00
|
|
|
my ($existing_path, $existing_stow_path, $existing_package) =
|
|
|
|
$self->find_stowed_path($target, $existing_source);
|
2011-11-22 10:59:07 -05:00
|
|
|
if (not $existing_path) {
|
2011-11-24 17:49:22 -05:00
|
|
|
$self->conflict(
|
|
|
|
'stow',
|
|
|
|
$package,
|
|
|
|
"existing target is not owned by stow: $target"
|
|
|
|
);
|
2011-11-24 11:28:09 -05:00
|
|
|
return; # XXX #
|
|
|
|
}
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Does the existing $target actually point to anything?
|
2011-11-22 10:59:07 -05:00
|
|
|
if ($self->is_a_node($existing_path)) {
|
|
|
|
if ($existing_source eq $source) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "--- Skipping $target as it already points to $source");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
elsif ($self->defer($target)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "--- Deferring installation of: $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
elsif ($self->override($target)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "--- Overriding installation of: $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->do_unlink($target);
|
|
|
|
$self->do_link($source, $target);
|
|
|
|
}
|
2011-11-22 10:59:07 -05:00
|
|
|
elsif ($self->is_a_dir(join_paths(parent($target), $existing_source)) &&
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->is_a_dir(join_paths(parent($target), $source)) ) {
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# If the existing link points to a directory,
|
2011-11-24 11:28:09 -05:00
|
|
|
# and the proposed new link points to a directory,
|
|
|
|
# then we can unfold (split open) the tree at that point
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "--- Unfolding $target which was already owned by $existing_package");
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->do_unlink($target);
|
|
|
|
$self->do_mkdir($target);
|
2011-11-23 18:45:48 -05:00
|
|
|
$self->stow_contents(
|
|
|
|
$existing_stow_path,
|
|
|
|
$existing_package,
|
|
|
|
$target,
|
|
|
|
join_paths('..', $existing_source),
|
|
|
|
);
|
|
|
|
$self->stow_contents(
|
|
|
|
$self->{stow_path},
|
|
|
|
$package,
|
|
|
|
$target,
|
|
|
|
join_paths('..', $source),
|
|
|
|
);
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$self->conflict(
|
2011-11-24 17:49:22 -05:00
|
|
|
'stow',
|
|
|
|
$package,
|
|
|
|
"existing target is stowed to a different package: "
|
|
|
|
. "$target => $existing_source"
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2011-11-21 18:21:48 -05:00
|
|
|
# The existing link is invalid, so replace it with a good link
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "--- replacing invalid link: $path");
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->do_unlink($target);
|
|
|
|
$self->do_link($source, $target);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif ($self->is_a_node($target)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "Evaluate existing node: $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
if ($self->is_a_dir($target)) {
|
2011-11-23 18:45:48 -05:00
|
|
|
$self->stow_contents(
|
|
|
|
$self->{stow_path},
|
|
|
|
$package,
|
|
|
|
$target,
|
|
|
|
join_paths('..', $source),
|
|
|
|
);
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
else {
|
2012-01-09 16:25:35 -05:00
|
|
|
if ($self->{adopt}) {
|
|
|
|
$self->do_mv($target, $path);
|
|
|
|
$self->do_link($source, $target);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$self->conflict(
|
|
|
|
'stow',
|
|
|
|
$package,
|
|
|
|
"existing target is neither a link nor a directory: $target"
|
|
|
|
);
|
|
|
|
}
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
2015-01-01 14:02:46 -05:00
|
|
|
elsif ($self->{'no-folding'} && -d $path && ! -l $path) {
|
2012-02-18 15:13:32 -05:00
|
|
|
$self->do_mkdir($target);
|
|
|
|
$self->stow_contents(
|
|
|
|
$self->{stow_path},
|
|
|
|
$package,
|
|
|
|
$target,
|
|
|
|
join_paths('..', $source),
|
|
|
|
);
|
|
|
|
}
|
2011-11-24 11:28:09 -05:00
|
|
|
else {
|
|
|
|
$self->do_link($source, $target);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
2024-03-30 10:03:56 -04:00
|
|
|
# Name : should_skip_target()
|
2011-11-22 10:48:08 -05:00
|
|
|
# Purpose : determine whether target is a stow directory which should
|
|
|
|
# : not be stowed to or unstowed from
|
2011-11-24 11:28:09 -05:00
|
|
|
# Parameters: $target => relative path to symlink target from the current directory
|
|
|
|
# Returns : true iff target is a stow directory
|
|
|
|
# Throws : n/a
|
2024-03-30 10:03:56 -04:00
|
|
|
# Comments : cwd must be the top-level target directory, otherwise
|
|
|
|
# : marked_stow_dir() won't work.
|
2011-11-24 11:28:09 -05:00
|
|
|
#============================================================================
|
2024-03-30 10:03:56 -04:00
|
|
|
sub should_skip_target {
|
2011-11-24 11:28:09 -05:00
|
|
|
my $self = shift;
|
|
|
|
my ($target) = @_;
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Don't try to remove anything under a stow directory
|
2011-11-24 11:28:09 -05:00
|
|
|
if ($target eq $self->{stow_path}) {
|
2014-09-21 19:36:25 -04:00
|
|
|
warn "WARNING: skipping target which was current stow directory $target\n";
|
2011-11-24 11:28:09 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-11-22 10:50:12 -05:00
|
|
|
if ($self->marked_stow_dir($target)) {
|
2024-03-30 10:03:56 -04:00
|
|
|
warn "WARNING: skipping marked Stow directory $target\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (-e join_paths($target, ".nonstow")) {
|
2014-09-21 19:36:25 -04:00
|
|
|
warn "WARNING: skipping protected directory $target\n";
|
2011-11-24 11:28:09 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2024-03-30 10:03:56 -04:00
|
|
|
debug(4, 1, "$target not protected; shouldn't skip");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-03-30 10:03:56 -04:00
|
|
|
# cwd must be the top-level target directory, otherwise
|
|
|
|
# marked_stow_dir() won't work.
|
2011-11-22 10:50:12 -05:00
|
|
|
sub marked_stow_dir {
|
2011-11-24 11:28:09 -05:00
|
|
|
my $self = shift;
|
2024-03-30 10:03:56 -04:00
|
|
|
my ($path) = @_;
|
|
|
|
if (-e join_paths($path, ".stow")) {
|
|
|
|
debug(5, 5, "> $path contained .stow");
|
|
|
|
return 1;
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : unstow_contents_orig()
|
|
|
|
# Purpose : unstow the contents of the given directory
|
2024-03-09 12:49:49 -05:00
|
|
|
# Parameters: $package => the package whose contents are being unstowed
|
2011-11-24 11:28:09 -05:00
|
|
|
# : $target => relative path to symlink target from the current directory
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : a fatal error if directory cannot be read
|
|
|
|
# Comments : unstow_node_orig() and unstow_contents_orig() are mutually recursive
|
|
|
|
# : Here we traverse the target tree, rather than the source tree.
|
|
|
|
#============================================================================
|
|
|
|
sub unstow_contents_orig {
|
|
|
|
my $self = shift;
|
2024-03-09 12:49:49 -05:00
|
|
|
my ($package, $target) = @_;
|
2011-11-23 18:45:48 -05:00
|
|
|
|
2024-03-09 12:49:49 -05:00
|
|
|
my $path = join_paths($self->{stow_path}, $package, $target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2024-03-30 10:03:56 -04:00
|
|
|
return if $self->should_skip_target($target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
my $cwd = getcwd();
|
|
|
|
my $msg = "Unstowing from $target (compat mode, cwd=$cwd, stow dir=$self->{stow_path})";
|
2011-11-26 13:55:10 -05:00
|
|
|
$msg =~ s!$ENV{HOME}(/|$)!~$1!g;
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 0, $msg);
|
|
|
|
debug(4, 1, "source path is $path");
|
2011-11-24 11:28:09 -05:00
|
|
|
# In compat mode we traverse the target tree not the source tree,
|
|
|
|
# so we're unstowing the contents of /target/foo, there's no
|
|
|
|
# guarantee that the corresponding /stow/mypkg/foo exists.
|
|
|
|
error("unstow_contents_orig() called with non-directory target: $target")
|
|
|
|
unless -d $target;
|
|
|
|
|
|
|
|
opendir my $DIR, $target
|
2012-07-08 20:06:13 -04:00
|
|
|
or error("cannot read directory: $target ($!)");
|
2011-11-24 11:28:09 -05:00
|
|
|
my @listing = readdir $DIR;
|
|
|
|
closedir $DIR;
|
|
|
|
|
|
|
|
NODE:
|
|
|
|
for my $node (@listing) {
|
|
|
|
next NODE if $node eq '.';
|
|
|
|
next NODE if $node eq '..';
|
2011-11-23 18:45:48 -05:00
|
|
|
my $node_target = join_paths($target, $node);
|
2024-03-09 12:49:49 -05:00
|
|
|
next NODE if $self->ignore($self->{stow_path}, $package, $node_target);
|
|
|
|
$self->unstow_node_orig($package, $node_target);
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : unstow_node_orig()
|
|
|
|
# Purpose : unstow the given node
|
2024-03-09 12:49:49 -05:00
|
|
|
# Parameters: $package => the package containing the node being stowed
|
2011-11-24 11:28:09 -05:00
|
|
|
# : $target => relative path to symlink target from the current directory
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : fatal error if a conflict arises
|
|
|
|
# Comments : unstow_node() and unstow_contents() are mutually recursive
|
|
|
|
#============================================================================
|
|
|
|
sub unstow_node_orig {
|
|
|
|
my $self = shift;
|
2024-03-09 12:49:49 -05:00
|
|
|
my ($package, $target) = @_;
|
2011-11-23 18:45:48 -05:00
|
|
|
|
2024-03-09 12:49:49 -05:00
|
|
|
my $path = join_paths($self->{stow_path}, $package, $target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 0, "Unstowing $target (compat mode)");
|
|
|
|
debug(4, 1, "source path is $path");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Does the target exist?
|
2011-11-24 11:28:09 -05:00
|
|
|
if ($self->is_a_link($target)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "Evaluate existing link: $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Where is the link pointing?
|
2011-11-22 10:59:07 -05:00
|
|
|
my $existing_source = $self->read_a_link($target);
|
|
|
|
if (not $existing_source) {
|
2011-11-24 11:28:09 -05:00
|
|
|
error("Could not read link: $target");
|
|
|
|
}
|
|
|
|
|
2011-11-25 10:23:08 -05:00
|
|
|
# Does it point to a node under any stow directory?
|
2011-11-23 18:45:48 -05:00
|
|
|
my ($existing_path, $existing_stow_path, $existing_package) =
|
|
|
|
$self->find_stowed_path($target, $existing_source);
|
2011-11-22 10:59:07 -05:00
|
|
|
if (not $existing_path) {
|
2011-11-21 18:24:02 -05:00
|
|
|
# We're traversing the target tree not the package tree,
|
|
|
|
# so we definitely expect to find stuff not owned by stow.
|
|
|
|
# Therefore we can't flag a conflict.
|
2011-11-24 11:28:09 -05:00
|
|
|
return; # XXX #
|
|
|
|
}
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Does the existing $target actually point to anything?
|
2011-11-22 10:59:07 -05:00
|
|
|
if (-e $existing_path) {
|
2011-11-21 18:21:48 -05:00
|
|
|
# Does link point to the right place?
|
2011-11-22 10:59:07 -05:00
|
|
|
if ($existing_path eq $path) {
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->do_unlink($target);
|
|
|
|
}
|
|
|
|
elsif ($self->override($target)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "--- overriding installation of: $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->do_unlink($target);
|
|
|
|
}
|
|
|
|
# else leave it alone
|
|
|
|
}
|
|
|
|
else {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "--- removing invalid link into a stow directory: $path");
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->do_unlink($target);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif (-d $target) {
|
2024-03-09 12:49:49 -05:00
|
|
|
$self->unstow_contents_orig($package, $target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# This action may have made the parent directory foldable
|
2011-11-24 11:28:09 -05:00
|
|
|
if (my $parent = $self->foldable($target)) {
|
|
|
|
$self->fold_tree($target, $parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif (-e $target) {
|
|
|
|
$self->conflict(
|
2011-11-24 17:49:22 -05:00
|
|
|
'unstow',
|
|
|
|
$package,
|
|
|
|
"existing target is neither a link nor a directory: $target",
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "$target did not exist to be unstowed");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : unstow_contents()
|
|
|
|
# Purpose : unstow the contents of the given directory
|
2024-03-09 12:49:49 -05:00
|
|
|
# Parameters: $package => the package whose contents are being unstowed
|
2011-11-24 11:28:09 -05:00
|
|
|
# : $target => relative path to symlink target from the current directory
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : a fatal error if directory cannot be read
|
|
|
|
# Comments : unstow_node() and unstow_contents() are mutually recursive
|
|
|
|
# : Here we traverse the source tree, rather than the target tree.
|
|
|
|
#============================================================================
|
|
|
|
sub unstow_contents {
|
|
|
|
my $self = shift;
|
2024-03-09 12:49:49 -05:00
|
|
|
my ($package, $target) = @_;
|
2011-11-23 18:45:48 -05:00
|
|
|
|
2024-03-09 12:49:49 -05:00
|
|
|
my $path = join_paths($self->{stow_path}, $package, $target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2024-03-30 10:03:56 -04:00
|
|
|
return if $self->should_skip_target($target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
my $cwd = getcwd();
|
|
|
|
my $msg = "Unstowing from $target (cwd=$cwd, stow dir=$self->{stow_path})";
|
|
|
|
$msg =~ s!$ENV{HOME}/!~/!g;
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 0, $msg);
|
|
|
|
debug(4, 1, "source path is $path");
|
2011-11-24 11:28:09 -05:00
|
|
|
# We traverse the source tree not the target tree, so $path must exist.
|
|
|
|
error("unstow_contents() called with non-directory path: $path")
|
|
|
|
unless -d $path;
|
|
|
|
# When called at the top level, $target should exist. And
|
|
|
|
# unstow_node() should only call this via mutual recursion if
|
|
|
|
# $target exists.
|
|
|
|
error("unstow_contents() called with invalid target: $target")
|
|
|
|
unless $self->is_a_node($target);
|
|
|
|
|
|
|
|
opendir my $DIR, $path
|
2012-07-08 20:06:13 -04:00
|
|
|
or error("cannot read directory: $path ($!)");
|
2011-11-24 11:28:09 -05:00
|
|
|
my @listing = readdir $DIR;
|
|
|
|
closedir $DIR;
|
|
|
|
|
|
|
|
NODE:
|
|
|
|
for my $node (@listing) {
|
|
|
|
next NODE if $node eq '.';
|
|
|
|
next NODE if $node eq '..';
|
2011-11-23 18:45:48 -05:00
|
|
|
my $node_target = join_paths($target, $node);
|
2024-03-09 12:49:49 -05:00
|
|
|
next NODE if $self->ignore($self->{stow_path}, $package, $node_target);
|
2016-07-31 16:55:55 -04:00
|
|
|
|
|
|
|
if ($self->{dotfiles}) {
|
|
|
|
my $adj_node_target = adjust_dotfile($node_target);
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "Adjusting: $node_target => $adj_node_target");
|
2016-07-31 16:55:55 -04:00
|
|
|
$node_target = $adj_node_target;
|
|
|
|
}
|
|
|
|
|
2024-03-09 12:49:49 -05:00
|
|
|
$self->unstow_node($package, $node_target);
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
if (-d $target) {
|
|
|
|
$self->cleanup_invalid_links($target);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : unstow_node()
|
|
|
|
# Purpose : unstow the given node
|
2024-03-09 12:49:49 -05:00
|
|
|
# Parameters: $package => the package containing the node being unstowed
|
2011-11-24 11:28:09 -05:00
|
|
|
# : $target => relative path to symlink target from the current directory
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : fatal error if a conflict arises
|
|
|
|
# Comments : unstow_node() and unstow_contents() are mutually recursive
|
|
|
|
#============================================================================
|
|
|
|
sub unstow_node {
|
|
|
|
my $self = shift;
|
2024-03-09 12:49:49 -05:00
|
|
|
my ($package, $target) = @_;
|
2011-11-23 18:45:48 -05:00
|
|
|
|
2024-03-09 12:49:49 -05:00
|
|
|
my $path = join_paths($self->{stow_path}, $package, $target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-11 12:13:47 -05:00
|
|
|
debug(3, 1, "Unstowing $path");
|
|
|
|
debug(4, 2, "target is $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Does the target exist?
|
2011-11-24 11:28:09 -05:00
|
|
|
if ($self->is_a_link($target)) {
|
2020-11-11 12:13:47 -05:00
|
|
|
debug(4, 2, "Evaluate existing link: $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Where is the link pointing?
|
2011-11-22 10:59:07 -05:00
|
|
|
my $existing_source = $self->read_a_link($target);
|
|
|
|
if (not $existing_source) {
|
2011-11-24 11:28:09 -05:00
|
|
|
error("Could not read link: $target");
|
|
|
|
}
|
|
|
|
|
2011-11-22 10:59:07 -05:00
|
|
|
if ($existing_source =~ m{\A/}) {
|
2011-11-23 18:45:48 -05:00
|
|
|
warn "Ignoring an absolute symlink: $target => $existing_source\n";
|
2011-11-24 11:28:09 -05:00
|
|
|
return; # XXX #
|
|
|
|
}
|
|
|
|
|
2011-11-25 10:23:08 -05:00
|
|
|
# Does it point to a node under any stow directory?
|
2011-11-23 18:45:48 -05:00
|
|
|
my ($existing_path, $existing_stow_path, $existing_package) =
|
|
|
|
$self->find_stowed_path($target, $existing_source);
|
2011-11-22 10:59:07 -05:00
|
|
|
if (not $existing_path) {
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->conflict(
|
2011-11-24 17:49:22 -05:00
|
|
|
'unstow',
|
|
|
|
$package,
|
|
|
|
"existing target is not owned by stow: $target => $existing_source"
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
|
|
|
return; # XXX #
|
|
|
|
}
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Does the existing $target actually point to anything?
|
2011-11-22 10:59:07 -05:00
|
|
|
if (-e $existing_path) {
|
2011-11-21 18:21:48 -05:00
|
|
|
# Does link points to the right place?
|
2016-07-31 16:55:55 -04:00
|
|
|
|
|
|
|
# Adjust for dotfile if necessary.
|
|
|
|
if ($self->{dotfiles}) {
|
|
|
|
$existing_path = adjust_dotfile($existing_path);
|
|
|
|
}
|
|
|
|
|
2011-11-22 10:59:07 -05:00
|
|
|
if ($existing_path eq $path) {
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->do_unlink($target);
|
|
|
|
}
|
|
|
|
|
|
|
|
# XXX we quietly ignore links that are stowed to a different
|
|
|
|
# package.
|
|
|
|
|
|
|
|
#elsif (defer($target)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
# debug(2, 0, "--- deferring to installation of: $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
#}
|
|
|
|
#elsif ($self->override($target)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
# debug(2, 0, "--- overriding installation of: $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
# $self->do_unlink($target);
|
|
|
|
#}
|
|
|
|
#else {
|
|
|
|
# $self->conflict(
|
2011-11-24 17:49:22 -05:00
|
|
|
# 'unstow',
|
|
|
|
# $package,
|
|
|
|
# "existing target is stowed to a different package: "
|
|
|
|
# . "$target => $existing_source"
|
2011-11-24 11:28:09 -05:00
|
|
|
# );
|
|
|
|
#}
|
|
|
|
}
|
|
|
|
else {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "--- removing invalid link into a stow directory: $path");
|
2011-11-24 11:28:09 -05:00
|
|
|
$self->do_unlink($target);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif (-e $target) {
|
2020-11-11 12:13:47 -05:00
|
|
|
debug(4, 2, "Evaluate existing node: $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
if (-d $target) {
|
2024-03-09 12:49:49 -05:00
|
|
|
$self->unstow_contents($package, $target);
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# This action may have made the parent directory foldable
|
2011-11-24 11:28:09 -05:00
|
|
|
if (my $parent = $self->foldable($target)) {
|
|
|
|
$self->fold_tree($target, $parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$self->conflict(
|
2011-11-24 17:49:22 -05:00
|
|
|
'unstow',
|
|
|
|
$package,
|
|
|
|
"existing target is neither a link nor a directory: $target",
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2020-11-11 12:13:47 -05:00
|
|
|
debug(2, 1, "$target did not exist to be unstowed");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
2020-11-01 19:52:41 -05:00
|
|
|
# Name : link_owned_by_package()
|
2012-01-09 11:25:27 -05:00
|
|
|
# Purpose : determine whether the given link points to a member of a
|
2011-11-24 11:28:09 -05:00
|
|
|
# : stowed package
|
|
|
|
# Parameters: $target => path to a symbolic link under current directory
|
|
|
|
# : $source => where that link points to
|
2011-11-23 18:45:48 -05:00
|
|
|
# Returns : the package iff link is owned by stow, otherwise ''
|
|
|
|
# Throws : n/a
|
|
|
|
# Comments : lossy wrapper around find_stowed_path()
|
|
|
|
#============================================================================
|
2020-11-01 19:52:41 -05:00
|
|
|
sub link_owned_by_package {
|
2011-11-23 18:45:48 -05:00
|
|
|
my $self = shift;
|
|
|
|
my ($target, $source) = @_;
|
|
|
|
|
|
|
|
my ($path, $stow_path, $package) =
|
|
|
|
$self->find_stowed_path($target, $source);
|
|
|
|
return $package;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : find_stowed_path()
|
2020-11-11 14:43:25 -05:00
|
|
|
# Purpose : determine whether the given symlink within the target directory
|
2024-03-09 13:11:00 -05:00
|
|
|
# : is a stowed path pointing to a member of a package under the
|
|
|
|
# : stow dir, and if so, obtain a breakdown of information about
|
|
|
|
# : this stowed path.
|
2020-11-11 14:43:25 -05:00
|
|
|
# Parameters: $target => path to a symbolic link somewhere under
|
|
|
|
# : the target directory, relative to the
|
|
|
|
# : top-level target directory (which is also
|
|
|
|
# : expected to be the current directory).
|
|
|
|
# : $ldest => where that link points to (needed because link
|
2011-11-23 18:45:48 -05:00
|
|
|
# : might not exist yet due to two-phase approach,
|
2020-11-11 14:43:25 -05:00
|
|
|
# : so we can't just call readlink()). If this is
|
|
|
|
# : owned by Stow, it will be expressed relative to
|
|
|
|
# : (the directory containing) $target. However if
|
|
|
|
# : it's not, it could of course be relative or absolute,
|
|
|
|
# : point absolutely anywhere, and could even be
|
|
|
|
# : dangling.
|
|
|
|
# Returns : ($path, $stow_path, $package) where $path and $stow_path
|
|
|
|
# : are relative from the top-level target directory. $path
|
|
|
|
# : is the full relative path to the member of the package
|
|
|
|
# : pointed to by $ldest; $stow_path is the relative path
|
|
|
|
# : to the stow directory; and $package is the name of the
|
|
|
|
# : package; or ('', '', '') if link is not owned by stow.
|
2011-11-23 18:45:48 -05:00
|
|
|
# Throws : n/a
|
2020-11-11 14:43:25 -05:00
|
|
|
# Comments : cwd must be the top-level target directory, otherwise
|
|
|
|
# : find_containing_marked_stow_dir() won't work.
|
|
|
|
# : Allow for stow dir not being under target dir.
|
2011-11-24 11:28:09 -05:00
|
|
|
#============================================================================
|
|
|
|
sub find_stowed_path {
|
|
|
|
my $self = shift;
|
2020-11-11 14:43:25 -05:00
|
|
|
my ($target, $ldest) = @_;
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-11 14:43:25 -05:00
|
|
|
if (substr($ldest, 0, 1) eq '/') {
|
|
|
|
# Symlink points to an absolute path, therefore it cannot be
|
|
|
|
# owned by Stow.
|
|
|
|
return ('', '', '');
|
|
|
|
}
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-11 14:43:25 -05:00
|
|
|
# Evaluate softlink relative to its target, without relying on
|
|
|
|
# what's actually on the filesystem, since the link might not
|
|
|
|
# exist yet.
|
|
|
|
debug(4, 2, "find_stowed_path(target=$target; source=$ldest)");
|
|
|
|
my $dest = join_paths(parent($target), $ldest);
|
|
|
|
debug(4, 3, "is symlink destination $dest owned by stow?");
|
|
|
|
|
|
|
|
# First check whether the link is owned by the current stow
|
|
|
|
# directory, in which case $dest will be a prefix of
|
|
|
|
# $self->{stow_path}.
|
|
|
|
my ($package, $path) = $self->link_dest_within_stow_dir($dest);
|
|
|
|
if (length $package) {
|
|
|
|
debug(4, 3, "yes - package $package in $self->{stow_path} may contain $path");
|
|
|
|
return ($dest, $self->{stow_path}, $package);
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
2011-11-23 18:45:48 -05:00
|
|
|
# If no .stow file was found, we need to find out whether it's
|
2020-11-11 14:43:25 -05:00
|
|
|
my ($stow_path, $ext_package) = $self->find_containing_marked_stow_dir($dest);
|
|
|
|
if (length $stow_path) {
|
|
|
|
debug(5, 5, "yes - $stow_path in $dest was marked as a stow dir; package=$ext_package");
|
|
|
|
return ($dest, $stow_path, $ext_package);
|
2019-06-28 10:22:44 -04:00
|
|
|
}
|
|
|
|
|
2020-11-11 14:43:25 -05:00
|
|
|
return ('', '', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ================================================================
|
|
|
|
# Name : link_dest_within_stow_dir
|
|
|
|
# Purpose : detect whether symlink destination is within current stow dir
|
|
|
|
# Parameters: $ldest - destination of the symlink relative
|
|
|
|
# Returns : ($package, $path) - package within the current stow dir
|
|
|
|
# : and subpath within that package which the symlink points to
|
|
|
|
#=============================================================================
|
|
|
|
sub link_dest_within_stow_dir {
|
|
|
|
my $self = shift;
|
|
|
|
my ($ldest) = @_;
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-11 14:43:25 -05:00
|
|
|
debug(4, 4, "common prefix? ldest=$ldest; stow_path=$self->{stow_path}");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-11 14:43:25 -05:00
|
|
|
my $removed = $ldest =~ s,^\Q$self->{stow_path}/,,;
|
|
|
|
if (! $removed) {
|
|
|
|
debug(4, 3, "no - $ldest not under $self->{stow_path}");
|
|
|
|
return ('', '');
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
2020-11-11 14:43:25 -05:00
|
|
|
debug(4, 4, "remaining after removing $self->{stow_path}: $ldest");
|
|
|
|
my @dirs = File::Spec->splitdir($ldest);
|
|
|
|
my $package = shift @dirs;
|
|
|
|
my $path = File::Spec->catdir(@dirs);
|
|
|
|
return ($package, $path);
|
|
|
|
}
|
2019-06-28 10:22:29 -04:00
|
|
|
|
2020-11-11 14:43:25 -05:00
|
|
|
#===== METHOD ================================================================
|
|
|
|
# Name : find_containing_marked_stow_dir
|
|
|
|
# Purpose : detect whether path is within a marked stow directory
|
|
|
|
# Parameters: $path => path to directory to check
|
|
|
|
# Returns : ($stow_path, $package) where $stow_path is the highest directory
|
|
|
|
# : (relative from the top-level target directory) which is marked
|
|
|
|
# : as a Stow directory, and $package is the containing package;
|
|
|
|
# : or ('', '') if no containing directory is marked as a stow
|
|
|
|
# : directory.
|
|
|
|
# Comments : cwd must be the top-level target directory, otherwise
|
|
|
|
# : marked_stow_dir() won't work.
|
|
|
|
#=============================================================================
|
|
|
|
sub find_containing_marked_stow_dir {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
|
|
|
|
|
|
|
# Search for .stow files - this allows us to detect links
|
|
|
|
# owned by stow directories other than the current one.
|
|
|
|
my @segments = File::Spec->splitdir($path);
|
|
|
|
for my $last_segment (0 .. $#segments) {
|
|
|
|
my $path = join_paths(@segments[0 .. $last_segment]);
|
|
|
|
debug(5, 5, "is $path marked stow dir?");
|
|
|
|
if ($self->marked_stow_dir($path)) {
|
|
|
|
if ($last_segment == $#segments) {
|
|
|
|
# This should probably never happen. Even if it did,
|
|
|
|
# there would be no way of calculating $package.
|
|
|
|
internal_error("find_stowed_path() called directly on stow dir");
|
|
|
|
}
|
|
|
|
|
|
|
|
my $package = $segments[$last_segment + 1];
|
|
|
|
return ($path, $package);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ('', '');
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ================================================================
|
|
|
|
# Name : cleanup_invalid_links()
|
2024-03-31 06:58:39 -04:00
|
|
|
# Purpose : clean up orphaned links that may block folding
|
2011-11-24 11:28:09 -05:00
|
|
|
# Parameters: $dir => path to directory to check
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : no exceptions
|
2024-03-31 06:58:39 -04:00
|
|
|
# Comments : This is invoked by unstow_contents().
|
|
|
|
# : We only clean up links which are both orphaned and owned by
|
|
|
|
# : Stow, i.e. they point to a non-existent location within a
|
|
|
|
# : Stow package. These can block tree folding, and they can
|
|
|
|
# : easily occur when a file in Stow package is renamed or removed,
|
|
|
|
# : so the benefit should outweigh the low risk of actually someone
|
|
|
|
# : wanting to keep an orphaned link to within a Stow package.
|
2011-11-24 11:28:09 -05:00
|
|
|
#=============================================================================
|
|
|
|
sub cleanup_invalid_links {
|
|
|
|
my $self = shift;
|
|
|
|
my ($dir) = @_;
|
|
|
|
|
2020-11-01 19:54:15 -05:00
|
|
|
my $cwd = getcwd();
|
2020-11-11 12:13:47 -05:00
|
|
|
debug(2, 0, "Cleaning up any invalid links in $dir (pwd=$cwd)");
|
2020-11-01 19:54:15 -05:00
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
if (not -d $dir) {
|
2020-11-11 14:42:28 -05:00
|
|
|
internal_error("cleanup_invalid_links() called with a non-directory: $dir");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
opendir my $DIR, $dir
|
2012-07-08 20:06:13 -04:00
|
|
|
or error("cannot read directory: $dir ($!)");
|
2011-11-24 11:28:09 -05:00
|
|
|
my @listing = readdir $DIR;
|
|
|
|
closedir $DIR;
|
|
|
|
|
|
|
|
NODE:
|
|
|
|
for my $node (@listing) {
|
|
|
|
next NODE if $node eq '.';
|
|
|
|
next NODE if $node eq '..';
|
|
|
|
|
|
|
|
my $node_path = join_paths($dir, $node);
|
|
|
|
|
2020-11-01 19:54:15 -05:00
|
|
|
next unless -l $node_path;
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-11 12:13:47 -05:00
|
|
|
debug(4, 1, "Checking validity of link $node_path");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-01 19:54:15 -05:00
|
|
|
if (exists $self->{link_task_for}{$node_path}) {
|
2020-11-11 12:13:57 -05:00
|
|
|
my $action = $self->{link_task_for}{$node_path}{action};
|
|
|
|
if ($action ne 'remove') {
|
|
|
|
warn "Unexpected action $action scheduled for $node_path; skipping clean-up\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
debug(4, 2, "$node_path scheduled for removal; skipping clean-up");
|
|
|
|
}
|
|
|
|
next;
|
2020-11-01 19:54:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
# Where is the link pointing?
|
|
|
|
# (don't use read_a_link() here)
|
2020-11-11 14:43:25 -05:00
|
|
|
my $ldest = readlink($node_path);
|
|
|
|
if (not $ldest) {
|
2020-11-01 19:54:15 -05:00
|
|
|
error("Could not read link $node_path");
|
|
|
|
}
|
|
|
|
|
2020-11-11 14:43:25 -05:00
|
|
|
my $target = join_paths($dir, $ldest);
|
|
|
|
debug(4, 2, "join $dir $ldest");
|
|
|
|
if (-e $target) {
|
|
|
|
debug(4, 2, "Link target $ldest exists at $target; skipping clean up");
|
2020-11-01 19:54:15 -05:00
|
|
|
next;
|
|
|
|
}
|
2020-11-11 14:43:25 -05:00
|
|
|
else {
|
|
|
|
debug(4, 2, "Link target $ldest doesn't exist at $target");
|
|
|
|
}
|
2020-11-01 19:54:15 -05:00
|
|
|
|
2020-11-11 12:13:47 -05:00
|
|
|
debug(3, 1,
|
2020-11-11 14:43:25 -05:00
|
|
|
"Checking whether valid link $node_path -> $ldest is " .
|
2020-11-01 19:54:15 -05:00
|
|
|
"owned by stow");
|
|
|
|
|
2020-11-11 14:43:25 -05:00
|
|
|
my $owner = $self->link_owned_by_package($node_path, $ldest);
|
|
|
|
if ($owner) {
|
2020-11-01 19:54:15 -05:00
|
|
|
# owned by stow
|
2020-11-11 14:43:25 -05:00
|
|
|
debug(2, 0, "--- removing link owned by $owner: $node_path => " .
|
|
|
|
join_paths($dir, $ldest));
|
2020-11-01 19:54:15 -05:00
|
|
|
$self->do_unlink($node_path);
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : foldable()
|
2012-01-09 11:25:27 -05:00
|
|
|
# Purpose : determine whether a tree can be folded
|
2011-11-24 11:28:09 -05:00
|
|
|
# Parameters: $target => path to a directory
|
|
|
|
# Returns : path to the parent dir iff the tree can be safely folded
|
|
|
|
# Throws : n/a
|
|
|
|
# Comments : the path returned is relative to the parent of $target,
|
|
|
|
# : that is, it can be used as the source for a replacement symlink
|
|
|
|
#============================================================================
|
|
|
|
sub foldable {
|
|
|
|
my $self = shift;
|
|
|
|
my ($target) = @_;
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 2, "Is $target foldable?");
|
2012-02-18 15:13:32 -05:00
|
|
|
if ($self->{'no-folding'}) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 3, "no because --no-folding enabled");
|
2012-02-18 15:13:32 -05:00
|
|
|
return '';
|
|
|
|
}
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
opendir my $DIR, $target
|
|
|
|
or error(qq{Cannot read directory "$target" ($!)\n});
|
|
|
|
my @listing = readdir $DIR;
|
|
|
|
closedir $DIR;
|
|
|
|
|
|
|
|
my $parent = '';
|
|
|
|
NODE:
|
|
|
|
for my $node (@listing) {
|
|
|
|
|
|
|
|
next NODE if $node eq '.';
|
|
|
|
next NODE if $node eq '..';
|
|
|
|
|
|
|
|
my $path = join_paths($target, $node);
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Skip nodes scheduled for removal
|
2011-11-24 11:28:09 -05:00
|
|
|
next NODE if not $self->is_a_node($path);
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# If it's not a link then we can't fold its parent
|
2011-11-24 11:28:09 -05:00
|
|
|
return '' if not $self->is_a_link($path);
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Where is the link pointing?
|
2011-11-24 11:28:09 -05:00
|
|
|
my $source = $self->read_a_link($path);
|
|
|
|
if (not $source) {
|
|
|
|
error("Could not read link $path");
|
|
|
|
}
|
|
|
|
if ($parent eq '') {
|
|
|
|
$parent = parent($source)
|
|
|
|
}
|
|
|
|
elsif ($parent ne parent($source)) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return '' if not $parent;
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# If we get here then all nodes inside $target are links, and those links
|
2011-11-24 11:28:09 -05:00
|
|
|
# point to nodes inside the same directory.
|
|
|
|
|
|
|
|
# chop of leading '..' to get the path to the common parent directory
|
|
|
|
# relative to the parent of our $target
|
|
|
|
$parent =~ s{\A\.\./}{};
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# If the resulting path is owned by stow, we can fold it
|
2020-11-01 19:52:41 -05:00
|
|
|
if ($self->link_owned_by_package($target, $parent)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 3, "$target is foldable");
|
2011-11-24 11:28:09 -05:00
|
|
|
return $parent;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : fold_tree()
|
|
|
|
# Purpose : fold the given tree
|
|
|
|
# Parameters: $source => link to the folded tree source
|
|
|
|
# : $target => directory that we will replace with a link to $source
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : none
|
|
|
|
# Comments : only called iff foldable() is true so we can remove some checks
|
|
|
|
#============================================================================
|
|
|
|
sub fold_tree {
|
|
|
|
my $self = shift;
|
|
|
|
my ($target, $source) = @_;
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(3, 0, "--- Folding tree: $target => $source");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
opendir my $DIR, $target
|
|
|
|
or error(qq{Cannot read directory "$target" ($!)\n});
|
|
|
|
my @listing = readdir $DIR;
|
|
|
|
closedir $DIR;
|
|
|
|
|
|
|
|
NODE:
|
|
|
|
for my $node (@listing) {
|
|
|
|
next NODE if $node eq '.';
|
|
|
|
next NODE if $node eq '..';
|
|
|
|
next NODE if not $self->is_a_node(join_paths($target, $node));
|
|
|
|
$self->do_unlink(join_paths($target, $node));
|
|
|
|
}
|
|
|
|
$self->do_rmdir($target);
|
|
|
|
$self->do_link($source, $target);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : conflict()
|
|
|
|
# Purpose : handle conflicts in stow operations
|
2011-11-24 17:49:22 -05:00
|
|
|
# Parameters: $package => the package involved with the conflicting operation
|
|
|
|
# : $message => a description of the conflict
|
2011-11-24 11:28:09 -05:00
|
|
|
# Returns : n/a
|
2011-11-24 17:49:22 -05:00
|
|
|
# Throws : none
|
|
|
|
# Comments : none
|
2011-11-24 11:28:09 -05:00
|
|
|
#============================================================================
|
|
|
|
sub conflict {
|
|
|
|
my $self = shift;
|
2011-11-24 17:49:22 -05:00
|
|
|
my ($action, $package, $message) = @_;
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "CONFLICT when ${action}ing $package: $message");
|
2011-11-24 17:49:22 -05:00
|
|
|
$self->{conflicts}{$action}{$package} ||= [];
|
|
|
|
push @{ $self->{conflicts}{$action}{$package} }, $message;
|
|
|
|
$self->{conflict_count}++;
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
=head2 get_conflicts()
|
|
|
|
|
2011-11-24 17:49:22 -05:00
|
|
|
Returns a nested hash of all potential conflicts discovered: the keys
|
|
|
|
are actions ('stow' or 'unstow'), and the values are hashrefs whose
|
|
|
|
keys are stow package names and whose values are conflict
|
|
|
|
descriptions, e.g.:
|
|
|
|
|
|
|
|
(
|
|
|
|
stow => {
|
|
|
|
perl => [
|
|
|
|
"existing target is not owned by stow: bin/a2p"
|
|
|
|
"existing target is neither a link nor a directory: bin/perl"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub get_conflicts {
|
|
|
|
my $self = shift;
|
2011-11-24 17:49:22 -05:00
|
|
|
return %{ $self->{conflicts} };
|
|
|
|
}
|
|
|
|
|
|
|
|
=head2 get_conflict_count()
|
|
|
|
|
|
|
|
Returns the number of conflicts found.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub get_conflict_count {
|
|
|
|
my $self = shift;
|
|
|
|
return $self->{conflict_count};
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
=head2 get_tasks()
|
|
|
|
|
|
|
|
Returns a list of all symlink/directory creation/removal tasks.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub get_tasks {
|
|
|
|
my $self = shift;
|
|
|
|
return @{ $self->{tasks} };
|
|
|
|
}
|
|
|
|
|
2011-11-24 17:49:22 -05:00
|
|
|
=head2 get_action_count()
|
|
|
|
|
|
|
|
Returns the number of actions planned for this Stow instance.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub get_action_count {
|
|
|
|
my $self = shift;
|
|
|
|
return $self->{action_count};
|
|
|
|
}
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
#===== METHOD ================================================================
|
|
|
|
# Name : ignore
|
|
|
|
# Purpose : determine if the given path matches a regex in our ignore list
|
2011-11-23 18:45:48 -05:00
|
|
|
# Parameters: $stow_path => the stow directory containing the package
|
|
|
|
# : $package => the package containing the path
|
|
|
|
# : $target => the path to check against the ignore list
|
|
|
|
# : relative to its package directory
|
|
|
|
# Returns : true iff the path should be ignored
|
2011-11-24 11:28:09 -05:00
|
|
|
# Throws : no exceptions
|
|
|
|
# Comments : none
|
|
|
|
#=============================================================================
|
|
|
|
sub ignore {
|
|
|
|
my $self = shift;
|
2011-11-23 18:45:48 -05:00
|
|
|
my ($stow_path, $package, $target) = @_;
|
|
|
|
|
|
|
|
internal_error(__PACKAGE__ . "::ignore() called with empty target")
|
|
|
|
unless length $target;
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
for my $suffix (@{ $self->{ignore} }) {
|
2011-11-23 18:45:48 -05:00
|
|
|
if ($target =~ m/$suffix/) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "Ignoring path $target due to --ignore=$suffix");
|
2011-11-23 18:45:48 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-23 18:45:48 -05:00
|
|
|
my $package_dir = join_paths($stow_path, $package);
|
|
|
|
my ($path_regexp, $segment_regexp) =
|
|
|
|
$self->get_ignore_regexps($package_dir);
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(5, 2, "Ignore list regexp for paths: " .
|
2011-11-23 18:45:48 -05:00
|
|
|
(defined $path_regexp ? "/$path_regexp/" : "none"));
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(5, 2, "Ignore list regexp for segments: " .
|
2011-11-23 18:45:48 -05:00
|
|
|
(defined $segment_regexp ? "/$segment_regexp/" : "none"));
|
|
|
|
|
|
|
|
if (defined $path_regexp and "/$target" =~ $path_regexp) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "Ignoring path /$target");
|
2011-11-23 18:45:48 -05:00
|
|
|
return 1;
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
2011-11-23 18:45:48 -05:00
|
|
|
|
|
|
|
(my $basename = $target) =~ s!.+/!!;
|
|
|
|
if (defined $segment_regexp and $basename =~ $segment_regexp) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "Ignoring path segment $basename");
|
2011-11-23 18:45:48 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(5, 1, "Not ignoring $target");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-23 18:45:48 -05:00
|
|
|
sub get_ignore_regexps {
|
|
|
|
my $self = shift;
|
|
|
|
my ($dir) = @_;
|
|
|
|
|
|
|
|
# N.B. the local and global stow ignore files have to have different
|
|
|
|
# names so that:
|
|
|
|
# 1. the global one can be a symlink to within a stow
|
|
|
|
# package, managed by stow itself, and
|
|
|
|
# 2. the local ones can be ignored via hardcoded logic in
|
|
|
|
# GlobsToRegexp(), so that they always stay within their stow packages.
|
|
|
|
|
|
|
|
my $local_stow_ignore = join_paths($dir, $LOCAL_IGNORE_FILE);
|
|
|
|
my $global_stow_ignore = join_paths($ENV{HOME}, $GLOBAL_IGNORE_FILE);
|
|
|
|
|
|
|
|
for my $file ($local_stow_ignore, $global_stow_ignore) {
|
|
|
|
if (-e $file) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(5, 1, "Using ignore file: $file");
|
2011-11-23 18:45:48 -05:00
|
|
|
return $self->get_ignore_regexps_from_file($file);
|
|
|
|
}
|
|
|
|
else {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(5, 1, "$file didn't exist");
|
2011-11-23 18:45:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "Using built-in ignore list");
|
2011-11-23 18:45:48 -05:00
|
|
|
return @default_global_ignore_regexps;
|
|
|
|
}
|
|
|
|
|
|
|
|
my %ignore_file_regexps;
|
|
|
|
|
|
|
|
sub get_ignore_regexps_from_file {
|
|
|
|
my $self = shift;
|
|
|
|
my ($file) = @_;
|
|
|
|
|
|
|
|
if (exists $ignore_file_regexps{$file}) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 2, "Using memoized regexps from $file");
|
2011-11-23 18:45:48 -05:00
|
|
|
return @{ $ignore_file_regexps{$file} };
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! open(REGEXPS, $file)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 2, "Failed to open $file: $!");
|
2011-11-23 18:45:48 -05:00
|
|
|
return undef;
|
|
|
|
}
|
|
|
|
|
|
|
|
my @regexps = $self->get_ignore_regexps_from_fh(\*REGEXPS);
|
|
|
|
close(REGEXPS);
|
|
|
|
|
|
|
|
$ignore_file_regexps{$file} = [ @regexps ];
|
|
|
|
return @regexps;
|
|
|
|
}
|
|
|
|
|
|
|
|
=head2 invalidate_memoized_regexp($file)
|
|
|
|
|
|
|
|
For efficiency of performance, regular expressions are compiled from
|
|
|
|
each ignore list file the first time it is used by the Stow process,
|
|
|
|
and then memoized for future use. If you expect the contents of these
|
|
|
|
files to change during a single run, you will need to invalidate the
|
|
|
|
memoized value from this cache. This method allows you to do that.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub invalidate_memoized_regexp {
|
|
|
|
my $self = shift;
|
|
|
|
my ($file) = @_;
|
|
|
|
if (exists $ignore_file_regexps{$file}) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 2, "Invalidated memoized regexp for $file");
|
2011-11-23 18:45:48 -05:00
|
|
|
delete $ignore_file_regexps{$file};
|
|
|
|
}
|
|
|
|
else {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 1, "WARNING: no memoized regexp for $file to invalidate");
|
2011-11-23 18:45:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_ignore_regexps_from_fh {
|
|
|
|
my $self = shift;
|
|
|
|
my ($fh) = @_;
|
|
|
|
my %regexps;
|
|
|
|
while (<$fh>) {
|
|
|
|
chomp;
|
|
|
|
s/^\s+//;
|
|
|
|
s/\s+$//;
|
|
|
|
next if /^#/ or length($_) == 0;
|
|
|
|
s/\s+#.+//; # strip comments to right of pattern
|
|
|
|
s/\\#/#/g;
|
|
|
|
$regexps{$_}++;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Local ignore lists should *always* stay within the stow directory,
|
|
|
|
# because this is the only place stow looks for them.
|
|
|
|
$regexps{"^/\Q$LOCAL_IGNORE_FILE\E\$"}++;
|
|
|
|
|
|
|
|
return $self->compile_ignore_regexps(%regexps);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub compile_ignore_regexps {
|
|
|
|
my $self = shift;
|
|
|
|
my (%regexps) = @_;
|
|
|
|
|
|
|
|
my @segment_regexps;
|
|
|
|
my @path_regexps;
|
|
|
|
for my $regexp (keys %regexps) {
|
|
|
|
if (index($regexp, '/') < 0) {
|
|
|
|
# No / found in regexp, so use it for matching against basename
|
|
|
|
push @segment_regexps, $regexp;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
# / found in regexp, so use it for matching against full path
|
|
|
|
push @path_regexps, $regexp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my $segment_regexp = join '|', @segment_regexps;
|
|
|
|
my $path_regexp = join '|', @path_regexps;
|
|
|
|
$segment_regexp = @segment_regexps ?
|
|
|
|
$self->compile_regexp("^($segment_regexp)\$") : undef;
|
|
|
|
$path_regexp = @path_regexps ?
|
|
|
|
$self->compile_regexp("(^|/)($path_regexp)(/|\$)") : undef;
|
|
|
|
|
|
|
|
return ($path_regexp, $segment_regexp);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub compile_regexp {
|
|
|
|
my $self = shift;
|
|
|
|
my ($regexp) = @_;
|
|
|
|
my $compiled = eval { qr/$regexp/ };
|
|
|
|
die "Failed to compile regexp: $@\n" if $@;
|
|
|
|
return $compiled;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_default_global_ignore_regexps {
|
|
|
|
my $class = shift;
|
|
|
|
# Bootstrap issue - first time we stow, we will be stowing
|
|
|
|
# .cvsignore so it might not exist in ~ yet, or if it does, it could
|
|
|
|
# be an old version missing the entries we need. So we make sure
|
|
|
|
# they are there by hardcoding some crucial entries.
|
|
|
|
return $class->get_ignore_regexps_from_fh(\*DATA);
|
|
|
|
}
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
#===== METHOD ================================================================
|
|
|
|
# Name : defer
|
|
|
|
# Purpose : determine if the given path matches a regex in our defer list
|
|
|
|
# Parameters: $path
|
|
|
|
# Returns : Boolean
|
|
|
|
# Throws : no exceptions
|
|
|
|
# Comments : none
|
|
|
|
#=============================================================================
|
|
|
|
sub defer {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
for my $prefix (@{ $self->{defer} }) {
|
2011-11-24 11:28:09 -05:00
|
|
|
return 1 if $path =~ m/$prefix/;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ================================================================
|
2011-11-21 18:15:47 -05:00
|
|
|
# Name : override
|
2011-11-24 11:28:09 -05:00
|
|
|
# Purpose : determine if the given path matches a regex in our override list
|
|
|
|
# Parameters: $path
|
|
|
|
# Returns : Boolean
|
|
|
|
# Throws : no exceptions
|
|
|
|
# Comments : none
|
|
|
|
#=============================================================================
|
|
|
|
sub override {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
for my $regex (@{ $self->{override} }) {
|
2011-11-24 11:28:09 -05:00
|
|
|
return 1 if $path =~ m/$regex/;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# The following code provides the abstractions that allow us to defer operating
|
|
|
|
# on the filesystem until after all potential conflcits have been assessed.
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : process_tasks()
|
|
|
|
# Purpose : process each task in the tasks list
|
|
|
|
# Parameters: none
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : fatal error if tasks list is corrupted or a task fails
|
|
|
|
# Comments : none
|
|
|
|
#============================================================================
|
|
|
|
sub process_tasks {
|
|
|
|
my $self = shift;
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "Processing tasks...");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Strip out all tasks with a skip action
|
2011-11-23 19:45:29 -05:00
|
|
|
$self->{tasks} = [ grep { $_->{action} ne 'skip' } @{ $self->{tasks} } ];
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
if (not @{ $self->{tasks} }) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$self->within_target_do(sub {
|
|
|
|
for my $task (@{ $self->{tasks} }) {
|
|
|
|
$self->process_task($task);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(2, 0, "Processing tasks... done");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : process_task()
|
|
|
|
# Purpose : process a single task
|
|
|
|
# Parameters: $task => the task to process
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : fatal error if task fails
|
|
|
|
# Comments : Must run from within target directory.
|
|
|
|
# : Task involve either creating or deleting dirs and symlinks
|
|
|
|
# : an action is set to 'skip' if it is found to be redundant
|
|
|
|
#============================================================================
|
|
|
|
sub process_task {
|
|
|
|
my $self = shift;
|
|
|
|
my ($task) = @_;
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
if ($task->{action} eq 'create') {
|
|
|
|
if ($task->{type} eq 'dir') {
|
|
|
|
mkdir($task->{path}, 0777)
|
2012-07-08 20:06:13 -04:00
|
|
|
or error("Could not create directory: $task->{path} ($!)");
|
2012-01-09 16:25:35 -05:00
|
|
|
return;
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
2011-11-23 19:45:29 -05:00
|
|
|
elsif ($task->{type} eq 'link') {
|
|
|
|
symlink $task->{source}, $task->{path}
|
2011-11-24 11:28:09 -05:00
|
|
|
or error(
|
2012-07-08 20:06:13 -04:00
|
|
|
"Could not create symlink: %s => %s ($!)",
|
2011-11-23 19:45:29 -05:00
|
|
|
$task->{path},
|
|
|
|
$task->{source}
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
2012-01-09 16:25:35 -05:00
|
|
|
return;
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
2011-11-23 19:45:29 -05:00
|
|
|
elsif ($task->{action} eq 'remove') {
|
|
|
|
if ($task->{type} eq 'dir') {
|
|
|
|
rmdir $task->{path}
|
2012-07-08 20:06:13 -04:00
|
|
|
or error("Could not remove directory: $task->{path} ($!)");
|
2012-01-09 16:25:35 -05:00
|
|
|
return;
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
2011-11-23 19:45:29 -05:00
|
|
|
elsif ($task->{type} eq 'link') {
|
|
|
|
unlink $task->{path}
|
2012-07-08 20:06:13 -04:00
|
|
|
or error("Could not remove link: $task->{path} ($!)");
|
2012-01-09 16:25:35 -05:00
|
|
|
return;
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
2012-01-09 16:25:35 -05:00
|
|
|
elsif ($task->{action} eq 'move') {
|
|
|
|
if ($task->{type} eq 'file') {
|
|
|
|
# rename() not good enough, since the stow directory
|
|
|
|
# might be on a different filesystem to the target.
|
|
|
|
move $task->{path}, $task->{dest}
|
2012-07-08 20:06:13 -04:00
|
|
|
or error("Could not move $task->{path} -> $task->{dest} ($!)");
|
2012-01-09 16:25:35 -05:00
|
|
|
return;
|
|
|
|
}
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
2012-01-09 16:25:35 -05:00
|
|
|
|
|
|
|
# Should never happen.
|
2012-07-08 20:06:13 -04:00
|
|
|
internal_error("bad task action: $task->{action}");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : link_task_action()
|
|
|
|
# Purpose : finds the link task action for the given path, if there is one
|
|
|
|
# Parameters: $path
|
|
|
|
# Returns : 'remove', 'create', or '' if there is no action
|
|
|
|
# Throws : a fatal exception if an invalid action is found
|
|
|
|
# Comments : none
|
|
|
|
#============================================================================
|
|
|
|
sub link_task_action {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
|
|
|
|
|
|
|
if (! exists $self->{link_task_for}{$path}) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "link_task_action($path): no task");
|
2011-11-24 11:28:09 -05:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
my $action = $self->{link_task_for}{$path}->{action};
|
2011-11-24 11:28:09 -05:00
|
|
|
internal_error("bad task action: $action")
|
|
|
|
unless $action eq 'remove' or $action eq 'create';
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "link_task_action($path): link task exists with action $action");
|
2011-11-24 11:28:09 -05:00
|
|
|
return $action;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : dir_task_action()
|
|
|
|
# Purpose : finds the dir task action for the given path, if there is one
|
|
|
|
# Parameters: $path
|
|
|
|
# Returns : 'remove', 'create', or '' if there is no action
|
|
|
|
# Throws : a fatal exception if an invalid action is found
|
|
|
|
# Comments : none
|
|
|
|
#============================================================================
|
|
|
|
sub dir_task_action {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
|
|
|
|
|
|
|
if (! exists $self->{dir_task_for}{$path}) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "dir_task_action($path): no task");
|
2011-11-24 11:28:09 -05:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
my $action = $self->{dir_task_for}{$path}->{action};
|
2011-11-24 11:28:09 -05:00
|
|
|
internal_error("bad task action: $action")
|
|
|
|
unless $action eq 'remove' or $action eq 'create';
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "dir_task_action($path): dir task exists with action $action");
|
2011-11-24 11:28:09 -05:00
|
|
|
return $action;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : parent_link_scheduled_for_removal()
|
2012-01-09 11:25:27 -05:00
|
|
|
# Purpose : determine whether the given path or any parent thereof
|
2011-11-24 11:28:09 -05:00
|
|
|
# : is a link scheduled for removal
|
|
|
|
# Parameters: $path
|
|
|
|
# Returns : Boolean
|
|
|
|
# Throws : none
|
|
|
|
# Comments : none
|
|
|
|
#============================================================================
|
|
|
|
sub parent_link_scheduled_for_removal {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
|
|
|
|
|
|
|
my $prefix = '';
|
|
|
|
for my $part (split m{/+}, $path) {
|
|
|
|
$prefix = join_paths($prefix, $part);
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 2, "parent_link_scheduled_for_removal($path): prefix $prefix");
|
2011-11-24 11:28:09 -05:00
|
|
|
if (exists $self->{link_task_for}{$prefix} and
|
2011-11-23 19:45:29 -05:00
|
|
|
$self->{link_task_for}{$prefix}->{action} eq 'remove') {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 2, "parent_link_scheduled_for_removal($path): link scheduled for removal");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 2, "parent_link_scheduled_for_removal($path): returning false");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : is_a_link()
|
2012-01-09 11:25:27 -05:00
|
|
|
# Purpose : determine if the given path is a current or planned link
|
2011-11-24 11:28:09 -05:00
|
|
|
# Parameters: $path
|
|
|
|
# Returns : Boolean
|
|
|
|
# Throws : none
|
|
|
|
# Comments : returns false if an existing link is scheduled for removal
|
|
|
|
# : and true if a non-existent link is scheduled for creation
|
|
|
|
#============================================================================
|
|
|
|
sub is_a_link {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_link($path)");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
if (my $action = $self->link_task_action($path)) {
|
|
|
|
if ($action eq 'remove') {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_link($path): returning 0 (remove action found)");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
elsif ($action eq 'create') {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_link($path): returning 1 (create action found)");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (-l $path) {
|
2011-11-21 18:21:48 -05:00
|
|
|
# Check if any of its parent are links scheduled for removal
|
2011-11-24 11:28:09 -05:00
|
|
|
# (need this for edge case during unfolding)
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_link($path): is a real link");
|
2011-11-24 11:28:09 -05:00
|
|
|
return $self->parent_link_scheduled_for_removal($path) ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_link($path): returning 0");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : is_a_dir()
|
2012-01-09 11:25:27 -05:00
|
|
|
# Purpose : determine if the given path is a current or planned directory
|
2011-11-24 11:28:09 -05:00
|
|
|
# Parameters: $path
|
|
|
|
# Returns : Boolean
|
|
|
|
# Throws : none
|
|
|
|
# Comments : returns false if an existing directory is scheduled for removal
|
|
|
|
# : and true if a non-existent directory is scheduled for creation
|
|
|
|
# : we also need to be sure we are not just following a link
|
|
|
|
#============================================================================
|
|
|
|
sub is_a_dir {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_dir($path)");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
if (my $action = $self->dir_task_action($path)) {
|
|
|
|
if ($action eq 'remove') {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
elsif ($action eq 'create') {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0 if $self->parent_link_scheduled_for_removal($path);
|
|
|
|
|
|
|
|
if (-d $path) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_dir($path): real dir");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_dir($path): returning false");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : is_a_node()
|
2012-01-09 11:25:27 -05:00
|
|
|
# Purpose : determine whether the given path is a current or planned node
|
2011-11-24 11:28:09 -05:00
|
|
|
# Parameters: $path
|
|
|
|
# Returns : Boolean
|
|
|
|
# Throws : none
|
|
|
|
# Comments : returns false if an existing node is scheduled for removal
|
|
|
|
# : true if a non-existent node is scheduled for creation
|
|
|
|
# : we also need to be sure we are not just following a link
|
|
|
|
#============================================================================
|
|
|
|
sub is_a_node {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
2020-11-11 12:13:47 -05:00
|
|
|
debug(4, 1, "Checking whether $path is a current/planned node");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
my $laction = $self->link_task_action($path);
|
|
|
|
my $daction = $self->dir_task_action($path);
|
|
|
|
|
|
|
|
if ($laction eq 'remove') {
|
|
|
|
if ($daction eq 'remove') {
|
|
|
|
internal_error("removing link and dir: $path");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
elsif ($daction eq 'create') {
|
|
|
|
# Assume that we're unfolding $path, and that the link
|
|
|
|
# removal action is earlier than the dir creation action
|
|
|
|
# in the task queue. FIXME: is this a safe assumption?
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else { # no dir action
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif ($laction eq 'create') {
|
|
|
|
if ($daction eq 'remove') {
|
|
|
|
# Assume that we're folding $path, and that the dir
|
|
|
|
# removal action is earlier than the link creation action
|
|
|
|
# in the task queue. FIXME: is this a safe assumption?
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
elsif ($daction eq 'create') {
|
|
|
|
internal_error("creating link and dir: $path");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else { # no dir action
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
# No link action
|
|
|
|
if ($daction eq 'remove') {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
elsif ($daction eq 'create') {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else { # no dir action
|
|
|
|
# fall through to below
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0 if $self->parent_link_scheduled_for_removal($path);
|
|
|
|
|
|
|
|
if (-e $path) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_node($path): really exists");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "is_a_node($path): returning false");
|
2011-11-24 11:28:09 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : read_a_link()
|
|
|
|
# Purpose : return the source of a current or planned link
|
|
|
|
# Parameters: $path => path to the link target
|
|
|
|
# Returns : a string
|
|
|
|
# Throws : fatal exception if the given path is not a current or planned
|
|
|
|
# : link
|
|
|
|
# Comments : none
|
|
|
|
#============================================================================
|
|
|
|
sub read_a_link {
|
|
|
|
my $self = shift;
|
|
|
|
my ($path) = @_;
|
|
|
|
|
|
|
|
if (my $action = $self->link_task_action($path)) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "read_a_link($path): task exists with action $action");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
if ($action eq 'create') {
|
2011-11-23 19:45:29 -05:00
|
|
|
return $self->{link_task_for}{$path}->{source};
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
elsif ($action eq 'remove') {
|
|
|
|
internal_error(
|
|
|
|
"read_a_link() passed a path that is scheduled for removal: $path"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif (-l $path) {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(4, 1, "read_a_link($path): real link");
|
2014-06-16 05:22:55 -04:00
|
|
|
my $target = readlink $path or error("Could not read link: $path ($!)");
|
|
|
|
return $target;
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
internal_error("read_a_link() passed a non link path: $path\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : do_link()
|
|
|
|
# Purpose : wrap 'link' operation for later processing
|
|
|
|
# Parameters: $oldfile => the existing file to link to
|
|
|
|
# : $newfile => the file to link
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : error if this clashes with an existing planned operation
|
|
|
|
# Comments : cleans up operations that undo previous operations
|
|
|
|
#============================================================================
|
|
|
|
sub do_link {
|
|
|
|
my $self = shift;
|
|
|
|
my ($oldfile, $newfile) = @_;
|
|
|
|
|
|
|
|
if (exists $self->{dir_task_for}{$newfile}) {
|
|
|
|
my $task_ref = $self->{dir_task_for}{$newfile};
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
if ($task_ref->{action} eq 'create') {
|
|
|
|
if ($task_ref->{type} eq 'dir') {
|
2011-11-24 11:28:09 -05:00
|
|
|
internal_error(
|
|
|
|
"new link (%s => %s) clashes with planned new directory",
|
|
|
|
$newfile,
|
|
|
|
$oldfile,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2011-11-23 19:45:29 -05:00
|
|
|
elsif ($task_ref->{action} eq 'remove') {
|
2011-11-21 18:21:48 -05:00
|
|
|
# We may need to remove a directory before creating a link so continue.
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
else {
|
2011-11-23 19:45:29 -05:00
|
|
|
internal_error("bad task action: $task_ref->{action}");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exists $self->{link_task_for}{$newfile}) {
|
|
|
|
my $task_ref = $self->{link_task_for}{$newfile};
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
if ($task_ref->{action} eq 'create') {
|
|
|
|
if ($task_ref->{source} ne $oldfile) {
|
2011-11-24 11:28:09 -05:00
|
|
|
internal_error(
|
|
|
|
"new link clashes with planned new link: %s => %s",
|
2011-11-23 19:45:29 -05:00
|
|
|
$task_ref->{path},
|
|
|
|
$task_ref->{source},
|
2011-11-24 11:28:09 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
else {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "LINK: $newfile => $oldfile (duplicates previous action)");
|
2011-11-24 11:28:09 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2011-11-23 19:45:29 -05:00
|
|
|
elsif ($task_ref->{action} eq 'remove') {
|
|
|
|
if ($task_ref->{source} eq $oldfile) {
|
2011-11-21 18:21:48 -05:00
|
|
|
# No need to remove a link we are going to recreate
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "LINK: $newfile => $oldfile (reverts previous action)");
|
2011-11-23 19:45:29 -05:00
|
|
|
$self->{link_task_for}{$newfile}->{action} = 'skip';
|
2011-11-24 11:28:09 -05:00
|
|
|
delete $self->{link_task_for}{$newfile};
|
|
|
|
return;
|
|
|
|
}
|
2011-11-21 18:21:48 -05:00
|
|
|
# We may need to remove a link to replace it so continue
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
else {
|
2011-11-23 19:45:29 -05:00
|
|
|
internal_error("bad task action: $task_ref->{action}");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Creating a new link
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "LINK: $newfile => $oldfile");
|
2011-11-24 11:28:09 -05:00
|
|
|
my $task = {
|
|
|
|
action => 'create',
|
|
|
|
type => 'link',
|
|
|
|
path => $newfile,
|
|
|
|
source => $oldfile,
|
|
|
|
};
|
|
|
|
push @{ $self->{tasks} }, $task;
|
|
|
|
$self->{link_task_for}{$newfile} = $task;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : do_unlink()
|
|
|
|
# Purpose : wrap 'unlink' operation for later processing
|
|
|
|
# Parameters: $file => the file to unlink
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : error if this clashes with an existing planned operation
|
|
|
|
# Comments : will remove an existing planned link
|
|
|
|
#============================================================================
|
|
|
|
sub do_unlink {
|
|
|
|
my $self = shift;
|
|
|
|
my ($file) = @_;
|
|
|
|
|
|
|
|
if (exists $self->{link_task_for}{$file}) {
|
|
|
|
my $task_ref = $self->{link_task_for}{$file};
|
2011-11-23 19:45:29 -05:00
|
|
|
if ($task_ref->{action} eq 'remove') {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "UNLINK: $file (duplicates previous action)");
|
2011-11-24 11:28:09 -05:00
|
|
|
return;
|
|
|
|
}
|
2011-11-23 19:45:29 -05:00
|
|
|
elsif ($task_ref->{action} eq 'create') {
|
2011-11-21 18:21:48 -05:00
|
|
|
# Do need to create a link then remove it
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "UNLINK: $file (reverts previous action)");
|
2011-11-23 19:45:29 -05:00
|
|
|
$self->{link_task_for}{$file}->{action} = 'skip';
|
2011-11-24 11:28:09 -05:00
|
|
|
delete $self->{link_task_for}{$file};
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
2011-11-23 19:45:29 -05:00
|
|
|
internal_error("bad task action: $task_ref->{action}");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exists $self->{dir_task_for}{$file} and $self->{dir_task_for}{$file} eq 'create') {
|
|
|
|
internal_error(
|
|
|
|
"new unlink operation clashes with planned operation: %s dir %s",
|
2011-11-23 19:45:29 -05:00
|
|
|
$self->{dir_task_for}{$file}->{action},
|
2011-11-24 11:28:09 -05:00
|
|
|
$file
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-11-21 18:21:48 -05:00
|
|
|
# Remove the link
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "UNLINK: $file");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
2012-07-08 20:06:13 -04:00
|
|
|
my $source = readlink $file or error("could not readlink $file ($!)");
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
my $task = {
|
|
|
|
action => 'remove',
|
|
|
|
type => 'link',
|
|
|
|
path => $file,
|
|
|
|
source => $source,
|
|
|
|
};
|
|
|
|
push @{ $self->{tasks} }, $task;
|
|
|
|
$self->{link_task_for}{$file} = $task;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : do_mkdir()
|
|
|
|
# Purpose : wrap 'mkdir' operation
|
|
|
|
# Parameters: $dir => the directory to remove
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : fatal exception if operation fails
|
|
|
|
# Comments : outputs a message if 'verbose' option is set
|
|
|
|
# : does not perform operation if 'simulate' option is set
|
|
|
|
# Comments : cleans up operations that undo previous operations
|
|
|
|
#============================================================================
|
|
|
|
sub do_mkdir {
|
|
|
|
my $self = shift;
|
|
|
|
my ($dir) = @_;
|
|
|
|
|
|
|
|
if (exists $self->{link_task_for}{$dir}) {
|
|
|
|
my $task_ref = $self->{link_task_for}{$dir};
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
if ($task_ref->{action} eq 'create') {
|
2011-11-24 11:28:09 -05:00
|
|
|
internal_error(
|
|
|
|
"new dir clashes with planned new link (%s => %s)",
|
2011-11-23 19:45:29 -05:00
|
|
|
$task_ref->{path},
|
|
|
|
$task_ref->{source},
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
|
|
|
}
|
2011-11-23 19:45:29 -05:00
|
|
|
elsif ($task_ref->{action} eq 'remove') {
|
2011-11-21 18:21:48 -05:00
|
|
|
# May need to remove a link before creating a directory so continue
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
else {
|
2011-11-23 19:45:29 -05:00
|
|
|
internal_error("bad task action: $task_ref->{action}");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exists $self->{dir_task_for}{$dir}) {
|
|
|
|
my $task_ref = $self->{dir_task_for}{$dir};
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
if ($task_ref->{action} eq 'create') {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "MKDIR: $dir (duplicates previous action)");
|
2011-11-24 11:28:09 -05:00
|
|
|
return;
|
|
|
|
}
|
2011-11-23 19:45:29 -05:00
|
|
|
elsif ($task_ref->{action} eq 'remove') {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "MKDIR: $dir (reverts previous action)");
|
2011-11-23 19:45:29 -05:00
|
|
|
$self->{dir_task_for}{$dir}->{action} = 'skip';
|
2011-11-24 11:28:09 -05:00
|
|
|
delete $self->{dir_task_for}{$dir};
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
2011-11-23 19:45:29 -05:00
|
|
|
internal_error("bad task action: $task_ref->{action}");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "MKDIR: $dir");
|
2011-11-24 11:28:09 -05:00
|
|
|
my $task = {
|
|
|
|
action => 'create',
|
|
|
|
type => 'dir',
|
|
|
|
path => $dir,
|
|
|
|
source => undef,
|
|
|
|
};
|
|
|
|
push @{ $self->{tasks} }, $task;
|
|
|
|
$self->{dir_task_for}{$dir} = $task;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : do_rmdir()
|
|
|
|
# Purpose : wrap 'rmdir' operation
|
|
|
|
# Parameters: $dir => the directory to remove
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : fatal exception if operation fails
|
|
|
|
# Comments : outputs a message if 'verbose' option is set
|
|
|
|
# : does not perform operation if 'simulate' option is set
|
|
|
|
#============================================================================
|
|
|
|
sub do_rmdir {
|
|
|
|
my $self = shift;
|
|
|
|
my ($dir) = @_;
|
|
|
|
|
|
|
|
if (exists $self->{link_task_for}{$dir}) {
|
|
|
|
my $task_ref = $self->{link_task_for}{$dir};
|
|
|
|
internal_error(
|
|
|
|
"rmdir clashes with planned operation: %s link %s => %s",
|
2011-11-23 19:45:29 -05:00
|
|
|
$task_ref->{action},
|
|
|
|
$task_ref->{path},
|
|
|
|
$task_ref->{source}
|
2011-11-24 11:28:09 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exists $self->{dir_task_for}{$dir}) {
|
|
|
|
my $task_ref = $self->{link_task_for}{$dir};
|
|
|
|
|
2011-11-23 19:45:29 -05:00
|
|
|
if ($task_ref->{action} eq 'remove') {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "RMDIR $dir (duplicates previous action)");
|
2011-11-24 11:28:09 -05:00
|
|
|
return;
|
|
|
|
}
|
2011-11-23 19:45:29 -05:00
|
|
|
elsif ($task_ref->{action} eq 'create') {
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "MKDIR $dir (reverts previous action)");
|
2011-11-23 19:45:29 -05:00
|
|
|
$self->{link_task_for}{$dir}->{action} = 'skip';
|
2011-11-24 11:28:09 -05:00
|
|
|
delete $self->{link_task_for}{$dir};
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
2011-11-23 19:45:29 -05:00
|
|
|
internal_error("bad task action: $task_ref->{action}");
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "RMDIR $dir");
|
2011-11-24 11:28:09 -05:00
|
|
|
my $task = {
|
|
|
|
action => 'remove',
|
|
|
|
type => 'dir',
|
|
|
|
path => $dir,
|
|
|
|
source => '',
|
|
|
|
};
|
|
|
|
push @{ $self->{tasks} }, $task;
|
|
|
|
$self->{dir_task_for}{$dir} = $task;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-01-09 16:25:35 -05:00
|
|
|
#===== METHOD ===============================================================
|
|
|
|
# Name : do_mv()
|
|
|
|
# Purpose : wrap 'move' operation for later processing
|
|
|
|
# Parameters: $src => the file to move
|
|
|
|
# : $dst => the path to move it to
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : error if this clashes with an existing planned operation
|
|
|
|
# Comments : alters contents of package installation image in stow dir
|
|
|
|
#============================================================================
|
|
|
|
sub do_mv {
|
|
|
|
my $self = shift;
|
|
|
|
my ($src, $dst) = @_;
|
|
|
|
|
|
|
|
if (exists $self->{link_task_for}{$src}) {
|
|
|
|
# I don't *think* this should ever happen, but I'm not
|
|
|
|
# 100% sure.
|
|
|
|
my $task_ref = $self->{link_task_for}{$src};
|
|
|
|
internal_error(
|
|
|
|
"do_mv: pre-existing link task for $src; action: %s, source: %s",
|
|
|
|
$task_ref->{action}, $task_ref->{source}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
elsif (exists $self->{dir_task_for}{$src}) {
|
|
|
|
my $task_ref = $self->{dir_task_for}{$src};
|
|
|
|
internal_error(
|
|
|
|
"do_mv: pre-existing dir task for %s?! action: %s",
|
|
|
|
$src, $task_ref->{action}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Remove the link
|
2020-11-01 16:04:22 -05:00
|
|
|
debug(1, 0, "MV: $src -> $dst");
|
2012-01-09 16:25:35 -05:00
|
|
|
|
|
|
|
my $task = {
|
|
|
|
action => 'move',
|
|
|
|
type => 'file',
|
|
|
|
path => $src,
|
|
|
|
dest => $dst,
|
|
|
|
};
|
|
|
|
push @{ $self->{tasks} }, $task;
|
|
|
|
|
|
|
|
# FIXME: do we need this for anything?
|
|
|
|
#$self->{mv_task_for}{$file} = $task;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
#
|
|
|
|
# End of methods; subroutines follow.
|
|
|
|
# FIXME: Ideally these should be in a separate module.
|
|
|
|
|
|
|
|
|
|
|
|
#===== PRIVATE SUBROUTINE ===================================================
|
|
|
|
# Name : internal_error()
|
|
|
|
# Purpose : output internal error message in a consistent form and die
|
|
|
|
# Parameters: $message => error message to output
|
|
|
|
# Returns : n/a
|
|
|
|
# Throws : n/a
|
|
|
|
# Comments : none
|
|
|
|
#============================================================================
|
|
|
|
sub internal_error {
|
|
|
|
my ($format, @args) = @_;
|
2012-01-09 12:52:11 -05:00
|
|
|
my $error = sprintf($format, @args);
|
2012-01-09 16:11:58 -05:00
|
|
|
my $stacktrace = Carp::longmess();
|
2012-01-09 12:52:11 -05:00
|
|
|
die <<EOF;
|
2012-01-09 16:11:58 -05:00
|
|
|
|
|
|
|
$ProgramName: INTERNAL ERROR: $error$stacktrace
|
|
|
|
|
2012-01-09 12:52:11 -05:00
|
|
|
This _is_ a bug. Please submit a bug report so we can fix it! :-)
|
|
|
|
See http://www.gnu.org/software/stow/ for how to do this.
|
|
|
|
EOF
|
2011-11-24 11:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
=head1 BUGS
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
# mode: perl
|
|
|
|
# end:
|
|
|
|
# vim: ft=perl
|
2011-11-23 18:45:48 -05:00
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# Default global list of ignore regexps follows
|
|
|
|
# (automatically appended by the Makefile)
|
|
|
|
|
|
|
|
__DATA__
|