2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2012-01-17 13:26:57 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-01-17 13:26:57 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-01-17 13:26:57 +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.
|
2012-01-17 13:26:57 +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.
|
2012-01-17 13:26:57 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-01-17 13:26:57 +01:00
|
|
|
|
|
|
|
|
#include "qmlprofilerdetailsrewriter.h"
|
|
|
|
|
|
|
|
|
|
#include <qmljs/parser/qmljsast_p.h>
|
|
|
|
|
#include <qmljs/qmljsmodelmanagerinterface.h>
|
|
|
|
|
#include <qmljstools/qmljsmodelmanager.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
namespace QmlProfiler {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
struct PendingEvent {
|
2012-04-18 12:06:10 +02:00
|
|
|
QmlDebug::QmlEventLocation location;
|
2012-01-17 13:26:57 +01:00
|
|
|
QString localFile;
|
2013-08-08 13:28:08 +02:00
|
|
|
int requestId;
|
2012-01-17 13:26:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class PropertyVisitor: protected QmlJS::AST::Visitor
|
|
|
|
|
{
|
|
|
|
|
QmlJS::AST::Node * _lastValidNode;
|
|
|
|
|
unsigned _line;
|
|
|
|
|
unsigned _col;
|
|
|
|
|
public:
|
|
|
|
|
QmlJS::AST::Node * operator()(QmlJS::AST::Node *node, unsigned line, unsigned col)
|
|
|
|
|
{
|
|
|
|
|
_line = line;
|
|
|
|
|
_col = col;
|
|
|
|
|
_lastValidNode = 0;
|
|
|
|
|
accept(node);
|
|
|
|
|
return _lastValidNode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
using QmlJS::AST::Visitor::visit;
|
|
|
|
|
|
|
|
|
|
void accept(QmlJS::AST::Node *node)
|
|
|
|
|
{
|
|
|
|
|
if (node)
|
|
|
|
|
node->accept(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool containsLocation(QmlJS::AST::SourceLocation start, QmlJS::AST::SourceLocation end)
|
|
|
|
|
{
|
|
|
|
|
return (_line > start.startLine || (_line == start.startLine && _col >= start.startColumn)) &&
|
|
|
|
|
(_line < end.startLine || (_line == end.startLine && _col <= end.startColumn));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
virtual bool preVisit(QmlJS::AST::Node *node)
|
|
|
|
|
{
|
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 (QmlJS::AST::cast<QmlJS::AST::UiQualifiedId *>(node))
|
2012-01-17 13:26:57 +01:00
|
|
|
return false;
|
|
|
|
|
return containsLocation(node->firstSourceLocation(), node->lastSourceLocation());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual bool visit(QmlJS::AST::UiScriptBinding *ast)
|
|
|
|
|
{
|
|
|
|
|
_lastValidNode = ast;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual bool visit(QmlJS::AST::UiPublicMember *ast)
|
|
|
|
|
{
|
|
|
|
|
_lastValidNode = ast;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class QmlProfilerDetailsRewriter::QmlProfilerDetailsRewriterPrivate
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-05-10 11:46:59 +02:00
|
|
|
QmlProfilerDetailsRewriterPrivate(QmlProfilerDetailsRewriter *qq,
|
|
|
|
|
Utils::FileInProjectFinder *fileFinder)
|
|
|
|
|
: m_projectFinder(fileFinder), q(qq) {}
|
2012-01-17 13:26:57 +01:00
|
|
|
~QmlProfilerDetailsRewriterPrivate() {}
|
|
|
|
|
|
|
|
|
|
QList <PendingEvent> m_pendingEvents;
|
|
|
|
|
QStringList m_pendingDocs;
|
2012-05-10 11:46:59 +02:00
|
|
|
Utils::FileInProjectFinder *m_projectFinder;
|
2014-03-07 13:04:04 +01:00
|
|
|
QMap<QString, QString> m_filesCache;
|
2012-01-17 13:26:57 +01:00
|
|
|
|
|
|
|
|
QmlProfilerDetailsRewriter *q;
|
|
|
|
|
};
|
|
|
|
|
|
2012-05-10 11:46:59 +02:00
|
|
|
QmlProfilerDetailsRewriter::QmlProfilerDetailsRewriter(
|
|
|
|
|
QObject *parent, Utils::FileInProjectFinder *fileFinder)
|
|
|
|
|
: QObject(parent), d(new QmlProfilerDetailsRewriterPrivate(this, fileFinder))
|
2012-01-17 13:26:57 +01:00
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
QmlProfilerDetailsRewriter::~QmlProfilerDetailsRewriter()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-08 13:28:08 +02:00
|
|
|
void QmlProfilerDetailsRewriter::requestDetailsForLocation(int requestId,
|
2012-04-18 12:06:10 +02:00
|
|
|
const QmlDebug::QmlEventLocation &location)
|
2012-01-17 13:26:57 +01:00
|
|
|
{
|
2014-03-07 13:04:04 +01:00
|
|
|
QString localFile;
|
|
|
|
|
if (!d->m_filesCache.contains(location.filename)) {
|
|
|
|
|
localFile = d->m_projectFinder->findFile(location.filename);
|
|
|
|
|
d->m_filesCache[location.filename] = localFile;
|
|
|
|
|
} else {
|
|
|
|
|
localFile = d->m_filesCache[location.filename];
|
|
|
|
|
}
|
2012-05-10 11:46:59 +02:00
|
|
|
QFileInfo fileInfo(localFile);
|
|
|
|
|
if (!fileInfo.exists() || !fileInfo.isReadable())
|
|
|
|
|
return;
|
2014-07-22 19:06:44 +02:00
|
|
|
if (!QmlJS::ModelManagerInterface::guessLanguageOfFile(localFile).isQmlLikeLanguage())
|
2012-01-17 13:26:57 +01:00
|
|
|
return;
|
|
|
|
|
|
2013-08-08 13:28:08 +02:00
|
|
|
PendingEvent ev = {location, localFile, requestId};
|
2012-01-17 13:26:57 +01:00
|
|
|
d->m_pendingEvents << ev;
|
|
|
|
|
if (!d->m_pendingDocs.contains(localFile)) {
|
|
|
|
|
if (d->m_pendingDocs.isEmpty())
|
|
|
|
|
connect(QmlJS::ModelManagerInterface::instance(),
|
2015-10-30 12:35:17 +01:00
|
|
|
&QmlJS::ModelManagerInterface::documentUpdated,
|
2012-01-17 13:26:57 +01:00
|
|
|
this,
|
2015-10-30 12:35:17 +01:00
|
|
|
&QmlProfilerDetailsRewriter::documentReady);
|
2012-01-17 13:26:57 +01:00
|
|
|
|
|
|
|
|
d->m_pendingDocs << localFile;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlProfilerDetailsRewriter::reloadDocuments()
|
|
|
|
|
{
|
|
|
|
|
if (!d->m_pendingDocs.isEmpty())
|
|
|
|
|
QmlJS::ModelManagerInterface::instance()->updateSourceFiles(d->m_pendingDocs, false);
|
|
|
|
|
else
|
|
|
|
|
emit eventDetailsChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlProfilerDetailsRewriter::rewriteDetailsForLocation(QTextStream &textDoc,
|
2013-08-08 13:28:08 +02:00
|
|
|
QmlJS::Document::Ptr doc, int requestId, const QmlDebug::QmlEventLocation &location)
|
2012-01-17 13:26:57 +01:00
|
|
|
{
|
|
|
|
|
PropertyVisitor propertyVisitor;
|
|
|
|
|
QmlJS::AST::Node *node = propertyVisitor(doc->ast(), location.line, location.column);
|
|
|
|
|
|
2012-05-10 11:46:59 +02:00
|
|
|
if (!node)
|
|
|
|
|
return;
|
2012-01-17 13:26:57 +01:00
|
|
|
|
|
|
|
|
qint64 startPos = node->firstSourceLocation().begin();
|
|
|
|
|
qint64 len = node->lastSourceLocation().end() - startPos;
|
|
|
|
|
|
|
|
|
|
textDoc.seek(startPos);
|
2012-11-26 21:18:13 +02:00
|
|
|
QString details = textDoc.read(len).replace(QLatin1Char('\n'), QLatin1Char(' ')).simplified();
|
2012-01-17 13:26:57 +01:00
|
|
|
|
2013-08-08 13:28:08 +02:00
|
|
|
emit rewriteDetailsString(requestId, details);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlProfilerDetailsRewriter::clearRequests()
|
|
|
|
|
{
|
2014-03-07 13:04:04 +01:00
|
|
|
d->m_filesCache.clear();
|
2013-08-08 13:28:08 +02:00
|
|
|
d->m_pendingDocs.clear();
|
2012-01-17 13:26:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlProfilerDetailsRewriter::documentReady(QmlJS::Document::Ptr doc)
|
|
|
|
|
{
|
|
|
|
|
// this could be triggered by an unrelated reload in Creator
|
|
|
|
|
if (!d->m_pendingDocs.contains(doc->fileName()))
|
|
|
|
|
return;
|
|
|
|
|
|
2012-01-23 10:00:29 +01:00
|
|
|
// if the file could not be opened this slot is still triggered but source will be an empty string
|
|
|
|
|
QString source = doc->source();
|
|
|
|
|
if (!source.isEmpty()) {
|
|
|
|
|
QTextStream st(&source, QIODevice::ReadOnly);
|
2012-01-17 13:26:57 +01:00
|
|
|
|
|
|
|
|
for (int i = d->m_pendingEvents.count()-1; i>=0; i--) {
|
|
|
|
|
PendingEvent ev = d->m_pendingEvents[i];
|
|
|
|
|
if (ev.localFile == doc->fileName()) {
|
|
|
|
|
d->m_pendingEvents.removeAt(i);
|
2013-08-08 13:28:08 +02:00
|
|
|
rewriteDetailsForLocation(st, doc, ev.requestId, ev.location);
|
2012-01-17 13:26:57 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
d->m_pendingDocs.removeOne(doc->fileName());
|
|
|
|
|
|
|
|
|
|
if (d->m_pendingDocs.isEmpty()) {
|
|
|
|
|
disconnect(QmlJS::ModelManagerInterface::instance(),
|
2015-10-30 12:35:17 +01:00
|
|
|
&QmlJS::ModelManagerInterface::documentUpdated,
|
2012-01-17 13:26:57 +01:00
|
|
|
this,
|
2015-10-30 12:35:17 +01:00
|
|
|
&QmlProfilerDetailsRewriter::documentReady);
|
2012-01-17 13:26:57 +01:00
|
|
|
emit eventDetailsChanged();
|
2014-03-07 13:04:04 +01:00
|
|
|
d->m_filesCache.clear();
|
2012-01-17 13:26:57 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlProfiler
|