Fix compilation for QT_NO_FILEDIALOG
[profile/ivi/qtdeclarative.git] / tools / qmlscene / main.cpp
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 tools applications 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 #include <QtCore/qdebug.h>
43 #include <QtCore/qabstractanimation.h>
44 #include <QtCore/qdir.h>
45 #include <QtCore/qmath.h>
46 #include <QtCore/qdatetime.h>
47
48 #include <QtGui/QGuiApplication>
49
50 #include <QtQml/qqml.h>
51 #include <QtQml/qqmlengine.h>
52 #include <QtQml/qqmlcomponent.h>
53 #include <QtQml/qqmlcontext.h>
54
55 #include <QtQuick/qquickitem.h>
56 #include <QtQuick/qquickview.h>
57
58 #include <private/qabstractanimation_p.h>
59
60 #ifdef QT_WIDGETS_LIB
61 #include <QtWidgets/QApplication>
62 #include <QtWidgets/QFileDialog>
63 #endif
64
65
66 #ifdef QML_RUNTIME_TESTING
67 class RenderStatistics
68 {
69 public:
70     static void updateStats();
71     static void printTotalStats();
72 private:
73     static QVector<qreal> timePerFrame;
74     static QVector<int> timesPerFrames;
75 };
76
77 QVector<qreal> RenderStatistics::timePerFrame;
78 QVector<int> RenderStatistics::timesPerFrames;
79
80 void RenderStatistics::updateStats()
81 {
82     static QTime time;
83     static int frames;
84     static int lastTime;
85
86     if (frames == 0) {
87         time.start();
88     } else {
89         int elapsed = time.elapsed();
90         timesPerFrames.append(elapsed - lastTime);
91         lastTime = elapsed;
92
93         if (elapsed > 5000) {
94             qreal avgtime = elapsed / (qreal) frames;
95             qreal var = 0;
96             for (int i = 0; i < timesPerFrames.size(); ++i) {
97                 qreal diff = timesPerFrames.at(i) - avgtime;
98                 var += diff * diff;
99             }
100             var /= timesPerFrames.size();
101
102             qDebug("Average time per frame: %f ms (%i fps), std.dev: %f ms", avgtime, qRound(1000. / avgtime), qSqrt(var));
103
104             timePerFrame.append(avgtime);
105             timesPerFrames.clear();
106             time.start();
107             lastTime = 0;
108             frames = 0;
109         }
110     }
111     ++frames;
112 }
113
114 void RenderStatistics::printTotalStats()
115 {
116     int count = timePerFrame.count();
117     if (count == 0)
118         return;
119
120     qreal minTime = 0;
121     qreal maxTime = 0;
122     qreal avg = 0;
123     for (int i = 0; i < count; ++i) {
124         minTime = minTime == 0 ? timePerFrame.at(i) : qMin(minTime, timePerFrame.at(i));
125         maxTime = qMax(maxTime, timePerFrame.at(i));
126         avg += timePerFrame.at(i);
127     }
128     avg /= count;
129
130     qDebug(" ");
131     qDebug("----- Statistics -----");
132     qDebug("Average time per frame: %f ms (%i fps)", avg, qRound(1000. / avg));
133     qDebug("Best time per frame: %f ms (%i fps)", minTime, int(1000 / minTime));
134     qDebug("Worst time per frame: %f ms (%i fps)", maxTime, int(1000 / maxTime));
135     qDebug("----------------------");
136     qDebug(" ");
137 }
138 #endif
139
140 struct Options
141 {
142     Options()
143         : originalQml(false)
144         , originalQmlRaster(false)
145         , maximized(false)
146         , fullscreen(false)
147         , clip(false)
148         , versionDetection(true)
149         , slowAnimations(false)
150         , quitImmediately(false)
151         , resizeViewToRootItem(false)
152     {
153     }
154
155     QUrl file;
156     bool originalQml;
157     bool originalQmlRaster;
158     bool maximized;
159     bool fullscreen;
160     bool scenegraphOnGraphicsview;
161     bool clip;
162     bool versionDetection;
163     bool slowAnimations;
164     bool quitImmediately;
165     bool resizeViewToRootItem;
166 };
167
168 #if defined(QMLSCENE_BUNDLE)
169 Q_DECLARE_METATYPE(QFileInfo);
170 QFileInfoList findQmlFiles(const QString &dirName)
171 {
172     QDir dir(dirName);
173
174     QFileInfoList ret;
175     if (dir.exists()) {
176         QFileInfoList fileInfos = dir.entryInfoList(QStringList() << "*.qml",
177                                                     QDir::Files | QDir::AllDirs | QDir::NoDotAndDotDot);
178
179         foreach (QFileInfo fileInfo, fileInfos) {
180             if (fileInfo.isDir())
181                 ret += findQmlFiles(fileInfo.filePath());
182             else if (fileInfo.fileName().length() > 0 && fileInfo.fileName().at(0).isLower())
183                 ret.append(fileInfo);
184         }
185     }
186
187     return ret;
188 }
189
190 static int displayOptionsDialog(Options *options)
191 {
192     QDialog dialog;
193
194     QFormLayout *layout = new QFormLayout(&dialog);
195
196     QComboBox *qmlFileComboBox = new QComboBox(&dialog);
197     QFileInfoList fileInfos = findQmlFiles(":/bundle") + findQmlFiles("./qmlscene-resources");
198
199     foreach (QFileInfo fileInfo, fileInfos)
200         qmlFileComboBox->addItem(fileInfo.dir().dirName() + "/" + fileInfo.fileName(), QVariant::fromValue(fileInfo));
201
202     QCheckBox *originalCheckBox = new QCheckBox(&dialog);
203     originalCheckBox->setText("Use original QML viewer");
204     originalCheckBox->setChecked(options->originalQml);
205
206     QCheckBox *fullscreenCheckBox = new QCheckBox(&dialog);
207     fullscreenCheckBox->setText("Start fullscreen");
208     fullscreenCheckBox->setChecked(options->fullscreen);
209
210     QCheckBox *maximizedCheckBox = new QCheckBox(&dialog);
211     maximizedCheckBox->setText("Start maximized");
212     maximizedCheckBox->setChecked(options->maximized);
213
214     QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel,
215                                                        Qt::Horizontal,
216                                                        &dialog);
217     QObject::connect(buttonBox, SIGNAL(accepted()), &dialog, SLOT(accept()));
218     QObject::connect(buttonBox, SIGNAL(rejected()), &dialog, SLOT(reject()));
219
220     layout->addRow("Qml file:", qmlFileComboBox);
221     layout->addWidget(originalCheckBox);
222     layout->addWidget(maximizedCheckBox);
223     layout->addWidget(fullscreenCheckBox);
224     layout->addWidget(buttonBox);
225
226     int result = dialog.exec();
227     if (result == QDialog::Accepted) {
228         QVariant variant = qmlFileComboBox->itemData(qmlFileComboBox->currentIndex());
229         QFileInfo fileInfo = variant.value<QFileInfo>();
230
231         if (fileInfo.canonicalFilePath().startsWith(":"))
232             options->file = QUrl("qrc" + fileInfo.canonicalFilePath());
233         else
234             options->file = QUrl::fromLocalFile(fileInfo.canonicalFilePath());
235         options->originalQml = originalCheckBox->isChecked();
236         options->maximized = maximizedCheckBox->isChecked();
237         options->fullscreen = fullscreenCheckBox->isChecked();
238     }
239     return result;
240 }
241 #endif
242
243 static bool checkVersion(const QUrl &url)
244 {
245     if (!qgetenv("QMLSCENE_IMPORT_NAME").isEmpty()) {
246         qWarning("QMLSCENE_IMPORT_NAME is no longer supported.");
247     }
248
249     QString fileName = url.toLocalFile();
250     if (fileName.isEmpty()) {
251         qWarning("qmlscene: filename required.");
252         return false;
253     }
254
255     QFile f(fileName);
256     if (!f.open(QFile::ReadOnly | QFile::Text)) {
257         qWarning("qmlscene: failed to check version of file '%s', could not open...",
258                  qPrintable(fileName));
259         return false;
260     }
261
262     QRegExp quick1("^\\s*import +QtQuick +1\\.\\w*");
263     QRegExp qt47("^\\s*import +Qt +4\\.7");
264
265     QTextStream stream(&f);
266     bool codeFound= false;
267     while (!codeFound) {
268         QString line = stream.readLine();
269         if (line.contains("{")) {
270             codeFound = true;
271         } else {
272             QString import;
273             if (quick1.indexIn(line) >= 0) {
274                 import = quick1.cap(0).trimmed();
275             } else if (qt47.indexIn(line) >= 0) {
276                 import = qt47.cap(0).trimmed();
277             }
278
279             if (!import.isNull()) {
280                 qWarning("qmlscene: '%s' is no longer supported.\n"
281                          "Use qmlviewer to load file '%s'.",
282                          qPrintable(import),
283                          qPrintable(fileName));
284                 return false;
285             }
286         }
287     }
288
289     return true;
290 }
291
292 static void displayFileDialog(Options *options)
293 {
294 #if defined(QT_WIDGETS_LIB) && !defined(QT_NO_FILEDIALOG)
295     QString fileName = QFileDialog::getOpenFileName(0, "Open QML file", QString(), "QML Files (*.qml)");
296     if (!fileName.isEmpty()) {
297         QFileInfo fi(fileName);
298         options->file = QUrl::fromLocalFile(fi.canonicalFilePath());
299     }
300 #else
301     Q_UNUSED(options);
302     qWarning("No filename specified...");
303 #endif
304 }
305
306 static void loadDummyDataFiles(QQmlEngine &engine, const QString& directory)
307 {
308     QDir dir(directory+"/dummydata", "*.qml");
309     QStringList list = dir.entryList();
310     for (int i = 0; i < list.size(); ++i) {
311         QString qml = list.at(i);
312         QFile f(dir.filePath(qml));
313         f.open(QIODevice::ReadOnly);
314         QByteArray data = f.readAll();
315         QQmlComponent comp(&engine);
316         comp.setData(data, QUrl());
317         QObject *dummyData = comp.create();
318
319         if(comp.isError()) {
320             QList<QQmlError> errors = comp.errors();
321             foreach (const QQmlError &error, errors) {
322                 qWarning() << error;
323             }
324         }
325
326         if (dummyData) {
327             qWarning() << "Loaded dummy data:" << dir.filePath(qml);
328             qml.truncate(qml.length()-4);
329             engine.rootContext()->setContextProperty(qml, dummyData);
330             dummyData->setParent(&engine);
331         }
332     }
333 }
334
335 static void usage()
336 {
337     qWarning("Usage: qmlscene [options] <filename>");
338     qWarning(" ");
339     qWarning(" options:");
340     qWarning("  --maximized ............................... run maximized");
341     qWarning("  --fullscreen .............................. run fullscreen");
342     qWarning("  --no-multisample .......................... Disable multisampling (anti-aliasing)");
343     qWarning("  --no-version-detection .................... Do not try to detect the version of the .qml file");
344     qWarning("  --slow-animations ......................... Run all animations in slow motion");
345     qWarning("  --resize-to-root .......................... Resize the window to the size of the root item");
346     qWarning("  --quit .................................... Quit immediately after starting");
347     qWarning("  -I <path> ................................. Add <path> to the list of import paths");
348     qWarning("  -B <name> <file> .......................... Add a named bundle");
349
350     qWarning(" ");
351     exit(1);
352 }
353
354 int main(int argc, char ** argv)
355 {
356     Options options;
357
358     QStringList imports;
359     QList<QPair<QString, QString> > bundles;
360     for (int i = 1; i < argc; ++i) {
361         if (*argv[i] != '-' && QFileInfo(QFile::decodeName(argv[i])).exists()) {
362             options.file = QUrl::fromLocalFile(argv[i]);
363         } else {
364             const QString lowerArgument = QString::fromLatin1(argv[i]).toLower();
365             if (lowerArgument == QLatin1String("--maximized"))
366                 options.maximized = true;
367             else if (lowerArgument == QLatin1String("--fullscreen"))
368                 options.fullscreen = true;
369             else if (lowerArgument == QLatin1String("--clip"))
370                 options.clip = true;
371             else if (lowerArgument == QLatin1String("--no-version-detection"))
372                 options.versionDetection = false;
373             else if (lowerArgument == QLatin1String("--slow-animations"))
374                 options.slowAnimations = true;
375             else if (lowerArgument == QLatin1String("--quit"))
376                 options.quitImmediately = true;
377             else if (lowerArgument == QLatin1String("--resize-to-root"))
378                 options.resizeViewToRootItem = true;
379             else if (lowerArgument == QLatin1String("-i") && i + 1 < argc)
380                 imports.append(QString::fromLatin1(argv[++i]));
381             else if (lowerArgument == QLatin1String("-b") && i + 2 < argc) {
382                 QString name = QString::fromLatin1(argv[++i]);
383                 QString file = QString::fromLatin1(argv[++i]);
384                 bundles.append(qMakePair(name, file));
385             } else if (lowerArgument == QLatin1String("--help")
386                      || lowerArgument == QLatin1String("-help")
387                      || lowerArgument == QLatin1String("--h")
388                      || lowerArgument == QLatin1String("-h"))
389                 usage();
390         }
391     }
392
393 #ifdef QT_WIDGETS_LIB
394     QApplication app(argc, argv);
395 #else
396     QGuiApplication app(argc, argv);
397 #endif
398     app.setApplicationName("QtQmlViewer");
399     app.setOrganizationName("Nokia");
400     app.setOrganizationDomain("nokia.com");
401
402     QUnifiedTimer::instance()->setSlowModeEnabled(options.slowAnimations);
403
404     if (options.file.isEmpty())
405 #if defined(QMLSCENE_BUNDLE)
406         displayOptionsDialog(&options);
407 #else
408         displayFileDialog(&options);
409 #endif
410
411     QWindow *window = 0;
412     QQmlEngine *engine = 0;
413
414     int exitCode = 0;
415
416     if (!options.file.isEmpty()) {
417         if (!options.versionDetection || checkVersion(options.file)) {
418             QQuickView *qxView = new QQuickView();
419             engine = qxView->engine();
420             for (int i = 0; i < imports.size(); ++i)
421                 engine->addImportPath(imports.at(i));
422             for (int i = 0; i < bundles.size(); ++i)
423                 engine->addNamedBundle(bundles.at(i).first, bundles.at(i).second);
424             window = qxView;
425             if (options.file.isLocalFile()) {
426                 QFileInfo fi(options.file.toLocalFile());
427                 loadDummyDataFiles(*engine, fi.path());
428             }
429             qxView->setSource(options.file);
430
431             QObject::connect(engine, SIGNAL(quit()), QCoreApplication::instance(), SLOT(quit()));
432
433             if (options.resizeViewToRootItem)
434                 qxView->setResizeMode(QQuickView::SizeViewToRootObject);
435             else
436                 qxView->setResizeMode(QQuickView::SizeRootObjectToView);
437
438             window->setWindowFlags(Qt::Window | Qt::WindowSystemMenuHint | Qt::WindowTitleHint | Qt::WindowMinMaxButtonsHint | Qt::WindowCloseButtonHint);
439             if (options.fullscreen)
440                 window->showFullScreen();
441             else if (options.maximized)
442                 window->showMaximized();
443             else
444                 window->show();
445
446             if (options.quitImmediately) {
447                 QMetaObject::invokeMethod(QCoreApplication::instance(), "quit", Qt::QueuedConnection);
448             }
449
450             exitCode = app.exec();
451
452             delete window;
453
454 #ifdef QML_RUNTIME_TESTING
455             RenderStatistics::printTotalStats();
456 #endif
457         }
458     }
459
460     return exitCode;
461 }
462