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
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2010-03-18 12:06:43 +01:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
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
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
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"
|
2011-09-13 08:42:52 +02:00
|
|
|
bool Qml_isFileCaseCorrect(const QString &) { return true; }
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
#include <QtCore/QTextStream>
|
2011-09-13 08:42:52 +02:00
|
|
|
#include <QtCore/QFile>
|
2010-03-18 12:06:43 +01:00
|
|
|
#include <QtCore/QtDebug>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
QmlDirParser::QmlDirParser()
|
|
|
|
: _isParsed(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QmlDirParser::~QmlDirParser()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QUrl QmlDirParser::url() const
|
|
|
|
{
|
|
|
|
return _url;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlDirParser::setUrl(const QUrl &url)
|
|
|
|
{
|
|
|
|
_url = url;
|
|
|
|
}
|
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
QString QmlDirParser::fileSource() const
|
|
|
|
{
|
|
|
|
return _filePathSouce;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlDirParser::setFileSource(const QString &filePath)
|
|
|
|
{
|
|
|
|
_filePathSouce = filePath;
|
|
|
|
}
|
|
|
|
|
2010-03-18 12:06:43 +01:00
|
|
|
QString QmlDirParser::source() const
|
|
|
|
{
|
|
|
|
return _source;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlDirParser::setSource(const QString &source)
|
|
|
|
{
|
|
|
|
_isParsed = false;
|
|
|
|
_source = source;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlDirParser::isParsed() const
|
|
|
|
{
|
|
|
|
return _isParsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlDirParser::parse()
|
|
|
|
{
|
|
|
|
if (_isParsed)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
_isParsed = true;
|
|
|
|
_errors.clear();
|
|
|
|
_plugins.clear();
|
|
|
|
_components.clear();
|
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
if (_source.isEmpty() && !_filePathSouce.isEmpty()) {
|
|
|
|
QFile file(_filePathSouce);
|
|
|
|
if (!Qml_isFileCaseCorrect(_filePathSouce)) {
|
|
|
|
QmlError error;
|
|
|
|
error.setDescription(QString::fromUtf8("cannot load module \"$$URI$$\": File name case mismatch for \"%1\"").arg(_filePathSouce));
|
|
|
|
_errors.prepend(error);
|
|
|
|
return false;
|
|
|
|
} else if (file.open(QFile::ReadOnly)) {
|
|
|
|
_source = QString::fromUtf8(file.readAll());
|
|
|
|
} else {
|
|
|
|
QmlError error;
|
|
|
|
error.setDescription(QString::fromUtf8("module \"$$URI$$\" definition \"%1\" not readable").arg(_filePathSouce));
|
|
|
|
_errors.prepend(error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-18 12:06:43 +01:00
|
|
|
QTextStream stream(&_source);
|
|
|
|
int lineNumber = 0;
|
|
|
|
|
|
|
|
forever {
|
|
|
|
++lineNumber;
|
|
|
|
|
|
|
|
const QString line = stream.readLine();
|
|
|
|
if (line.isNull())
|
|
|
|
break;
|
|
|
|
|
|
|
|
QString sections[3];
|
|
|
|
int sectionCount = 0;
|
|
|
|
|
|
|
|
int index = 0;
|
|
|
|
const int length = line.length();
|
|
|
|
|
|
|
|
while (index != length) {
|
|
|
|
const QChar ch = line.at(index);
|
|
|
|
|
2011-09-19 14:09:26 +02:00
|
|
|
if (ch.isSpace()) {
|
2010-03-18 12:06:43 +01:00
|
|
|
do { ++index; }
|
2011-09-19 14:09:26 +02:00
|
|
|
while (index != length && line.at(index).isSpace());
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
} else if (ch == QLatin1Char('#')) {
|
|
|
|
// recognized a comment
|
|
|
|
break;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
const int start = index;
|
|
|
|
|
|
|
|
do { ++index; }
|
2011-09-19 14:09:26 +02:00
|
|
|
while (index != length && !line.at(index).isSpace());
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
const QString lexeme = line.mid(start, index - start);
|
|
|
|
|
|
|
|
if (sectionCount >= 3) {
|
|
|
|
reportError(lineNumber, start, QLatin1String("unexpected token"));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
sections[sectionCount++] = lexeme;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sectionCount == 0) {
|
|
|
|
continue; // no sections, no party.
|
|
|
|
|
|
|
|
} 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;
|
|
|
|
_components.append(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);
|
2010-03-25 14:11:23 +01:00
|
|
|
_components.append(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;
|
|
|
|
const int majorVersion = version.left(dotIndex).toInt(&validVersionNumber);
|
|
|
|
|
|
|
|
if (validVersionNumber) {
|
|
|
|
const int minorVersion = version.mid(dotIndex + 1).toInt(&validVersionNumber);
|
|
|
|
|
|
|
|
if (validVersionNumber) {
|
2011-12-07 11:16:26 +01:00
|
|
|
const Component entry(sections[0], sections[2], majorVersion, minorVersion);
|
2010-03-18 12:06:43 +01:00
|
|
|
|
|
|
|
_components.append(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hasError();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QmlDirParser::reportError(int line, int column, const QString &description)
|
|
|
|
{
|
|
|
|
QmlError error;
|
|
|
|
error.setUrl(_url);
|
|
|
|
error.setLine(line);
|
|
|
|
error.setColumn(column);
|
|
|
|
error.setDescription(description);
|
|
|
|
_errors.append(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlDirParser::hasError() const
|
|
|
|
{
|
|
|
|
if (! _errors.isEmpty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
QList<QmlError> QmlDirParser::errors(const QString &uri) const
|
2010-03-18 12:06:43 +01:00
|
|
|
{
|
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);
|
|
|
|
}
|
|
|
|
return errors;
|
2010-03-18 12:06:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QList<QmlDirParser::Plugin> QmlDirParser::plugins() const
|
|
|
|
{
|
|
|
|
return _plugins;
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<QmlDirParser::Component> QmlDirParser::components() const
|
|
|
|
{
|
|
|
|
return _components;
|
|
|
|
}
|
|
|
|
|
2011-05-12 13:25:35 +02:00
|
|
|
#ifdef QT_CREATOR
|
|
|
|
QList<QmlDirParser::TypeInfo> QmlDirParser::typeInfos() const
|
|
|
|
{
|
|
|
|
return _typeInfos;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-03-18 12:06:43 +01:00
|
|
|
QT_END_NAMESPACE
|