1 /****************************************************************************
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
40 ****************************************************************************/
42 #include "qv8profilerservice_p.h"
43 #include "qdeclarativedebugservice_p_p.h"
44 #include <private/qdeclarativeengine_p.h>
45 #include <private/qv8profiler_p.h>
47 #include <QtCore/QHash>
51 Q_GLOBAL_STATIC(QV8ProfilerService, v8ProfilerInstance)
53 class ByteArrayOutputStream : public v8::OutputStream
57 ByteArrayOutputStream(QByteArray *buffer)
61 WriteResult WriteAsciiChunk(char *data, int size)
63 QByteArray b(data, size);
69 // convert to a QByteArray that can be sent to the debug client
70 QByteArray QV8ProfilerData::toByteArray() const
73 //### using QDataStream is relatively expensive
74 QDataStream ds(&data, QIODevice::WriteOnly);
75 ds << messageType << filename << functionname << lineNumber << totalTime << selfTime << treeLevel;
80 class QV8ProfilerServicePrivate : public QDeclarativeDebugServicePrivate
82 Q_DECLARE_PUBLIC(QV8ProfilerService)
85 QV8ProfilerServicePrivate()
90 void takeSnapshot(v8::HeapSnapshot::Type);
92 void printProfileTree(const v8::CpuProfileNode *node, int level = 0);
95 QList<QV8ProfilerData> m_data;
98 QList<QDeclarativeEngine *> engines;
101 QV8ProfilerService::QV8ProfilerService(QObject *parent)
102 : QDeclarativeDebugService(*(new QV8ProfilerServicePrivate()), QLatin1String("V8Profiler"), parent)
104 Q_D(QV8ProfilerService);
105 if (status() == Enabled) {
106 // ,block mode, client attached
107 while (!d->initialized)
112 QV8ProfilerService::~QV8ProfilerService()
116 QV8ProfilerService *QV8ProfilerService::instance()
118 return v8ProfilerInstance();
121 void QV8ProfilerService::addEngine(QDeclarativeEngine *engine)
123 Q_D(QV8ProfilerService);
125 Q_ASSERT(!d->engines.contains(engine));
127 d->engines.append(engine);
130 void QV8ProfilerService::removeEngine(QDeclarativeEngine *engine)
132 Q_D(QV8ProfilerService);
134 Q_ASSERT(d->engines.contains(engine));
136 d->engines.removeOne(engine);
139 void QV8ProfilerService::messageReceived(const QByteArray &message)
141 Q_D(QV8ProfilerService);
143 QDataStream ds(message);
147 ds >> command >> option;
149 if (command == "V8PROFILER") {
151 if (option == "start") {
152 startProfiling(QString::fromUtf8(title));
153 } else if (option == "stop") {
154 stopProfiling(QString::fromUtf8(title));
155 // Send messages to client
158 d->initialized = true;
161 if (command == "V8SNAPSHOT") {
162 if (option == "full")
163 d->takeSnapshot(v8::HeapSnapshot::kFull);
164 else if (option == "delete") {
165 v8::HeapProfiler::DeleteAllSnapshots();
169 QDeclarativeDebugService::messageReceived(message);
172 void QV8ProfilerService::startProfiling(const QString &title)
175 v8::HandleScope handle_scope;
176 v8::Handle<v8::String> v8title = v8::String::New(reinterpret_cast<const uint16_t*>(title.data()), title.size());
177 v8::CpuProfiler::StartProfiling(v8title);
180 void QV8ProfilerService::stopProfiling(const QString &title)
182 Q_D(QV8ProfilerService);
184 v8::HandleScope handle_scope;
185 v8::Handle<v8::String> v8title = v8::String::New(reinterpret_cast<const uint16_t*>(title.data()), title.size());
186 const v8::CpuProfile *cpuProfile = v8::CpuProfiler::StopProfiling(v8title);
188 // can happen at start
189 const v8::CpuProfileNode *rootNode = cpuProfile->GetTopDownRoot();
190 d->printProfileTree(rootNode);
194 void QV8ProfilerServicePrivate::printProfileTree(const v8::CpuProfileNode *node, int level)
196 for (int index = 0 ; index < node->GetChildrenCount() ; index++) {
197 const v8::CpuProfileNode* childNode = node->GetChild(index);
198 if (QV8Engine::toStringStatic(childNode->GetScriptResourceName()).length() > 0) {
200 QV8ProfilerData rd = {(int)QV8ProfilerService::V8Entry, QV8Engine::toStringStatic(childNode->GetScriptResourceName()),
201 QV8Engine::toStringStatic(childNode->GetFunctionName()),
202 childNode->GetLineNumber(), childNode->GetTotalTime(), childNode->GetSelfTime(), level};
205 // different nodes might have common children: fix at client side
206 if (childNode->GetChildrenCount() > 0) {
207 printProfileTree(childNode, level+1);
213 void QV8ProfilerServicePrivate::takeSnapshot(v8::HeapSnapshot::Type snapshotType)
215 Q_Q(QV8ProfilerService);
217 v8::HandleScope scope;
218 v8::Local<v8::String> title = v8::String::New("");
220 QByteArray jsonSnapshot;
221 ByteArrayOutputStream bos(&jsonSnapshot);
222 const v8::HeapSnapshot *snapshot = v8::HeapProfiler::TakeSnapshot(title, snapshotType);
223 snapshot->Serialize(&bos, v8::HeapSnapshot::kJSON);
226 QDataStream ds(&data, QIODevice::WriteOnly);
227 ds << (int)QV8ProfilerService::V8Snapshot << jsonSnapshot;
229 q->sendMessage(data);
232 void QV8ProfilerServicePrivate::sendMessages()
234 Q_Q(QV8ProfilerService);
236 for (int i = 0; i < m_data.count(); ++i)
237 q->sendMessage(m_data.at(i).toByteArray());
240 //indicate completion
242 QDataStream ds(&data, QIODevice::WriteOnly);
243 ds << (int)QV8ProfilerService::V8Complete;
245 q->sendMessage(data);