2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2022-04-01 07:35:08 +02:00
|
|
|
|
|
|
|
|
#include "cocolanguageclient.h"
|
2023-02-08 08:26:49 +01:00
|
|
|
#include "cocotr.h"
|
2022-04-01 07:35:08 +02:00
|
|
|
|
|
|
|
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
|
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
2023-12-19 18:29:22 +01:00
|
|
|
|
2022-04-01 07:35:08 +02:00
|
|
|
#include <debugger/analyzer/analyzerconstants.h>
|
2023-12-19 18:29:22 +01:00
|
|
|
|
|
|
|
|
#include <extensionsystem/iplugin.h>
|
|
|
|
|
|
2022-04-01 07:35:08 +02:00
|
|
|
#include <utils/environment.h>
|
2024-07-24 15:49:50 +02:00
|
|
|
#include <utils/fileutils.h>
|
2022-04-01 07:35:08 +02:00
|
|
|
#include <utils/pathchooser.h>
|
|
|
|
|
|
2024-07-24 15:49:50 +02:00
|
|
|
#include <QDialog>
|
2022-04-01 07:35:08 +02:00
|
|
|
#include <QDialogButtonBox>
|
|
|
|
|
#include <QFormLayout>
|
|
|
|
|
|
2023-12-19 18:35:12 +01:00
|
|
|
using namespace Core;
|
2022-04-01 07:35:08 +02:00
|
|
|
using namespace Utils;
|
|
|
|
|
|
|
|
|
|
namespace Coco {
|
|
|
|
|
|
2023-12-19 18:29:22 +01:00
|
|
|
class CocoPlugin final : public ExtensionSystem::IPlugin
|
2022-04-01 07:35:08 +02:00
|
|
|
{
|
2023-12-19 18:29:22 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Coco.json")
|
|
|
|
|
|
2022-04-01 07:35:08 +02:00
|
|
|
public:
|
2023-12-19 18:29:22 +01:00
|
|
|
~CocoPlugin() final
|
|
|
|
|
{
|
|
|
|
|
// FIXME: Kill m_client?
|
|
|
|
|
}
|
2022-04-01 07:35:08 +02:00
|
|
|
|
2023-12-19 18:29:22 +01:00
|
|
|
void initialize() final
|
|
|
|
|
{
|
2023-12-19 18:35:12 +01:00
|
|
|
ActionBuilder(this, "Coco.startCoco")
|
|
|
|
|
.setText("Squish Coco ...")
|
|
|
|
|
.addToContainer(Debugger::Constants::M_DEBUG_ANALYZER, Debugger::Constants::G_ANALYZER_TOOLS)
|
|
|
|
|
.addOnTriggered(this, &CocoPlugin::startCoco);
|
2022-04-01 07:35:08 +02:00
|
|
|
}
|
|
|
|
|
|
2023-12-19 18:29:22 +01:00
|
|
|
void startCoco()
|
|
|
|
|
{
|
|
|
|
|
if (m_client)
|
|
|
|
|
m_client->shutdown();
|
|
|
|
|
m_client = nullptr;
|
|
|
|
|
|
2023-12-19 18:35:12 +01:00
|
|
|
QDialog dialog(ICore::dialogParent());
|
2023-12-19 18:29:22 +01:00
|
|
|
dialog.setModal(true);
|
|
|
|
|
auto layout = new QFormLayout();
|
|
|
|
|
|
|
|
|
|
const Environment env = Environment::systemEnvironment();
|
|
|
|
|
const FilePath squishCocoPath = FilePath::fromUserInput(env.value("SQUISHCOCO"));
|
|
|
|
|
const FilePath candidate = FilePath("coveragebrowser").searchInPath({squishCocoPath},
|
|
|
|
|
FilePath::PrependToPath);
|
|
|
|
|
|
|
|
|
|
PathChooser cocoChooser;
|
|
|
|
|
if (!candidate.isEmpty())
|
|
|
|
|
cocoChooser.setFilePath(candidate);
|
|
|
|
|
cocoChooser.setExpectedKind(PathChooser::Command);
|
|
|
|
|
cocoChooser.setPromptDialogTitle(Tr::tr("Select a Squish Coco CoverageBrowser Executable"));
|
|
|
|
|
|
|
|
|
|
cocoChooser.setHistoryCompleter("Coco.CoverageBrowser.history", true);
|
|
|
|
|
layout->addRow(Tr::tr("CoverageBrowser:"), &cocoChooser);
|
|
|
|
|
PathChooser csmesChoser;
|
|
|
|
|
csmesChoser.setHistoryCompleter("Coco.CSMes.history", true);
|
|
|
|
|
csmesChoser.setExpectedKind(PathChooser::File);
|
|
|
|
|
csmesChoser.setInitialBrowsePathBackup(FileUtils::homePath());
|
|
|
|
|
csmesChoser.setPromptDialogFilter(Tr::tr("Coco instrumentation files (*.csmes)"));
|
|
|
|
|
csmesChoser.setPromptDialogTitle(Tr::tr("Select a Squish Coco Instrumentation File"));
|
|
|
|
|
layout->addRow(Tr::tr("CSMes:"), &csmesChoser);
|
|
|
|
|
QDialogButtonBox buttons(QDialogButtonBox::Cancel | QDialogButtonBox::Open);
|
|
|
|
|
layout->addItem(new QSpacerItem(0, 20, QSizePolicy::Expanding, QSizePolicy::MinimumExpanding));
|
|
|
|
|
layout->addWidget(&buttons);
|
|
|
|
|
dialog.setLayout(layout);
|
|
|
|
|
dialog.resize(480, dialog.height());
|
|
|
|
|
|
|
|
|
|
QObject::connect(&buttons, &QDialogButtonBox::accepted, &dialog, &QDialog::accept);
|
|
|
|
|
QObject::connect(&buttons, &QDialogButtonBox::rejected, &dialog, &QDialog::reject);
|
|
|
|
|
|
|
|
|
|
if (dialog.exec() == QDialog::Accepted) {
|
|
|
|
|
const FilePath cocoPath = cocoChooser.filePath();
|
|
|
|
|
const FilePath csmesPath = csmesChoser.filePath();
|
|
|
|
|
if (cocoPath.isExecutableFile() && csmesPath.exists()) {
|
|
|
|
|
m_client = new CocoLanguageClient(cocoPath, csmesPath);
|
|
|
|
|
m_client->start();
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-10 08:36:43 +02:00
|
|
|
}
|
2022-04-01 07:35:08 +02:00
|
|
|
|
2023-12-19 18:29:22 +01:00
|
|
|
private:
|
|
|
|
|
CocoLanguageClient *m_client = nullptr;
|
|
|
|
|
};
|
2022-04-01 07:35:08 +02:00
|
|
|
|
2023-12-19 18:29:22 +01:00
|
|
|
} // namespace Coco
|
2022-04-01 07:35:08 +02:00
|
|
|
|
2023-12-19 18:29:22 +01:00
|
|
|
#include "cocoplugin.moc"
|