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"
|
|
|
|
|
|
2016-12-28 16:45:43 +01:00
|
|
|
#include <projectexplorer/kit.h>
|
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
|
|
|
#include <projectexplorer/project.h>
|
|
|
|
|
#include <projectexplorer/session.h>
|
|
|
|
|
#include <projectexplorer/target.h>
|
|
|
|
|
#include <projectexplorer/runconfiguration.h>
|
2012-01-17 13:26:57 +01:00
|
|
|
#include <qmljs/parser/qmljsast_p.h>
|
|
|
|
|
#include <qmljs/qmljsmodelmanagerinterface.h>
|
|
|
|
|
#include <qmljstools/qmljsmodelmanager.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
namespace QmlProfiler {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class PropertyVisitor: protected QmlJS::AST::Visitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
2017-08-14 13:48:54 +02:00
|
|
|
QmlJS::AST::Node *operator()(QmlJS::AST::Node *node, int line, int column)
|
2012-01-17 13:26:57 +01:00
|
|
|
{
|
2017-08-14 13:48:54 +02:00
|
|
|
QTC_ASSERT(line >= 0, return nullptr);
|
|
|
|
|
QTC_ASSERT(column >= 0, return nullptr);
|
|
|
|
|
QTC_ASSERT(node, return nullptr);
|
|
|
|
|
m_line = line;
|
|
|
|
|
m_column = column;
|
|
|
|
|
m_lastValidNode = nullptr;
|
|
|
|
|
node->accept(this);
|
|
|
|
|
return m_lastValidNode;
|
2012-01-17 13:26:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
using QmlJS::AST::Visitor::visit;
|
|
|
|
|
|
2017-08-14 13:48:54 +02:00
|
|
|
bool preVisit(QmlJS::AST::Node *node) override
|
2012-01-17 13:26:57 +01:00
|
|
|
{
|
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());
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-14 13:48:54 +02:00
|
|
|
bool visit(QmlJS::AST::UiScriptBinding *ast) override
|
2012-01-17 13:26:57 +01:00
|
|
|
{
|
2017-08-14 13:48:54 +02:00
|
|
|
m_lastValidNode = ast;
|
2012-01-17 13:26:57 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-14 13:48:54 +02:00
|
|
|
bool visit(QmlJS::AST::UiPublicMember *ast) override
|
2012-01-17 13:26:57 +01:00
|
|
|
{
|
2017-08-14 13:48:54 +02:00
|
|
|
m_lastValidNode = ast;
|
2012-01-17 13:26:57 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
2017-08-14 13:48:54 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QmlJS::AST::Node *m_lastValidNode = nullptr;
|
|
|
|
|
quint32 m_line = 0;
|
|
|
|
|
quint32 m_column = 0;
|
|
|
|
|
|
|
|
|
|
bool containsLocation(QmlJS::AST::SourceLocation start, QmlJS::AST::SourceLocation end)
|
|
|
|
|
{
|
|
|
|
|
return (m_line > start.startLine
|
|
|
|
|
|| (m_line == start.startLine && m_column >= start.startColumn))
|
|
|
|
|
&& (m_line < end.startLine
|
|
|
|
|
|| (m_line == end.startLine && m_column <= end.startColumn));
|
|
|
|
|
}
|
2012-01-17 13:26:57 +01:00
|
|
|
};
|
|
|
|
|
|
2016-12-28 16:45:43 +01:00
|
|
|
QmlProfilerDetailsRewriter::QmlProfilerDetailsRewriter(QObject *parent)
|
|
|
|
|
: QObject(parent)
|
2012-01-17 13:26:57 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-20 17:02:41 +01:00
|
|
|
void QmlProfilerDetailsRewriter::requestDetailsForLocation(int typeId,
|
2016-12-19 16:47:43 +01:00
|
|
|
const QmlEventLocation &location)
|
2012-01-17 13:26:57 +01:00
|
|
|
{
|
2016-12-28 16:45:43 +01:00
|
|
|
const QString localFile = getLocalFile(location.filename());
|
|
|
|
|
if (localFile.isEmpty())
|
2012-01-17 13:26:57 +01:00
|
|
|
return;
|
|
|
|
|
|
2016-12-19 16:48:02 +01:00
|
|
|
if (m_pendingEvents.isEmpty())
|
|
|
|
|
connectQmlModel();
|
|
|
|
|
|
2016-12-20 17:02:41 +01:00
|
|
|
m_pendingEvents.insert(localFile, {location, typeId});
|
2012-01-17 13:26:57 +01:00
|
|
|
}
|
|
|
|
|
|
2016-12-28 16:45:43 +01:00
|
|
|
QString QmlProfilerDetailsRewriter::getLocalFile(const QString &remoteFile)
|
|
|
|
|
{
|
|
|
|
|
QString localFile;
|
|
|
|
|
if (!m_filesCache.contains(remoteFile)) {
|
|
|
|
|
localFile = m_projectFinder.findFile(remoteFile);
|
|
|
|
|
m_filesCache[remoteFile] = localFile;
|
|
|
|
|
} else {
|
|
|
|
|
localFile = m_filesCache[remoteFile];
|
|
|
|
|
}
|
|
|
|
|
QFileInfo fileInfo(localFile);
|
|
|
|
|
if (!fileInfo.exists() || !fileInfo.isReadable())
|
|
|
|
|
return QString();
|
|
|
|
|
if (!QmlJS::ModelManagerInterface::guessLanguageOfFile(localFile).isQmlLikeOrJsLanguage())
|
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
|
|
return fileInfo.canonicalFilePath();
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 13:26:57 +01:00
|
|
|
void QmlProfilerDetailsRewriter::reloadDocuments()
|
|
|
|
|
{
|
2016-12-19 16:48:02 +01:00
|
|
|
if (!m_pendingEvents.isEmpty()) {
|
2016-05-17 10:42:57 +02:00
|
|
|
if (QmlJS::ModelManagerInterface *manager = QmlJS::ModelManagerInterface::instance()) {
|
2016-12-19 16:48:02 +01:00
|
|
|
manager->updateSourceFiles(m_pendingEvents.uniqueKeys(), false);
|
2016-05-17 10:42:57 +02:00
|
|
|
} else {
|
2016-12-19 16:48:02 +01:00
|
|
|
m_pendingEvents.clear();
|
|
|
|
|
disconnectQmlModel();
|
2016-05-17 10:42:57 +02:00
|
|
|
emit eventDetailsChanged();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2012-01-17 13:26:57 +01:00
|
|
|
emit eventDetailsChanged();
|
2016-05-17 10:42:57 +02:00
|
|
|
}
|
2012-01-17 13:26:57 +01:00
|
|
|
}
|
|
|
|
|
|
2016-12-19 16:03:16 +01:00
|
|
|
void QmlProfilerDetailsRewriter::rewriteDetailsForLocation(
|
2016-12-20 17:02:41 +01:00
|
|
|
const QString &source, QmlJS::Document::Ptr doc, int typeId,
|
2016-12-19 16:03:16 +01:00
|
|
|
const QmlEventLocation &location)
|
2012-01-17 13:26:57 +01:00
|
|
|
{
|
|
|
|
|
PropertyVisitor propertyVisitor;
|
2016-06-06 18:04:53 +02:00
|
|
|
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
|
|
|
|
2016-12-19 16:48:02 +01:00
|
|
|
const quint32 startPos = node->firstSourceLocation().begin();
|
|
|
|
|
const quint32 len = node->lastSourceLocation().end() - startPos;
|
|
|
|
|
|
2016-12-20 17:02:41 +01:00
|
|
|
emit rewriteDetailsString(typeId, source.mid(startPos, len).simplified());
|
2016-12-19 16:48:02 +01:00
|
|
|
}
|
2012-01-17 13:26:57 +01:00
|
|
|
|
2016-12-19 16:48:02 +01:00
|
|
|
void QmlProfilerDetailsRewriter::connectQmlModel()
|
|
|
|
|
{
|
|
|
|
|
if (auto manager = QmlJS::ModelManagerInterface::instance()) {
|
|
|
|
|
connect(manager, &QmlJS::ModelManagerInterface::documentUpdated,
|
|
|
|
|
this, &QmlProfilerDetailsRewriter::documentReady);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-01-17 13:26:57 +01:00
|
|
|
|
2016-12-19 16:48:02 +01:00
|
|
|
void QmlProfilerDetailsRewriter::disconnectQmlModel()
|
|
|
|
|
{
|
|
|
|
|
if (auto manager = QmlJS::ModelManagerInterface::instance()) {
|
|
|
|
|
disconnect(manager, &QmlJS::ModelManagerInterface::documentUpdated,
|
|
|
|
|
this, &QmlProfilerDetailsRewriter::documentReady);
|
|
|
|
|
}
|
2013-08-08 13:28:08 +02:00
|
|
|
}
|
|
|
|
|
|
2017-08-14 14:39:17 +02:00
|
|
|
void QmlProfilerDetailsRewriter::clear()
|
2013-08-08 13:28:08 +02:00
|
|
|
{
|
2016-12-19 16:03:16 +01:00
|
|
|
m_filesCache.clear();
|
2016-12-19 16:48:02 +01:00
|
|
|
m_pendingEvents.clear();
|
|
|
|
|
disconnectQmlModel();
|
2012-01-17 13:26:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlProfilerDetailsRewriter::documentReady(QmlJS::Document::Ptr doc)
|
|
|
|
|
{
|
2016-12-20 17:23:54 +01:00
|
|
|
const QString &fileName = doc->fileName();
|
|
|
|
|
auto first = m_pendingEvents.find(fileName);
|
2016-12-19 16:48:02 +01:00
|
|
|
|
2012-01-17 13:26:57 +01:00
|
|
|
// this could be triggered by an unrelated reload in Creator
|
2016-12-20 17:23:54 +01:00
|
|
|
if (first == m_pendingEvents.end())
|
2012-01-17 13:26:57 +01:00
|
|
|
return;
|
|
|
|
|
|
2016-12-19 16:48:02 +01:00
|
|
|
// if the file could not be opened this slot is still triggered
|
|
|
|
|
// but source will be an empty string
|
2012-01-23 10:00:29 +01:00
|
|
|
QString source = doc->source();
|
2016-12-19 16:48:02 +01:00
|
|
|
const bool sourceHasContents = !source.isEmpty();
|
2016-12-20 17:23:54 +01:00
|
|
|
for (auto it = first; it != m_pendingEvents.end() && it.key() == fileName;) {
|
2016-12-19 16:48:02 +01:00
|
|
|
if (sourceHasContents)
|
2016-12-20 17:02:41 +01:00
|
|
|
rewriteDetailsForLocation(source, doc, it->typeId, it->location);
|
2016-12-19 16:48:02 +01:00
|
|
|
it = m_pendingEvents.erase(it);
|
2012-01-17 13:26:57 +01:00
|
|
|
}
|
|
|
|
|
|
2016-12-19 16:48:02 +01:00
|
|
|
if (m_pendingEvents.isEmpty()) {
|
|
|
|
|
disconnectQmlModel();
|
2012-01-17 13:26:57 +01:00
|
|
|
emit eventDetailsChanged();
|
2016-12-19 16:03:16 +01:00
|
|
|
m_filesCache.clear();
|
2012-01-17 13:26:57 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-28 16:45:43 +01:00
|
|
|
void QmlProfilerDetailsRewriter::populateFileFinder(
|
|
|
|
|
const ProjectExplorer::RunConfiguration *runConfiguration)
|
|
|
|
|
{
|
|
|
|
|
// Prefer the given runConfiguration's target if available
|
|
|
|
|
const ProjectExplorer::Target *target = runConfiguration ? runConfiguration->target() : nullptr;
|
|
|
|
|
|
|
|
|
|
// If runConfiguration given, then use the project associated with that ...
|
|
|
|
|
const ProjectExplorer::Project *startupProject = target ? target->project() : nullptr;
|
|
|
|
|
|
|
|
|
|
// ... else try the session manager's global startup project ...
|
|
|
|
|
if (!startupProject)
|
|
|
|
|
startupProject = ProjectExplorer::SessionManager::startupProject();
|
|
|
|
|
|
|
|
|
|
// ... and if that is null, use the first project available.
|
|
|
|
|
const QList<ProjectExplorer::Project *> projects = ProjectExplorer::SessionManager::projects();
|
|
|
|
|
if (!startupProject && !projects.isEmpty())
|
|
|
|
|
startupProject = projects.first();
|
|
|
|
|
|
|
|
|
|
QString projectDirectory;
|
|
|
|
|
QStringList sourceFiles;
|
|
|
|
|
|
|
|
|
|
// Sort files from startupProject to the front of the list ...
|
|
|
|
|
if (startupProject) {
|
|
|
|
|
projectDirectory = startupProject->projectDirectory().toString();
|
|
|
|
|
sourceFiles.append(startupProject->files(ProjectExplorer::Project::SourceFiles));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ... then add all the other projects' files.
|
|
|
|
|
for (const ProjectExplorer::Project *project : projects) {
|
|
|
|
|
if (project != startupProject)
|
|
|
|
|
sourceFiles.append(project->files(ProjectExplorer::Project::SourceFiles));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If no runConfiguration was given, but we've found a startupProject, then try to deduct a
|
|
|
|
|
// target from that.
|
|
|
|
|
if (!target && startupProject)
|
|
|
|
|
target = startupProject->activeTarget();
|
|
|
|
|
|
|
|
|
|
// ... and find the sysroot if we have any target at all.
|
|
|
|
|
QString activeSysroot;
|
|
|
|
|
if (target) {
|
|
|
|
|
const ProjectExplorer::Kit *kit = target->kit();
|
|
|
|
|
if (kit && ProjectExplorer::SysRootKitInformation::hasSysRoot(kit))
|
|
|
|
|
activeSysroot = ProjectExplorer::SysRootKitInformation::sysRoot(kit).toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Finally, do populate m_projectFinder
|
|
|
|
|
m_projectFinder.setProjectDirectory(projectDirectory);
|
|
|
|
|
m_projectFinder.setProjectFiles(sourceFiles);
|
|
|
|
|
m_projectFinder.setSysroot(activeSysroot);
|
2017-08-14 14:40:20 +02:00
|
|
|
m_filesCache.clear();
|
2016-12-28 16:45:43 +01:00
|
|
|
}
|
|
|
|
|
|
2012-01-17 13:26:57 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlProfiler
|