2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-06-28 15:51:20 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-06-28 15:51:20 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-06-28 15:51:20 +02: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:58:39 +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.
|
2011-06-28 15:51:20 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +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.
|
2011-06-28 15:51:20 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-06-28 15:51:20 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2011-06-28 15:51:20 +02:00
|
|
|
|
2011-08-05 11:12:27 +02:00
|
|
|
#include "qmlprofilereventtypes.h"
|
2016-05-04 18:54:59 +02:00
|
|
|
#include "qmleventlocation.h"
|
2016-05-02 12:18:57 +02:00
|
|
|
#include "qmlprofiler_global.h"
|
|
|
|
|
|
|
|
#include <qmldebug/qmldebugclient.h>
|
2011-08-05 11:12:27 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QStack>
|
|
|
|
#include <QStringList>
|
2011-06-28 15:51:20 +02:00
|
|
|
|
2016-05-02 12:18:57 +02:00
|
|
|
namespace QmlProfiler {
|
2011-06-28 15:51:20 +02:00
|
|
|
|
2016-05-03 18:19:28 +02:00
|
|
|
class QmlProfilerTraceClient : public QmlDebug::QmlDebugClient
|
2011-06-28 15:51:20 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(bool recording READ isRecording WRITE setRecording NOTIFY recordingChanged)
|
|
|
|
|
|
|
|
public:
|
2016-05-02 12:18:57 +02:00
|
|
|
QmlProfilerTraceClient(QmlDebug::QmlDebugConnection *client, quint64 features);
|
2011-08-05 12:58:43 +02:00
|
|
|
~QmlProfilerTraceClient();
|
2011-06-28 15:51:20 +02:00
|
|
|
|
2011-08-05 12:58:43 +02:00
|
|
|
bool isRecording() const;
|
2012-02-24 10:47:17 +01:00
|
|
|
void setRecording(bool);
|
2015-06-30 15:55:33 +02:00
|
|
|
quint64 recordedFeatures() const;
|
2011-06-28 15:51:20 +02:00
|
|
|
|
|
|
|
public slots:
|
2011-08-05 12:58:43 +02:00
|
|
|
void clearData();
|
2015-11-18 15:18:58 +01:00
|
|
|
void sendRecordingStatus(int engineId = -1);
|
2015-06-30 15:55:33 +02:00
|
|
|
void setRequestedFeatures(quint64 features);
|
2015-08-28 12:50:46 +02:00
|
|
|
void setFlushInterval(quint32 flushInterval);
|
2011-06-28 15:51:20 +02:00
|
|
|
|
|
|
|
signals:
|
2014-04-03 12:33:14 +02:00
|
|
|
void complete(qint64 maximumTime);
|
2016-04-28 16:02:54 +02:00
|
|
|
void traceFinished(qint64 timestamp, const QList<int> &engineIds);
|
|
|
|
void traceStarted(qint64 timestamp, const QList<int> &engineIds);
|
|
|
|
|
2016-05-02 12:18:57 +02:00
|
|
|
void rangedEvent(Message, RangeType, int detailType, qint64 startTime, qint64 length,
|
|
|
|
const QString &data, const QmlEventLocation &location, qint64 param1,
|
|
|
|
qint64 param2, qint64 param3, qint64 param4, qint64 param5);
|
2016-04-28 16:02:54 +02:00
|
|
|
|
|
|
|
void debugMessage(qint64 timestamp, QtMsgType type, const QString &text,
|
2016-05-02 12:18:57 +02:00
|
|
|
const QmlEventLocation &location);
|
2016-04-28 16:02:54 +02:00
|
|
|
|
2011-06-28 15:51:20 +02:00
|
|
|
void recordingChanged(bool arg);
|
2015-06-30 15:55:33 +02:00
|
|
|
void recordedFeaturesChanged(quint64 features);
|
2015-11-18 15:18:58 +01:00
|
|
|
void newEngine(int engineId);
|
2011-06-28 15:51:20 +02:00
|
|
|
|
2011-08-05 12:58:43 +02:00
|
|
|
void cleared();
|
2011-06-28 15:51:20 +02:00
|
|
|
|
|
|
|
protected:
|
2014-05-05 16:11:43 +02:00
|
|
|
virtual void stateChanged(State status);
|
2011-06-28 15:51:20 +02:00
|
|
|
virtual void messageReceived(const QByteArray &);
|
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
private:
|
|
|
|
void setRecordingFromServer(bool);
|
|
|
|
|
2011-06-28 15:51:20 +02:00
|
|
|
private:
|
2011-08-05 12:58:43 +02:00
|
|
|
class QmlProfilerTraceClientPrivate *d;
|
2011-06-28 15:51:20 +02:00
|
|
|
};
|
|
|
|
|
2016-05-02 12:18:57 +02:00
|
|
|
} // namespace QmlProfiler
|