Files
qt-creator/src/plugins/vcsbase/vcsplugin.cpp

163 lines
4.8 KiB
C++
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
2009-12-08 14:30:47 +01:00
#include "vcsplugin.h"
#include "commonvcssettings.h"
2009-12-08 14:30:47 +01:00
#include "nicknamedialog.h"
#include "vcsbaseconstants.h"
#include "vcsbasesubmiteditor.h"
#include "vcsoutputwindow.h"
#include "wizard/vcscommandpage.h"
#include "wizard/vcsconfigurationpage.h"
#include "wizard/vcsjsextension.h"
2009-12-08 14:30:47 +01:00
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <coreplugin/iversioncontrol.h>
#include <coreplugin/jsexpander.h>
#include <coreplugin/vcsmanager.h>
#include <projectexplorer/jsonwizard/jsonwizardfactory.h>
#include <projectexplorer/project.h>
#include <projectexplorer/projecttree.h>
2009-12-08 14:30:47 +01:00
#include <utils/futuresynchronizer.h>
#include <utils/macroexpander.h>
#include <QDebug>
2009-12-08 14:30:47 +01:00
using namespace Core;
using namespace ProjectExplorer;
using namespace Utils;
namespace VcsBase {
2009-12-08 14:30:47 +01:00
namespace Internal {
class VcsPluginPrivate
{
public:
CommonOptionsPage m_settingsPage;
QStandardItemModel *m_nickNameModel = nullptr;
FutureSynchronizer m_synchronizer;
};
static VcsPlugin *m_instance = nullptr;
2009-12-08 14:30:47 +01:00
VcsPlugin::VcsPlugin()
2009-12-08 14:30:47 +01:00
{
m_instance = this;
}
VcsPlugin::~VcsPlugin()
2009-12-08 14:30:47 +01:00
{
d->m_synchronizer.waitForFinished();
VcsOutputWindow::destroy();
m_instance = nullptr;
delete d;
2009-12-08 14:30:47 +01:00
}
bool VcsPlugin::initialize(const QStringList &arguments, QString *errorMessage)
2009-12-08 14:30:47 +01:00
{
Q_UNUSED(arguments)
Q_UNUSED(errorMessage)
2009-12-08 14:30:47 +01:00
d = new VcsPluginPrivate;
d->m_synchronizer.setCancelOnWait(true);
EditorManager::addCloseEditorListener([this](IEditor *editor) -> bool {
bool result = true;
if (auto se = qobject_cast<VcsBaseSubmitEditor *>(editor))
emit submitEditorAboutToClose(se, &result);
return result;
});
2009-12-08 14:30:47 +01:00
connect(&d->m_settingsPage, &CommonOptionsPage::settingsChanged,
this, &VcsPlugin::settingsChanged);
connect(&d->m_settingsPage, &CommonOptionsPage::settingsChanged,
this, &VcsPlugin::slotSettingsChanged);
2009-12-08 14:30:47 +01:00
slotSettingsChanged();
JsonWizardFactory::registerPageFactory(new Internal::VcsConfigurationPageFactory);
JsonWizardFactory::registerPageFactory(new Internal::VcsCommandPageFactory);
JsExpander::registerGlobalObject<VcsJsExtension>("Vcs");
MacroExpander *expander = globalMacroExpander();
expander->registerVariable(Constants::VAR_VCS_NAME,
tr("Name of the version control system in use by the current project."),
[]() -> QString {
IVersionControl *vc = nullptr;
if (Project *project = ProjectTree::currentProject())
vc = VcsManager::findVersionControlForDirectory(project->projectDirectory());
return vc ? vc->displayName() : QString();
});
expander->registerVariable(Constants::VAR_VCS_TOPIC,
tr("The current version control topic (branch or tag) identification of the current project."),
[]() -> QString {
IVersionControl *vc = nullptr;
QString topLevel;
if (Project *project = ProjectTree::currentProject())
vc = VcsManager::findVersionControlForDirectory(project->projectDirectory(), &topLevel);
return vc ? vc->vcsTopic(FilePath::fromString(topLevel)) : QString();
});
expander->registerVariable(Constants::VAR_VCS_TOPLEVELPATH,
tr("The top level path to the repository the current project is in."),
[]() -> QString {
if (Project *project = ProjectTree::currentProject())
return VcsManager::findTopLevelForDirectory(project->projectDirectory()).toString();
return QString();
});
// Just touch VCS Output Pane before initialization
VcsOutputWindow::instance();
2009-12-08 14:30:47 +01:00
return true;
}
VcsPlugin *VcsPlugin::instance()
2009-12-08 14:30:47 +01:00
{
return m_instance;
}
void VcsPlugin::addFuture(const QFuture<void> &future)
{
m_instance->d->m_synchronizer.addFuture(future);
}
CommonVcsSettings &VcsPlugin::settings() const
2009-12-08 14:30:47 +01:00
{
return d->m_settingsPage.settings();
2009-12-08 14:30:47 +01:00
}
/* Delayed creation/update of the nick name model. */
QStandardItemModel *VcsPlugin::nickNameModel()
2009-12-08 14:30:47 +01:00
{
if (!d->m_nickNameModel) {
d->m_nickNameModel = NickNameDialog::createModel(this);
2009-12-08 14:30:47 +01:00
populateNickNameModel();
}
return d->m_nickNameModel;
2009-12-08 14:30:47 +01:00
}
void VcsPlugin::populateNickNameModel()
2009-12-08 14:30:47 +01:00
{
QString errorMessage;
if (!NickNameDialog::populateModelFromMailCapFile(settings().nickNameMailMap.value(),
d->m_nickNameModel,
2009-12-08 14:30:47 +01:00
&errorMessage)) {
qWarning("%s", qPrintable(errorMessage));
}
2009-12-08 14:30:47 +01:00
}
void VcsPlugin::slotSettingsChanged()
2009-12-08 14:30:47 +01:00
{
if (d->m_nickNameModel)
2009-12-08 14:30:47 +01:00
populateNickNameModel();
}
} // namespace Internal
} // namespace VcsBase