2 * This file is part of the vng project
3 * Copyright (C) 2008 Thomas Zander <tzander@trolltech.com>
4 * Copyright (C) 2002-2004 David Roundy
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "CommandLineParser.h"
23 #include "GitRunner.h"
24 #include "hunks/File.h"
29 : AbstractCommand("mv")
31 CommandLineParser::setArgumentDefinition("mv [FILE or DIRECTORY]" );
34 AbstractCommand::ReturnCodes
Move::run()
36 if (! checkInRepository())
39 // Move in git is really remove and add. Git will auto detect that being a move.
41 typedef QPair
<QString
, QString
> RenamePair
;
43 QList
<RenamePair
> renamePairs
;
44 QStringList files
= rebasedArguments();
45 if (files
.count() < 2) { // not sure what that would mean...
46 Logger::error() << "Vng failed: you must specify at least two arguments for mv\n";
47 return InvalidOptions
;
49 QString target
= files
.takeLast();
50 QFileInfo
path(target
);
51 if (files
.count() > 1) { // multiple files into a dir.
53 Logger::error() << "Vng failed: The target directory '" << target
<<
54 "` does not seem to be an existing directory\n";
55 return InvalidOptions
;
58 else { // target is a file
59 if(File::fileKnownToGit(path
)) {
60 Logger::error() << "Vng failed: The file named '"<< target
<<
61 "` already exists in working directory.\n";
62 return InvalidOptions
;
65 foreach (QString arg
, files
) {
66 if (canMoveFile(arg
)) {
67 if (files
.count() > 1)
68 renamePairs
.append(qMakePair(arg
, target
+ QDir::separator() + arg
));
70 renamePairs
.append(qMakePair(arg
, target
));
78 QStringList arguments
;
79 arguments
<< "update-index" << "--add" << "--remove";
80 foreach(RenamePair p
, renamePairs
) {
81 Logger::debug() << "rename " << p
.first
<< " => " << p
.second
<< endl
;
82 if (QFile::rename(p
.first
, p
.second
))
83 arguments
<< p
.first
<< p
.second
;
85 Logger::error() << "Vng failed: Could not rename '" << p
.first
<< "` to '" <<
86 p
.second
<< "`, check permissions\n";
89 if (arguments
.count() == 3) { // no files!
90 Logger::info() << "Nothing done\n";
93 GitRunner
runner(git
, arguments
);
94 return runner
.start(GitRunner::WaitUntilFinished
);
97 bool Move::canMoveFile(const QString
&file
)
102 bool knownToGit
= File::fileKnownToGit(path
);
104 Logger::info() << "Not moving file, its not added in the repository: `" << path
.filePath() << "'\n";
109 else if (path
.isSymLink())
110 Logger::info() << "Ignoring symbolic link '" << path
.filePath() << "'" << endl
;
112 Logger::info() << "Ignoring non-file object '" << path
.filePath() << "'" << endl
;
115 Logger::error() << "Can not move non existing' " << path
.filePath() << "'" << endl
;
119 QString
Move::argumentDescription() const
121 return "<FILE or DIRECTORY>";
124 QString
Move::commandDescription() const
126 return "Vng mv can be called whenever you want to move files or\n"
127 "directories. Unlike remove, mv actually performs the move itself in your\n"