forked from qt-creator/qt-creator
To reduce the amount of duplicated strings for translators to handle. The problem is not very prominent in vcsbase, but that's where we are moving everywhere else. Change-Id: Icb11fad3bccfea8a1408420e729566a75adccb66 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
165 lines
4.8 KiB
C++
165 lines
4.8 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "vcsplugin.h"
|
|
|
|
#include "commonvcssettings.h"
|
|
#include "nicknamedialog.h"
|
|
#include "vcsbaseconstants.h"
|
|
#include "vcsbasesubmiteditor.h"
|
|
#include "vcsbasetr.h"
|
|
#include "vcsoutputwindow.h"
|
|
#include "wizard/vcscommandpage.h"
|
|
#include "wizard/vcsconfigurationpage.h"
|
|
#include "wizard/vcsjsextension.h"
|
|
|
|
#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>
|
|
|
|
#include <utils/futuresynchronizer.h>
|
|
#include <utils/macroexpander.h>
|
|
#include <utils/qtcassert.h>
|
|
|
|
#include <QDebug>
|
|
|
|
using namespace Core;
|
|
using namespace ProjectExplorer;
|
|
using namespace Utils;
|
|
|
|
namespace VcsBase {
|
|
namespace Internal {
|
|
|
|
class VcsPluginPrivate
|
|
{
|
|
public:
|
|
CommonOptionsPage m_settingsPage;
|
|
QStandardItemModel *m_nickNameModel = nullptr;
|
|
FutureSynchronizer m_futureSynchronizer;
|
|
};
|
|
|
|
static VcsPlugin *m_instance = nullptr;
|
|
|
|
VcsPlugin::VcsPlugin()
|
|
{
|
|
m_instance = this;
|
|
}
|
|
|
|
VcsPlugin::~VcsPlugin()
|
|
{
|
|
QTC_ASSERT(d, return);
|
|
VcsOutputWindow::destroy();
|
|
m_instance = nullptr;
|
|
delete d;
|
|
}
|
|
|
|
bool VcsPlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
|
{
|
|
Q_UNUSED(arguments)
|
|
Q_UNUSED(errorMessage)
|
|
|
|
d = new VcsPluginPrivate;
|
|
|
|
EditorManager::addCloseEditorListener([this](IEditor *editor) -> bool {
|
|
bool result = true;
|
|
if (auto se = qobject_cast<VcsBaseSubmitEditor *>(editor))
|
|
emit submitEditorAboutToClose(se, &result);
|
|
return result;
|
|
});
|
|
|
|
connect(&d->m_settingsPage, &CommonOptionsPage::settingsChanged,
|
|
this, &VcsPlugin::settingsChanged);
|
|
connect(&d->m_settingsPage, &CommonOptionsPage::settingsChanged,
|
|
this, &VcsPlugin::slotSettingsChanged);
|
|
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::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::tr("The current version control topic (branch or tag) identification of the current project."),
|
|
[]() -> QString {
|
|
IVersionControl *vc = nullptr;
|
|
FilePath topLevel;
|
|
if (Project *project = ProjectTree::currentProject())
|
|
vc = VcsManager::findVersionControlForDirectory(project->projectDirectory(), &topLevel);
|
|
return vc ? vc->vcsTopic(topLevel) : QString();
|
|
});
|
|
|
|
expander->registerVariable(Constants::VAR_VCS_TOPLEVELPATH,
|
|
Tr::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();
|
|
|
|
return true;
|
|
}
|
|
|
|
VcsPlugin *VcsPlugin::instance()
|
|
{
|
|
return m_instance;
|
|
}
|
|
|
|
CommonVcsSettings &VcsPlugin::settings() const
|
|
{
|
|
return d->m_settingsPage.settings();
|
|
}
|
|
|
|
FutureSynchronizer *VcsPlugin::futureSynchronizer()
|
|
{
|
|
QTC_ASSERT(m_instance, return nullptr);
|
|
return &m_instance->d->m_futureSynchronizer;
|
|
}
|
|
|
|
/* Delayed creation/update of the nick name model. */
|
|
QStandardItemModel *VcsPlugin::nickNameModel()
|
|
{
|
|
if (!d->m_nickNameModel) {
|
|
d->m_nickNameModel = NickNameDialog::createModel(this);
|
|
populateNickNameModel();
|
|
}
|
|
return d->m_nickNameModel;
|
|
}
|
|
|
|
void VcsPlugin::populateNickNameModel()
|
|
{
|
|
QString errorMessage;
|
|
if (!NickNameDialog::populateModelFromMailCapFile(settings().nickNameMailMap.filePath(),
|
|
d->m_nickNameModel,
|
|
&errorMessage)) {
|
|
qWarning("%s", qPrintable(errorMessage));
|
|
}
|
|
}
|
|
|
|
void VcsPlugin::slotSettingsChanged()
|
|
{
|
|
if (d->m_nickNameModel)
|
|
populateNickNameModel();
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace VcsBase
|