Update to 5.0.0-beta1
[profile/ivi/qtdeclarative.git] / tools / qmlprofiler / qmlprofilerdata.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtQml module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QMLPROFILERDATA_H
43 #define QMLPROFILERDATA_H
44
45 #include <QtQml/private/qqmlprofilerservice_p.h>
46 #include "qmlprofilereventlocation.h"
47
48 #include <QObject>
49
50 class QmlProfilerDataPrivate;
51 class QmlProfilerData : public QObject
52 {
53     Q_OBJECT
54 public:
55     enum State {
56         Empty,
57         AcquiringData,
58         ProcessingData,
59         Done
60     };
61
62     explicit QmlProfilerData(QObject *parent = 0);
63     ~QmlProfilerData();
64
65     static QString getHashStringForQmlEvent(const QmlEventLocation &location, int eventType);
66     static QString getHashStringForV8Event(const QString &displayName, const QString &function);
67     static QString qmlRangeTypeAsString(QQmlProfilerService::RangeType typeEnum);
68     static QString rootEventName();
69     static QString rootEventDescription();
70
71     qint64 traceStartTime() const;
72     qint64 traceEndTime() const;
73
74     bool isEmpty() const;
75
76 signals:
77     void error(QString);
78     void stateChanged();
79     void dataReady();
80
81 public slots:
82     void clear();
83     void setTraceEndTime(qint64 time);
84     void setTraceStartTime(qint64 time);
85     void addQmlEvent(QQmlProfilerService::RangeType type,
86                      QQmlProfilerService::BindingType bindingType,
87                      qint64 startTime, qint64 duration, const QStringList &data,
88                      const QmlEventLocation &location);
89     void addV8Event(int depth, const QString &function, const QString &filename,
90                     int lineNumber, double totalTime, double selfTime);
91     void addFrameEvent(qint64 time, int framerate, int animationcount);
92
93     void complete();
94     bool save(const QString &filename);
95
96 private:
97     void sortStartTimes();
98     int v8EventIndex(const QString &hashStr);
99     void computeQmlTime();
100     void setState(QmlProfilerData::State state);
101
102 private:
103     QmlProfilerDataPrivate *d;
104 };
105
106 #endif // QMLPROFILERDATA_H