Newer
Older
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** 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.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#include "perforcechecker.h"
#include <utils/qtcassert.h>
#include <utils/synchronousprocess.h>
#include <QtCore/QRegExp>
#include <QtCore/QTimer>
#include <QtCore/QFileInfo>
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#include <QtGui/QApplication>
#include <QtGui/QCursor>
namespace Perforce {
namespace Internal {
PerforceChecker::PerforceChecker(QObject *parent) :
QObject(parent),
m_timeOutMS(-1),
m_timedOut(false),
m_useOverideCursor(false),
m_isOverrideCursor(false)
{
connect(&m_process, SIGNAL(error(QProcess::ProcessError)),
this, SLOT(slotError(QProcess::ProcessError)));
connect(&m_process, SIGNAL(finished(int,QProcess::ExitStatus)),
this, SLOT(slotFinished(int,QProcess::ExitStatus)));
}
PerforceChecker::~PerforceChecker()
{
resetOverrideCursor();
}
bool PerforceChecker::isRunning() const
{
return m_process.state() == QProcess::Running;
}
void PerforceChecker::resetOverrideCursor()
{
if (m_isOverrideCursor) {
QApplication::restoreOverrideCursor();
m_isOverrideCursor = false;
}
}
void PerforceChecker::start(const QString &binary,
const QStringList &basicArgs,
int timeoutMS)
{
if (isRunning()) {
emitFailed(QLatin1String("Internal error: process still running"));
return;
}
if (binary.isEmpty()) {
emitFailed(tr("No executable specified"));
return;
}
m_binary = binary;
QStringList args = basicArgs;
args << QLatin1String("client") << QLatin1String("-o");
m_process.start(m_binary, args);
m_process.closeWriteChannel();
// Timeout handling
m_timeOutMS = timeoutMS;
m_timedOut = false;
if (timeoutMS > 0)
QTimer::singleShot(m_timeOutMS, this, SLOT(slotTimeOut()));
// Cursor
if (m_useOverideCursor) {
m_isOverrideCursor = true;
QApplication::setOverrideCursor(QCursor(Qt::BusyCursor));
}
}
void PerforceChecker::slotTimeOut()
{
if (!isRunning())
return;
m_timedOut = true;
Utils::SynchronousProcess::stopProcess(m_process);
emitFailed(tr("\"%1\" timed out after %2ms.").
arg(m_binary).arg(m_timeOutMS));
}
void PerforceChecker::slotError(QProcess::ProcessError error)
{
if (m_timedOut)
return;
switch (error) {
case QProcess::FailedToStart:
emitFailed(tr("Unable to launch \"%1\": %2").
arg(QDir::toNativeSeparators(m_binary), m_process.errorString()));
break;
case QProcess::Crashed: // Handled elsewhere
case QProcess::Timedout:
break;
case QProcess::ReadError:
case QProcess::WriteError:
case QProcess::UnknownError:
Utils::SynchronousProcess::stopProcess(m_process);
break;
}
}
void PerforceChecker::slotFinished(int exitCode, QProcess::ExitStatus exitStatus)
{
if (m_timedOut)
return;
switch (exitStatus) {
case QProcess::CrashExit:
emitFailed(tr("\"%1\" crashed.").arg(QDir::toNativeSeparators(m_binary)));
break;
case QProcess::NormalExit:
if (exitCode) {
const QString stdErr = QString::fromLocal8Bit(m_process.readAllStandardError());
emitFailed(tr("\"%1\" terminated with exit code %2: %3").
arg(QDir::toNativeSeparators(m_binary)).arg(exitCode).arg(stdErr));
} else {
parseOutput(QString::fromLocal8Bit(m_process.readAllStandardOutput()));
}
break;
}
}
// Parse p4 client output for the top level
static inline QString clientRootFromOutput(const QString &in)
{
QRegExp regExp(QLatin1String("(\\n|\\r\\n|\\r)Root:\\s*(.*)(\\n|\\r\\n|\\r)"));
QTC_ASSERT(regExp.isValid(), return QString());
regExp.setMinimal(true);
// Normalize slashes and capitalization of Windows drive letters for caching.
if (regExp.indexIn(in) != -1)
return QFileInfo(regExp.cap(2).trimmed()).absoluteFilePath();
return QString();
}
void PerforceChecker::parseOutput(const QString &response)
{
if (!response.contains(QLatin1String("View:")) && !response.contains(QLatin1String("//depot/"))) {
emitFailed(tr("The client does not seem to contain any mapped files."));
return;
}
const QString repositoryRoot = clientRootFromOutput(response);
if (repositoryRoot.isEmpty()) {
//: Unable to determine root of the p4 client installation
emitFailed(tr("Unable to determine the client root."));
return;
}
// Check existence. No precise check here, might be a symlink
const QFileInfo fi(repositoryRoot);
if (fi.exists()) {
emitSucceeded(repositoryRoot);
} else {
emitFailed(tr("The repository \"%1\" does not exist.").
arg(QDir::toNativeSeparators(repositoryRoot)));
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
}
}
void PerforceChecker::emitFailed(const QString &m)
{
resetOverrideCursor();
emit failed(m);
}
void PerforceChecker::emitSucceeded(const QString &m)
{
resetOverrideCursor();
emit succeeded(m);
}
bool PerforceChecker::useOverideCursor() const
{
return m_useOverideCursor;
}
void PerforceChecker::setUseOverideCursor(bool v)
{
m_useOverideCursor = v;
}
}
}