2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +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
|
2016-01-15 14:58:39 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "pluginmanager.h"
|
|
|
|
|
#include "pluginmanager_p.h"
|
|
|
|
|
#include "pluginspec.h"
|
|
|
|
|
#include "pluginspec_p.h"
|
|
|
|
|
#include "optionsparser.h"
|
|
|
|
|
#include "iplugin.h"
|
|
|
|
|
|
2014-07-12 09:05:06 +02:00
|
|
|
#include <QCoreApplication>
|
2020-01-13 16:12:28 +01:00
|
|
|
#include <QCryptographicHash>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDateTime>
|
2019-07-22 15:29:04 +02:00
|
|
|
#include <QDebug>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDir>
|
2019-07-22 15:29:04 +02:00
|
|
|
#include <QEventLoop>
|
2013-08-28 16:29:08 +02:00
|
|
|
#include <QFile>
|
2020-01-13 16:12:28 +01:00
|
|
|
#include <QGuiApplication>
|
2014-08-26 17:29:38 +02:00
|
|
|
#include <QLibrary>
|
2016-08-31 15:39:52 +02:00
|
|
|
#include <QLibraryInfo>
|
2020-01-13 16:12:28 +01:00
|
|
|
#include <QMessageBox>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QMetaProperty>
|
2020-01-13 16:12:28 +01:00
|
|
|
#include <QPushButton>
|
2019-07-22 15:29:04 +02:00
|
|
|
#include <QSysInfo>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QTextStream>
|
|
|
|
|
#include <QTimer>
|
2019-07-22 15:29:04 +02:00
|
|
|
#include <QWriteLocker>
|
2011-01-05 18:35:08 +01:00
|
|
|
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
#include <utils/algorithm.h>
|
2017-09-06 16:18:29 +02:00
|
|
|
#include <utils/benchmarker.h>
|
2015-02-25 00:28:54 +03:00
|
|
|
#include <utils/executeondestruction.h>
|
2019-06-06 16:27:55 +02:00
|
|
|
#include <utils/fileutils.h>
|
2016-08-31 15:39:52 +02:00
|
|
|
#include <utils/hostosinfo.h>
|
2022-02-23 17:11:20 +01:00
|
|
|
#include <utils/mimeutils.h>
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2021-05-05 18:21:22 +02:00
|
|
|
#include <utils/qtcprocess.h>
|
2020-11-19 15:34:59 +01:00
|
|
|
#include <utils/qtcsettings.h>
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifdef WITH_TESTS
|
2016-08-01 10:20:50 +02:00
|
|
|
#include <utils/hostosinfo.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QTest>
|
2021-04-28 15:59:18 +02:00
|
|
|
#include <QThread>
|
2008-12-02 12:01:29 +01:00
|
|
|
#endif
|
|
|
|
|
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
#include <functional>
|
2020-08-12 14:11:28 +02:00
|
|
|
#include <memory>
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
|
2018-10-12 09:33:30 +03:00
|
|
|
Q_LOGGING_CATEGORY(pluginLog, "qtc.extensionsystem", QtWarningMsg)
|
2014-08-26 17:29:38 +02:00
|
|
|
|
2013-09-26 13:01:29 +02:00
|
|
|
const char C_IGNORED_PLUGINS[] = "Plugins/Ignored";
|
|
|
|
|
const char C_FORCEENABLED_PLUGINS[] = "Plugins/ForceEnabled";
|
|
|
|
|
const int DELAYED_INITIALIZE_INTERVAL = 20; // ms
|
2010-03-12 16:02:23 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
enum { debugLeaks = 0 };
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\namespace ExtensionSystem
|
2020-02-07 16:02:22 +01:00
|
|
|
\inmodule QtCreator
|
2011-01-05 18:35:08 +01:00
|
|
|
\brief The ExtensionSystem namespace provides classes that belong to the
|
|
|
|
|
core plugin system.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-01-05 18:35:08 +01:00
|
|
|
The basic extension system contains the plugin manager and its supporting classes,
|
2008-12-02 12:01:29 +01:00
|
|
|
and the IPlugin interface that must be implemented by plugin providers.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\namespace ExtensionSystem::Internal
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\class ExtensionSystem::PluginManager
|
2020-06-12 15:27:18 +02:00
|
|
|
\inheaderfile extensionsystem/pluginmanager.h
|
2020-02-07 16:02:22 +01:00
|
|
|
\inmodule QtCreator
|
2020-02-05 14:40:44 +01:00
|
|
|
\ingroup mainclasses
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-06-05 14:29:24 +02:00
|
|
|
\brief The PluginManager class implements the core plugin system that
|
|
|
|
|
manages the plugins, their life cycle, and their registered objects.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
The plugin manager is used for the following tasks:
|
|
|
|
|
\list
|
2013-02-06 08:50:23 +01:00
|
|
|
\li Manage plugins and their state
|
2020-02-05 14:40:44 +01:00
|
|
|
\li Manipulate a \e {common object pool}
|
2008-12-02 12:01:29 +01:00
|
|
|
\endlist
|
|
|
|
|
|
|
|
|
|
\section1 Plugins
|
2020-02-05 14:40:44 +01:00
|
|
|
Plugins must derive from the IPlugin class and have the IID
|
2014-08-26 15:42:40 +02:00
|
|
|
\c "org.qt-project.Qt.QtCreatorPlugin".
|
2020-02-05 14:40:44 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
The plugin manager is used to set a list of file system directories to search for
|
|
|
|
|
plugins, retrieve information about the state of these plugins, and to load them.
|
|
|
|
|
|
2013-09-06 11:46:55 +02:00
|
|
|
Usually, the application creates a PluginManager instance and initiates the
|
|
|
|
|
loading.
|
2008-12-02 12:01:29 +01:00
|
|
|
\code
|
2013-08-30 12:30:04 +02:00
|
|
|
// 'plugins' and subdirs will be searched for plugins
|
2017-02-07 16:59:21 +01:00
|
|
|
PluginManager::setPluginPaths(QStringList("plugins"));
|
2015-02-03 23:56:02 +02:00
|
|
|
PluginManager::loadPlugins(); // try to load all the plugins
|
2008-12-02 12:01:29 +01:00
|
|
|
\endcode
|
2020-02-05 14:40:44 +01:00
|
|
|
Additionally, it is possible to directly access plugin meta data, instances,
|
|
|
|
|
and state.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
\section1 Object Pool
|
2020-02-05 14:40:44 +01:00
|
|
|
Plugins (and everybody else) can add objects to a common \e pool that is located in
|
2008-12-02 12:01:29 +01:00
|
|
|
the plugin manager. Objects in the pool must derive from QObject, there are no other
|
2018-01-18 14:44:59 +01:00
|
|
|
prerequisites. Objects can be retrieved from the object pool via the getObject()
|
|
|
|
|
and getObjectByName() functions.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2020-02-05 14:40:44 +01:00
|
|
|
Whenever the state of the object pool changes, a corresponding signal is
|
|
|
|
|
emitted by the plugin manager.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
A common usecase for the object pool is that a plugin (or the application) provides
|
2020-02-05 14:40:44 +01:00
|
|
|
an \e {extension point} for other plugins, which is a class or interface that can
|
2008-12-02 12:01:29 +01:00
|
|
|
be implemented and added to the object pool. The plugin that provides the
|
2020-02-05 14:40:44 +01:00
|
|
|
extension point looks for implementations of the class or interface in the object pool.
|
2008-12-02 12:01:29 +01:00
|
|
|
\code
|
2011-01-05 18:35:08 +01:00
|
|
|
// Plugin A provides a "MimeTypeHandler" extension point
|
2008-12-02 12:01:29 +01:00
|
|
|
// in plugin B:
|
|
|
|
|
MyMimeTypeHandler *handler = new MyMimeTypeHandler();
|
2015-02-03 23:56:02 +02:00
|
|
|
PluginManager::instance()->addObject(handler);
|
2011-01-05 18:35:08 +01:00
|
|
|
// In plugin A:
|
2018-01-18 14:44:59 +01:00
|
|
|
MimeTypeHandler *mimeHandler =
|
|
|
|
|
PluginManager::getObject<MimeTypeHandler>();
|
2008-12-02 12:01:29 +01:00
|
|
|
\endcode
|
|
|
|
|
|
2011-01-05 18:35:08 +01:00
|
|
|
|
2020-02-05 14:40:44 +01:00
|
|
|
The ExtensionSystem::Invoker class template provides \e {syntactic sugar}
|
|
|
|
|
for using \e soft extension points that may or may not be provided by an
|
|
|
|
|
object in the pool. This approach neither requires the \e user plugin being
|
|
|
|
|
linked against the \e provider plugin nor a common shared
|
2011-01-05 18:35:08 +01:00
|
|
|
header file. The exposed interface is implicitly given by the
|
2020-02-05 14:40:44 +01:00
|
|
|
invokable functions of the provider object in the object pool.
|
2011-01-05 18:35:08 +01:00
|
|
|
|
2020-02-05 14:40:44 +01:00
|
|
|
The ExtensionSystem::invoke() function template encapsulates
|
|
|
|
|
ExtensionSystem::Invoker construction for the common case where
|
2011-01-05 18:35:08 +01:00
|
|
|
the success of the call is not checked.
|
|
|
|
|
|
|
|
|
|
\code
|
|
|
|
|
// In the "provide" plugin A:
|
|
|
|
|
namespace PluginA {
|
|
|
|
|
class SomeProvider : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Q_INVOKABLE QString doit(const QString &msg, int n) {
|
|
|
|
|
{
|
|
|
|
|
qDebug() << "I AM DOING IT " << msg;
|
|
|
|
|
return QString::number(n);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
} // namespace PluginA
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// In the "user" plugin B:
|
|
|
|
|
int someFuntionUsingPluginA()
|
|
|
|
|
{
|
|
|
|
|
using namespace ExtensionSystem;
|
|
|
|
|
|
2013-08-30 12:30:04 +02:00
|
|
|
QObject *target = PluginManager::getObjectByClassName("PluginA::SomeProvider");
|
2011-01-05 18:35:08 +01:00
|
|
|
|
|
|
|
|
if (target) {
|
|
|
|
|
// Some random argument.
|
|
|
|
|
QString msg = "REALLY.";
|
|
|
|
|
|
|
|
|
|
// Plain function call, no return value.
|
|
|
|
|
invoke<void>(target, "doit", msg, 2);
|
|
|
|
|
|
|
|
|
|
// Plain function with no return value.
|
|
|
|
|
qDebug() << "Result: " << invoke<QString>(target, "doit", msg, 21);
|
|
|
|
|
|
|
|
|
|
// Record success of function call with return value.
|
|
|
|
|
Invoker<QString> in1(target, "doit", msg, 21);
|
|
|
|
|
qDebug() << "Success: (expected)" << in1.wasSuccessful();
|
|
|
|
|
|
|
|
|
|
// Try to invoke a non-existing function.
|
|
|
|
|
Invoker<QString> in2(target, "doitWrong", msg, 22);
|
|
|
|
|
qDebug() << "Success (not expected):" << in2.wasSuccessful();
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
// We have to cope with plugin A's absence.
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
\endcode
|
|
|
|
|
|
2013-02-06 08:50:23 +01:00
|
|
|
\note The type of the parameters passed to the \c{invoke()} calls
|
2011-01-05 18:35:08 +01:00
|
|
|
is deduced from the parameters themselves and must match the type of
|
|
|
|
|
the arguments of the called functions \e{exactly}. No conversion or even
|
|
|
|
|
integer promotions are applicable, so to invoke a function with a \c{long}
|
2020-02-05 14:40:44 +01:00
|
|
|
parameter explicitly, use \c{long(43)} or such.
|
2011-01-05 18:35:08 +01:00
|
|
|
|
2013-02-06 08:50:23 +01:00
|
|
|
\note The object pool manipulating functions are thread-safe.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-02-20 10:19:56 +01:00
|
|
|
\fn template <typename T> *ExtensionSystem::PluginManager::getObject()
|
2013-05-23 16:13:55 +02:00
|
|
|
|
2013-09-06 11:46:55 +02:00
|
|
|
Retrieves the object of a given type from the object pool.
|
|
|
|
|
|
2014-05-06 17:56:30 +02:00
|
|
|
This function uses \c qobject_cast to determine the type of an object.
|
2020-02-05 14:40:44 +01:00
|
|
|
If there are more than one objects of the given type in
|
2014-05-06 18:33:10 +02:00
|
|
|
the object pool, this function will arbitrarily choose one of them.
|
|
|
|
|
|
|
|
|
|
\sa addObject()
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-02-20 10:19:56 +01:00
|
|
|
\fn template <typename T, typename Predicate> *ExtensionSystem::PluginManager::getObject(Predicate predicate)
|
2014-05-06 18:33:10 +02:00
|
|
|
|
|
|
|
|
Retrieves the object of a given type from the object pool that matches
|
|
|
|
|
the \a predicate.
|
|
|
|
|
|
|
|
|
|
This function uses \c qobject_cast to determine the type of an object.
|
|
|
|
|
The predicate must be a function taking T * and returning a bool.
|
|
|
|
|
If there is more than one object matching the type and predicate,
|
|
|
|
|
this function will arbitrarily choose one of them.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
\sa addObject()
|
|
|
|
|
*/
|
|
|
|
|
|
2014-05-06 18:33:10 +02:00
|
|
|
|
2016-08-31 15:39:52 +02:00
|
|
|
using namespace Utils;
|
2017-01-11 10:48:29 +01:00
|
|
|
|
|
|
|
|
namespace ExtensionSystem {
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2017-10-24 14:30:59 +02:00
|
|
|
using namespace Internal;
|
|
|
|
|
|
2018-07-19 23:19:33 +02:00
|
|
|
static Internal::PluginManagerPrivate *d = nullptr;
|
|
|
|
|
static PluginManager *m_instance = nullptr;
|
2013-08-29 15:00:46 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
2013-09-06 11:46:55 +02:00
|
|
|
Gets the unique plugin manager instance.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
PluginManager *PluginManager::instance()
|
|
|
|
|
{
|
|
|
|
|
return m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2013-09-06 11:46:55 +02:00
|
|
|
Creates a plugin manager. Should be done only once per application.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
PluginManager::PluginManager()
|
|
|
|
|
{
|
|
|
|
|
m_instance = this;
|
2013-08-29 15:00:46 +02:00
|
|
|
d = new PluginManagerPrivate(this);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
PluginManager::~PluginManager()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
2018-07-19 23:19:33 +02:00
|
|
|
d = nullptr;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2013-09-06 11:46:55 +02:00
|
|
|
Adds the object \a obj to the object pool, so it can be retrieved
|
|
|
|
|
again from the pool by type.
|
|
|
|
|
|
2020-02-05 14:40:44 +01:00
|
|
|
The plugin manager does not do any memory management. Added objects
|
2008-12-02 12:01:29 +01:00
|
|
|
must be removed from the pool and deleted manually by whoever is responsible for the object.
|
|
|
|
|
|
2020-02-05 14:40:44 +01:00
|
|
|
Emits the \c objectAdded() signal.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
\sa PluginManager::removeObject()
|
|
|
|
|
\sa PluginManager::getObject()
|
2018-01-18 14:44:59 +01:00
|
|
|
\sa PluginManager::getObjectByName()
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
void PluginManager::addObject(QObject *obj)
|
|
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
d->addObject(obj);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-02-05 14:40:44 +01:00
|
|
|
Emits the \c aboutToRemoveObject() signal and removes the object \a obj
|
|
|
|
|
from the object pool.
|
2008-12-02 12:01:29 +01:00
|
|
|
\sa PluginManager::addObject()
|
|
|
|
|
*/
|
|
|
|
|
void PluginManager::removeObject(QObject *obj)
|
|
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
d->removeObject(obj);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2013-09-06 11:46:55 +02:00
|
|
|
Retrieves the list of all objects in the pool, unfiltered.
|
|
|
|
|
|
|
|
|
|
Usually, clients do not need to call this function.
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
\sa PluginManager::getObject()
|
|
|
|
|
*/
|
2019-05-27 14:12:11 +02:00
|
|
|
QVector<QObject *> PluginManager::allObjects()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
return d->allObjects;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 14:40:44 +01:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
2013-08-29 15:00:46 +02:00
|
|
|
QReadWriteLock *PluginManager::listLock()
|
|
|
|
|
{
|
|
|
|
|
return &d->m_lock;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
Tries to load all the plugins that were previously found when
|
|
|
|
|
setting the plugin search paths. The plugin specs of the plugins
|
|
|
|
|
can be used to retrieve error and state information about individual plugins.
|
|
|
|
|
|
|
|
|
|
\sa setPluginPaths()
|
|
|
|
|
\sa plugins()
|
|
|
|
|
*/
|
|
|
|
|
void PluginManager::loadPlugins()
|
|
|
|
|
{
|
2017-04-14 12:06:24 +02:00
|
|
|
d->loadPlugins();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2011-08-29 15:59:31 +02:00
|
|
|
/*!
|
2020-02-05 14:40:44 +01:00
|
|
|
Returns \c true if any plugin has errors even though it is enabled.
|
2011-08-29 15:59:31 +02:00
|
|
|
Most useful to call after loadPlugins().
|
|
|
|
|
*/
|
2012-06-18 11:34:15 +02:00
|
|
|
bool PluginManager::hasError()
|
2011-08-29 15:59:31 +02:00
|
|
|
{
|
2016-06-22 16:41:55 +02:00
|
|
|
return Utils::anyOf(plugins(), [](PluginSpec *spec) {
|
2011-08-29 15:59:31 +02:00
|
|
|
// only show errors on startup if plugin is enabled.
|
2016-06-22 16:41:55 +02:00
|
|
|
return spec->hasError() && spec->isEffectivelyEnabled();
|
|
|
|
|
});
|
2011-08-29 15:59:31 +02:00
|
|
|
}
|
|
|
|
|
|
2019-07-25 13:59:27 +02:00
|
|
|
const QStringList PluginManager::allErrors()
|
|
|
|
|
{
|
|
|
|
|
return Utils::transform<QStringList>(Utils::filtered(plugins(), [](const PluginSpec *spec) {
|
|
|
|
|
return spec->hasError() && spec->isEffectivelyEnabled();
|
|
|
|
|
}), [](const PluginSpec *spec) {
|
|
|
|
|
return spec->name().append(": ").append(spec->errorString());
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-31 17:42:14 +02:00
|
|
|
/*!
|
|
|
|
|
Returns all plugins that require \a spec to be loaded. Recurses into dependencies.
|
|
|
|
|
*/
|
2020-02-14 08:51:08 +01:00
|
|
|
const QSet<PluginSpec *> PluginManager::pluginsRequiringPlugin(PluginSpec *spec)
|
2015-03-31 17:42:14 +02:00
|
|
|
{
|
2016-06-22 16:41:55 +02:00
|
|
|
QSet<PluginSpec *> dependingPlugins({spec});
|
|
|
|
|
// recursively add plugins that depend on plugins that.... that depend on spec
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *spec : d->loadQueue()) {
|
2016-06-22 16:41:55 +02:00
|
|
|
if (spec->requiresAny(dependingPlugins))
|
|
|
|
|
dependingPlugins.insert(spec);
|
2015-03-31 17:42:14 +02:00
|
|
|
}
|
|
|
|
|
dependingPlugins.remove(spec);
|
|
|
|
|
return dependingPlugins;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
Returns all plugins that \a spec requires to be loaded. Recurses into dependencies.
|
|
|
|
|
*/
|
2020-02-14 08:51:08 +01:00
|
|
|
const QSet<PluginSpec *> PluginManager::pluginsRequiredByPlugin(PluginSpec *spec)
|
2015-03-31 17:42:14 +02:00
|
|
|
{
|
|
|
|
|
QSet<PluginSpec *> recursiveDependencies;
|
|
|
|
|
recursiveDependencies.insert(spec);
|
2019-05-27 14:12:11 +02:00
|
|
|
std::queue<PluginSpec *> queue;
|
|
|
|
|
queue.push(spec);
|
|
|
|
|
while (!queue.empty()) {
|
|
|
|
|
PluginSpec *checkSpec = queue.front();
|
|
|
|
|
queue.pop();
|
2019-07-24 13:43:54 +02:00
|
|
|
const QHash<PluginDependency, PluginSpec *> deps = checkSpec->dependencySpecs();
|
|
|
|
|
for (auto depIt = deps.cbegin(), end = deps.cend(); depIt != end; ++depIt) {
|
2015-03-31 17:42:14 +02:00
|
|
|
if (depIt.key().type != PluginDependency::Required)
|
|
|
|
|
continue;
|
|
|
|
|
PluginSpec *depSpec = depIt.value();
|
|
|
|
|
if (!recursiveDependencies.contains(depSpec)) {
|
|
|
|
|
recursiveDependencies.insert(depSpec);
|
2019-05-27 14:12:11 +02:00
|
|
|
queue.push(depSpec);
|
2015-03-31 17:42:14 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
recursiveDependencies.remove(spec);
|
|
|
|
|
return recursiveDependencies;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-13 13:36:47 +02:00
|
|
|
/*!
|
|
|
|
|
Shuts down and deletes all plugins.
|
|
|
|
|
*/
|
|
|
|
|
void PluginManager::shutdown()
|
|
|
|
|
{
|
|
|
|
|
d->shutdown();
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-31 15:39:52 +02:00
|
|
|
static QString filled(const QString &s, int min)
|
|
|
|
|
{
|
|
|
|
|
return s + QString(qMax(0, min - s.size()), ' ');
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-21 01:04:56 +01:00
|
|
|
QString PluginManager::systemInformation()
|
2016-08-31 15:39:52 +02:00
|
|
|
{
|
|
|
|
|
QString result;
|
2021-08-11 08:28:29 +02:00
|
|
|
CommandLine qtDiag(FilePath::fromString(QLibraryInfo::location(QLibraryInfo::BinariesPath))
|
|
|
|
|
.pathAppended("qtdiag").withExecutableSuffix());
|
2021-06-22 04:33:47 +02:00
|
|
|
QtcProcess qtDiagProc;
|
2021-05-17 12:02:42 +02:00
|
|
|
qtDiagProc.setCommand(qtDiag);
|
|
|
|
|
qtDiagProc.runBlocking();
|
2022-03-02 04:12:25 +01:00
|
|
|
if (qtDiagProc.result() == ProcessResult::FinishedWithSuccess)
|
2021-05-12 14:25:50 +02:00
|
|
|
result += qtDiagProc.allOutput() + "\n";
|
2016-08-31 15:39:52 +02:00
|
|
|
result += "Plugin information:\n\n";
|
2017-10-19 13:34:41 +02:00
|
|
|
auto longestSpec = std::max_element(d->pluginSpecs.cbegin(), d->pluginSpecs.cend(),
|
2016-08-31 15:39:52 +02:00
|
|
|
[](const PluginSpec *left, const PluginSpec *right) {
|
|
|
|
|
return left->name().size() < right->name().size();
|
|
|
|
|
});
|
|
|
|
|
int size = (*longestSpec)->name().size();
|
|
|
|
|
for (const PluginSpec *spec : plugins()) {
|
2016-09-28 10:57:21 +02:00
|
|
|
result += QLatin1String(spec->isEffectivelyEnabled() ? "+ " : " ") + filled(spec->name(), size) +
|
2016-08-31 15:39:52 +02:00
|
|
|
" " + spec->version() + "\n";
|
|
|
|
|
}
|
2021-08-09 14:21:36 +02:00
|
|
|
QString settingspath = QFileInfo(settings()->fileName()).path();
|
|
|
|
|
if (settingspath.startsWith(QDir::homePath()))
|
|
|
|
|
settingspath.replace(QDir::homePath(), "~");
|
|
|
|
|
result += "\nUsed settingspath: " + settingspath + "\n";
|
2016-08-31 15:39:52 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
The list of paths were the plugin manager searches for plugins.
|
|
|
|
|
|
|
|
|
|
\sa setPluginPaths()
|
|
|
|
|
*/
|
2012-06-18 11:34:15 +02:00
|
|
|
QStringList PluginManager::pluginPaths()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
return d->pluginPaths;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-02-05 14:40:44 +01:00
|
|
|
Sets the plugin paths. All the specified \a paths and their subdirectory
|
|
|
|
|
trees are searched for plugins.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
\sa pluginPaths()
|
|
|
|
|
\sa loadPlugins()
|
|
|
|
|
*/
|
|
|
|
|
void PluginManager::setPluginPaths(const QStringList &paths)
|
|
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
d->setPluginPaths(paths);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2014-08-26 17:29:38 +02:00
|
|
|
The IID that valid plugins must have.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-08-26 17:29:38 +02:00
|
|
|
\sa setPluginIID()
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
2014-08-26 17:29:38 +02:00
|
|
|
QString PluginManager::pluginIID()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2014-08-26 17:29:38 +02:00
|
|
|
return d->pluginIID;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-02-05 14:40:44 +01:00
|
|
|
Sets the IID that valid plugins must have to \a iid. Only plugins with this
|
|
|
|
|
IID are loaded, others are silently ignored.
|
2014-08-26 17:29:38 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
At the moment this must be called before setPluginPaths() is called.
|
2020-02-05 14:40:44 +01:00
|
|
|
|
|
|
|
|
\omit
|
2014-08-26 17:29:38 +02:00
|
|
|
// ### TODO let this + setPluginPaths read the plugin meta data lazyly whenever loadPlugins() or plugins() is called.
|
2020-02-05 14:40:44 +01:00
|
|
|
\endomit
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
2014-08-26 17:29:38 +02:00
|
|
|
void PluginManager::setPluginIID(const QString &iid)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2014-08-26 17:29:38 +02:00
|
|
|
d->pluginIID = iid;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2011-10-26 14:46:29 +02:00
|
|
|
/*!
|
2020-02-05 14:40:44 +01:00
|
|
|
Defines the user specific \a settings to use for information about enabled and
|
2013-09-06 11:46:55 +02:00
|
|
|
disabled plugins.
|
2011-10-26 14:46:29 +02:00
|
|
|
Needs to be set before the plugin search path is set with setPluginPaths().
|
|
|
|
|
*/
|
2020-11-19 15:34:59 +01:00
|
|
|
void PluginManager::setSettings(QtcSettings *settings)
|
2010-03-12 16:02:23 +01:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
d->setSettings(settings);
|
2010-10-25 16:57:58 +02:00
|
|
|
}
|
|
|
|
|
|
2011-10-26 14:46:29 +02:00
|
|
|
/*!
|
2020-02-05 14:40:44 +01:00
|
|
|
Defines the global (user-independent) \a settings to use for information about
|
2013-09-06 11:46:55 +02:00
|
|
|
default disabled plugins.
|
2011-10-26 14:46:29 +02:00
|
|
|
Needs to be set before the plugin search path is set with setPluginPaths().
|
|
|
|
|
*/
|
2020-11-19 15:34:59 +01:00
|
|
|
void PluginManager::setGlobalSettings(QtcSettings *settings)
|
2011-10-26 14:46:29 +02:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
d->setGlobalSettings(settings);
|
2011-10-26 14:46:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2013-09-06 11:46:55 +02:00
|
|
|
Returns the user specific settings used for information about enabled and
|
|
|
|
|
disabled plugins.
|
2011-10-26 14:46:29 +02:00
|
|
|
*/
|
2020-11-19 15:34:59 +01:00
|
|
|
QtcSettings *PluginManager::settings()
|
2010-10-25 16:57:58 +02:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
return d->settings;
|
2010-10-25 16:57:58 +02:00
|
|
|
}
|
|
|
|
|
|
2011-10-26 14:46:29 +02:00
|
|
|
/*!
|
|
|
|
|
Returns the global (user-independent) settings used for information about default disabled plugins.
|
|
|
|
|
*/
|
2020-11-19 15:34:59 +01:00
|
|
|
QtcSettings *PluginManager::globalSettings()
|
2010-10-25 16:57:58 +02:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
return d->globalSettings;
|
2010-03-12 16:02:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PluginManager::writeSettings()
|
|
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
d->writeSettings();
|
2010-03-12 16:02:23 +01:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
2013-09-06 11:46:55 +02:00
|
|
|
The arguments left over after parsing (that were neither startup nor plugin
|
2008-12-02 12:01:29 +01:00
|
|
|
arguments). Typically, this will be the list of files to open.
|
|
|
|
|
*/
|
2012-06-18 11:34:15 +02:00
|
|
|
QStringList PluginManager::arguments()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
return d->arguments;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2020-01-03 16:47:15 +01:00
|
|
|
/*!
|
|
|
|
|
The arguments that should be used when automatically restarting the application.
|
|
|
|
|
This includes plugin manager related options for enabling or disabling plugins,
|
|
|
|
|
but excludes others, like the arguments returned by arguments() and the appOptions
|
|
|
|
|
passed to the parseOptions() method.
|
|
|
|
|
*/
|
|
|
|
|
QStringList PluginManager::argumentsForRestart()
|
|
|
|
|
{
|
|
|
|
|
return d->argumentsForRestart;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
2020-02-05 14:40:44 +01:00
|
|
|
List of all plugins that have been found in the plugin search paths.
|
2008-12-02 12:01:29 +01:00
|
|
|
This list is valid directly after the setPluginPaths() call.
|
2020-02-05 14:40:44 +01:00
|
|
|
The plugin specifications contain plugin metadata and the current state
|
|
|
|
|
of the plugins. If a plugin's library has been already successfully loaded,
|
2008-12-02 12:01:29 +01:00
|
|
|
the plugin specification has a reference to the created plugin instance as well.
|
|
|
|
|
|
|
|
|
|
\sa setPluginPaths()
|
|
|
|
|
*/
|
2019-05-27 14:12:11 +02:00
|
|
|
const QVector<PluginSpec *> PluginManager::plugins()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
return d->pluginSpecs;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2019-05-27 14:12:11 +02:00
|
|
|
QHash<QString, QVector<PluginSpec *>> PluginManager::pluginCollections()
|
2010-03-12 16:02:23 +01:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
return d->pluginCategories;
|
2010-03-12 16:02:23 +01:00
|
|
|
}
|
|
|
|
|
|
2013-06-05 08:43:52 +03:00
|
|
|
static const char argumentKeywordC[] = ":arguments";
|
2015-03-09 10:59:58 +02:00
|
|
|
static const char pwdKeywordC[] = ":pwd";
|
2009-12-14 18:01:39 +01:00
|
|
|
|
|
|
|
|
/*!
|
2013-09-06 11:46:55 +02:00
|
|
|
Serializes plugin options and arguments for sending in a single string
|
2009-12-14 18:01:39 +01:00
|
|
|
via QtSingleApplication:
|
|
|
|
|
":myplugin|-option1|-option2|:arguments|argument1|argument2",
|
|
|
|
|
as a list of lists started by a keyword with a colon. Arguments are last.
|
|
|
|
|
|
|
|
|
|
\sa setPluginPaths()
|
|
|
|
|
*/
|
2012-06-18 11:34:15 +02:00
|
|
|
QString PluginManager::serializedArguments()
|
2009-12-14 18:01:39 +01:00
|
|
|
{
|
|
|
|
|
const QChar separator = QLatin1Char('|');
|
|
|
|
|
QString rc;
|
2020-02-14 08:51:08 +01:00
|
|
|
for (const PluginSpec *ps : plugins()) {
|
2009-12-14 18:01:39 +01:00
|
|
|
if (!ps->arguments().isEmpty()) {
|
|
|
|
|
if (!rc.isEmpty())
|
|
|
|
|
rc += separator;
|
|
|
|
|
rc += QLatin1Char(':');
|
|
|
|
|
rc += ps->name();
|
|
|
|
|
rc += separator;
|
2014-08-23 01:19:53 +02:00
|
|
|
rc += ps->arguments().join(separator);
|
2009-12-14 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
}
|
2015-03-09 10:59:58 +02:00
|
|
|
if (!rc.isEmpty())
|
|
|
|
|
rc += separator;
|
|
|
|
|
rc += QLatin1String(pwdKeywordC) + separator + QDir::currentPath();
|
2013-08-29 15:00:46 +02:00
|
|
|
if (!d->arguments.isEmpty()) {
|
2009-12-14 18:01:39 +01:00
|
|
|
if (!rc.isEmpty())
|
|
|
|
|
rc += separator;
|
|
|
|
|
rc += QLatin1String(argumentKeywordC);
|
2020-02-14 08:51:08 +01:00
|
|
|
for (const QString &argument : qAsConst(d->arguments))
|
2015-03-09 10:59:58 +02:00
|
|
|
rc += separator + argument;
|
2009-12-14 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Extract a sublist from the serialized arguments
|
|
|
|
|
* indicated by a keyword starting with a colon indicator:
|
|
|
|
|
* ":a,i1,i2,:b:i3,i4" with ":a" -> "i1,i2"
|
|
|
|
|
*/
|
|
|
|
|
static QStringList subList(const QStringList &in, const QString &key)
|
|
|
|
|
{
|
|
|
|
|
QStringList rc;
|
|
|
|
|
// Find keyword and copy arguments until end or next keyword
|
|
|
|
|
const QStringList::const_iterator inEnd = in.constEnd();
|
2016-08-03 23:29:58 +03:00
|
|
|
QStringList::const_iterator it = std::find(in.constBegin(), inEnd, key);
|
2009-12-14 18:01:39 +01:00
|
|
|
if (it != inEnd) {
|
|
|
|
|
const QChar nextIndicator = QLatin1Char(':');
|
|
|
|
|
for (++it; it != inEnd && !it->startsWith(nextIndicator); ++it)
|
|
|
|
|
rc.append(*it);
|
|
|
|
|
}
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-02-20 10:19:56 +01:00
|
|
|
Parses the options encoded in \a serializedArgument
|
2009-12-14 18:01:39 +01:00
|
|
|
and passes them on to the respective plugins along with the arguments.
|
2013-03-11 18:15:49 +02:00
|
|
|
|
|
|
|
|
\a socket is passed for disconnecting the peer when the operation is done (for example,
|
2020-02-05 14:40:44 +01:00
|
|
|
document is closed) for supporting the \c -block flag.
|
2009-12-14 18:01:39 +01:00
|
|
|
*/
|
|
|
|
|
|
2013-03-11 18:15:49 +02:00
|
|
|
void PluginManager::remoteArguments(const QString &serializedArgument, QObject *socket)
|
2009-12-14 18:01:39 +01:00
|
|
|
{
|
|
|
|
|
if (serializedArgument.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
QStringList serializedArguments = serializedArgument.split(QLatin1Char('|'));
|
2015-03-09 10:59:58 +02:00
|
|
|
const QStringList pwdValue = subList(serializedArguments, QLatin1String(pwdKeywordC));
|
|
|
|
|
const QString workingDirectory = pwdValue.isEmpty() ? QString() : pwdValue.first();
|
2009-12-14 18:01:39 +01:00
|
|
|
const QStringList arguments = subList(serializedArguments, QLatin1String(argumentKeywordC));
|
2020-02-14 08:51:08 +01:00
|
|
|
for (const PluginSpec *ps : plugins()) {
|
2009-12-14 18:01:39 +01:00
|
|
|
if (ps->state() == PluginSpec::Running) {
|
|
|
|
|
const QStringList pluginOptions = subList(serializedArguments, QLatin1Char(':') + ps->name());
|
2015-03-09 10:59:58 +02:00
|
|
|
QObject *socketParent = ps->plugin()->remoteCommand(pluginOptions, workingDirectory,
|
|
|
|
|
arguments);
|
2013-03-11 18:15:49 +02:00
|
|
|
if (socketParent && socket) {
|
|
|
|
|
socket->setParent(socketParent);
|
2018-07-19 23:19:33 +02:00
|
|
|
socket = nullptr;
|
2013-03-11 18:15:49 +02:00
|
|
|
}
|
2009-12-14 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
}
|
2013-03-11 18:15:49 +02:00
|
|
|
if (socket)
|
|
|
|
|
delete socket;
|
2009-12-14 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
Takes the list of command line options in \a args and parses them.
|
2020-02-05 14:40:44 +01:00
|
|
|
The plugin manager itself might process some options itself directly
|
|
|
|
|
(\c {-noload <plugin>}), and adds options that are registered by
|
|
|
|
|
plugins to their plugin specs.
|
|
|
|
|
|
|
|
|
|
The caller (the application) may register itself for options via the
|
|
|
|
|
\a appOptions list, containing pairs of \e {option string} and a bool
|
|
|
|
|
that indicates whether the option requires an argument.
|
2008-12-02 12:01:29 +01:00
|
|
|
Application options always override any plugin's options.
|
2010-01-29 21:33:57 +01:00
|
|
|
|
2020-02-05 14:40:44 +01:00
|
|
|
\a foundAppOptions is set to pairs of (\e {option string}, \e argument)
|
|
|
|
|
for any application options that were found.
|
2013-10-07 13:34:40 +02:00
|
|
|
The command line options that were not processed can be retrieved via the arguments() function.
|
2008-12-02 12:01:29 +01:00
|
|
|
If an error occurred (like missing argument for an option that requires one), \a errorString contains
|
|
|
|
|
a descriptive message of the error.
|
2010-01-29 21:33:57 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
Returns if there was an error.
|
|
|
|
|
*/
|
|
|
|
|
bool PluginManager::parseOptions(const QStringList &args,
|
|
|
|
|
const QMap<QString, bool> &appOptions,
|
|
|
|
|
QMap<QString, QString> *foundAppOptions,
|
|
|
|
|
QString *errorString)
|
|
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
OptionsParser options(args, appOptions, foundAppOptions, errorString, d);
|
2008-12-02 12:01:29 +01:00
|
|
|
return options.parse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static inline void indent(QTextStream &str, int indent)
|
|
|
|
|
{
|
2016-06-22 16:41:55 +02:00
|
|
|
str << QString(indent, ' ');
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void formatOption(QTextStream &str,
|
|
|
|
|
const QString &opt, const QString &parm, const QString &description,
|
|
|
|
|
int optionIndentation, int descriptionIndentation)
|
|
|
|
|
{
|
|
|
|
|
int remainingIndent = descriptionIndentation - optionIndentation - opt.size();
|
|
|
|
|
indent(str, optionIndentation);
|
|
|
|
|
str << opt;
|
|
|
|
|
if (!parm.isEmpty()) {
|
|
|
|
|
str << " <" << parm << '>';
|
|
|
|
|
remainingIndent -= 3 + parm.size();
|
|
|
|
|
}
|
2015-09-04 13:53:03 +02:00
|
|
|
if (remainingIndent >= 1) {
|
|
|
|
|
indent(str, remainingIndent);
|
|
|
|
|
} else {
|
|
|
|
|
str << '\n';
|
|
|
|
|
indent(str, descriptionIndentation);
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
str << description << '\n';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-02-20 10:19:56 +01:00
|
|
|
Formats the startup options of the plugin manager for command line help with the specified
|
|
|
|
|
\a optionIndentation and \a descriptionIndentation.
|
|
|
|
|
Adds the result to \a str.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
void PluginManager::formatOptions(QTextStream &str, int optionIndentation, int descriptionIndentation)
|
|
|
|
|
{
|
2013-02-12 13:19:15 +01:00
|
|
|
formatOption(str, QLatin1String(OptionsParser::LOAD_OPTION),
|
2015-03-31 17:42:14 +02:00
|
|
|
QLatin1String("plugin"), QLatin1String("Load <plugin> and all plugins that it requires"),
|
2013-02-12 13:19:15 +01:00
|
|
|
optionIndentation, descriptionIndentation);
|
2015-03-30 17:50:25 +02:00
|
|
|
formatOption(str, QLatin1String(OptionsParser::LOAD_OPTION) + QLatin1String(" all"),
|
|
|
|
|
QString(), QLatin1String("Load all available plugins"),
|
|
|
|
|
optionIndentation, descriptionIndentation);
|
2008-12-02 12:01:29 +01:00
|
|
|
formatOption(str, QLatin1String(OptionsParser::NO_LOAD_OPTION),
|
2015-03-31 17:42:14 +02:00
|
|
|
QLatin1String("plugin"), QLatin1String("Do not load <plugin> and all plugins that require it"),
|
2008-12-02 12:01:29 +01:00
|
|
|
optionIndentation, descriptionIndentation);
|
2015-03-30 17:50:25 +02:00
|
|
|
formatOption(str, QLatin1String(OptionsParser::NO_LOAD_OPTION) + QLatin1String(" all"),
|
|
|
|
|
QString(), QString::fromLatin1("Do not load any plugin (useful when "
|
|
|
|
|
"followed by one or more \"%1\" arguments)")
|
|
|
|
|
.arg(QLatin1String(OptionsParser::LOAD_OPTION)),
|
|
|
|
|
optionIndentation, descriptionIndentation);
|
2010-03-02 12:33:51 +01:00
|
|
|
formatOption(str, QLatin1String(OptionsParser::PROFILE_OPTION),
|
|
|
|
|
QString(), QLatin1String("Profile plugin loading"),
|
|
|
|
|
optionIndentation, descriptionIndentation);
|
2020-08-12 14:11:28 +02:00
|
|
|
formatOption(str,
|
|
|
|
|
QLatin1String(OptionsParser::NO_CRASHCHECK_OPTION),
|
|
|
|
|
QString(),
|
|
|
|
|
QLatin1String("Disable startup check for previously crashed instance"),
|
|
|
|
|
optionIndentation,
|
|
|
|
|
descriptionIndentation);
|
2011-10-13 09:22:28 +02:00
|
|
|
#ifdef WITH_TESTS
|
2013-01-22 12:54:22 +01:00
|
|
|
formatOption(str, QString::fromLatin1(OptionsParser::TEST_OPTION)
|
2013-03-20 16:31:14 +01:00
|
|
|
+ QLatin1String(" <plugin>[,testfunction[:testdata]]..."), QString(),
|
2013-09-03 15:17:24 +02:00
|
|
|
QLatin1String("Run plugin's tests (by default a separate settings path is used)"),
|
|
|
|
|
optionIndentation, descriptionIndentation);
|
2013-01-22 12:54:22 +01:00
|
|
|
formatOption(str, QString::fromLatin1(OptionsParser::TEST_OPTION) + QLatin1String(" all"),
|
|
|
|
|
QString(), QLatin1String("Run tests from all plugins"),
|
2011-10-13 09:22:28 +02:00
|
|
|
optionIndentation, descriptionIndentation);
|
2016-02-11 11:53:31 +01:00
|
|
|
formatOption(str, QString::fromLatin1(OptionsParser::NOTEST_OPTION),
|
|
|
|
|
QLatin1String("plugin"), QLatin1String("Exclude all of the plugin's tests from the test run"),
|
|
|
|
|
optionIndentation, descriptionIndentation);
|
2021-04-28 15:59:18 +02:00
|
|
|
formatOption(str, QString::fromLatin1(OptionsParser::SCENARIO_OPTION),
|
|
|
|
|
QString("scenarioname"), QLatin1String("Run given scenario"),
|
|
|
|
|
optionIndentation, descriptionIndentation);
|
2011-10-13 09:22:28 +02:00
|
|
|
#endif
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-02-20 10:19:56 +01:00
|
|
|
Formats the plugin options of the plugin specs for command line help with the specified
|
|
|
|
|
\a optionIndentation and \a descriptionIndentation.
|
|
|
|
|
Adds the result to \a str.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
|
2012-06-18 11:34:15 +02:00
|
|
|
void PluginManager::formatPluginOptions(QTextStream &str, int optionIndentation, int descriptionIndentation)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
// Check plugins for options
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *ps : qAsConst(d->pluginSpecs)) {
|
2015-01-13 14:53:04 +01:00
|
|
|
const PluginSpec::PluginArgumentDescriptions pargs = ps->argumentDescriptions();
|
2008-12-02 12:01:29 +01:00
|
|
|
if (!pargs.empty()) {
|
2015-01-13 14:53:04 +01:00
|
|
|
str << "\nPlugin: " << ps->name() << '\n';
|
2020-02-14 08:51:08 +01:00
|
|
|
for (const PluginArgumentDescription &pad : pargs)
|
2015-01-13 14:53:04 +01:00
|
|
|
formatOption(str, pad.name, pad.parameter, pad.description, optionIndentation, descriptionIndentation);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-02-20 10:19:56 +01:00
|
|
|
Formats the version of the plugin specs for command line help and adds it to \a str.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
2012-06-18 11:34:15 +02:00
|
|
|
void PluginManager::formatPluginVersions(QTextStream &str)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *ps : qAsConst(d->pluginSpecs))
|
2008-12-02 12:01:29 +01:00
|
|
|
str << " " << ps->name() << ' ' << ps->version() << ' ' << ps->description() << '\n';
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-05 18:04:24 +01:00
|
|
|
/*!
|
2020-02-20 10:19:56 +01:00
|
|
|
\internal
|
2009-01-05 18:04:24 +01:00
|
|
|
*/
|
2013-04-04 14:30:17 +02:00
|
|
|
bool PluginManager::testRunRequested()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2019-05-27 14:12:11 +02:00
|
|
|
return !d->testSpecs.empty();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2021-04-28 15:59:18 +02:00
|
|
|
#ifdef WITH_TESTS
|
|
|
|
|
// Called in plugin initialization, the scenario function will be called later, from main
|
|
|
|
|
bool PluginManager::registerScenario(const QString &scenarioId, std::function<bool()> scenarioStarter)
|
|
|
|
|
{
|
|
|
|
|
if (d->m_scenarios.contains(scenarioId)) {
|
|
|
|
|
const QString warning = QString("Can't register scenario \"%1\" as the other scenario was "
|
|
|
|
|
"already registered with this name.").arg(scenarioId);
|
|
|
|
|
qWarning("%s", qPrintable(warning));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
d->m_scenarios.insert(scenarioId, scenarioStarter);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Called from main
|
|
|
|
|
bool PluginManager::isScenarioRequested()
|
|
|
|
|
{
|
|
|
|
|
return !d->m_requestedScenario.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Called from main (may be squashed with the isScenarioRequested: runScenarioIfRequested).
|
|
|
|
|
// Returns false if scenario couldn't run (e.g. no Qt version set)
|
|
|
|
|
bool PluginManager::runScenario()
|
|
|
|
|
{
|
|
|
|
|
if (d->m_isScenarioRunning) {
|
|
|
|
|
qWarning("Scenario is already running. Can't run scenario recursively.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (d->m_requestedScenario.isEmpty()) {
|
|
|
|
|
qWarning("Can't run any scenario since no scenario was requested.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!d->m_scenarios.contains(d->m_requestedScenario)) {
|
|
|
|
|
const QString warning = QString("Requested scenario \"%1\" was not registered.").arg(d->m_requestedScenario);
|
|
|
|
|
qWarning("%s", qPrintable(warning));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
d->m_isScenarioRunning = true;
|
|
|
|
|
// The return value comes now from scenarioStarted() function. It may fail e.g. when
|
|
|
|
|
// no Qt version is set. Initializing the scenario may take some time, that's why
|
|
|
|
|
// waitForScenarioFullyInitialized() was added.
|
|
|
|
|
bool ret = d->m_scenarios[d->m_requestedScenario]();
|
|
|
|
|
|
|
|
|
|
QMutexLocker locker(&d->m_scenarioMutex);
|
|
|
|
|
d->m_scenarioFullyInitialized = true;
|
|
|
|
|
d->m_scenarioWaitCondition.wakeAll();
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Called from scenario point (and also from runScenario - don't run scenarios recursively).
|
|
|
|
|
// This may be called from non-main thread. We assume that m_requestedScenario
|
|
|
|
|
// may only be changed from the main thread.
|
|
|
|
|
bool PluginManager::isScenarioRunning(const QString &scenarioId)
|
|
|
|
|
{
|
|
|
|
|
return d->m_isScenarioRunning && d->m_requestedScenario == scenarioId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This may be called from non-main thread.
|
|
|
|
|
bool PluginManager::finishScenario()
|
|
|
|
|
{
|
|
|
|
|
if (!d->m_isScenarioRunning)
|
|
|
|
|
return false; // Can't finish not running scenario
|
|
|
|
|
|
|
|
|
|
if (d->m_isScenarioFinished.exchange(true))
|
|
|
|
|
return false; // Finish was already called before. We return false, as we didn't finish it right now.
|
|
|
|
|
|
|
|
|
|
QMetaObject::invokeMethod(d, []() { emit m_instance->scenarioFinished(0); });
|
|
|
|
|
return true; // Finished successfully.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Waits until the running scenario is fully initialized
|
|
|
|
|
void PluginManager::waitForScenarioFullyInitialized()
|
|
|
|
|
{
|
|
|
|
|
if (QThread::currentThread() == qApp->thread()) {
|
|
|
|
|
qWarning("The waitForScenarioFullyInitialized() function can't be called from main thread.");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
QMutexLocker locker(&d->m_scenarioMutex);
|
|
|
|
|
if (d->m_scenarioFullyInitialized)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
d->m_scenarioWaitCondition.wait(&d->m_scenarioMutex);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-04-29 15:38:01 +02:00
|
|
|
void PluginManager::setCreatorProcessData(const PluginManager::ProcessData &data)
|
|
|
|
|
{
|
|
|
|
|
d->m_creatorProcessData = data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PluginManager::ProcessData PluginManager::creatorProcessData()
|
|
|
|
|
{
|
|
|
|
|
return d->m_creatorProcessData;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-12 11:12:54 +02:00
|
|
|
/*!
|
2020-02-20 10:19:56 +01:00
|
|
|
\internal
|
2010-05-12 11:12:54 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
void PluginManager::profilingReport(const char *what, const PluginSpec *spec)
|
|
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
d->profilingReport(what, spec);
|
2010-05-12 11:12:54 +02:00
|
|
|
}
|
|
|
|
|
|
2010-05-19 16:29:47 +02:00
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
Returns a list of plugins in load order.
|
|
|
|
|
*/
|
2019-05-27 14:12:11 +02:00
|
|
|
QVector<PluginSpec *> PluginManager::loadQueue()
|
2010-05-19 16:29:47 +02:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
return d->loadQueue();
|
2010-05-19 16:29:47 +02:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
//============PluginManagerPrivate===========
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
PluginSpec *PluginManagerPrivate::createSpec()
|
|
|
|
|
{
|
|
|
|
|
return new PluginSpec();
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-25 16:57:58 +02:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
2020-11-19 15:34:59 +01:00
|
|
|
void PluginManagerPrivate::setSettings(QtcSettings *s)
|
2010-10-25 16:57:58 +02:00
|
|
|
{
|
|
|
|
|
if (settings)
|
|
|
|
|
delete settings;
|
|
|
|
|
settings = s;
|
|
|
|
|
if (settings)
|
|
|
|
|
settings->setParent(this);
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-26 14:46:29 +02:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
2020-11-19 15:34:59 +01:00
|
|
|
void PluginManagerPrivate::setGlobalSettings(QtcSettings *s)
|
2011-10-26 14:46:29 +02:00
|
|
|
{
|
|
|
|
|
if (globalSettings)
|
|
|
|
|
delete globalSettings;
|
|
|
|
|
globalSettings = s;
|
|
|
|
|
if (globalSettings)
|
|
|
|
|
globalSettings->setParent(this);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
PluginSpecPrivate *PluginManagerPrivate::privateSpec(PluginSpec *spec)
|
|
|
|
|
{
|
|
|
|
|
return spec->d;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-02 10:47:33 +01:00
|
|
|
void PluginManagerPrivate::nextDelayedInitialize()
|
|
|
|
|
{
|
2019-05-27 14:12:11 +02:00
|
|
|
while (!delayedInitializeQueue.empty()) {
|
|
|
|
|
PluginSpec *spec = delayedInitializeQueue.front();
|
|
|
|
|
delayedInitializeQueue.pop();
|
2012-02-02 10:47:33 +01:00
|
|
|
profilingReport(">delayedInitialize", spec);
|
|
|
|
|
bool delay = spec->d->delayedInitialize();
|
|
|
|
|
profilingReport("<delayedInitialize", spec);
|
|
|
|
|
if (delay)
|
|
|
|
|
break; // do next delayedInitialize after a delay
|
|
|
|
|
}
|
2019-05-27 14:12:11 +02:00
|
|
|
if (delayedInitializeQueue.empty()) {
|
2016-05-02 15:39:52 +02:00
|
|
|
m_isInitializationDone = true;
|
2012-02-02 10:47:33 +01:00
|
|
|
delete delayedInitializeTimer;
|
2018-07-19 23:19:33 +02:00
|
|
|
delayedInitializeTimer = nullptr;
|
2013-02-06 13:53:51 +01:00
|
|
|
profilingSummary();
|
2012-08-17 09:09:15 +02:00
|
|
|
emit q->initializationDone();
|
2013-07-24 11:17:31 +02:00
|
|
|
#ifdef WITH_TESTS
|
2020-11-21 01:04:56 +01:00
|
|
|
if (PluginManager::testRunRequested())
|
2015-01-05 10:26:52 +01:00
|
|
|
startTests();
|
2021-04-28 15:59:18 +02:00
|
|
|
else if (PluginManager::isScenarioRequested()) {
|
|
|
|
|
if (PluginManager::runScenario()) {
|
|
|
|
|
const QString info = QString("Successfully started scenario \"%1\"...").arg(d->m_requestedScenario);
|
|
|
|
|
qInfo("%s", qPrintable(info));
|
|
|
|
|
} else {
|
|
|
|
|
QMetaObject::invokeMethod(this, []() { emit m_instance->scenarioFinished(1); });
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-07-24 11:17:31 +02:00
|
|
|
#endif
|
2012-02-02 10:47:33 +01:00
|
|
|
} else {
|
|
|
|
|
delayedInitializeTimer->start();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
2010-03-02 12:33:51 +01:00
|
|
|
PluginManagerPrivate::PluginManagerPrivate(PluginManager *pluginManager) :
|
|
|
|
|
q(pluginManager)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-13 13:36:47 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
PluginManagerPrivate::~PluginManagerPrivate()
|
|
|
|
|
{
|
|
|
|
|
qDeleteAll(pluginSpecs);
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-13 13:36:47 +02:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
2010-03-12 16:02:23 +01:00
|
|
|
void PluginManagerPrivate::writeSettings()
|
|
|
|
|
{
|
2010-10-25 16:57:58 +02:00
|
|
|
if (!settings)
|
|
|
|
|
return;
|
2010-03-30 14:18:15 +02:00
|
|
|
QStringList tempDisabledPlugins;
|
2010-03-30 16:54:29 +02:00
|
|
|
QStringList tempForceEnabledPlugins;
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *spec : qAsConst(pluginSpecs)) {
|
2015-03-31 09:55:50 +02:00
|
|
|
if (spec->isEnabledByDefault() && !spec->isEnabledBySettings())
|
2010-03-30 14:18:15 +02:00
|
|
|
tempDisabledPlugins.append(spec->name());
|
2015-03-31 09:55:50 +02:00
|
|
|
if (!spec->isEnabledByDefault() && spec->isEnabledBySettings())
|
2010-03-30 16:54:29 +02:00
|
|
|
tempForceEnabledPlugins.append(spec->name());
|
2010-03-12 16:02:23 +01:00
|
|
|
}
|
|
|
|
|
|
2020-12-22 15:35:44 +01:00
|
|
|
settings->setValueWithDefault(C_IGNORED_PLUGINS, tempDisabledPlugins);
|
|
|
|
|
settings->setValueWithDefault(C_FORCEENABLED_PLUGINS, tempForceEnabledPlugins);
|
2010-03-12 16:02:23 +01:00
|
|
|
}
|
|
|
|
|
|
2010-07-13 13:36:47 +02:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
2010-10-25 16:57:58 +02:00
|
|
|
void PluginManagerPrivate::readSettings()
|
2010-03-12 16:02:23 +01:00
|
|
|
{
|
2013-11-14 15:57:37 +01:00
|
|
|
if (globalSettings) {
|
2011-10-26 14:46:29 +02:00
|
|
|
defaultDisabledPlugins = globalSettings->value(QLatin1String(C_IGNORED_PLUGINS)).toStringList();
|
2013-11-14 15:57:37 +01:00
|
|
|
defaultEnabledPlugins = globalSettings->value(QLatin1String(C_FORCEENABLED_PLUGINS)).toStringList();
|
|
|
|
|
}
|
2011-10-26 14:46:29 +02:00
|
|
|
if (settings) {
|
|
|
|
|
disabledPlugins = settings->value(QLatin1String(C_IGNORED_PLUGINS)).toStringList();
|
|
|
|
|
forceEnabledPlugins = settings->value(QLatin1String(C_FORCEENABLED_PLUGINS)).toStringList();
|
|
|
|
|
}
|
2010-03-12 16:02:23 +01:00
|
|
|
}
|
|
|
|
|
|
2010-07-13 13:36:47 +02:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
2008-12-02 12:01:29 +01:00
|
|
|
void PluginManagerPrivate::stopAll()
|
|
|
|
|
{
|
2012-02-02 10:47:33 +01:00
|
|
|
if (delayedInitializeTimer && delayedInitializeTimer->isActive()) {
|
|
|
|
|
delayedInitializeTimer->stop();
|
|
|
|
|
delete delayedInitializeTimer;
|
2018-07-19 23:19:33 +02:00
|
|
|
delayedInitializeTimer = nullptr;
|
2012-02-02 10:47:33 +01:00
|
|
|
}
|
2020-02-14 08:51:08 +01:00
|
|
|
|
|
|
|
|
const QVector<PluginSpec *> queue = loadQueue();
|
|
|
|
|
for (PluginSpec *spec : queue)
|
2008-12-02 12:01:29 +01:00
|
|
|
loadPlugin(spec, PluginSpec::Stopped);
|
2010-07-13 13:36:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
void PluginManagerPrivate::deleteAll()
|
|
|
|
|
{
|
2016-06-22 16:41:55 +02:00
|
|
|
Utils::reverseForeach(loadQueue(), [this](PluginSpec *spec) {
|
|
|
|
|
loadPlugin(spec, PluginSpec::Deleted);
|
|
|
|
|
});
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2015-01-16 07:38:59 +01:00
|
|
|
#ifdef WITH_TESTS
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
|
2018-07-19 23:19:33 +02:00
|
|
|
using TestPlan = QMap<QObject *, QStringList>; // Object -> selected test functions
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
|
|
|
|
|
static bool isTestFunction(const QMetaMethod &metaMethod)
|
|
|
|
|
{
|
2019-05-27 14:12:11 +02:00
|
|
|
static const QVector<QByteArray> blackList = {"initTestCase()",
|
|
|
|
|
"cleanupTestCase()",
|
|
|
|
|
"init()",
|
|
|
|
|
"cleanup()"};
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
|
|
|
|
|
if (metaMethod.methodType() != QMetaMethod::Slot)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (metaMethod.access() != QMetaMethod::Private)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
const QByteArray signature = metaMethod.methodSignature();
|
|
|
|
|
if (blackList.contains(signature))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (!signature.startsWith("test"))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (signature.endsWith("_data()"))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-14 11:48:12 +01:00
|
|
|
static QStringList testFunctions(const QMetaObject *metaObject)
|
|
|
|
|
{
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
|
|
|
|
|
QStringList functions;
|
2015-01-14 11:48:12 +01:00
|
|
|
|
|
|
|
|
for (int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) {
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
const QMetaMethod metaMethod = metaObject->method(i);
|
|
|
|
|
if (isTestFunction(metaMethod)) {
|
|
|
|
|
const QByteArray signature = metaMethod.methodSignature();
|
2015-01-14 11:48:12 +01:00
|
|
|
const QString method = QString::fromLatin1(signature);
|
|
|
|
|
const QString methodName = method.left(method.size() - 2);
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
functions.append(methodName);
|
2015-01-14 11:48:12 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
return functions;
|
2015-01-14 11:48:12 +01:00
|
|
|
}
|
|
|
|
|
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
static QStringList matchingTestFunctions(const QStringList &testFunctions,
|
|
|
|
|
const QString &matchText)
|
2015-01-14 11:48:12 +01:00
|
|
|
{
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
// There might be a test data suffix like in "testfunction:testdata1".
|
|
|
|
|
QString testFunctionName = matchText;
|
|
|
|
|
QString testDataSuffix;
|
|
|
|
|
const int index = testFunctionName.indexOf(QLatin1Char(':'));
|
|
|
|
|
if (index != -1) {
|
|
|
|
|
testDataSuffix = testFunctionName.mid(index);
|
|
|
|
|
testFunctionName = testFunctionName.left(index);
|
|
|
|
|
}
|
2015-01-14 11:48:12 +01:00
|
|
|
|
2020-06-09 12:31:01 +02:00
|
|
|
const QRegularExpression regExp(
|
|
|
|
|
QRegularExpression::wildcardToRegularExpression(testFunctionName));
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
QStringList matchingFunctions;
|
2020-02-14 08:51:08 +01:00
|
|
|
for (const QString &testFunction : testFunctions) {
|
2020-06-09 12:31:01 +02:00
|
|
|
if (regExp.match(testFunction).hasMatch()) {
|
2015-01-14 11:48:12 +01:00
|
|
|
// If the specified test data is invalid, the QTest framework will
|
|
|
|
|
// print a reasonable error message for us.
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
matchingFunctions.append(testFunction + testDataSuffix);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return matchingFunctions;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-27 14:12:11 +02:00
|
|
|
static QObject *objectWithClassName(const QVector<QObject *> &objects, const QString &className)
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
{
|
2018-07-19 23:19:33 +02:00
|
|
|
return Utils::findOr(objects, nullptr, [className] (QObject *object) -> bool {
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
QString candidate = QString::fromUtf8(object->metaObject()->className());
|
|
|
|
|
const int colonIndex = candidate.lastIndexOf(QLatin1Char(':'));
|
|
|
|
|
if (colonIndex != -1 && colonIndex < candidate.size() - 1)
|
|
|
|
|
candidate = candidate.mid(colonIndex + 1);
|
|
|
|
|
return candidate == className;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int executeTestPlan(const TestPlan &testPlan)
|
|
|
|
|
{
|
|
|
|
|
int failedTests = 0;
|
|
|
|
|
|
2019-07-24 13:43:54 +02:00
|
|
|
for (auto it = testPlan.cbegin(), end = testPlan.cend(); it != end; ++it) {
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
QObject *testObject = it.key();
|
|
|
|
|
QStringList functions = it.value();
|
|
|
|
|
|
|
|
|
|
// Don't run QTest::qExec without any test functions, that'd run *all* slots as tests.
|
|
|
|
|
if (functions.isEmpty())
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
functions.removeDuplicates();
|
|
|
|
|
|
|
|
|
|
// QTest::qExec() expects basically QCoreApplication::arguments(),
|
|
|
|
|
QStringList qExecArguments = QStringList()
|
|
|
|
|
<< QLatin1String("arg0") // fake application name
|
|
|
|
|
<< QLatin1String("-maxwarnings") << QLatin1String("0"); // unlimit output
|
|
|
|
|
qExecArguments << functions;
|
2016-07-28 15:24:20 +02:00
|
|
|
// avoid being stuck in QTBUG-24925
|
2016-08-31 15:39:52 +02:00
|
|
|
if (!HostOsInfo::isWindowsHost())
|
2016-08-01 10:20:50 +02:00
|
|
|
qExecArguments << "-nocrashhandler";
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
failedTests += QTest::qExec(testObject, qExecArguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return failedTests;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Resulting plan consists of all test functions of the plugin object and
|
|
|
|
|
/// all test functions of all test objects of the plugin.
|
2019-05-27 14:12:11 +02:00
|
|
|
static TestPlan generateCompleteTestPlan(IPlugin *plugin, const QVector<QObject *> &testObjects)
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
{
|
|
|
|
|
TestPlan testPlan;
|
|
|
|
|
|
|
|
|
|
testPlan.insert(plugin, testFunctions(plugin->metaObject()));
|
2020-02-14 08:51:08 +01:00
|
|
|
for (QObject *testObject : testObjects) {
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
const QStringList allFunctions = testFunctions(testObject->metaObject());
|
|
|
|
|
testPlan.insert(testObject, allFunctions);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return testPlan;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Resulting plan consists of all matching test functions of the plugin object
|
|
|
|
|
/// and all matching functions of all test objects of the plugin. However, if a
|
|
|
|
|
/// match text denotes a test class, all test functions of that will be
|
|
|
|
|
/// included and the class will not be considered further.
|
|
|
|
|
///
|
|
|
|
|
/// Since multiple match texts can match the same function, a test function might
|
|
|
|
|
/// be included multiple times for a test object.
|
2019-05-27 14:12:11 +02:00
|
|
|
static TestPlan generateCustomTestPlan(IPlugin *plugin,
|
|
|
|
|
const QVector<QObject *> &testObjects,
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
const QStringList &matchTexts)
|
|
|
|
|
{
|
|
|
|
|
TestPlan testPlan;
|
|
|
|
|
|
|
|
|
|
const QStringList testFunctionsOfPluginObject = testFunctions(plugin->metaObject());
|
|
|
|
|
QStringList matchedTestFunctionsOfPluginObject;
|
|
|
|
|
QStringList remainingMatchTexts = matchTexts;
|
2019-05-27 14:12:11 +02:00
|
|
|
QVector<QObject *> remainingTestObjectsOfPlugin = testObjects;
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
|
|
|
|
|
while (!remainingMatchTexts.isEmpty()) {
|
|
|
|
|
const QString matchText = remainingMatchTexts.takeFirst();
|
|
|
|
|
bool matched = false;
|
|
|
|
|
|
|
|
|
|
if (QObject *testObject = objectWithClassName(remainingTestObjectsOfPlugin, matchText)) {
|
|
|
|
|
// Add all functions of the matching test object
|
|
|
|
|
matched = true;
|
|
|
|
|
testPlan.insert(testObject, testFunctions(testObject->metaObject()));
|
|
|
|
|
remainingTestObjectsOfPlugin.removeAll(testObject);
|
|
|
|
|
|
2015-01-14 11:48:12 +01:00
|
|
|
} else {
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
// Add all matching test functions of all remaining test objects
|
2020-02-14 08:51:08 +01:00
|
|
|
for (QObject *testObject : qAsConst(remainingTestObjectsOfPlugin)) {
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
const QStringList allFunctions = testFunctions(testObject->metaObject());
|
|
|
|
|
const QStringList matchingFunctions = matchingTestFunctions(allFunctions,
|
|
|
|
|
matchText);
|
|
|
|
|
if (!matchingFunctions.isEmpty()) {
|
|
|
|
|
matched = true;
|
|
|
|
|
testPlan[testObject] += matchingFunctions;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QStringList currentMatchedTestFunctionsOfPluginObject
|
|
|
|
|
= matchingTestFunctions(testFunctionsOfPluginObject, matchText);
|
|
|
|
|
if (!currentMatchedTestFunctionsOfPluginObject.isEmpty()) {
|
|
|
|
|
matched = true;
|
|
|
|
|
matchedTestFunctionsOfPluginObject += currentMatchedTestFunctionsOfPluginObject;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!matched) {
|
2015-01-14 11:48:12 +01:00
|
|
|
QTextStream out(stdout);
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
out << "No test function or class matches \"" << matchText
|
2016-02-05 10:37:13 +01:00
|
|
|
<< "\" in plugin \"" << plugin->metaObject()->className()
|
|
|
|
|
<< "\".\nAvailable functions:\n";
|
2020-02-14 08:51:08 +01:00
|
|
|
for (const QString &f : testFunctionsOfPluginObject)
|
2016-02-05 10:37:13 +01:00
|
|
|
out << " " << f << '\n';
|
2020-02-19 09:29:49 +01:00
|
|
|
out << '\n';
|
2015-01-14 11:48:12 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
// Add all matching test functions of plugin
|
|
|
|
|
if (!matchedTestFunctionsOfPluginObject.isEmpty())
|
|
|
|
|
testPlan.insert(plugin, matchedTestFunctionsOfPluginObject);
|
|
|
|
|
|
|
|
|
|
return testPlan;
|
2015-01-14 11:48:12 +01:00
|
|
|
}
|
|
|
|
|
|
2015-01-05 10:26:52 +01:00
|
|
|
void PluginManagerPrivate::startTests()
|
|
|
|
|
{
|
|
|
|
|
if (PluginManager::hasError()) {
|
2019-07-25 13:59:27 +02:00
|
|
|
qWarning("Errors occurred while loading plugins, skipping test run.");
|
|
|
|
|
for (const QString &pluginError : PluginManager::allErrors())
|
|
|
|
|
qWarning("%s", qPrintable(pluginError));
|
2016-05-31 22:36:33 +03:00
|
|
|
QTimer::singleShot(1, QCoreApplication::instance(), &QCoreApplication::quit);
|
2015-01-05 10:26:52 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-14 10:35:49 +02:00
|
|
|
int failedTests = 0;
|
2020-02-14 08:51:08 +01:00
|
|
|
for (const TestSpec &testSpec : qAsConst(testSpecs)) {
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
IPlugin *plugin = testSpec.pluginSpec->plugin();
|
2015-02-04 16:08:12 +01:00
|
|
|
if (!plugin)
|
|
|
|
|
continue; // plugin not loaded
|
2015-01-05 10:26:52 +01:00
|
|
|
|
2019-05-27 14:12:11 +02:00
|
|
|
const QVector<QObject *> testObjects = plugin->createTestObjects();
|
2016-08-31 15:39:52 +02:00
|
|
|
ExecuteOnDestruction deleteTestObjects([&]() { qDeleteAll(testObjects); });
|
2015-02-25 00:28:54 +03:00
|
|
|
Q_UNUSED(deleteTestObjects)
|
2015-01-05 10:26:52 +01:00
|
|
|
|
2019-05-27 14:12:11 +02:00
|
|
|
const bool hasDuplicateTestObjects = testObjects.size()
|
|
|
|
|
!= Utils::filteredUnique(testObjects).size();
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
QTC_ASSERT(!hasDuplicateTestObjects, continue);
|
|
|
|
|
QTC_ASSERT(!testObjects.contains(plugin), continue);
|
2015-01-05 10:26:52 +01:00
|
|
|
|
Plugin Tests: Support additional test objects/classes
So far tests running within Qt Creator could be implemented with a
private slot in the plugin class starting with "test".
Binding the test functions to the plugin object/class is fine for test
functions without side effects. But as soon as side effects come into
play we need proper initialization and cleanup as it's provided by
init(), cleanup(), initTestCase() and cleanupTestCase(). However,
implementing these functions in the plugin class is not appropriate
since they would affect (potentially quite diverse) test functions.
This patch enables us to provide 'ordinary' test classes in which we can
handle initialization and clean up the usual way.
In addition to the current test invocations, e.g.:
# (1) Run all test functions of the plugin
./qtcreator -test CppTools
# (2) Run selected test functions of the plugin by stating them
./qtcreator -test CppTools,test_completion,test_builtinsymbolsearcher
# (3) Run selected test functions of the plugin by a wild card
# expression
./qtcreator -test "CppTools,*pointerdeclaration*"
# (4) Run a test function of the plugin with certain test data
./qtcreator -test CppTools,test_completion:template_1
it's now also possible to state the test class in order to execute all
test functions of that class:
# Run all test functions of a certain class:
./qtcreator -test CppTools,SomeClassWithTests
As long as the test class does not start with "test", there should not
be any problems.
Further, an invocation like (1) now additionally execute all test
functions of all test classes. For invocations of type (2), (3) and (4)
all test functions of all test classes are considered, too.
Change-Id: Ief08a6e9e451c599fd0109b8b8e57f92e3ee19f2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
2015-01-15 13:14:35 +01:00
|
|
|
const TestPlan testPlan = testSpec.testFunctionsOrObjects.isEmpty()
|
|
|
|
|
? generateCompleteTestPlan(plugin, testObjects)
|
|
|
|
|
: generateCustomTestPlan(plugin, testObjects, testSpec.testFunctionsOrObjects);
|
2015-01-05 10:26:52 +01:00
|
|
|
|
2015-07-14 10:35:49 +02:00
|
|
|
failedTests += executeTestPlan(testPlan);
|
2015-01-05 10:26:52 +01:00
|
|
|
}
|
2015-07-14 10:35:49 +02:00
|
|
|
|
|
|
|
|
QTimer::singleShot(0, this, [failedTests]() { emit m_instance->testsFinished(failedTests); });
|
2015-01-05 10:26:52 +01:00
|
|
|
}
|
2015-01-16 07:38:59 +01:00
|
|
|
#endif
|
2015-01-05 10:26:52 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
void PluginManagerPrivate::addObject(QObject *obj)
|
|
|
|
|
{
|
|
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
QWriteLocker lock(&m_lock);
|
2018-07-19 23:19:33 +02:00
|
|
|
if (obj == nullptr) {
|
2008-12-02 12:01:29 +01:00
|
|
|
qWarning() << "PluginManagerPrivate::addObject(): trying to add null object";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (allObjects.contains(obj)) {
|
|
|
|
|
qWarning() << "PluginManagerPrivate::addObject(): trying to add duplicate object";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (debugLeaks)
|
|
|
|
|
qDebug() << "PluginManagerPrivate::addObject" << obj << obj->objectName();
|
|
|
|
|
|
2010-05-12 11:12:54 +02:00
|
|
|
if (m_profilingVerbosity && !m_profileTimer.isNull()) {
|
|
|
|
|
// Report a timestamp when adding an object. Useful for profiling
|
|
|
|
|
// its initialization time.
|
2019-07-22 15:29:04 +02:00
|
|
|
const int absoluteElapsedMS = int(m_profileTimer->elapsed());
|
2010-05-12 11:12:54 +02:00
|
|
|
qDebug(" %-43s %8dms", obj->metaObject()->className(), absoluteElapsedMS);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
allObjects.append(obj);
|
|
|
|
|
}
|
|
|
|
|
emit q->objectAdded(obj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
void PluginManagerPrivate::removeObject(QObject *obj)
|
|
|
|
|
{
|
2018-07-19 23:19:33 +02:00
|
|
|
if (obj == nullptr) {
|
2008-12-02 12:01:29 +01:00
|
|
|
qWarning() << "PluginManagerPrivate::removeObject(): trying to remove null object";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!allObjects.contains(obj)) {
|
|
|
|
|
qWarning() << "PluginManagerPrivate::removeObject(): object not in list:"
|
|
|
|
|
<< obj << obj->objectName();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (debugLeaks)
|
|
|
|
|
qDebug() << "PluginManagerPrivate::removeObject" << obj << obj->objectName();
|
|
|
|
|
|
|
|
|
|
emit q->aboutToRemoveObject(obj);
|
2013-08-29 15:00:46 +02:00
|
|
|
QWriteLocker lock(&m_lock);
|
2008-12-02 12:01:29 +01:00
|
|
|
allObjects.removeAll(obj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
void PluginManagerPrivate::loadPlugins()
|
|
|
|
|
{
|
2020-02-14 08:51:08 +01:00
|
|
|
const QVector<PluginSpec *> queue = loadQueue();
|
2017-03-02 12:07:11 +01:00
|
|
|
Utils::setMimeStartupPhase(MimeStartupPhase::PluginsLoading);
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *spec : queue)
|
2008-12-02 12:01:29 +01:00
|
|
|
loadPlugin(spec, PluginSpec::Loaded);
|
2020-02-14 08:51:08 +01:00
|
|
|
|
2017-03-02 12:07:11 +01:00
|
|
|
Utils::setMimeStartupPhase(MimeStartupPhase::PluginsInitializing);
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *spec : queue)
|
2008-12-02 12:01:29 +01:00
|
|
|
loadPlugin(spec, PluginSpec::Initialized);
|
2020-02-14 08:51:08 +01:00
|
|
|
|
2017-03-02 12:07:11 +01:00
|
|
|
Utils::setMimeStartupPhase(MimeStartupPhase::PluginsDelayedInitializing);
|
2016-06-22 16:41:55 +02:00
|
|
|
Utils::reverseForeach(queue, [this](PluginSpec *spec) {
|
2012-02-02 10:47:33 +01:00
|
|
|
loadPlugin(spec, PluginSpec::Running);
|
2015-06-16 15:24:42 +02:00
|
|
|
if (spec->state() == PluginSpec::Running) {
|
2019-05-27 14:12:11 +02:00
|
|
|
delayedInitializeQueue.push(spec);
|
2015-06-16 15:24:42 +02:00
|
|
|
} else {
|
|
|
|
|
// Plugin initialization failed, so cleanup after it
|
|
|
|
|
spec->d->kill();
|
|
|
|
|
}
|
2016-06-22 16:41:55 +02:00
|
|
|
});
|
2008-12-02 12:01:29 +01:00
|
|
|
emit q->pluginsChanged();
|
2017-03-02 12:07:11 +01:00
|
|
|
Utils::setMimeStartupPhase(MimeStartupPhase::UpAndRunning);
|
2012-02-02 10:47:33 +01:00
|
|
|
|
|
|
|
|
delayedInitializeTimer = new QTimer;
|
|
|
|
|
delayedInitializeTimer->setInterval(DELAYED_INITIALIZE_INTERVAL);
|
|
|
|
|
delayedInitializeTimer->setSingleShot(true);
|
2016-05-31 22:36:33 +03:00
|
|
|
connect(delayedInitializeTimer, &QTimer::timeout,
|
|
|
|
|
this, &PluginManagerPrivate::nextDelayedInitialize);
|
2012-02-02 10:47:33 +01:00
|
|
|
delayedInitializeTimer->start();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-07-13 13:36:47 +02:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
void PluginManagerPrivate::shutdown()
|
|
|
|
|
{
|
|
|
|
|
stopAll();
|
|
|
|
|
if (!asynchronousPlugins.isEmpty()) {
|
|
|
|
|
shutdownEventLoop = new QEventLoop;
|
|
|
|
|
shutdownEventLoop->exec();
|
|
|
|
|
}
|
|
|
|
|
deleteAll();
|
2021-04-30 16:52:03 +02:00
|
|
|
#ifdef WITH_TESTS
|
|
|
|
|
if (PluginManager::isScenarioRunning("TestModelManagerInterface")) {
|
|
|
|
|
qDebug() << "Point 2: Expect the next call to Point 3 triggers a crash";
|
|
|
|
|
QThread::currentThread()->sleep(5);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2015-06-16 15:24:42 +02:00
|
|
|
if (!allObjects.isEmpty()) {
|
|
|
|
|
qDebug() << "There are" << allObjects.size() << "objects left in the plugin manager pool.";
|
|
|
|
|
// Intentionally split debug info here, since in case the list contains
|
|
|
|
|
// already deleted object we get at least the info about the number of objects;
|
|
|
|
|
qDebug() << "The following objects left in the plugin manager pool:" << allObjects;
|
|
|
|
|
}
|
2010-07-13 13:36:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
void PluginManagerPrivate::asyncShutdownFinished()
|
|
|
|
|
{
|
2018-07-19 23:19:33 +02:00
|
|
|
auto *plugin = qobject_cast<IPlugin *>(sender());
|
2010-07-13 13:36:47 +02:00
|
|
|
Q_ASSERT(plugin);
|
2019-05-27 14:12:11 +02:00
|
|
|
asynchronousPlugins.remove(plugin->pluginSpec());
|
2010-07-13 13:36:47 +02:00
|
|
|
if (asynchronousPlugins.isEmpty())
|
|
|
|
|
shutdownEventLoop->exit();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
2020-02-14 08:51:08 +01:00
|
|
|
const QVector<PluginSpec *> PluginManagerPrivate::loadQueue()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2019-05-27 14:12:11 +02:00
|
|
|
QVector<PluginSpec *> queue;
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *spec : qAsConst(pluginSpecs)) {
|
2019-05-27 14:12:11 +02:00
|
|
|
QVector<PluginSpec *> circularityCheckQueue;
|
2008-12-02 12:01:29 +01:00
|
|
|
loadQueue(spec, queue, circularityCheckQueue);
|
|
|
|
|
}
|
|
|
|
|
return queue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
2019-05-27 14:12:11 +02:00
|
|
|
bool PluginManagerPrivate::loadQueue(PluginSpec *spec,
|
|
|
|
|
QVector<PluginSpec *> &queue,
|
|
|
|
|
QVector<PluginSpec *> &circularityCheckQueue)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
if (queue.contains(spec))
|
|
|
|
|
return true;
|
|
|
|
|
// check for circular dependencies
|
|
|
|
|
if (circularityCheckQueue.contains(spec)) {
|
|
|
|
|
spec->d->hasError = true;
|
2013-10-17 13:48:04 +02:00
|
|
|
spec->d->errorString = PluginManager::tr("Circular dependency detected:");
|
|
|
|
|
spec->d->errorString += QLatin1Char('\n');
|
2008-12-02 12:01:29 +01:00
|
|
|
int index = circularityCheckQueue.indexOf(spec);
|
|
|
|
|
for (int i = index; i < circularityCheckQueue.size(); ++i) {
|
2017-09-13 17:32:46 +02:00
|
|
|
spec->d->errorString.append(PluginManager::tr("%1 (%2) depends on")
|
2008-12-02 12:01:29 +01:00
|
|
|
.arg(circularityCheckQueue.at(i)->name()).arg(circularityCheckQueue.at(i)->version()));
|
2013-10-17 13:48:04 +02:00
|
|
|
spec->d->errorString += QLatin1Char('\n');
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2017-09-13 17:32:46 +02:00
|
|
|
spec->d->errorString.append(PluginManager::tr("%1 (%2)").arg(spec->name()).arg(spec->version()));
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
circularityCheckQueue.append(spec);
|
|
|
|
|
// check if we have the dependencies
|
|
|
|
|
if (spec->state() == PluginSpec::Invalid || spec->state() == PluginSpec::Read) {
|
2010-05-19 16:29:47 +02:00
|
|
|
queue.append(spec);
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
2010-05-19 16:29:47 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
// add dependencies
|
2019-07-24 13:43:54 +02:00
|
|
|
const QHash<PluginDependency, PluginSpec *> deps = spec->dependencySpecs();
|
|
|
|
|
for (auto it = deps.cbegin(), end = deps.cend(); it != end; ++it) {
|
2015-03-04 09:25:08 +02:00
|
|
|
// Skip test dependencies since they are not real dependencies but just force-loaded
|
|
|
|
|
// plugins when running tests
|
|
|
|
|
if (it.key().type == PluginDependency::Test)
|
|
|
|
|
continue;
|
|
|
|
|
PluginSpec *depSpec = it.value();
|
2008-12-02 12:01:29 +01:00
|
|
|
if (!loadQueue(depSpec, queue, circularityCheckQueue)) {
|
|
|
|
|
spec->d->hasError = true;
|
|
|
|
|
spec->d->errorString =
|
2017-09-13 17:32:46 +02:00
|
|
|
PluginManager::tr("Cannot load plugin because dependency failed to load: %1 (%2)\nReason: %3")
|
2008-12-02 12:01:29 +01:00
|
|
|
.arg(depSpec->name()).arg(depSpec->version()).arg(depSpec->errorString());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// add self
|
|
|
|
|
queue.append(spec);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-13 16:12:28 +01:00
|
|
|
class LockFile
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static QString filePath(PluginManagerPrivate *pm)
|
|
|
|
|
{
|
|
|
|
|
return QFileInfo(pm->settings->fileName()).absolutePath() + '/'
|
|
|
|
|
+ QCoreApplication::applicationName() + '.'
|
|
|
|
|
+ QCryptographicHash::hash(QCoreApplication::applicationDirPath().toUtf8(),
|
|
|
|
|
QCryptographicHash::Sha1)
|
|
|
|
|
.left(8)
|
|
|
|
|
.toHex()
|
|
|
|
|
+ ".lock";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Utils::optional<QString> lockedPluginName(PluginManagerPrivate *pm)
|
|
|
|
|
{
|
|
|
|
|
const QString lockFilePath = LockFile::filePath(pm);
|
|
|
|
|
if (QFile::exists(lockFilePath)) {
|
|
|
|
|
QFile f(lockFilePath);
|
2020-01-21 11:16:38 +01:00
|
|
|
if (f.open(QIODevice::ReadOnly)) {
|
|
|
|
|
const auto pluginName = QString::fromUtf8(f.readLine()).trimmed();
|
|
|
|
|
f.close();
|
|
|
|
|
return pluginName;
|
|
|
|
|
} else {
|
|
|
|
|
qCDebug(pluginLog) << "Lock file" << lockFilePath << "exists but is not readable";
|
|
|
|
|
}
|
2020-01-13 16:12:28 +01:00
|
|
|
}
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LockFile(PluginManagerPrivate *pm, PluginSpec *spec)
|
|
|
|
|
: m_filePath(filePath(pm))
|
|
|
|
|
{
|
2020-01-21 11:16:38 +01:00
|
|
|
QDir().mkpath(QFileInfo(m_filePath).absolutePath());
|
2020-01-13 16:12:28 +01:00
|
|
|
QFile f(m_filePath);
|
2020-01-21 11:16:38 +01:00
|
|
|
if (f.open(QIODevice::WriteOnly)) {
|
|
|
|
|
f.write(spec->name().toUtf8());
|
|
|
|
|
f.write("\n");
|
|
|
|
|
f.close();
|
|
|
|
|
} else {
|
|
|
|
|
qCDebug(pluginLog) << "Cannot write lock file" << m_filePath;
|
|
|
|
|
}
|
2020-01-13 16:12:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~LockFile() { QFile::remove(m_filePath); }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QString m_filePath;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void PluginManagerPrivate::checkForProblematicPlugins()
|
|
|
|
|
{
|
2020-08-12 14:11:28 +02:00
|
|
|
if (!enableCrashCheck)
|
|
|
|
|
return;
|
2020-01-13 16:12:28 +01:00
|
|
|
const Utils::optional<QString> pluginName = LockFile::lockedPluginName(this);
|
|
|
|
|
if (pluginName) {
|
|
|
|
|
PluginSpec *spec = pluginByName(*pluginName);
|
|
|
|
|
if (spec && !spec->isRequired()) {
|
|
|
|
|
const QSet<PluginSpec *> dependents = PluginManager::pluginsRequiringPlugin(spec);
|
|
|
|
|
auto dependentsNames = Utils::transform<QStringList>(dependents, &PluginSpec::name);
|
|
|
|
|
std::sort(dependentsNames.begin(), dependentsNames.end());
|
|
|
|
|
const QString dependentsList = dependentsNames.join(", ");
|
|
|
|
|
const QString pluginsMenu = HostOsInfo::isMacHost()
|
|
|
|
|
? tr("%1 > About Plugins")
|
|
|
|
|
.arg(QGuiApplication::applicationDisplayName())
|
|
|
|
|
: tr("Help > About Plugins");
|
2022-03-28 09:26:31 +02:00
|
|
|
const QString otherPluginsText
|
|
|
|
|
= tr("If you temporarily disable %1, the following plugins that depend on "
|
|
|
|
|
"it are also disabled: %2.\n\n")
|
|
|
|
|
.arg(spec->name(), dependentsList);
|
2020-01-13 16:12:28 +01:00
|
|
|
const QString detailsText = (dependents.isEmpty() ? QString() : otherPluginsText)
|
|
|
|
|
+ tr("Disable plugins permanently in %1.").arg(pluginsMenu);
|
2022-03-28 09:26:31 +02:00
|
|
|
const QString text = tr("The last time you started %1, it seems to have closed because "
|
|
|
|
|
"of a problem with the \"%2\" "
|
2020-01-13 16:12:28 +01:00
|
|
|
"plugin. Temporarily disable the plugin?")
|
|
|
|
|
.arg(QGuiApplication::applicationDisplayName(), spec->name());
|
|
|
|
|
QMessageBox dialog;
|
|
|
|
|
dialog.setIcon(QMessageBox::Question);
|
|
|
|
|
dialog.setText(text);
|
|
|
|
|
dialog.setDetailedText(detailsText);
|
|
|
|
|
QPushButton *disableButton = dialog.addButton(tr("Disable Plugin"),
|
|
|
|
|
QMessageBox::AcceptRole);
|
|
|
|
|
dialog.addButton(tr("Continue"), QMessageBox::RejectRole);
|
|
|
|
|
dialog.exec();
|
|
|
|
|
if (dialog.clickedButton() == disableButton) {
|
|
|
|
|
spec->d->setForceDisabled(true);
|
|
|
|
|
for (PluginSpec *other : dependents)
|
|
|
|
|
other->d->setForceDisabled(true);
|
|
|
|
|
enableDependenciesIndirectly();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PluginManager::checkForProblematicPlugins()
|
|
|
|
|
{
|
|
|
|
|
d->checkForProblematicPlugins();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
void PluginManagerPrivate::loadPlugin(PluginSpec *spec, PluginSpec::State destState)
|
|
|
|
|
{
|
2010-05-19 16:29:47 +02:00
|
|
|
if (spec->hasError() || spec->state() != destState-1)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// don't load disabled plugins.
|
2013-02-12 13:19:15 +01:00
|
|
|
if (!spec->isEffectivelyEnabled() && destState == PluginSpec::Loaded)
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
2010-03-12 16:02:23 +01:00
|
|
|
|
2020-08-12 14:11:28 +02:00
|
|
|
std::unique_ptr<LockFile> lockFile;
|
2021-03-01 14:57:56 +01:00
|
|
|
if (enableCrashCheck && destState < PluginSpec::Stopped)
|
2020-08-12 14:11:28 +02:00
|
|
|
lockFile.reset(new LockFile(this, spec));
|
2020-01-13 16:12:28 +01:00
|
|
|
|
2010-03-02 12:33:51 +01:00
|
|
|
switch (destState) {
|
|
|
|
|
case PluginSpec::Running:
|
|
|
|
|
profilingReport(">initializeExtensions", spec);
|
2008-12-02 12:01:29 +01:00
|
|
|
spec->d->initializeExtensions();
|
2010-03-02 12:33:51 +01:00
|
|
|
profilingReport("<initializeExtensions", spec);
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
2010-03-02 12:33:51 +01:00
|
|
|
case PluginSpec::Deleted:
|
2010-07-13 13:36:47 +02:00
|
|
|
profilingReport(">delete", spec);
|
2008-12-02 12:01:29 +01:00
|
|
|
spec->d->kill();
|
2010-07-13 13:36:47 +02:00
|
|
|
profilingReport("<delete", spec);
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
2010-03-02 12:33:51 +01:00
|
|
|
default:
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2011-01-11 14:01:08 +01:00
|
|
|
// check if dependencies have loaded without error
|
2019-07-24 13:43:54 +02:00
|
|
|
const QHash<PluginDependency, PluginSpec *> deps = spec->dependencySpecs();
|
|
|
|
|
for (auto it = deps.cbegin(), end = deps.cend(); it != end; ++it) {
|
2015-03-04 09:25:08 +02:00
|
|
|
if (it.key().type != PluginDependency::Required)
|
2011-01-11 14:01:08 +01:00
|
|
|
continue;
|
|
|
|
|
PluginSpec *depSpec = it.value();
|
2008-12-02 12:01:29 +01:00
|
|
|
if (depSpec->state() != destState) {
|
|
|
|
|
spec->d->hasError = true;
|
|
|
|
|
spec->d->errorString =
|
2009-02-27 20:06:08 +01:00
|
|
|
PluginManager::tr("Cannot load plugin because dependency failed to load: %1(%2)\nReason: %3")
|
2008-12-02 12:01:29 +01:00
|
|
|
.arg(depSpec->name()).arg(depSpec->version()).arg(depSpec->errorString());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-03-02 12:33:51 +01:00
|
|
|
switch (destState) {
|
|
|
|
|
case PluginSpec::Loaded:
|
|
|
|
|
profilingReport(">loadLibrary", spec);
|
2008-12-02 12:01:29 +01:00
|
|
|
spec->d->loadLibrary();
|
2010-03-02 12:33:51 +01:00
|
|
|
profilingReport("<loadLibrary", spec);
|
|
|
|
|
break;
|
|
|
|
|
case PluginSpec::Initialized:
|
|
|
|
|
profilingReport(">initializePlugin", spec);
|
2008-12-02 12:01:29 +01:00
|
|
|
spec->d->initializePlugin();
|
2010-03-02 12:33:51 +01:00
|
|
|
profilingReport("<initializePlugin", spec);
|
|
|
|
|
break;
|
|
|
|
|
case PluginSpec::Stopped:
|
|
|
|
|
profilingReport(">stop", spec);
|
2010-07-13 13:36:47 +02:00
|
|
|
if (spec->d->stop() == IPlugin::AsynchronousShutdown) {
|
|
|
|
|
asynchronousPlugins << spec;
|
2016-05-31 22:36:33 +03:00
|
|
|
connect(spec->plugin(), &IPlugin::asynchronousShutdownFinished,
|
|
|
|
|
this, &PluginManagerPrivate::asyncShutdownFinished);
|
2010-07-13 13:36:47 +02:00
|
|
|
}
|
2010-03-02 12:33:51 +01:00
|
|
|
profilingReport("<stop", spec);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
void PluginManagerPrivate::setPluginPaths(const QStringList &paths)
|
|
|
|
|
{
|
2014-08-26 17:29:38 +02:00
|
|
|
qCDebug(pluginLog) << "Plugin search paths:" << paths;
|
|
|
|
|
qCDebug(pluginLog) << "Required IID:" << pluginIID;
|
2008-12-02 12:01:29 +01:00
|
|
|
pluginPaths = paths;
|
2010-10-25 16:57:58 +02:00
|
|
|
readSettings();
|
2008-12-02 12:01:29 +01:00
|
|
|
readPluginPaths();
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-14 08:51:08 +01:00
|
|
|
static const QStringList pluginFiles(const QStringList &pluginPaths)
|
2016-06-22 16:41:55 +02:00
|
|
|
{
|
|
|
|
|
QStringList pluginFiles;
|
|
|
|
|
QStringList searchPaths = pluginPaths;
|
|
|
|
|
while (!searchPaths.isEmpty()) {
|
|
|
|
|
const QDir dir(searchPaths.takeFirst());
|
|
|
|
|
const QFileInfoList files = dir.entryInfoList(QDir::Files | QDir::NoSymLinks);
|
|
|
|
|
const QStringList absoluteFilePaths = Utils::transform(files, &QFileInfo::absoluteFilePath);
|
|
|
|
|
pluginFiles += Utils::filtered(absoluteFilePaths, [](const QString &path) { return QLibrary::isLibrary(path); });
|
|
|
|
|
const QFileInfoList dirs = dir.entryInfoList(QDir::Dirs|QDir::NoDotAndDotDot);
|
|
|
|
|
searchPaths += Utils::transform(dirs, &QFileInfo::absoluteFilePath);
|
|
|
|
|
}
|
|
|
|
|
return pluginFiles;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
void PluginManagerPrivate::readPluginPaths()
|
|
|
|
|
{
|
|
|
|
|
qDeleteAll(pluginSpecs);
|
|
|
|
|
pluginSpecs.clear();
|
2010-03-12 16:02:23 +01:00
|
|
|
pluginCategories.clear();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2016-08-19 16:49:23 +02:00
|
|
|
// default
|
2019-05-27 14:12:11 +02:00
|
|
|
pluginCategories.insert(QString(), QVector<PluginSpec *>());
|
2010-03-12 16:02:23 +01:00
|
|
|
|
2022-04-27 16:19:10 +02:00
|
|
|
// from the file system
|
2020-02-14 08:51:08 +01:00
|
|
|
for (const QString &pluginFile : pluginFiles(pluginPaths)) {
|
2020-06-23 14:11:29 +02:00
|
|
|
PluginSpec *spec = PluginSpec::read(pluginFile);
|
2022-04-27 16:19:10 +02:00
|
|
|
if (spec) // Qt Creator plugin
|
|
|
|
|
pluginSpecs.append(spec);
|
|
|
|
|
}
|
|
|
|
|
// static
|
|
|
|
|
for (const QStaticPlugin &plugin : QPluginLoader::staticPlugins()) {
|
|
|
|
|
PluginSpec *spec = PluginSpec::read(plugin);
|
|
|
|
|
if (spec) // Qt Creator plugin
|
|
|
|
|
pluginSpecs.append(spec);
|
|
|
|
|
}
|
2010-03-12 16:02:23 +01:00
|
|
|
|
2022-04-27 16:19:10 +02:00
|
|
|
for (PluginSpec *spec : pluginSpecs) {
|
2013-11-14 15:57:37 +01:00
|
|
|
// defaultDisabledPlugins and defaultEnabledPlugins from install settings
|
|
|
|
|
// is used to override the defaults read from the plugin spec
|
2015-03-31 09:55:50 +02:00
|
|
|
if (spec->isEnabledByDefault() && defaultDisabledPlugins.contains(spec->name())) {
|
|
|
|
|
spec->d->setEnabledByDefault(false);
|
|
|
|
|
spec->d->setEnabledBySettings(false);
|
|
|
|
|
} else if (!spec->isEnabledByDefault() && defaultEnabledPlugins.contains(spec->name())) {
|
|
|
|
|
spec->d->setEnabledByDefault(true);
|
|
|
|
|
spec->d->setEnabledBySettings(true);
|
2011-10-26 14:46:29 +02:00
|
|
|
}
|
2015-03-31 09:55:50 +02:00
|
|
|
if (!spec->isEnabledByDefault() && forceEnabledPlugins.contains(spec->name()))
|
|
|
|
|
spec->d->setEnabledBySettings(true);
|
|
|
|
|
if (spec->isEnabledByDefault() && disabledPlugins.contains(spec->name()))
|
|
|
|
|
spec->d->setEnabledBySettings(false);
|
2010-03-12 16:02:23 +01:00
|
|
|
|
2016-08-19 16:49:23 +02:00
|
|
|
pluginCategories[spec->category()].append(spec);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
resolveDependencies();
|
2017-08-16 13:50:24 +02:00
|
|
|
enableDependenciesIndirectly();
|
2008-12-11 11:26:42 +01:00
|
|
|
// ensure deterministic plugin load order by sorting
|
2016-08-03 23:29:58 +03:00
|
|
|
Utils::sort(pluginSpecs, &PluginSpec::name);
|
2008-12-02 12:01:29 +01:00
|
|
|
emit q->pluginsChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PluginManagerPrivate::resolveDependencies()
|
|
|
|
|
{
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *spec : qAsConst(pluginSpecs))
|
2008-12-02 12:01:29 +01:00
|
|
|
spec->d->resolveDependencies(pluginSpecs);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-16 13:50:24 +02:00
|
|
|
void PluginManagerPrivate::enableDependenciesIndirectly()
|
2015-03-04 09:25:08 +02:00
|
|
|
{
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *spec : qAsConst(pluginSpecs))
|
2017-08-16 13:50:24 +02:00
|
|
|
spec->d->enabledIndirectly = false;
|
|
|
|
|
// cannot use reverse loadQueue here, because test dependencies can introduce circles
|
2019-05-27 14:12:11 +02:00
|
|
|
QVector<PluginSpec *> queue = Utils::filtered(pluginSpecs, &PluginSpec::isEffectivelyEnabled);
|
2017-08-16 13:50:24 +02:00
|
|
|
while (!queue.isEmpty()) {
|
|
|
|
|
PluginSpec *spec = queue.takeFirst();
|
|
|
|
|
queue += spec->d->enableDependenciesIndirectly(containsTestSpec(spec));
|
2015-03-04 09:25:08 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-22 16:41:55 +02:00
|
|
|
// Look in argument descriptions of the specs for the option.
|
2008-12-02 12:01:29 +01:00
|
|
|
PluginSpec *PluginManagerPrivate::pluginForOption(const QString &option, bool *requiresArgument) const
|
|
|
|
|
{
|
|
|
|
|
// Look in the plugins for an option
|
|
|
|
|
*requiresArgument = false;
|
2020-02-14 08:51:08 +01:00
|
|
|
for (PluginSpec *spec : qAsConst(pluginSpecs)) {
|
2016-06-22 16:41:55 +02:00
|
|
|
PluginArgumentDescription match = Utils::findOrDefault(spec->argumentDescriptions(),
|
|
|
|
|
[option](PluginArgumentDescription pad) {
|
|
|
|
|
return pad.name == option;
|
|
|
|
|
});
|
|
|
|
|
if (!match.name.isEmpty()) {
|
|
|
|
|
*requiresArgument = !match.parameter.isEmpty();
|
|
|
|
|
return spec;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
2018-07-19 23:19:33 +02:00
|
|
|
return nullptr;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PluginSpec *PluginManagerPrivate::pluginByName(const QString &name) const
|
|
|
|
|
{
|
2016-06-22 16:41:55 +02:00
|
|
|
return Utils::findOrDefault(pluginSpecs, [name](PluginSpec *spec) { return spec->name() == name; });
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-02 12:33:51 +01:00
|
|
|
void PluginManagerPrivate::initProfiling()
|
|
|
|
|
{
|
|
|
|
|
if (m_profileTimer.isNull()) {
|
2019-07-22 15:29:04 +02:00
|
|
|
m_profileTimer.reset(new QElapsedTimer);
|
2010-03-02 12:33:51 +01:00
|
|
|
m_profileTimer->start();
|
|
|
|
|
m_profileElapsedMS = 0;
|
|
|
|
|
qDebug("Profiling started");
|
2010-05-12 11:12:54 +02:00
|
|
|
} else {
|
|
|
|
|
m_profilingVerbosity++;
|
2010-03-02 12:33:51 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PluginManagerPrivate::profilingReport(const char *what, const PluginSpec *spec /* = 0 */)
|
|
|
|
|
{
|
|
|
|
|
if (!m_profileTimer.isNull()) {
|
2019-07-22 15:29:04 +02:00
|
|
|
const int absoluteElapsedMS = int(m_profileTimer->elapsed());
|
2010-03-02 12:33:51 +01:00
|
|
|
const int elapsedMS = absoluteElapsedMS - m_profileElapsedMS;
|
|
|
|
|
m_profileElapsedMS = absoluteElapsedMS;
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
if (spec)
|
2010-03-02 12:33:51 +01:00
|
|
|
qDebug("%-22s %-22s %8dms (%8dms)", what, qPrintable(spec->name()), absoluteElapsedMS, elapsedMS);
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
else
|
2010-05-12 11:12:54 +02:00
|
|
|
qDebug("%-45s %8dms (%8dms)", what, absoluteElapsedMS, elapsedMS);
|
2017-09-06 16:18:29 +02:00
|
|
|
if (what && *what == '<') {
|
|
|
|
|
QString tc;
|
2018-09-28 10:25:34 +02:00
|
|
|
if (spec) {
|
|
|
|
|
m_profileTotal[spec] += elapsedMS;
|
2017-09-06 16:18:29 +02:00
|
|
|
tc = spec->name() + '_';
|
2018-09-28 10:25:34 +02:00
|
|
|
}
|
2017-09-06 16:18:29 +02:00
|
|
|
tc += QString::fromUtf8(QByteArray(what + 1));
|
|
|
|
|
Utils::Benchmarker::report("loadPlugins", tc, elapsedMS);
|
|
|
|
|
}
|
2010-03-02 12:33:51 +01:00
|
|
|
}
|
|
|
|
|
}
|
2011-01-05 18:35:08 +01:00
|
|
|
|
2013-02-06 13:53:51 +01:00
|
|
|
void PluginManagerPrivate::profilingSummary() const
|
|
|
|
|
{
|
|
|
|
|
if (!m_profileTimer.isNull()) {
|
2016-06-22 16:41:55 +02:00
|
|
|
QMultiMap<int, const PluginSpec *> sorter;
|
2013-02-12 16:43:02 +01:00
|
|
|
int total = 0;
|
2013-02-06 13:53:51 +01:00
|
|
|
|
2016-06-22 16:41:55 +02:00
|
|
|
auto totalEnd = m_profileTotal.constEnd();
|
|
|
|
|
for (auto it = m_profileTotal.constBegin(); it != totalEnd; ++it) {
|
|
|
|
|
sorter.insert(it.value(), it.key());
|
|
|
|
|
total += it.value();
|
2013-02-12 16:43:02 +01:00
|
|
|
}
|
2013-02-06 13:53:51 +01:00
|
|
|
|
2016-06-22 16:41:55 +02:00
|
|
|
auto sorterEnd = sorter.constEnd();
|
|
|
|
|
for (auto it = sorter.constBegin(); it != sorterEnd; ++it)
|
|
|
|
|
qDebug("%-22s %8dms ( %5.2f%% )", qPrintable(it.value()->name()),
|
|
|
|
|
it.key(), 100.0 * it.key() / total);
|
2013-02-12 16:43:02 +01:00
|
|
|
qDebug("Total: %8dms", total);
|
2017-09-06 16:18:29 +02:00
|
|
|
Utils::Benchmarker::report("loadPlugins", "Total", total);
|
2013-02-06 13:53:51 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-28 16:29:08 +02:00
|
|
|
static inline QString getPlatformName()
|
|
|
|
|
{
|
2018-09-21 01:35:58 +03:00
|
|
|
if (HostOsInfo::isMacHost())
|
|
|
|
|
return QLatin1String("OS X");
|
|
|
|
|
else if (HostOsInfo::isAnyUnixHost())
|
|
|
|
|
return QLatin1String(HostOsInfo::isLinuxHost() ? "Linux" : "Unix");
|
|
|
|
|
else if (HostOsInfo::isWindowsHost())
|
|
|
|
|
return QLatin1String("Windows");
|
2013-08-28 16:29:08 +02:00
|
|
|
return QLatin1String("Unknown");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString PluginManager::platformName()
|
|
|
|
|
{
|
2018-09-21 01:35:58 +03:00
|
|
|
static const QString result = getPlatformName() + " (" + QSysInfo::prettyProductName() + ')';
|
2013-08-28 16:29:08 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-02 15:39:52 +02:00
|
|
|
bool PluginManager::isInitializationDone()
|
|
|
|
|
{
|
|
|
|
|
return d->m_isInitializationDone;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-05 18:35:08 +01:00
|
|
|
/*!
|
2013-09-06 11:46:55 +02:00
|
|
|
Retrieves one object with \a name from the object pool.
|
2011-01-05 18:35:08 +01:00
|
|
|
\sa addObject()
|
|
|
|
|
*/
|
|
|
|
|
|
2012-06-18 11:34:15 +02:00
|
|
|
QObject *PluginManager::getObjectByName(const QString &name)
|
2011-01-05 18:35:08 +01:00
|
|
|
{
|
2013-08-29 15:00:46 +02:00
|
|
|
QReadLocker lock(&d->m_lock);
|
2016-06-22 16:41:55 +02:00
|
|
|
return Utils::findOrDefault(allObjects(), [&name](const QObject *obj) {
|
|
|
|
|
return obj->objectName() == name;
|
|
|
|
|
});
|
2011-01-05 18:35:08 +01:00
|
|
|
}
|
|
|
|
|
|
2017-01-11 10:48:29 +01:00
|
|
|
} // ExtensionSystem
|