2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-03-25 09:25:17 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-03-25 09:25:17 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-03-25 09:25:17 +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:57:40 +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.
|
2011-03-25 09:25:17 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +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.
|
2011-03-25 09:25:17 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-03-25 09:25:17 +01:00
|
|
|
|
2015-07-01 18:11:54 +02:00
|
|
|
#include "qmlprofilerruncontrol.h"
|
2011-03-11 12:22:57 +01:00
|
|
|
|
2011-06-28 15:51:20 +02:00
|
|
|
#include "localqmlprofilerrunner.h"
|
2016-01-19 17:25:18 +01:00
|
|
|
#include "qmlprofilertool.h"
|
2011-03-11 12:22:57 +01:00
|
|
|
|
2016-02-24 14:42:52 +01:00
|
|
|
#include <debugger/analyzer/analyzermanager.h>
|
|
|
|
#include <debugger/analyzer/analyzerstartparameters.h>
|
2016-01-28 18:24:08 +01:00
|
|
|
|
2011-06-09 14:30:15 +02:00
|
|
|
#include <coreplugin/icore.h>
|
2011-05-04 16:50:24 +02:00
|
|
|
#include <utils/qtcassert.h>
|
2011-06-28 15:51:20 +02:00
|
|
|
#include <coreplugin/helpmanager.h>
|
2013-04-17 11:10:45 +02:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
|
|
#include <projectexplorer/target.h>
|
2013-01-29 18:00:30 +01:00
|
|
|
#include <projectexplorer/environmentaspect.h>
|
2011-07-05 12:14:41 +02:00
|
|
|
#include <projectexplorer/localapplicationruncontrol.h>
|
2016-01-25 15:00:20 +01:00
|
|
|
#include <projectexplorer/runnables.h>
|
2013-10-15 16:46:35 +02:00
|
|
|
#include <qtsupport/qtsupportconstants.h>
|
2012-04-18 12:06:10 +02:00
|
|
|
#include <qmldebug/qmloutputparser.h>
|
2011-05-04 16:50:24 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QTimer>
|
2013-04-17 17:58:27 +02:00
|
|
|
#include <QTcpServer>
|
2013-10-15 16:46:35 +02:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QPushButton>
|
2011-03-11 12:22:57 +01:00
|
|
|
|
2016-03-02 13:57:37 +01:00
|
|
|
using namespace Debugger;
|
2013-08-29 19:00:34 +02:00
|
|
|
using namespace Core;
|
2011-07-05 12:14:41 +02:00
|
|
|
using namespace ProjectExplorer;
|
2011-06-30 13:44:22 +02:00
|
|
|
|
2011-05-20 13:36:16 +02:00
|
|
|
namespace QmlProfiler {
|
2011-05-04 16:50:24 +02:00
|
|
|
|
|
|
|
//
|
2015-07-01 18:11:54 +02:00
|
|
|
// QmlProfilerRunControlPrivate
|
2011-05-04 16:50:24 +02:00
|
|
|
//
|
|
|
|
|
2015-07-01 18:11:54 +02:00
|
|
|
class QmlProfilerRunControl::QmlProfilerRunControlPrivate
|
2011-05-20 13:36:16 +02:00
|
|
|
{
|
|
|
|
public:
|
2016-01-19 17:25:18 +01:00
|
|
|
Internal::QmlProfilerTool *m_tool = 0;
|
2016-01-06 11:40:52 +01:00
|
|
|
QmlProfilerStateManager *m_profilerState = 0;
|
2011-07-28 10:38:39 +02:00
|
|
|
QTimer m_noDebugOutputTimer;
|
2012-04-18 12:06:10 +02:00
|
|
|
QmlDebug::QmlOutputParser m_outputParser;
|
2016-01-06 11:40:52 +01:00
|
|
|
bool m_running = false;
|
2011-05-20 13:36:16 +02:00
|
|
|
};
|
|
|
|
|
2011-05-04 16:50:24 +02:00
|
|
|
//
|
2015-07-01 18:11:54 +02:00
|
|
|
// QmlProfilerRunControl
|
2011-05-04 16:50:24 +02:00
|
|
|
//
|
|
|
|
|
2016-01-19 17:25:18 +01:00
|
|
|
QmlProfilerRunControl::QmlProfilerRunControl(RunConfiguration *runConfiguration,
|
|
|
|
Internal::QmlProfilerTool *tool)
|
2016-01-19 09:13:57 +01:00
|
|
|
: AnalyzerRunControl(runConfiguration, ProjectExplorer::Constants::QML_PROFILER_RUN_MODE)
|
2016-01-06 11:40:52 +01:00
|
|
|
, d(new QmlProfilerRunControlPrivate)
|
2011-03-11 12:22:57 +01:00
|
|
|
{
|
2016-01-19 17:25:18 +01:00
|
|
|
d->m_tool = tool;
|
2013-08-08 13:28:08 +02:00
|
|
|
// Only wait 4 seconds for the 'Waiting for connection' on application output, then just try to connect
|
2011-07-28 10:38:39 +02:00
|
|
|
// (application output might be redirected / blocked)
|
|
|
|
d->m_noDebugOutputTimer.setSingleShot(true);
|
|
|
|
d->m_noDebugOutputTimer.setInterval(4000);
|
2015-10-30 12:35:17 +01:00
|
|
|
connect(&d->m_noDebugOutputTimer, &QTimer::timeout,
|
|
|
|
this, [this](){processIsRunning(0);});
|
2011-10-31 16:42:31 +01:00
|
|
|
|
|
|
|
d->m_outputParser.setNoOutputText(ApplicationLauncher::msgWinCannotRetrieveDebuggingOutput());
|
2015-10-30 12:35:17 +01:00
|
|
|
connect(&d->m_outputParser, &QmlDebug::QmlOutputParser::waitingForConnectionOnPort,
|
|
|
|
this, &QmlProfilerRunControl::processIsRunning);
|
|
|
|
connect(&d->m_outputParser, &QmlDebug::QmlOutputParser::noOutputMessage,
|
|
|
|
this, [this](){processIsRunning(0);});
|
2015-11-17 16:42:21 +01:00
|
|
|
connect(&d->m_outputParser, &QmlDebug::QmlOutputParser::connectingToSocketMessage,
|
|
|
|
this, [this](){processIsRunning(0);});
|
2015-10-30 12:35:17 +01:00
|
|
|
connect(&d->m_outputParser, &QmlDebug::QmlOutputParser::errorMessage,
|
|
|
|
this, &QmlProfilerRunControl::wrongSetupMessageBox);
|
2011-03-11 12:22:57 +01:00
|
|
|
}
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
QmlProfilerRunControl::~QmlProfilerRunControl()
|
2011-03-11 12:22:57 +01:00
|
|
|
{
|
2015-09-11 16:10:58 +02:00
|
|
|
if (d->m_profilerState)
|
2016-03-02 13:57:37 +01:00
|
|
|
stop();
|
2011-03-11 12:22:57 +01:00
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
2016-03-02 13:57:37 +01:00
|
|
|
void QmlProfilerRunControl::start()
|
2011-03-11 12:22:57 +01:00
|
|
|
{
|
2016-01-20 18:45:02 +01:00
|
|
|
d->m_tool->finalizeRunControl(this);
|
2016-03-02 13:57:37 +01:00
|
|
|
QTC_ASSERT(d->m_profilerState, finished(); return);
|
2012-02-24 10:47:17 +01:00
|
|
|
|
2016-03-02 13:57:37 +01:00
|
|
|
QTC_ASSERT(connection().is<AnalyzerConnection>(), finished(); return);
|
2016-01-28 18:24:08 +01:00
|
|
|
auto conn = connection().as<AnalyzerConnection>();
|
|
|
|
|
|
|
|
if (conn.analyzerPort != 0)
|
|
|
|
emit processRunning(conn.analyzerPort);
|
|
|
|
else if (conn.analyzerSocket.isEmpty())
|
2015-06-15 18:35:49 +02:00
|
|
|
d->m_noDebugOutputTimer.start();
|
2011-05-04 16:50:24 +02:00
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
d->m_profilerState->setCurrentState(QmlProfilerStateManager::AppRunning);
|
2016-03-02 13:57:37 +01:00
|
|
|
d->m_running = true;
|
2016-01-20 23:48:30 +01:00
|
|
|
emit starting();
|
2011-03-11 12:22:57 +01:00
|
|
|
}
|
|
|
|
|
2016-03-02 13:57:37 +01:00
|
|
|
RunControl::StopResult QmlProfilerRunControl::stop()
|
2011-03-11 12:22:57 +01:00
|
|
|
{
|
2016-03-02 13:57:37 +01:00
|
|
|
d->m_running = false;
|
|
|
|
QTC_ASSERT(d->m_profilerState, return RunControl::StoppedSynchronously);
|
2012-02-24 10:47:17 +01:00
|
|
|
|
|
|
|
switch (d->m_profilerState->currentState()) {
|
2015-10-20 12:48:26 +02:00
|
|
|
case QmlProfilerStateManager::AppRunning:
|
2012-02-24 10:47:17 +01:00
|
|
|
d->m_profilerState->setCurrentState(QmlProfilerStateManager::AppStopRequested);
|
|
|
|
break;
|
2015-10-20 12:48:26 +02:00
|
|
|
case QmlProfilerStateManager::AppStopRequested:
|
|
|
|
// Pressed "stop" a second time. Kill the application without collecting data
|
|
|
|
d->m_profilerState->setCurrentState(QmlProfilerStateManager::Idle);
|
|
|
|
break;
|
2015-09-11 16:10:58 +02:00
|
|
|
case QmlProfilerStateManager::Idle:
|
|
|
|
case QmlProfilerStateManager::AppDying:
|
2012-05-08 15:14:11 +02:00
|
|
|
// valid, but no further action is needed
|
2012-02-24 10:47:17 +01:00
|
|
|
break;
|
2012-07-27 15:43:00 +02:00
|
|
|
default: {
|
|
|
|
const QString message = QString::fromLatin1("Unexpected engine stop from state %1 in %2:%3")
|
|
|
|
.arg(d->m_profilerState->currentStateAsString(), QString::fromLatin1(__FILE__), QString::number(__LINE__));
|
|
|
|
qWarning("%s", qPrintable(message));
|
|
|
|
}
|
2012-02-24 10:47:17 +01:00
|
|
|
break;
|
2011-05-04 16:50:24 +02:00
|
|
|
}
|
2016-03-02 13:57:37 +01:00
|
|
|
|
|
|
|
return RunControl::StoppedSynchronously;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlProfilerRunControl::isRunning() const
|
|
|
|
{
|
|
|
|
return d->m_running;
|
2011-03-11 12:22:57 +01:00
|
|
|
}
|
|
|
|
|
2014-03-18 13:00:21 +01:00
|
|
|
void QmlProfilerRunControl::notifyRemoteFinished()
|
2011-03-24 12:42:15 +01:00
|
|
|
{
|
2012-02-24 10:47:17 +01:00
|
|
|
QTC_ASSERT(d->m_profilerState, return);
|
2011-07-13 14:47:34 +02:00
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
switch (d->m_profilerState->currentState()) {
|
2015-09-11 16:10:58 +02:00
|
|
|
case QmlProfilerStateManager::AppRunning:
|
2014-03-18 13:00:21 +01:00
|
|
|
d->m_profilerState->setCurrentState(QmlProfilerStateManager::AppDying);
|
2015-09-11 16:10:58 +02:00
|
|
|
emit finished();
|
2012-02-24 10:47:17 +01:00
|
|
|
break;
|
2015-09-11 16:10:58 +02:00
|
|
|
case QmlProfilerStateManager::Idle:
|
2012-02-24 10:47:17 +01:00
|
|
|
break;
|
2015-09-11 16:10:58 +02:00
|
|
|
default:
|
2012-07-27 15:43:00 +02:00
|
|
|
const QString message = QString::fromLatin1("Process died unexpectedly from state %1 in %2:%3")
|
|
|
|
.arg(d->m_profilerState->currentStateAsString(), QString::fromLatin1(__FILE__), QString::number(__LINE__));
|
|
|
|
qWarning("%s", qPrintable(message));
|
2012-02-24 10:47:17 +01:00
|
|
|
break;
|
|
|
|
}
|
2011-04-14 15:23:17 +02:00
|
|
|
}
|
2011-04-06 12:26:19 +02:00
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
void QmlProfilerRunControl::cancelProcess()
|
2011-05-20 13:36:16 +02:00
|
|
|
{
|
2012-02-24 10:47:17 +01:00
|
|
|
QTC_ASSERT(d->m_profilerState, return);
|
2011-04-14 16:05:41 +02:00
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
switch (d->m_profilerState->currentState()) {
|
2015-09-11 16:10:58 +02:00
|
|
|
case QmlProfilerStateManager::Idle:
|
2012-02-24 10:47:17 +01:00
|
|
|
break;
|
2015-09-11 16:10:58 +02:00
|
|
|
case QmlProfilerStateManager::AppRunning:
|
2012-05-08 15:14:11 +02:00
|
|
|
d->m_profilerState->setCurrentState(QmlProfilerStateManager::AppDying);
|
2012-02-24 10:47:17 +01:00
|
|
|
break;
|
|
|
|
default: {
|
2012-07-27 15:43:00 +02:00
|
|
|
const QString message = QString::fromLatin1("Unexpected process termination requested with state %1 in %2:%3")
|
|
|
|
.arg(d->m_profilerState->currentStateAsString(), QString::fromLatin1(__FILE__), QString::number(__LINE__));
|
|
|
|
qWarning("%s", qPrintable(message));
|
2012-02-24 10:47:17 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-04-06 12:26:19 +02:00
|
|
|
}
|
2015-09-11 16:10:58 +02:00
|
|
|
emit finished();
|
2011-03-11 12:22:57 +01:00
|
|
|
}
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
void QmlProfilerRunControl::logApplicationMessage(const QString &msg, Utils::OutputFormat format)
|
2011-06-09 14:30:15 +02:00
|
|
|
{
|
2013-07-30 14:08:01 +02:00
|
|
|
appendMessage(msg, format);
|
2011-10-31 16:42:31 +01:00
|
|
|
d->m_outputParser.processOutput(msg);
|
2011-06-09 14:30:15 +02:00
|
|
|
}
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
void QmlProfilerRunControl::wrongSetupMessageBox(const QString &errorMessage)
|
2011-04-14 17:14:26 +02:00
|
|
|
{
|
2013-08-29 19:00:34 +02:00
|
|
|
QMessageBox *infoBox = new QMessageBox(ICore::mainWindow());
|
2011-10-31 16:42:31 +01:00
|
|
|
infoBox->setIcon(QMessageBox::Critical);
|
|
|
|
infoBox->setWindowTitle(tr("Qt Creator"));
|
|
|
|
//: %1 is detailed error message
|
|
|
|
infoBox->setText(tr("Could not connect to the in-process QML debugger:\n%1")
|
|
|
|
.arg(errorMessage));
|
|
|
|
infoBox->setStandardButtons(QMessageBox::Ok | QMessageBox::Help);
|
|
|
|
infoBox->setDefaultButton(QMessageBox::Ok);
|
|
|
|
infoBox->setModal(true);
|
|
|
|
|
2015-10-30 12:35:17 +01:00
|
|
|
connect(infoBox, &QDialog::finished,
|
|
|
|
this, &QmlProfilerRunControl::wrongSetupMessageBoxFinished);
|
2011-10-31 16:42:31 +01:00
|
|
|
|
|
|
|
infoBox->show();
|
2011-06-09 14:30:15 +02:00
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
// KILL
|
2012-05-08 15:14:11 +02:00
|
|
|
d->m_profilerState->setCurrentState(QmlProfilerStateManager::AppDying);
|
2015-11-19 13:13:57 +01:00
|
|
|
d->m_noDebugOutputTimer.stop();
|
2015-09-11 16:10:58 +02:00
|
|
|
emit finished();
|
2011-04-14 17:14:26 +02:00
|
|
|
}
|
2011-05-20 13:36:16 +02:00
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
void QmlProfilerRunControl::wrongSetupMessageBoxFinished(int button)
|
2011-06-28 09:28:14 +02:00
|
|
|
{
|
|
|
|
if (button == QMessageBox::Help) {
|
2013-08-29 19:00:34 +02:00
|
|
|
HelpManager::handleHelpRequest(QLatin1String("qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html"
|
2012-11-26 21:18:13 +02:00
|
|
|
"#setting-up-qml-debugging"));
|
2011-06-28 09:28:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
void QmlProfilerRunControl::notifyRemoteSetupDone(quint16 port)
|
2011-07-28 10:38:39 +02:00
|
|
|
{
|
|
|
|
d->m_noDebugOutputTimer.stop();
|
2013-05-03 12:41:58 +02:00
|
|
|
emit processRunning(port);
|
|
|
|
}
|
2012-02-21 15:47:55 +01:00
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
void QmlProfilerRunControl::processIsRunning(quint16 port)
|
2013-05-03 12:41:58 +02:00
|
|
|
{
|
|
|
|
d->m_noDebugOutputTimer.stop();
|
2012-02-21 15:47:55 +01:00
|
|
|
|
2014-03-13 14:46:58 +01:00
|
|
|
if (port == 0)
|
2016-01-28 18:24:08 +01:00
|
|
|
port = connection().as<AnalyzerConnection>().analyzerPort;
|
2014-03-13 14:46:58 +01:00
|
|
|
if (port != 0)
|
2012-02-21 15:47:55 +01:00
|
|
|
emit processRunning(port);
|
2013-07-19 16:13:10 +02:00
|
|
|
}
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
void QmlProfilerRunControl::registerProfilerStateManager( QmlProfilerStateManager *profilerState )
|
2012-02-24 10:47:17 +01:00
|
|
|
{
|
|
|
|
// disconnect old
|
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 (d->m_profilerState)
|
2015-10-30 12:35:17 +01:00
|
|
|
disconnect(d->m_profilerState, &QmlProfilerStateManager::stateChanged,
|
|
|
|
this, &QmlProfilerRunControl::profilerStateChanged);
|
2012-02-24 10:47:17 +01:00
|
|
|
|
|
|
|
d->m_profilerState = profilerState;
|
|
|
|
|
|
|
|
// connect
|
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 (d->m_profilerState)
|
2015-10-30 12:35:17 +01:00
|
|
|
connect(d->m_profilerState, &QmlProfilerStateManager::stateChanged,
|
|
|
|
this, &QmlProfilerRunControl::profilerStateChanged);
|
2012-02-24 10:47:17 +01:00
|
|
|
}
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
void QmlProfilerRunControl::profilerStateChanged()
|
2012-02-24 10:47:17 +01:00
|
|
|
{
|
|
|
|
switch (d->m_profilerState->currentState()) {
|
2015-09-11 16:10:58 +02:00
|
|
|
case QmlProfilerStateManager::Idle:
|
|
|
|
emit finished();
|
2012-07-26 09:02:34 +02:00
|
|
|
d->m_noDebugOutputTimer.stop();
|
2012-02-24 10:47:17 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-20 13:36:16 +02:00
|
|
|
} // namespace QmlProfiler
|