1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QtCore/qfile.h>
#include <QtCore/qtextstream.h>
#include <QtCore/qstringlist.h>
#include <QtCore/qscopedpointer.h>
#include <QtCore/QCoreApplication>
#include <QtQml/qjsengine.h>
#include <stdlib.h>
class CommandInterface : public QObject
{
Q_OBJECT
public:
Q_INVOKABLE void quit() { m_wantsToQuit = true; }
static bool wantsToQuit() { return m_wantsToQuit; }
private:
static bool m_wantsToQuit;
};
bool CommandInterface::m_wantsToQuit = false;
static void interactive(QJSEngine *eng)
{
QTextStream qin(stdin, QFile::ReadOnly);
const char *prompt = "qs> ";
forever {
QString line;
printf("%s", prompt);
fflush(stdout);
line = qin.readLine();
if (line.isNull())
break;
if (line.trimmed().isEmpty())
continue;
line += QLatin1Char('\n');
QJSValue result = eng->evaluate(line, QLatin1String("typein"));
fprintf(stderr, "%s\n", qPrintable(result.toString()));
if (CommandInterface::wantsToQuit())
break;
}
}
int main(int argc, char *argv[])
{
QCoreApplication app(argc, argv);
QScopedPointer<QJSEngine> eng(new QJSEngine());
{
QJSValue globalObject = eng->globalObject();
QJSValue interface = eng->newQObject(new CommandInterface);
globalObject.setProperty("qt", interface);
}
if (! *++argv) {
interactive(eng.data());
return EXIT_SUCCESS;
}
while (const char *arg = *argv++) {
QString fileName = QString::fromLocal8Bit(arg);
if (fileName == QLatin1String("-i")) {
interactive(eng.data());
break;
}
QString contents;
int lineNumber = 1;
if (fileName == QLatin1String("-")) {
QTextStream stream(stdin, QFile::ReadOnly);
contents = stream.readAll();
} else {
QFile file(fileName);
if (file.open(QFile::ReadOnly)) {
QTextStream stream(&file);
contents = stream.readAll();
file.close();
// strip off #!/usr/bin/env qjs line
if (contents.startsWith("#!")) {
contents.remove(0, contents.indexOf("\n"));
++lineNumber;
}
}
}
if (contents.isEmpty())
continue;
QJSValue result = eng->evaluate(contents, fileName, lineNumber);
if (result.isError()) {
fprintf (stderr, " %s\n\n", qPrintable(result.toString()));
return EXIT_FAILURE;
}
}
return EXIT_SUCCESS;
}
#include <main.moc>
|