2011-04-13 08:42:33 +02:00
|
|
|
/**************************************************************************
|
2010-03-18 12:06:43 +01:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file is part of Qt Creator
|
2010-03-18 12:06:43 +01:00
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2010-03-18 12:06:43 +01:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2010-03-18 12:06:43 +01:00
|
|
|
**
|
2011-05-12 13:25:35 +02:00
|
|
|
**
|
2010-03-18 12:06:43 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2011-04-13 08:42:33 +02:00
|
|
|
**
|
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2010-03-18 12:06:43 +01:00
|
|
|
**
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-03-18 12:06:43 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
2010-03-18 12:06:43 +01:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
2010-03-18 12:06:43 +01:00
|
|
|
**
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
**************************************************************************/
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
#include "qmldirparser_p.h"
|
|
|
|
#include "qmlerror.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
#include <QtCore/QtDebug>
|
2010-03-18 12:06:43 +01:00
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
2010-03-18 12:06:43 +01:00
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
static int parseInt(const QStringRef &str, bool *ok)
|
2010-03-18 12:06:43 +01:00
|
|
|
{
|
2012-07-31 10:12:26 +02:00
|
|
|
int pos = 0;
|
|
|
|
int number = 0;
|
|
|
|
while (pos < str.length() && str.at(pos).isDigit()) {
|
|
|
|
if (pos != 0)
|
|
|
|
number *= 10;
|
|
|
|
number += str.at(pos).unicode() - '0';
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
if (pos != str.length())
|
|
|
|
*ok = false;
|
|
|
|
else
|
|
|
|
*ok = true;
|
|
|
|
return number;
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
QmlDirParser::QmlDirParser()
|
2011-09-13 08:42:52 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
QmlDirParser::~QmlDirParser()
|
2011-09-13 08:42:52 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
inline static void scanSpace(const QChar *&ch) {
|
|
|
|
while (ch->isSpace() && !ch->isNull() && *ch != QLatin1Char('\n'))
|
|
|
|
++ch;
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
inline static void scanToEnd(const QChar *&ch) {
|
|
|
|
while (*ch != QLatin1Char('\n') && !ch->isNull())
|
|
|
|
++ch;
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
inline static void scanWord(const QChar *&ch) {
|
|
|
|
while (!ch->isSpace() && !ch->isNull())
|
|
|
|
++ch;
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
/*!
|
|
|
|
\a url is used for generating errors.
|
|
|
|
*/
|
|
|
|
bool QmlDirParser::parse(const QString &source)
|
2010-03-18 12:06:43 +01:00
|
|
|
{
|
|
|
|
_errors.clear();
|
|
|
|
_plugins.clear();
|
|
|
|
_components.clear();
|
2012-07-31 10:12:26 +02:00
|
|
|
_scripts.clear();
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
int lineNumber = 0;
|
2012-07-31 10:12:26 +02:00
|
|
|
bool firstLine = true;
|
2010-03-18 12:06:43 +01:00
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
const QChar *ch = source.constData();
|
|
|
|
while (!ch->isNull()) {
|
2010-03-18 12:06:43 +01:00
|
|
|
++lineNumber;
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
bool invalidLine = false;
|
|
|
|
const QChar *lineStart = ch;
|
|
|
|
|
|
|
|
scanSpace(ch);
|
|
|
|
if (*ch == QLatin1Char('\n')) {
|
|
|
|
++ch;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (ch->isNull())
|
2010-03-18 12:06:43 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
QString sections[3];
|
|
|
|
int sectionCount = 0;
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
do {
|
|
|
|
if (*ch == QLatin1Char('#')) {
|
|
|
|
scanToEnd(ch);
|
2010-03-18 12:06:43 +01:00
|
|
|
break;
|
2012-07-31 10:12:26 +02:00
|
|
|
}
|
|
|
|
const QChar *start = ch;
|
|
|
|
scanWord(ch);
|
|
|
|
if (sectionCount < 3) {
|
|
|
|
sections[sectionCount++] = source.mid(start-source.constData(), ch-start);
|
2010-03-18 12:06:43 +01:00
|
|
|
} else {
|
2012-07-31 10:12:26 +02:00
|
|
|
reportError(lineNumber, start-lineStart, QLatin1String("unexpected token"));
|
|
|
|
scanToEnd(ch);
|
|
|
|
invalidLine = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
scanSpace(ch);
|
|
|
|
} while (*ch != QLatin1Char('\n') && !ch->isNull());
|
2010-03-18 12:06:43 +01:00
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
if (!ch->isNull())
|
|
|
|
++ch;
|
2010-03-18 12:06:43 +01:00
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
if (invalidLine) {
|
|
|
|
reportError(lineNumber, -1,
|
|
|
|
QString::fromUtf8("invalid qmldir directive contains too many tokens"));
|
|
|
|
continue;
|
|
|
|
} else if (sectionCount == 0) {
|
|
|
|
continue; // no sections, no party.
|
2010-03-18 12:06:43 +01:00
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
} else if (sections[0] == QLatin1String("module")) {
|
|
|
|
if (sectionCount != 2) {
|
|
|
|
reportError(lineNumber, -1,
|
|
|
|
QString::fromUtf8("module directive requires one argument, but %1 were provided").arg(sectionCount - 1));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!_typeNamespace.isEmpty()) {
|
|
|
|
reportError(lineNumber, -1,
|
|
|
|
QString::fromUtf8("only one module directive may be defined in a qmldir file"));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!firstLine) {
|
|
|
|
reportError(lineNumber, -1,
|
|
|
|
QString::fromUtf8("module directive must be the first directive in a qmldir file"));
|
|
|
|
continue;
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
_typeNamespace = sections[1];
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
} else if (sections[0] == QLatin1String("plugin")) {
|
|
|
|
if (sectionCount < 2) {
|
|
|
|
reportError(lineNumber, -1,
|
2011-05-12 13:25:35 +02:00
|
|
|
QString::fromUtf8("plugin directive requires one or two arguments, but %1 were provided").arg(sectionCount - 1));
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Plugin entry(sections[1], sections[2]);
|
|
|
|
|
|
|
|
_plugins.append(entry);
|
|
|
|
|
2010-03-25 14:11:23 +01:00
|
|
|
} else if (sections[0] == QLatin1String("internal")) {
|
|
|
|
if (sectionCount != 3) {
|
|
|
|
reportError(lineNumber, -1,
|
2011-05-12 13:25:35 +02:00
|
|
|
QString::fromUtf8("internal types require 2 arguments, but %1 were provided").arg(sectionCount - 1));
|
2010-03-25 14:11:23 +01:00
|
|
|
continue;
|
|
|
|
}
|
2011-12-07 11:16:26 +01:00
|
|
|
Component entry(sections[1], sections[2], -1, -1);
|
2010-03-25 14:11:23 +01:00
|
|
|
entry.internal = true;
|
2012-07-31 10:12:26 +02:00
|
|
|
_components.insertMulti(entry.typeName, entry);
|
2011-05-12 13:25:35 +02:00
|
|
|
} else if (sections[0] == QLatin1String("typeinfo")) {
|
|
|
|
if (sectionCount != 2) {
|
|
|
|
reportError(lineNumber, -1,
|
|
|
|
QString::fromUtf8("typeinfo requires 1 argument, but %1 were provided").arg(sectionCount - 1));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#ifdef QT_CREATOR
|
|
|
|
TypeInfo typeInfo(sections[1]);
|
|
|
|
_typeInfos.append(typeInfo);
|
|
|
|
#endif
|
2010-03-25 14:11:23 +01:00
|
|
|
|
|
|
|
} else if (sectionCount == 2) {
|
|
|
|
// No version specified (should only be used for relative qmldir files)
|
2011-12-07 11:16:26 +01:00
|
|
|
const Component entry(sections[0], sections[1], -1, -1);
|
2012-07-31 10:12:26 +02:00
|
|
|
_components.insertMulti(entry.typeName, entry);
|
2010-03-18 12:06:43 +01:00
|
|
|
} else if (sectionCount == 3) {
|
|
|
|
const QString &version = sections[1];
|
|
|
|
const int dotIndex = version.indexOf(QLatin1Char('.'));
|
|
|
|
|
|
|
|
if (dotIndex == -1) {
|
2010-10-19 16:08:44 +02:00
|
|
|
reportError(lineNumber, -1, QLatin1String("expected '.'"));
|
2010-03-18 12:06:43 +01:00
|
|
|
} else if (version.indexOf(QLatin1Char('.'), dotIndex + 1) != -1) {
|
2010-10-19 16:08:44 +02:00
|
|
|
reportError(lineNumber, -1, QLatin1String("unexpected '.'"));
|
2010-03-18 12:06:43 +01:00
|
|
|
} else {
|
|
|
|
bool validVersionNumber = false;
|
2012-07-31 10:12:26 +02:00
|
|
|
const int majorVersion = parseInt(QStringRef(&version, 0, dotIndex), &validVersionNumber);
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
if (validVersionNumber) {
|
2012-07-31 10:12:26 +02:00
|
|
|
const int minorVersion = parseInt(QStringRef(&version, dotIndex+1, version.length()-dotIndex-1), &validVersionNumber);
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
if (validVersionNumber) {
|
2012-07-31 10:12:26 +02:00
|
|
|
const QString &fileName = sections[2];
|
|
|
|
|
|
|
|
if (fileName.endsWith(QLatin1String(".js"))) {
|
|
|
|
// A 'js' extension indicates a namespaced script import
|
|
|
|
const Script entry(sections[0], fileName, majorVersion, minorVersion);
|
|
|
|
_scripts.append(entry);
|
|
|
|
} else {
|
|
|
|
const Component entry(sections[0], fileName, majorVersion, minorVersion);
|
|
|
|
_components.insertMulti(entry.typeName, entry);
|
|
|
|
}
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2010-10-19 16:08:44 +02:00
|
|
|
reportError(lineNumber, -1,
|
2011-05-12 13:25:35 +02:00
|
|
|
QString::fromUtf8("a component declaration requires two or three arguments, but %1 were provided").arg(sectionCount));
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
2012-07-31 10:12:26 +02:00
|
|
|
|
|
|
|
firstLine = false;
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return hasError();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlDirParser::reportError(int line, int column, const QString &description)
|
|
|
|
{
|
|
|
|
QmlError error;
|
|
|
|
error.setLine(line);
|
|
|
|
error.setColumn(column);
|
|
|
|
error.setDescription(description);
|
|
|
|
_errors.append(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlDirParser::hasError() const
|
|
|
|
{
|
|
|
|
if (! _errors.isEmpty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
void QmlDirParser::setError(const QmlError &e)
|
|
|
|
{
|
|
|
|
_errors.clear();
|
|
|
|
_errors.append(e);
|
|
|
|
}
|
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
QList<QmlError> QmlDirParser::errors(const QString &uri) const
|
2010-03-18 12:06:43 +01:00
|
|
|
{
|
2012-07-31 10:12:26 +02:00
|
|
|
QUrl url(uri);
|
2011-09-13 08:42:52 +02:00
|
|
|
QList<QmlError> errors = _errors;
|
|
|
|
for (int i = 0; i < errors.size(); ++i) {
|
|
|
|
QmlError &e = errors[i];
|
|
|
|
QString description = e.description();
|
|
|
|
description.replace(QLatin1String("$$URI$$"), uri);
|
|
|
|
e.setDescription(description);
|
2012-07-31 10:12:26 +02:00
|
|
|
e.setUrl(url);
|
2011-09-13 08:42:52 +02:00
|
|
|
}
|
|
|
|
return errors;
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
QString QmlDirParser::typeNamespace() const
|
|
|
|
{
|
|
|
|
return _typeNamespace;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlDirParser::setTypeNamespace(const QString &s)
|
|
|
|
{
|
|
|
|
_typeNamespace = s;
|
|
|
|
}
|
|
|
|
|
2010-03-18 12:06:43 +01:00
|
|
|
QList<QmlDirParser::Plugin> QmlDirParser::plugins() const
|
|
|
|
{
|
|
|
|
return _plugins;
|
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
QHash<QString,QmlDirParser::Component> QmlDirParser::components() const
|
2010-03-18 12:06:43 +01:00
|
|
|
{
|
|
|
|
return _components;
|
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
QList<QmlDirParser::Script> QmlDirParser::scripts() const
|
|
|
|
{
|
|
|
|
return _scripts;
|
|
|
|
}
|
|
|
|
|
2011-05-12 13:25:35 +02:00
|
|
|
#ifdef QT_CREATOR
|
|
|
|
QList<QmlDirParser::TypeInfo> QmlDirParser::typeInfos() const
|
|
|
|
{
|
|
|
|
return _typeInfos;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
QDebug &operator<< (QDebug &debug, const QmlDirParser::Component &component)
|
|
|
|
{
|
|
|
|
const QString output = QString::fromLatin1("{%1 %2.%3}").
|
|
|
|
arg(component.typeName).arg(component.majorVersion).arg(component.minorVersion);
|
|
|
|
return debug << qPrintable(output);
|
|
|
|
}
|
|
|
|
|
|
|
|
QDebug &operator<< (QDebug &debug, const QmlDirParser::Script &script)
|
|
|
|
{
|
|
|
|
const QString output = QString::fromLatin1("{%1 %2.%3}").
|
|
|
|
arg(script.nameSpace).arg(script.majorVersion).arg(script.minorVersion);
|
|
|
|
return debug << qPrintable(output);
|
|
|
|
}
|
|
|
|
|
2010-03-18 12:06:43 +01:00
|
|
|
QT_END_NAMESPACE
|