Newer
Older
/****************************************************************************
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/

Friedemann Kleint
committed
#include <utils/qtcassert.h>
#include <QCoreApplication>
#include <QDebug>
#include <QRegExp>

Friedemann Kleint
committed
namespace Git {
namespace Internal {
void GitSubmitEditorPanelInfo::clear()
{
repository.clear();
description.clear();
branch.clear();
}
QDebug operator<<(QDebug d, const GitSubmitEditorPanelInfo &data)
{
d.nospace() << "Rep: " << data.repository << " Descr: " << data.description
<< " branch: " << data.branch;
return d;
}
void GitSubmitEditorPanelData::clear()
{
author.clear();
email.clear();
}
QString GitSubmitEditorPanelData::authorString() const
{
QString rc;
rc += author;
if (email.isEmpty())
return rc;
rc += QLatin1String(" <");
rc += QLatin1Char('>');
return rc;
}
QDebug operator<<(QDebug d, const GitSubmitEditorPanelData &data)
{
d.nospace() << " author:" << data.author << " email: " << data.email
<< " bypass hooks: " << data.bypassHooks;
return d;
}
void CommitData::clear()
{
panelInfo.clear();
panelData.clear();
static CommitData::FileState stateFor(const QChar &c)

Friedemann Kleint
committed
{
switch (c.unicode()) {
case ' ':
return CommitData::UntrackedFile;
case 'M':
return CommitData::ModifiedFile;
case 'A':
return CommitData::AddedFile;
case 'D':
return CommitData::DeletedFile;
case 'R':
return CommitData::RenamedFile;
case 'C':
return CommitData::CopiedFile;
case 'U':
return CommitData::UpdatedFile;
default:
return CommitData::UnknownFileState;
}

Friedemann Kleint
committed
}
bool CommitData::checkLine(const QString &stateInfo, const QString &file)

Friedemann Kleint
committed
{
QTC_ASSERT(stateInfo.count() == 2, return false);
if (stateInfo == QLatin1String("??")) {
files.append(qMakePair(UntrackedFile, file));
FileState stagedState = stateFor(stateInfo.at(0));
if (stagedState == UnknownFileState)
stagedState = static_cast<FileState>(stagedState | StagedFile);
if (stagedState != StagedFile)
files.append(qMakePair(stagedState, file));
FileState state = stateFor(stateInfo.at(1));
if (state == UnknownFileState)

Friedemann Kleint
committed
return false;
if (state != UntrackedFile) {
if (stagedState == RenamedStagedFile || stagedState == CopiedStagedFile)
newFile = file.mid(file.indexOf(QLatin1String(" -> ")) + 4);
files.append(qMakePair(state, newFile));

Friedemann Kleint
committed
return true;
}
/* Parse a git status file list:
* \code
## branch_name
XY file
\endcode */

Friedemann Kleint
committed
bool CommitData::parseFilesFromStatus(const QString &output)
{
const QStringList lines = output.split(QLatin1Char('\n'));
foreach (const QString &line, lines) {
if (line.isEmpty())
if (line.startsWith(QLatin1String("## "))) {
// Branch indication:
panelInfo.branch = line.mid(3);
QTC_ASSERT(line.at(2) == QLatin1Char(' '), continue);
QString file = line.mid(3);
if (file.startsWith(QLatin1Char('"')))
file.remove(0, 1).chop(1);
if (!checkLine(line.mid(0, 2), file))

Friedemann Kleint
committed
}

Friedemann Kleint
committed
}
QStringList CommitData::filterFiles(const CommitData::FileState &state) const

Friedemann Kleint
committed
{
QStringList result;
foreach (const StateFilePair &p, files) {
result.append(p.second);
}
return result;

Friedemann Kleint
committed
}
QString CommitData::stateDisplayName(const FileState &state)
QString resultState;
if (state == UntrackedFile)
return QCoreApplication::translate("Git::Internal::CommitData", "untracked");
if (state & StagedFile)
resultState = QCoreApplication::translate("Git::Internal::CommitData", "staged + ");
if (state & ModifiedFile)
resultState.append(QCoreApplication::translate("Git::Internal::CommitData", "modified"));
else if (state & AddedFile)
resultState.append(QCoreApplication::translate("Git::Internal::CommitData", "added"));
else if (state & DeletedFile)
resultState.append(QCoreApplication::translate("Git::Internal::CommitData", "deleted"));
else if (state & RenamedFile)
resultState.append(QCoreApplication::translate("Git::Internal::CommitData", "renamed"));
else if (state & CopiedFile)
resultState.append(QCoreApplication::translate("Git::Internal::CommitData", "copied"));
else if (state & UpdatedFile)
resultState.append(QCoreApplication::translate("Git::Internal::CommitData", "updated"));
return resultState;