package SVK::Command::Delete; use strict; use SVK::Version; our $VERSION = $SVK::VERSION; use base qw( SVK::Command::Commit ); use SVK::XD; use SVK::I18N; use SVK::Util qw( abs2rel ); sub options { ($_[0]->SUPER::options, 'force' => 'force', 'K|keep-local' => 'keep'); } sub parse_arg { my ($self, @arg) = @_; return if $#arg < 0; my $target; @arg = map { $self->{xd}->target_from_copath_maybe($_) } @arg; # XXX: better check for @target being the same type if (grep {$_->isa('SVK::Path::Checkout')} @arg) { die loc("Mixed depotpath and checkoutpath not supported.\n") if grep {!$_->isa('SVK::Path::Checkout')} @arg; return $self->{xd}->target_condensed(@arg); } die loc("Delete for more than one depotpath is not supported yet.\n") if scalar @arg > 1; return @arg; } sub lock { my ($self, $target) = @_; $self->lock_target ($target); } sub do_delete_direct { my ($self, $target) = @_; my $m = $self->under_mirror ($target); if ($m && $m->{target_path} eq $target->path) { $m->delete; $target->refresh_revision; undef $m; } $self->get_commit_message (); $target->normalize; my ($anchor, $editor) = $self->get_dynamic_editor ($target); my $rev = $target->revision; $rev = $m->find_remote_rev ($rev) if $m; $editor->delete_entry (abs2rel ($target->path, $anchor => undef, '/'), $rev, 0); $self->adjust_anchor ($editor); $self->finalize_dynamic_editor ($editor); } sub _ensure_mirror { my ($self, $target) = @_; my @m = $target->contains_mirror or return; return if $#m == 0 && $m[0] eq $target->path_anchor; my $depotname = $target->depotname; die loc("%1 contains mirror, remove explicitly: ", "/$depotname".$target->path_anchor). join(',', map { "/$depotname$_" } @m)."\n" } sub run { my ($self, $target) = @_; $self->_ensure_mirror($target); if ($target->isa('SVK::Path::Checkout')) { $self->{xd}->do_delete( $target, no_rm => $self->{keep}, 'force_delete' => $self->{force} ); } else { $self->do_delete_direct ( $target ); } return; } 1; __DATA__ =head1 NAME SVK::Command::Delete - Remove versioned item =head1 SYNOPSIS delete [PATH...] delete [DEPOTPATH...] =head1 OPTIONS -K [--keep-local] : do not remove the local file -m [--message] MESSAGE : specify commit message MESSAGE -F [--file] FILENAME : read commit message from FILENAME --template : use the specified message as the template to edit --encoding ENC : treat -m/-F value as being in charset encoding ENC -P [--patch] NAME : instead of commit, save this change as a patch -S [--sign] : sign this change -C [--check-only] : try operation but make no changes --direct : commit directly even if the path is mirrored --force : delete the file/directory even if modified =head1 AUTHORS Chia-liang Kao Eclkao@clkao.orgE =head1 COPYRIGHT Copyright 2003-2005 by Chia-liang Kao Eclkao@clkao.orgE. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L =cut