forked from qt-creator/qt-creator
Change-Id: I41d50e437b3bcfb964d2ef27541ea6a55855ec2f Reviewed-by: Orgad Shaneh <orgads@gmail.com>
232 lines
9.3 KiB
C++
232 lines
9.3 KiB
C++
// Copyright (C) 2016 Brian McGillion and Hugues Delorme
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "vcsbase_global.h"
|
|
#include "vcsenums.h"
|
|
|
|
#include "vcsbaseclientsettings.h"
|
|
|
|
#include <utils/fileutils.h>
|
|
#include <utils/id.h>
|
|
#include <utils/processenums.h>
|
|
|
|
#include <QObject>
|
|
#include <QStringList>
|
|
#include <QVariant>
|
|
|
|
#include <functional>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QTextCodec;
|
|
class QToolBar;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Utils {
|
|
class Process;
|
|
}
|
|
|
|
namespace VcsBase {
|
|
|
|
class CommandResult;
|
|
class VcsBaseEditorConfig;
|
|
class VcsBaseEditorWidget;
|
|
class VcsCommand;
|
|
|
|
using CommandHandler = std::function<void(const CommandResult &)>;
|
|
|
|
class VCSBASE_EXPORT VcsBaseClientImpl : public QObject
|
|
{
|
|
public:
|
|
explicit VcsBaseClientImpl(VcsBaseSettings *baseSettings);
|
|
~VcsBaseClientImpl() override = default;
|
|
|
|
virtual Utils::FilePath vcsBinary() const;
|
|
int vcsTimeoutS() const;
|
|
|
|
static VcsCommand *createVcsCommand(const Utils::FilePath &defaultWorkingDir,
|
|
const Utils::Environment &environment);
|
|
|
|
VcsBaseEditorWidget *createVcsEditor(Utils::Id kind, QString title,
|
|
const Utils::FilePath &source, QTextCodec *codec,
|
|
const char *registerDynamicProperty,
|
|
const QString &dynamicPropertyValue) const;
|
|
|
|
VcsCommand *createCommand(const Utils::FilePath &workingDirectory,
|
|
VcsBaseEditorWidget *editor = nullptr) const;
|
|
|
|
void setupCommand(Utils::Process &process,
|
|
const Utils::FilePath &workingDirectory,
|
|
const QStringList &args) const;
|
|
|
|
void enqueueJob(VcsCommand *cmd, const QStringList &args,
|
|
const Utils::ExitCodeInterpreter &interpreter = {}) const;
|
|
|
|
virtual Utils::Environment processEnvironment() const;
|
|
|
|
// VCS functionality:
|
|
virtual void annotate(const Utils::FilePath &workingDir, const QString &file,
|
|
int lineNumber = -1, const QString &revision = {},
|
|
const QStringList &extraOptions = {}, int firstLine = -1) = 0;
|
|
|
|
static QStringList splitLines(const QString &s);
|
|
|
|
static QString stripLastNewline(const QString &in);
|
|
|
|
// Fully synchronous VCS execution (QProcess-based)
|
|
CommandResult vcsSynchronousExec(const Utils::FilePath &workingDir,
|
|
const QStringList &args, RunFlags flags = RunFlags::None,
|
|
int timeoutS = -1, QTextCodec *codec = nullptr) const;
|
|
CommandResult vcsSynchronousExec(const Utils::FilePath &workingDir,
|
|
const Utils::CommandLine &cmdLine,
|
|
RunFlags flags = RunFlags::None,
|
|
int timeoutS = -1, QTextCodec *codec = nullptr) const;
|
|
|
|
void vcsExecWithHandler(const Utils::FilePath &workingDirectory,
|
|
const QStringList &arguments,
|
|
const QObject *context,
|
|
const CommandHandler &handler,
|
|
RunFlags additionalFlags = RunFlags::None,
|
|
QTextCodec *codec = nullptr) const;
|
|
void vcsExec(const Utils::FilePath &workingDirectory,
|
|
const QStringList &arguments,
|
|
RunFlags additionalFlags = RunFlags::None) const;
|
|
void vcsExecWithEditor(const Utils::FilePath &workingDirectory,
|
|
const QStringList &arguments,
|
|
VcsBaseEditorWidget *editor) const;
|
|
|
|
protected:
|
|
void resetCachedVcsInfo(const Utils::FilePath &workingDir);
|
|
virtual void annotateRevisionRequested(const Utils::FilePath &workingDirectory, const QString &file,
|
|
const QString &change, int line);
|
|
|
|
private:
|
|
void saveSettings();
|
|
|
|
VcsBaseSettings *m_baseSettings = nullptr; // Aspect based.
|
|
};
|
|
|
|
class VCSBASE_EXPORT VcsBaseClient : public VcsBaseClientImpl
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
class VCSBASE_EXPORT StatusItem
|
|
{
|
|
public:
|
|
StatusItem() = default;
|
|
QString flags;
|
|
QString file;
|
|
};
|
|
|
|
explicit VcsBaseClient(VcsBaseSettings *baseSettings);
|
|
|
|
virtual bool synchronousCreateRepository(const Utils::FilePath &workingDir,
|
|
const QStringList &extraOptions = {});
|
|
virtual bool synchronousClone(const Utils::FilePath &workingDir,
|
|
const QString &srcLocation,
|
|
const QString &dstLocation,
|
|
const QStringList &extraOptions = {});
|
|
virtual bool synchronousAdd(const Utils::FilePath &workingDir,
|
|
const QString &relFileName,
|
|
const QStringList &extraOptions = {});
|
|
virtual bool synchronousRemove(const Utils::FilePath &workingDir,
|
|
const QString &fileName,
|
|
const QStringList &extraOptions = {});
|
|
virtual bool synchronousMove(const Utils::FilePath &workingDir,
|
|
const QString &from, const QString &to,
|
|
const QStringList &extraOptions = {});
|
|
virtual bool synchronousPull(const Utils::FilePath &workingDir,
|
|
const QString &srcLocation,
|
|
const QStringList &extraOptions = {});
|
|
virtual bool synchronousPush(const Utils::FilePath &workingDir,
|
|
const QString &dstLocation,
|
|
const QStringList &extraOptions = {});
|
|
void annotate(const Utils::FilePath &workingDir, const QString &file,
|
|
int lineNumber = -1, const QString &revision = {},
|
|
const QStringList &extraOptions = {}, int firstLine = -1) override;
|
|
virtual void diff(const Utils::FilePath &workingDir,
|
|
const QStringList &files = {},
|
|
const QStringList &extraOptions = {});
|
|
virtual void log(const Utils::FilePath &workingDir,
|
|
const QStringList &files = {},
|
|
const QStringList &extraOptions = {},
|
|
bool enableAnnotationContextMenu = false,
|
|
const std::function<void(Utils::CommandLine &)> &addAuthOptions = {});
|
|
virtual void status(const Utils::FilePath &workingDir,
|
|
const QString &file = {},
|
|
const QStringList &extraOptions = {});
|
|
virtual void emitParsedStatus(const Utils::FilePath &repository,
|
|
const QStringList &extraOptions = {});
|
|
virtual void revertFile(const Utils::FilePath &workingDir,
|
|
const QString &file,
|
|
const QString &revision = {},
|
|
const QStringList &extraOptions = {});
|
|
virtual void revertAll(const Utils::FilePath &workingDir,
|
|
const QString &revision = {},
|
|
const QStringList &extraOptions = {});
|
|
virtual void import(const Utils::FilePath &repositoryRoot,
|
|
const QStringList &files,
|
|
const QStringList &extraOptions = {});
|
|
virtual void update(const Utils::FilePath &repositoryRoot,
|
|
const QString &revision = {},
|
|
const QStringList &extraOptions = {});
|
|
virtual void commit(const Utils::FilePath &repositoryRoot,
|
|
const QStringList &files,
|
|
const QString &commitMessageFile,
|
|
const QStringList &extraOptions = {});
|
|
|
|
virtual Utils::FilePath findTopLevelForFile(const Utils::FilePath &/*file*/) const { return {}; }
|
|
|
|
virtual void view(const Utils::FilePath &source, const QString &id,
|
|
const QStringList &extraOptions = QStringList());
|
|
|
|
signals:
|
|
void parsedStatus(const QList<VcsBase::VcsBaseClient::StatusItem> &statusList);
|
|
// Passes on changed signals from VcsJob to Control
|
|
void changed(const QVariant &v);
|
|
|
|
public:
|
|
enum VcsCommandTag
|
|
{
|
|
CreateRepositoryCommand,
|
|
CloneCommand,
|
|
AddCommand,
|
|
RemoveCommand,
|
|
MoveCommand,
|
|
PullCommand,
|
|
PushCommand,
|
|
CommitCommand,
|
|
ImportCommand,
|
|
UpdateCommand,
|
|
RevertCommand,
|
|
AnnotateCommand,
|
|
DiffCommand,
|
|
LogCommand,
|
|
StatusCommand
|
|
};
|
|
protected:
|
|
virtual QString vcsCommandString(VcsCommandTag cmd) const;
|
|
virtual Utils::Id vcsEditorKind(VcsCommandTag cmd) const = 0;
|
|
virtual Utils::ExitCodeInterpreter exitCodeInterpreter(VcsCommandTag cmd) const;
|
|
|
|
virtual QStringList revisionSpec(const QString &/*revision*/) const { return {}; }
|
|
|
|
typedef std::function<VcsBaseEditorConfig *(QToolBar *)> ConfigCreator;
|
|
void setDiffConfigCreator(ConfigCreator creator);
|
|
void setLogConfigCreator(ConfigCreator creator);
|
|
|
|
virtual StatusItem parseStatusLine(const QString &/*line*/) const { return {}; }
|
|
|
|
QString vcsEditorTitle(const QString &vcsCmd, const QString &sourceId) const;
|
|
|
|
private:
|
|
void statusParser(const QString &);
|
|
|
|
VcsBaseClient::ConfigCreator m_diffConfigCreator;
|
|
VcsBaseClient::ConfigCreator m_logConfigCreator;
|
|
};
|
|
|
|
} //namespace VcsBase
|