/**************************************************************************** ** ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/ ** ** This file is part of the QtQml module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** 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, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** 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. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qqmlprofilerservice_p.h" #include #include #include #include #include // this contains QUnifiedTimer #include QT_BEGIN_NAMESPACE // instance will be set, unset in constructor. Allows static methods to be inlined. QQmlProfilerService *QQmlProfilerService::instance = 0; Q_GLOBAL_STATIC(QQmlProfilerService, profilerInstance) // convert to a QByteArray that can be sent to the debug client // use of QDataStream can skew results // (see tst_qqmldebugtrace::trace() benchmark) QByteArray QQmlProfilerData::toByteArray() const { QByteArray data; //### using QDataStream is relatively expensive QDataStream ds(&data, QIODevice::WriteOnly); ds << time << messageType << detailType; if (messageType == (int)QQmlProfilerService::RangeData) ds << detailData; if (messageType == (int)QQmlProfilerService::RangeLocation) ds << detailData << line << column; if (messageType == (int)QQmlProfilerService::Event && detailType == (int)QQmlProfilerService::AnimationFrame) ds << framerate << animationcount; return data; } QQmlProfilerService::QQmlProfilerService() : QQmlDebugService(QLatin1String("CanvasFrameRate"), 1), m_enabled(false), m_messageReceived(false) { m_timer.start(); if (registerService() == Enabled) { // wait for first message indicating whether to trace or not while (!m_messageReceived) waitForMessage(); QUnifiedTimer::instance()->registerProfilerCallback( &animationFrame ); } } QQmlProfilerService::~QQmlProfilerService() { instance = 0; } void QQmlProfilerService::initialize() { // just make sure that the service is properly registered instance = profilerInstance(); } bool QQmlProfilerService::startProfiling() { return profilerInstance()->startProfilingImpl(); } bool QQmlProfilerService::stopProfiling() { return profilerInstance()->stopProfilingImpl(); } void QQmlProfilerService::sendStartedProfilingMessage() { profilerInstance()->sendStartedProfilingMessageImpl(); } void QQmlProfilerService::addEvent(EventType t) { profilerInstance()->addEventImpl(t); } void QQmlProfilerService::animationFrame(qint64 delta) { profilerInstance()->animationFrameImpl(delta); } void QQmlProfilerService::sendProfilingData() { profilerInstance()->sendMessages(); } bool QQmlProfilerService::startProfilingImpl() { bool success = false; if (!profilingEnabled()) { setProfilingEnabled(true); sendStartedProfilingMessageImpl(); success = true; } return success; } bool QQmlProfilerService::stopProfilingImpl() { bool success = false; if (profilingEnabled()) { addEventImpl(EndTrace); setProfilingEnabled(false); success = true; } return success; } void QQmlProfilerService::sendStartedProfilingMessageImpl() { if (!QQmlDebugService::isDebuggingEnabled() || !m_enabled) return; QQmlProfilerData ed = {m_timer.nsecsElapsed(), (int)Event, (int)StartTrace, QString(), -1, -1, 0, 0}; QQmlDebugService::sendMessage(ed.toByteArray()); } void QQmlProfilerService::addEventImpl(EventType event) { if (!QQmlDebugService::isDebuggingEnabled() || !m_enabled) return; QQmlProfilerData ed = {m_timer.nsecsElapsed(), (int)Event, (int)event, QString(), -1, -1, 0, 0}; processMessage(ed); } void QQmlProfilerService::startRange(RangeType range) { if (!QQmlDebugService::isDebuggingEnabled() || !m_enabled) return; QQmlProfilerData rd = {m_timer.nsecsElapsed(), (int)RangeStart, (int)range, QString(), -1, -1, 0, 0}; processMessage(rd); } void QQmlProfilerService::rangeData(RangeType range, const QString &rData) { if (!QQmlDebugService::isDebuggingEnabled() || !m_enabled) return; QQmlProfilerData rd = {m_timer.nsecsElapsed(), (int)RangeData, (int)range, rData, -1, -1, 0, 0}; processMessage(rd); } void QQmlProfilerService::rangeData(RangeType range, const QUrl &rData) { if (!QQmlDebugService::isDebuggingEnabled() || !m_enabled) return; QQmlProfilerData rd = {m_timer.nsecsElapsed(), (int)RangeData, (int)range, rData.toString(QUrl::FormattingOption(0x100)), -1, -1, 0, 0}; processMessage(rd); } void QQmlProfilerService::rangeLocation(RangeType range, const QString &fileName, int line, int column) { if (!QQmlDebugService::isDebuggingEnabled() || !m_enabled) return; QQmlProfilerData rd = {m_timer.nsecsElapsed(), (int)RangeLocation, (int)range, fileName, line, column, 0, 0}; processMessage(rd); } void QQmlProfilerService::rangeLocation(RangeType range, const QUrl &fileName, int line, int column) { if (!QQmlDebugService::isDebuggingEnabled() || !m_enabled) return; QQmlProfilerData rd = {m_timer.nsecsElapsed(), (int)RangeLocation, (int)range, fileName.toString(QUrl::FormattingOption(0x100)), line, column, 0, 0}; processMessage(rd); } void QQmlProfilerService::endRange(RangeType range) { if (!QQmlDebugService::isDebuggingEnabled() || !m_enabled) return; QQmlProfilerData rd = {m_timer.nsecsElapsed(), (int)RangeEnd, (int)range, QString(), -1, -1, 0, 0}; processMessage(rd); } void QQmlProfilerService::animationFrameImpl(qint64 delta) { Q_ASSERT(QQmlDebugService::isDebuggingEnabled()); if (!m_enabled) return; int animCount = QUnifiedTimer::instance()->runningAnimationCount(); if (animCount > 0 && delta > 0) { // trim fps to integer int fps = 1000 / delta; QQmlProfilerData ed = {m_timer.nsecsElapsed(), (int)Event, (int)AnimationFrame, QString(), -1, -1, fps, animCount}; processMessage(ed); } } /* Either send the message directly, or queue up a list of messages to send later (via sendMessages) */ void QQmlProfilerService::processMessage(const QQmlProfilerData &message) { QMutexLocker locker(&m_mutex); m_data.append(message); } bool QQmlProfilerService::profilingEnabled() { return m_enabled; } void QQmlProfilerService::setProfilingEnabled(bool enable) { m_enabled = enable; } /* Send the messages queued up by processMessage */ void QQmlProfilerService::sendMessages() { QMutexLocker locker(&m_mutex); QList messages; for (int i = 0; i < m_data.count(); ++i) messages << m_data.at(i).toByteArray(); m_data.clear(); //indicate completion QByteArray data; QDataStream ds(&data, QIODevice::WriteOnly); ds << (qint64)-1 << (int)Complete; messages << data; QQmlDebugService::sendMessages(messages); } void QQmlProfilerService::stateAboutToBeChanged(QQmlDebugService::State newState) { if (state() == newState) return; if (state() == Enabled && m_enabled) { stopProfilingImpl(); sendMessages(); } } void QQmlProfilerService::messageReceived(const QByteArray &message) { QByteArray rwData = message; QDataStream stream(&rwData, QIODevice::ReadOnly); bool enabled; stream >> enabled; m_messageReceived = true; if (enabled) { startProfilingImpl(); } else { if (stopProfilingImpl()) sendMessages(); } } QT_END_NAMESPACE