2012-02-09 16:04:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2013-01-02 11:17:46 +00:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-09-20 05:21:40 +00:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2012-02-09 16:04:43 +00:00
|
|
|
**
|
2012-02-16 04:43:03 +00:00
|
|
|
** This file is part of the QtQml module of the Qt Toolkit.
|
2012-02-09 16:04:43 +00:00
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
2012-09-20 05:21:40 +00: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
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
**
|
2012-02-09 16:04:43 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-20 05:21:40 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
**
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2012-02-09 16:04:43 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** GNU General Public License Usage
|
2012-09-20 05:21:40 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3.0 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
2012-02-09 16:04:43 +00:00
|
|
|
**
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "qmlprofilerapplication.h"
|
|
|
|
#include "constants.h"
|
|
|
|
#include <QtCore/QStringList>
|
|
|
|
#include <QtCore/QTextStream>
|
|
|
|
#include <QtCore/QProcess>
|
|
|
|
#include <QtCore/QTimer>
|
|
|
|
#include <QtCore/QDateTime>
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
|
|
|
static const char usageTextC[] =
|
|
|
|
"Usage:\n"
|
|
|
|
" qmlprofiler [options] [program] [program-options]\n"
|
|
|
|
" qmlprofiler [options] -attach [hostname]\n"
|
|
|
|
"\n"
|
|
|
|
"QML Profiler retrieves QML tracing data from a running application.\n"
|
|
|
|
"The data collected can then be visualized in Qt Creator.\n"
|
|
|
|
"\n"
|
|
|
|
"The application to be profiled has to enable QML debugging. See the Qt Creator\n"
|
|
|
|
"documentation on how to do this for different Qt versions.\n"
|
|
|
|
"\n"
|
|
|
|
"Options:\n"
|
|
|
|
" -help Show this information and exit.\n"
|
|
|
|
" -fromStart\n"
|
|
|
|
" Record as soon as the engine is started, default is false.\n"
|
|
|
|
" -p <number>, -port <number>\n"
|
|
|
|
" TCP/IP port to use, default is 3768.\n"
|
|
|
|
" -v, -verbose\n"
|
|
|
|
" Print debugging output.\n"
|
|
|
|
" -version\n"
|
|
|
|
" Show the version of qmlprofiler and exit.\n";
|
|
|
|
|
|
|
|
static const char commandTextC[] =
|
|
|
|
"Commands:\n"
|
|
|
|
" r, record\n"
|
|
|
|
" Switch recording on or off.\n"
|
|
|
|
" q, quit\n"
|
|
|
|
" Terminate program.";
|
|
|
|
|
|
|
|
static const char TraceFileExtension[] = ".qtd";
|
|
|
|
|
|
|
|
QmlProfilerApplication::QmlProfilerApplication(int &argc, char **argv) :
|
|
|
|
QCoreApplication(argc, argv),
|
|
|
|
m_runMode(LaunchMode),
|
|
|
|
m_process(0),
|
|
|
|
m_tracePrefix(QLatin1String("trace")),
|
|
|
|
m_hostName(QLatin1String("127.0.0.1")),
|
|
|
|
m_port(3768),
|
|
|
|
m_verbose(false),
|
|
|
|
m_quitAfterSave(false),
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlProfilerClient(&m_connection),
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8profilerClient(&m_connection),
|
|
|
|
m_connectionAttempts(0),
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlDataReady(false),
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8DataReady(false)
|
|
|
|
{
|
|
|
|
m_connectTimer.setInterval(1000);
|
|
|
|
connect(&m_connectTimer, SIGNAL(timeout()), this, SLOT(tryToConnect()));
|
|
|
|
|
|
|
|
connect(&m_connection, SIGNAL(connected()), this, SLOT(connected()));
|
|
|
|
connect(&m_connection, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SLOT(connectionStateChanged(QAbstractSocket::SocketState)));
|
|
|
|
connect(&m_connection, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(connectionError(QAbstractSocket::SocketError)));
|
|
|
|
|
2012-03-05 01:39:24 +00:00
|
|
|
connect(&m_qmlProfilerClient, SIGNAL(enabledChanged()), this, SLOT(traceClientEnabled()));
|
|
|
|
connect(&m_qmlProfilerClient, SIGNAL(recordingChanged(bool)), this, SLOT(recordingChanged()));
|
2012-05-02 15:32:57 +00:00
|
|
|
connect(&m_qmlProfilerClient, SIGNAL(range(QQmlProfilerService::RangeType,QQmlProfilerService::BindingType,qint64,qint64,QStringList,QmlEventLocation)),
|
|
|
|
&m_profilerData, SLOT(addQmlEvent(QQmlProfilerService::RangeType,QQmlProfilerService::BindingType,qint64,qint64,QStringList,QmlEventLocation)));
|
2012-03-08 15:50:14 +00:00
|
|
|
connect(&m_qmlProfilerClient, SIGNAL(traceFinished(qint64)), &m_profilerData, SLOT(setTraceEndTime(qint64)));
|
|
|
|
connect(&m_qmlProfilerClient, SIGNAL(traceStarted(qint64)), &m_profilerData, SLOT(setTraceStartTime(qint64)));
|
|
|
|
connect(&m_qmlProfilerClient, SIGNAL(frame(qint64,int,int)), &m_profilerData, SLOT(addFrameEvent(qint64,int,int)));
|
2012-03-05 01:39:24 +00:00
|
|
|
connect(&m_qmlProfilerClient, SIGNAL(complete()), this, SLOT(qmlComplete()));
|
2012-02-09 16:04:43 +00:00
|
|
|
|
|
|
|
connect(&m_v8profilerClient, SIGNAL(enabledChanged()), this, SLOT(profilerClientEnabled()));
|
|
|
|
connect(&m_v8profilerClient, SIGNAL(range(int,QString,QString,int,double,double)),
|
2012-03-08 15:50:14 +00:00
|
|
|
&m_profilerData, SLOT(addV8Event(int,QString,QString,int,double,double)));
|
2012-02-09 16:04:43 +00:00
|
|
|
connect(&m_v8profilerClient, SIGNAL(complete()), this, SLOT(v8Complete()));
|
|
|
|
|
2012-03-08 15:50:14 +00:00
|
|
|
connect(&m_profilerData, SIGNAL(error(QString)), this, SLOT(logError(QString)));
|
|
|
|
connect(&m_profilerData, SIGNAL(dataReady()), this, SLOT(traceFinished()));
|
2012-02-09 16:04:43 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QmlProfilerApplication::~QmlProfilerApplication()
|
|
|
|
{
|
|
|
|
if (!m_process)
|
|
|
|
return;
|
|
|
|
logStatus("Terminating process ...");
|
|
|
|
m_process->disconnect();
|
|
|
|
m_process->terminate();
|
|
|
|
if (!m_process->waitForFinished(1000)) {
|
|
|
|
logStatus("Killing process ...");
|
|
|
|
m_process->kill();
|
|
|
|
}
|
|
|
|
delete m_process;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlProfilerApplication::parseArguments()
|
|
|
|
{
|
|
|
|
for (int argPos = 1; argPos < arguments().size(); ++argPos) {
|
|
|
|
const QString arg = arguments().at(argPos);
|
|
|
|
if (arg == QLatin1String("-attach") || arg == QLatin1String("-a")) {
|
|
|
|
if (argPos + 1 == arguments().size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
m_hostName = arguments().at(++argPos);
|
|
|
|
m_runMode = AttachMode;
|
|
|
|
} else if (arg == QLatin1String("-port") || arg == QLatin1String("-p")) {
|
|
|
|
if (argPos + 1 == arguments().size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const QString portStr = arguments().at(++argPos);
|
|
|
|
bool isNumber;
|
|
|
|
m_port = portStr.toUShort(&isNumber);
|
|
|
|
if (!isNumber) {
|
|
|
|
logError(QString("'%1' is not a valid port").arg(portStr));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (arg == QLatin1String("-fromStart")) {
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlProfilerClient.setRecording(true);
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8profilerClient.setRecording(true);
|
|
|
|
} else if (arg == QLatin1String("-help") || arg == QLatin1String("-h") || arg == QLatin1String("/h") || arg == QLatin1String("/?")) {
|
|
|
|
return false;
|
|
|
|
} else if (arg == QLatin1String("-verbose") || arg == QLatin1String("-v")) {
|
|
|
|
m_verbose = true;
|
|
|
|
} else if (arg == QLatin1String("-version")) {
|
|
|
|
print(QString("QML Profiler based on Qt %1.").arg(qVersion()));
|
|
|
|
::exit(1);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
if (m_programPath.isEmpty()) {
|
|
|
|
m_programPath = arg;
|
|
|
|
m_tracePrefix = QFileInfo(m_programPath).fileName();
|
|
|
|
} else {
|
|
|
|
m_programArguments << arg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_runMode == LaunchMode
|
|
|
|
&& m_programPath.isEmpty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (m_runMode == AttachMode
|
|
|
|
&& !m_programPath.isEmpty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::printUsage()
|
|
|
|
{
|
|
|
|
print(QLatin1String(usageTextC));
|
|
|
|
print(QLatin1String(commandTextC));
|
|
|
|
}
|
|
|
|
|
|
|
|
int QmlProfilerApplication::exec()
|
|
|
|
{
|
|
|
|
QTimer::singleShot(0, this, SLOT(run()));
|
|
|
|
return QCoreApplication::exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::printCommands()
|
|
|
|
{
|
|
|
|
print(QLatin1String(commandTextC));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString QmlProfilerApplication::traceFileName() const
|
|
|
|
{
|
|
|
|
QString fileName = m_tracePrefix + "_" +
|
|
|
|
QDateTime::currentDateTime().toString(QLatin1String("yyMMdd_hhmmss")) +
|
|
|
|
TraceFileExtension;
|
|
|
|
if (QFileInfo(fileName).exists()) {
|
|
|
|
QString baseName;
|
|
|
|
int suffixIndex = 0;
|
|
|
|
do {
|
|
|
|
baseName = QFileInfo(fileName).baseName()
|
|
|
|
+ QString::number(suffixIndex++);
|
|
|
|
} while (QFileInfo(baseName + TraceFileExtension).exists());
|
|
|
|
fileName = baseName + TraceFileExtension;
|
|
|
|
}
|
|
|
|
|
|
|
|
return QFileInfo(fileName).absoluteFilePath();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::userCommand(const QString &command)
|
|
|
|
{
|
|
|
|
QString cmd = command.trimmed();
|
|
|
|
if (cmd == Constants::CMD_HELP
|
|
|
|
|| cmd == Constants::CMD_HELP2
|
|
|
|
|| cmd == Constants::CMD_HELP3) {
|
|
|
|
printCommands();
|
|
|
|
} else if (cmd == Constants::CMD_RECORD
|
|
|
|
|| cmd == Constants::CMD_RECORD2) {
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlProfilerClient.setRecording(
|
|
|
|
!m_qmlProfilerClient.isRecording());
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8profilerClient.setRecording(!m_v8profilerClient.isRecording());
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlDataReady = false;
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8DataReady = false;
|
|
|
|
} else if (cmd == Constants::CMD_QUIT
|
|
|
|
|| cmd == Constants::CMD_QUIT2) {
|
|
|
|
print(QLatin1String("Quit"));
|
2012-03-05 01:39:24 +00:00
|
|
|
if (m_qmlProfilerClient.isRecording()) {
|
2012-02-09 16:04:43 +00:00
|
|
|
m_quitAfterSave = true;
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlDataReady = false;
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8DataReady = false;
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlProfilerClient.setRecording(false);
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8profilerClient.setRecording(false);
|
|
|
|
} else {
|
|
|
|
quit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::run()
|
|
|
|
{
|
|
|
|
if (m_runMode == LaunchMode) {
|
|
|
|
m_process = new QProcess(this);
|
|
|
|
QStringList arguments;
|
|
|
|
arguments << QString::fromLatin1("-qmljsdebugger=port:%1,block").arg(m_port);
|
|
|
|
arguments << m_programArguments;
|
|
|
|
|
|
|
|
m_process->setProcessChannelMode(QProcess::MergedChannels);
|
|
|
|
connect(m_process, SIGNAL(readyRead()), this, SLOT(processHasOutput()));
|
|
|
|
connect(m_process, SIGNAL(finished(int,QProcess::ExitStatus)), this,
|
|
|
|
SLOT(processFinished()));
|
|
|
|
logStatus(QString("Starting '%1 %2' ...").arg(m_programPath,
|
|
|
|
arguments.join(" ")));
|
|
|
|
m_process->start(m_programPath, arguments);
|
|
|
|
if (!m_process->waitForStarted()) {
|
|
|
|
logError(QString("Could not run '%1': %2").arg(m_programPath,
|
|
|
|
m_process->errorString()));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
m_connectTimer.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::tryToConnect()
|
|
|
|
{
|
|
|
|
Q_ASSERT(!m_connection.isConnected());
|
|
|
|
++ m_connectionAttempts;
|
|
|
|
|
|
|
|
if (!m_verbose && !(m_connectionAttempts % 5)) {// print every 5 seconds
|
|
|
|
if (!m_verbose)
|
|
|
|
logError(QString("Could not connect to %1:%2 for %3 seconds ...").arg(
|
|
|
|
m_hostName, QString::number(m_port),
|
|
|
|
QString::number(m_connectionAttempts)));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_connection.state() == QAbstractSocket::UnconnectedState) {
|
|
|
|
logStatus(QString("Connecting to %1:%2 ...").arg(m_hostName,
|
|
|
|
QString::number(m_port)));
|
|
|
|
m_connection.connectToHost(m_hostName, m_port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::connected()
|
|
|
|
{
|
|
|
|
m_connectTimer.stop();
|
|
|
|
print(QString(QLatin1String("Connected to host:port %1:%2."
|
|
|
|
"Wait for profile data or type a command"
|
|
|
|
"(type 'help'' to show list of commands).")
|
|
|
|
).arg(m_hostName).arg((m_port)));
|
|
|
|
QString recordingStatus(QLatin1String("Recording Status: %1"));
|
2012-03-05 01:39:24 +00:00
|
|
|
if (!m_qmlProfilerClient.isRecording() &&
|
2012-02-09 16:04:43 +00:00
|
|
|
!m_v8profilerClient.isRecording())
|
|
|
|
recordingStatus = recordingStatus.arg(QLatin1String("Off"));
|
|
|
|
else
|
|
|
|
recordingStatus = recordingStatus.arg(QLatin1String("On"));
|
|
|
|
print(recordingStatus);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::connectionStateChanged(
|
|
|
|
QAbstractSocket::SocketState state)
|
|
|
|
{
|
|
|
|
if (m_verbose)
|
|
|
|
qDebug() << state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::connectionError(QAbstractSocket::SocketError error)
|
|
|
|
{
|
|
|
|
if (m_verbose)
|
|
|
|
qDebug() << error;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::processHasOutput()
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_process);
|
|
|
|
while (m_process->bytesAvailable()) {
|
|
|
|
QTextStream out(stdout);
|
|
|
|
out << m_process->readAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::processFinished()
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_process);
|
|
|
|
if (m_process->exitStatus() == QProcess::NormalExit) {
|
|
|
|
logStatus(QString("Process exited (%1).").arg(m_process->exitCode()));
|
|
|
|
|
2012-03-05 01:39:24 +00:00
|
|
|
if (m_qmlProfilerClient.isRecording()) {
|
2012-02-09 16:04:43 +00:00
|
|
|
logError("Process exited while recording, last trace is lost!");
|
|
|
|
exit(2);
|
|
|
|
} else {
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
logError("Process crashed! Exiting ...");
|
|
|
|
exit(3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::traceClientEnabled()
|
|
|
|
{
|
|
|
|
logStatus("Trace client is attached.");
|
|
|
|
// blocked server is waiting for recording message from both clients
|
|
|
|
// once the last one is connected, both messages should be sent
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlProfilerClient.sendRecordingStatus();
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8profilerClient.sendRecordingStatus();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::profilerClientEnabled()
|
|
|
|
{
|
|
|
|
logStatus("Profiler client is attached.");
|
|
|
|
|
|
|
|
// blocked server is waiting for recording message from both clients
|
|
|
|
// once the last one is connected, both messages should be sent
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlProfilerClient.sendRecordingStatus();
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8profilerClient.sendRecordingStatus();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::traceFinished()
|
|
|
|
{
|
|
|
|
const QString fileName = traceFileName();
|
|
|
|
|
2012-03-08 15:50:14 +00:00
|
|
|
if (m_profilerData.save(fileName))
|
2012-02-09 16:04:43 +00:00
|
|
|
print(QString("Saving trace to %1.").arg(fileName));
|
|
|
|
|
|
|
|
if (m_quitAfterSave)
|
|
|
|
quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::recordingChanged()
|
|
|
|
{
|
2012-03-05 01:39:24 +00:00
|
|
|
if (m_qmlProfilerClient.isRecording()) {
|
2012-02-09 16:04:43 +00:00
|
|
|
print(QLatin1String("Recording is on."));
|
|
|
|
} else {
|
|
|
|
print(QLatin1String("Recording is off."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::print(const QString &line)
|
|
|
|
{
|
|
|
|
QTextStream err(stderr);
|
|
|
|
err << line << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::logError(const QString &error)
|
|
|
|
{
|
|
|
|
QTextStream err(stderr);
|
|
|
|
err << "Error: " << error << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::logStatus(const QString &status)
|
|
|
|
{
|
|
|
|
if (!m_verbose)
|
|
|
|
return;
|
|
|
|
QTextStream err(stderr);
|
|
|
|
err << status << endl;
|
|
|
|
}
|
|
|
|
|
2012-03-05 01:39:24 +00:00
|
|
|
void QmlProfilerApplication::qmlComplete()
|
2012-02-09 16:04:43 +00:00
|
|
|
{
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlDataReady = true;
|
2012-02-16 04:43:03 +00:00
|
|
|
if (m_v8profilerClient.state() != QQmlDebugClient::Enabled ||
|
2012-02-09 16:04:43 +00:00
|
|
|
m_v8DataReady) {
|
2012-03-08 15:50:14 +00:00
|
|
|
m_profilerData.complete();
|
2012-02-09 16:04:43 +00:00
|
|
|
// once complete is sent, reset the flag
|
2012-03-05 01:39:24 +00:00
|
|
|
m_qmlDataReady = false;
|
2012-02-09 16:04:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlProfilerApplication::v8Complete()
|
|
|
|
{
|
|
|
|
m_v8DataReady = true;
|
2012-03-05 01:39:24 +00:00
|
|
|
if (m_qmlProfilerClient.state() != QQmlDebugClient::Enabled ||
|
|
|
|
m_qmlDataReady) {
|
2012-03-08 15:50:14 +00:00
|
|
|
m_profilerData.complete();
|
2012-02-09 16:04:43 +00:00
|
|
|
// once complete is sent, reset the flag
|
|
|
|
m_v8DataReady = false;
|
|
|
|
}
|
|
|
|
}
|