2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2009-12-11 16:43:39 +01:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2009-12-11 16:43:39 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2009-12-11 16:43:39 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2014-10-01 13:21:18 +02:00
|
|
|
** conditions see http://www.qt.io/licensing. For further information
|
|
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2009-12-11 16:43:39 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2009-12-11 16:43:39 +01:00
|
|
|
|
|
|
|
|
#include "perforcechecker.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
2010-03-01 10:06:05 +01:00
|
|
|
#include <utils/synchronousprocess.h>
|
2009-12-11 16:43:39 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QRegExp>
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QDir>
|
2009-12-11 16:43:39 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QCursor>
|
2009-12-11 16:43:39 +01:00
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
{
|
2011-07-20 14:34:58 +02:00
|
|
|
m_process.kill();
|
|
|
|
|
m_process.waitForFinished();
|
2009-12-11 16:43:39 +01:00
|
|
|
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;
|
2010-03-01 10:06:05 +01:00
|
|
|
Utils::SynchronousProcess::stopProcess(m_process);
|
2010-07-05 09:52:32 +02:00
|
|
|
emitFailed(tr("\"%1\" timed out after %2ms.").
|
|
|
|
|
arg(m_binary).arg(m_timeOutMS));
|
2009-12-11 16:43:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PerforceChecker::slotError(QProcess::ProcessError error)
|
|
|
|
|
{
|
|
|
|
|
if (m_timedOut)
|
|
|
|
|
return;
|
|
|
|
|
switch (error) {
|
|
|
|
|
case QProcess::FailedToStart:
|
2010-07-05 09:52:32 +02:00
|
|
|
emitFailed(tr("Unable to launch \"%1\": %2").
|
|
|
|
|
arg(QDir::toNativeSeparators(m_binary), m_process.errorString()));
|
2009-12-11 16:43:39 +01:00
|
|
|
break;
|
|
|
|
|
case QProcess::Crashed: // Handled elsewhere
|
|
|
|
|
case QProcess::Timedout:
|
|
|
|
|
break;
|
|
|
|
|
case QProcess::ReadError:
|
|
|
|
|
case QProcess::WriteError:
|
|
|
|
|
case QProcess::UnknownError:
|
2010-03-01 10:06:05 +01:00
|
|
|
Utils::SynchronousProcess::stopProcess(m_process);
|
2009-12-11 16:43:39 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PerforceChecker::slotFinished(int exitCode, QProcess::ExitStatus exitStatus)
|
|
|
|
|
{
|
|
|
|
|
if (m_timedOut)
|
|
|
|
|
return;
|
|
|
|
|
switch (exitStatus) {
|
|
|
|
|
case QProcess::CrashExit:
|
2010-07-05 09:52:32 +02:00
|
|
|
emitFailed(tr("\"%1\" crashed.").arg(QDir::toNativeSeparators(m_binary)));
|
2009-12-11 16:43:39 +01:00
|
|
|
break;
|
|
|
|
|
case QProcess::NormalExit:
|
|
|
|
|
if (exitCode) {
|
|
|
|
|
const QString stdErr = QString::fromLocal8Bit(m_process.readAllStandardError());
|
2010-07-05 09:52:32 +02:00
|
|
|
emitFailed(tr("\"%1\" terminated with exit code %2: %3").
|
|
|
|
|
arg(QDir::toNativeSeparators(m_binary)).arg(exitCode).arg(stdErr));
|
2009-12-11 16:43:39 +01:00
|
|
|
} 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);
|
2010-05-20 14:52:08 +02:00
|
|
|
// Normalize slashes and capitalization of Windows drive letters for caching.
|
2009-12-11 16:43:39 +01:00
|
|
|
if (regExp.indexIn(in) != -1)
|
2010-05-20 14:52:08 +02:00
|
|
|
return QFileInfo(regExp.cap(2).trimmed()).absoluteFilePath();
|
2009-12-11 16:43:39 +01:00
|
|
|
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()) {
|
2010-02-26 14:18:47 +01:00
|
|
|
//: Unable to determine root of the p4 client installation
|
2009-12-11 16:43:39 +01:00
|
|
|
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 {
|
2010-07-05 09:52:32 +02:00
|
|
|
emitFailed(tr("The repository \"%1\" does not exist.").
|
|
|
|
|
arg(QDir::toNativeSeparators(repositoryRoot)));
|
2009-12-11 16:43:39 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|