2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Alternatively, 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 12:57:59 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "profileevaluator.h"
|
|
|
|
|
#include "proitems.h"
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QByteArray>
|
2008-12-12 16:30:31 +01:00
|
|
|
#include <QtCore/QDateTime>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QDir>
|
|
|
|
|
#include <QtCore/QFile>
|
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QList>
|
|
|
|
|
#include <QtCore/QRegExp>
|
|
|
|
|
#include <QtCore/QSet>
|
|
|
|
|
#include <QtCore/QStack>
|
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
#include <QtCore/QStringList>
|
|
|
|
|
#include <QtCore/QTextStream>
|
|
|
|
|
|
2008-12-12 16:30:31 +01:00
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/utsname.h>
|
2009-06-03 20:45:49 +02:00
|
|
|
#else
|
2008-12-12 16:30:31 +01:00
|
|
|
#include <Windows.h>
|
|
|
|
|
#endif
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
|
#define QT_POPEN _popen
|
2009-06-04 15:18:14 +02:00
|
|
|
#define QT_PCLOSE _pclose
|
2008-12-02 12:01:29 +01:00
|
|
|
#else
|
|
|
|
|
#define QT_POPEN popen
|
2009-06-04 15:18:14 +02:00
|
|
|
#define QT_PCLOSE pclose
|
2008-12-02 12:01:29 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
2009-08-10 17:27:07 +02:00
|
|
|
static void refFunctions(QHash<QString, ProBlock *> *defs)
|
|
|
|
|
{
|
|
|
|
|
foreach (ProBlock *itm, *defs)
|
|
|
|
|
itm->ref();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void clearFunctions(QHash<QString, ProBlock *> *defs)
|
|
|
|
|
{
|
|
|
|
|
foreach (ProBlock *itm, *defs)
|
|
|
|
|
itm->deref();
|
|
|
|
|
defs->clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void clearFunctions(ProFileEvaluator::FunctionDefs *defs)
|
|
|
|
|
{
|
|
|
|
|
clearFunctions(&defs->replaceFunctions);
|
|
|
|
|
clearFunctions(&defs->testFunctions);
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 16:34:30 +02:00
|
|
|
|
2008-12-12 16:30:31 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Option
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
ProFileEvaluator::Option::Option()
|
|
|
|
|
{
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
dirlist_sep = QLatin1Char(';');
|
|
|
|
|
dir_sep = QLatin1Char('\\');
|
|
|
|
|
#else
|
|
|
|
|
dirlist_sep = QLatin1Char(':');
|
|
|
|
|
dir_sep = QLatin1Char('/');
|
|
|
|
|
#endif
|
|
|
|
|
qmakespec = QString::fromLatin1(qgetenv("QMAKESPEC").data());
|
|
|
|
|
|
2008-12-12 16:30:31 +01:00
|
|
|
#if defined(Q_OS_WIN32)
|
2009-07-23 18:36:59 +02:00
|
|
|
target_mode = TARG_WIN_MODE;
|
2009-07-23 17:04:50 +02:00
|
|
|
#elif defined(Q_OS_MAC)
|
2009-07-23 18:36:59 +02:00
|
|
|
target_mode = TARG_MACX_MODE;
|
2009-07-23 17:04:50 +02:00
|
|
|
#elif defined(Q_OS_QNX6)
|
2009-07-23 18:36:59 +02:00
|
|
|
target_mode = TARG_QNX6_MODE;
|
2008-12-12 16:30:31 +01:00
|
|
|
#else
|
2009-07-23 18:36:59 +02:00
|
|
|
target_mode = TARG_UNIX_MODE;
|
2008-12-12 16:30:31 +01:00
|
|
|
#endif
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
field_sep = QLatin1String(" ");
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-10 17:27:07 +02:00
|
|
|
ProFileEvaluator::Option::~Option()
|
|
|
|
|
{
|
|
|
|
|
clearFunctions(&base_functions);
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
QString ProFileEvaluator::Option::field_sep;
|
2008-12-12 16:30:31 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// ProFileEvaluator::Private
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
class ProFileEvaluator::Private : public AbstractProItemVisitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
2009-07-23 18:36:59 +02:00
|
|
|
Private(ProFileEvaluator *q_, ProFileEvaluator::Option *option);
|
2009-08-10 17:27:07 +02:00
|
|
|
~Private();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-12 18:10:42 +01:00
|
|
|
ProFileEvaluator *q;
|
|
|
|
|
int m_lineNo; // Error reporting
|
|
|
|
|
bool m_verbose;
|
|
|
|
|
|
|
|
|
|
/////////////// Reading pro file
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
bool read(ProFile *pro);
|
2009-07-07 13:13:12 +02:00
|
|
|
bool read(ProFile *pro, const QString &content);
|
|
|
|
|
bool read(ProFile *pro, QTextStream *ts);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
ProBlock *currentBlock();
|
2009-08-07 19:17:44 +02:00
|
|
|
void updateItem(ushort *ptr);
|
|
|
|
|
void updateItem2();
|
|
|
|
|
bool insertVariable(ushort *ptr, bool *doSplit, bool *doSemicolon);
|
2008-12-02 12:01:29 +01:00
|
|
|
void insertOperator(const char op);
|
|
|
|
|
void insertComment(const QString &comment);
|
|
|
|
|
void enterScope(bool multiLine);
|
|
|
|
|
void leaveScope();
|
|
|
|
|
void finalizeBlock();
|
|
|
|
|
|
2008-12-12 18:10:42 +01:00
|
|
|
QStack<ProBlock *> m_blockstack;
|
|
|
|
|
ProBlock *m_block;
|
|
|
|
|
|
|
|
|
|
ProItem *m_commentItem;
|
|
|
|
|
QString m_proitem;
|
|
|
|
|
QString m_pendingComment;
|
|
|
|
|
|
|
|
|
|
/////////////// Evaluating pro file contents
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
// implementation of AbstractProItemVisitor
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn visitBeginProBlock(ProBlock *block);
|
2009-05-18 17:25:41 +02:00
|
|
|
void visitEndProBlock(ProBlock *block);
|
2009-05-19 19:00:06 +02:00
|
|
|
ProItem::ProItemReturn visitProLoopIteration();
|
|
|
|
|
void visitProLoopCleanup();
|
2009-05-18 17:25:41 +02:00
|
|
|
void visitBeginProVariable(ProVariable *variable);
|
|
|
|
|
void visitEndProVariable(ProVariable *variable);
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn visitBeginProFile(ProFile *value);
|
|
|
|
|
ProItem::ProItemReturn visitEndProFile(ProFile *value);
|
2009-05-18 17:25:41 +02:00
|
|
|
void visitProValue(ProValue *value);
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn visitProFunction(ProFunction *function);
|
2009-05-18 17:25:41 +02:00
|
|
|
void visitProOperator(ProOperator *oper);
|
|
|
|
|
void visitProCondition(ProCondition *condition);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-12 13:23:22 +01:00
|
|
|
QStringList valuesDirect(const QString &variableName) const { return m_valuemap[variableName]; }
|
2008-12-02 12:01:29 +01:00
|
|
|
QStringList values(const QString &variableName) const;
|
|
|
|
|
QStringList values(const QString &variableName, const ProFile *pro) const;
|
2008-12-12 16:30:31 +01:00
|
|
|
QStringList values(const QString &variableName, const QHash<QString, QStringList> &place,
|
|
|
|
|
const ProFile *pro) const;
|
2009-08-04 15:56:26 +02:00
|
|
|
QString propertyValue(const QString &val, bool complain = true) const;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
QStringList split_value_list(const QString &vals, bool do_semicolon = false);
|
|
|
|
|
QStringList split_arg_list(const QString ¶ms);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool isActiveConfig(const QString &config, bool regex = false);
|
|
|
|
|
QStringList expandVariableReferences(const QString &value);
|
2009-05-19 19:00:06 +02:00
|
|
|
void doVariableReplace(QString *str);
|
2008-12-02 12:01:29 +01:00
|
|
|
QStringList evaluateExpandFunction(const QString &function, const QString &arguments);
|
|
|
|
|
QString format(const char *format) const;
|
2009-08-12 13:00:21 +02:00
|
|
|
void logMessage(const QString &msg) const;
|
|
|
|
|
void errorMessage(const QString &msg) const;
|
|
|
|
|
void fileMessage(const QString &msg) const;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QString currentFileName() const;
|
2008-12-19 21:19:38 +01:00
|
|
|
QString currentDirectory() const;
|
2008-12-02 12:01:29 +01:00
|
|
|
ProFile *currentProFile() const;
|
|
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn evaluateConditionalFunction(const QString &function, const QString &arguments);
|
2009-05-12 17:15:54 +02:00
|
|
|
bool evaluateFile(const QString &fileName);
|
2009-08-10 17:27:07 +02:00
|
|
|
bool evaluateFeatureFile(const QString &fileName,
|
|
|
|
|
QHash<QString, QStringList> *values = 0, FunctionDefs *defs = 0);
|
|
|
|
|
bool evaluateFileInto(const QString &fileName,
|
|
|
|
|
QHash<QString, QStringList> *values, FunctionDefs *defs);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
static inline ProItem::ProItemReturn returnBool(bool b)
|
|
|
|
|
{ return b ? ProItem::ReturnTrue : ProItem::ReturnFalse; }
|
|
|
|
|
|
2009-08-14 17:36:07 +02:00
|
|
|
QList<QStringList> prepareFunctionArgs(const QString &arguments);
|
|
|
|
|
QStringList evaluateFunction(ProBlock *funcPtr, const QList<QStringList> &argumentsList, bool *ok);
|
2009-05-18 17:46:30 +02:00
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
QStringList qmakeMkspecPaths() const;
|
|
|
|
|
QStringList qmakeFeaturePaths() const;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-13 12:32:24 +02:00
|
|
|
struct State {
|
2009-05-14 14:35:37 +02:00
|
|
|
bool condition;
|
|
|
|
|
bool prevCondition;
|
2009-07-14 20:42:45 +02:00
|
|
|
QStringList varVal;
|
2009-05-13 12:32:24 +02:00
|
|
|
} m_sts;
|
|
|
|
|
bool m_invertNext; // Short-lived, so not in State
|
2009-08-14 14:36:34 +02:00
|
|
|
bool m_hadCondition; // Nested calls set it on return, so no need for it to be in State
|
2008-12-12 18:10:42 +01:00
|
|
|
int m_skipLevel;
|
|
|
|
|
bool m_cumulative;
|
2009-07-28 18:54:03 +02:00
|
|
|
QStack<QString> m_oldPathStack; // To restore the current path to the path
|
2008-12-02 12:01:29 +01:00
|
|
|
QStack<ProFile*> m_profileStack; // To handle 'include(a.pri), so we can track back to 'a.pro' when finished with 'a.pri'
|
2009-05-19 19:00:06 +02:00
|
|
|
struct ProLoop {
|
|
|
|
|
QString variable;
|
|
|
|
|
QStringList oldVarVal;
|
|
|
|
|
QStringList list;
|
|
|
|
|
int index;
|
|
|
|
|
bool infinite;
|
|
|
|
|
};
|
|
|
|
|
QStack<ProLoop> m_loopStack;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QHash<QString, QStringList> m_valuemap; // VariableName must be us-ascii, the content however can be non-us-ascii.
|
|
|
|
|
QHash<const ProFile*, QHash<QString, QStringList> > m_filevaluemap; // Variables per include file
|
2008-12-12 16:30:31 +01:00
|
|
|
QString m_outputDir;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
bool m_definingTest;
|
|
|
|
|
QString m_definingFunc;
|
2009-08-10 17:27:07 +02:00
|
|
|
FunctionDefs m_functionDefs;
|
2009-05-18 17:46:30 +02:00
|
|
|
QStringList m_returnValue;
|
|
|
|
|
QStack<QHash<QString, QStringList> > m_valuemapStack;
|
|
|
|
|
QStack<QHash<const ProFile*, QHash<QString, QStringList> > > m_filevaluemapStack;
|
|
|
|
|
|
2009-03-19 15:04:43 +01:00
|
|
|
QStringList m_addUserConfigCmdArgs;
|
|
|
|
|
QStringList m_removeUserConfigCmdArgs;
|
2009-05-25 16:43:50 +02:00
|
|
|
bool m_parsePreAndPostFiles;
|
2009-07-23 18:36:59 +02:00
|
|
|
|
|
|
|
|
Option *m_option;
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
2009-06-04 09:49:23 +02:00
|
|
|
#if !defined(__GNUC__) || __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 3)
|
2009-05-13 12:32:24 +02:00
|
|
|
Q_DECLARE_TYPEINFO(ProFileEvaluator::Private::State, Q_PRIMITIVE_TYPE);
|
2009-05-19 19:00:06 +02:00
|
|
|
Q_DECLARE_TYPEINFO(ProFileEvaluator::Private::ProLoop, Q_MOVABLE_TYPE);
|
2009-06-04 09:49:23 +02:00
|
|
|
#endif
|
2009-05-13 12:32:24 +02:00
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
ProFileEvaluator::Private::Private(ProFileEvaluator *q_, ProFileEvaluator::Option *option)
|
|
|
|
|
: q(q_), m_option(option)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-04-02 19:38:19 +02:00
|
|
|
// Configuration, more or less
|
2008-12-02 12:01:29 +01:00
|
|
|
m_verbose = true;
|
2008-12-12 18:10:42 +01:00
|
|
|
m_cumulative = true;
|
2009-05-18 17:46:30 +02:00
|
|
|
m_parsePreAndPostFiles = true;
|
2009-04-02 19:38:19 +02:00
|
|
|
|
|
|
|
|
// Evaluator state
|
2009-05-14 14:35:37 +02:00
|
|
|
m_sts.condition = false;
|
|
|
|
|
m_sts.prevCondition = false;
|
2008-12-12 18:10:42 +01:00
|
|
|
m_invertNext = false;
|
|
|
|
|
m_skipLevel = 0;
|
2009-05-18 17:46:30 +02:00
|
|
|
m_definingFunc.clear();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-08-10 17:27:07 +02:00
|
|
|
ProFileEvaluator::Private::~Private()
|
|
|
|
|
{
|
|
|
|
|
clearFunctions(&m_functionDefs);
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 16:34:30 +02:00
|
|
|
////////// Parser ///////////
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
bool ProFileEvaluator::Private::read(ProFile *pro)
|
|
|
|
|
{
|
|
|
|
|
QFile file(pro->fileName());
|
|
|
|
|
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
2009-08-12 13:00:21 +02:00
|
|
|
errorMessage(format("%1 not readable.").arg(pro->fileName()));
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-07 13:13:12 +02:00
|
|
|
QTextStream ts(&file);
|
|
|
|
|
return read(pro, &ts);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProFileEvaluator::Private::read(ProFile *pro, const QString &content)
|
|
|
|
|
{
|
|
|
|
|
QString str(content);
|
|
|
|
|
QTextStream ts(&str, QIODevice::ReadOnly | QIODevice::Text);
|
|
|
|
|
return read(pro, &ts);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProFileEvaluator::Private::read(ProFile *pro, QTextStream *ts)
|
|
|
|
|
{
|
2009-04-02 19:38:19 +02:00
|
|
|
// Parser state
|
|
|
|
|
m_block = 0;
|
|
|
|
|
m_commentItem = 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
m_lineNo = 1;
|
2009-04-02 19:38:19 +02:00
|
|
|
m_blockstack.clear();
|
2008-12-02 12:01:29 +01:00
|
|
|
m_blockstack.push(pro);
|
|
|
|
|
|
2009-08-07 19:17:44 +02:00
|
|
|
freshLine:
|
2009-07-16 18:11:09 +02:00
|
|
|
int parens = 0;
|
2009-08-07 19:17:44 +02:00
|
|
|
bool inError = false;
|
|
|
|
|
bool inAssignment = false;
|
|
|
|
|
bool doSplit = false;
|
|
|
|
|
bool doSemicolon = false;
|
|
|
|
|
bool putSpace = false;
|
|
|
|
|
ushort quote = 0;
|
2009-07-07 13:13:12 +02:00
|
|
|
while (!ts->atEnd()) {
|
|
|
|
|
QString line = ts->readLine();
|
2009-07-16 18:11:09 +02:00
|
|
|
const ushort *cur = (const ushort *)line.unicode(),
|
2009-07-21 15:51:51 +02:00
|
|
|
*end = cur + line.length(),
|
2009-08-07 19:17:44 +02:00
|
|
|
*orgend = end,
|
2009-07-21 15:51:51 +02:00
|
|
|
*cmtptr = 0;
|
2009-08-07 19:17:44 +02:00
|
|
|
ushort c, *ptr;
|
|
|
|
|
|
|
|
|
|
// First, skip leading whitespace
|
|
|
|
|
forever {
|
|
|
|
|
if (cur == end) { // Entirely empty line (sans whitespace)
|
|
|
|
|
updateItem2();
|
|
|
|
|
finalizeBlock();
|
|
|
|
|
++m_lineNo;
|
|
|
|
|
goto freshLine;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-08-07 19:17:44 +02:00
|
|
|
c = *cur;
|
|
|
|
|
if (c != ' ' && c != '\t')
|
|
|
|
|
break;
|
|
|
|
|
cur++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Then strip comments. Yep - no escaping is possible.
|
|
|
|
|
for (const ushort *cptr = cur; cptr != end; ++cptr)
|
|
|
|
|
if (*cptr == '#') {
|
|
|
|
|
if (cptr == cur) { // Line with only a comment (sans whitespace)
|
|
|
|
|
if (!inError)
|
|
|
|
|
insertComment(line.right(end - (cptr + 1)));
|
|
|
|
|
// Qmake bizarreness: such lines do not affect line continuations
|
|
|
|
|
goto ignore;
|
2009-07-16 18:11:09 +02:00
|
|
|
}
|
2009-08-07 19:17:44 +02:00
|
|
|
end = cptr;
|
|
|
|
|
cmtptr = cptr + 1;
|
|
|
|
|
break;
|
2009-07-16 18:11:09 +02:00
|
|
|
}
|
2009-08-07 19:17:44 +02:00
|
|
|
|
|
|
|
|
// Then look for line continuations
|
|
|
|
|
bool lineCont;
|
|
|
|
|
forever {
|
|
|
|
|
// We don't have to check for underrun here, as we already determined
|
|
|
|
|
// that the line is non-empty.
|
|
|
|
|
ushort ec = *(end - 1);
|
|
|
|
|
if (ec == '\\') {
|
|
|
|
|
--end;
|
|
|
|
|
lineCont = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (ec != ' ' && ec != '\t') {
|
|
|
|
|
lineCont = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
--end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!inError) {
|
|
|
|
|
// May need enough space for this line and anything accumulated so far
|
|
|
|
|
m_proitem.reserve(m_proitem.length() + (end - cur));
|
|
|
|
|
|
|
|
|
|
// Finally, do the tokenization
|
|
|
|
|
if (!inAssignment) {
|
|
|
|
|
newItem:
|
|
|
|
|
ptr = (ushort *)m_proitem.unicode() + m_proitem.length();
|
|
|
|
|
do {
|
|
|
|
|
if (cur == end)
|
|
|
|
|
goto lineEnd;
|
|
|
|
|
c = *cur++;
|
|
|
|
|
} while (c == ' ' || c == '\t');
|
|
|
|
|
forever {
|
|
|
|
|
if (c == '"') {
|
|
|
|
|
quote = '"' - quote;
|
|
|
|
|
} else if (!quote) {
|
|
|
|
|
if (c == '(') {
|
|
|
|
|
++parens;
|
|
|
|
|
} else if (c == ')') {
|
|
|
|
|
--parens;
|
|
|
|
|
} else if (!parens) {
|
|
|
|
|
if (c == ':') {
|
|
|
|
|
updateItem(ptr);
|
|
|
|
|
enterScope(false);
|
|
|
|
|
nextItem:
|
|
|
|
|
putSpace = false;
|
|
|
|
|
goto newItem;
|
|
|
|
|
}
|
|
|
|
|
if (c == '{') {
|
|
|
|
|
updateItem(ptr);
|
|
|
|
|
enterScope(true);
|
|
|
|
|
goto nextItem;
|
|
|
|
|
}
|
|
|
|
|
if (c == '}') {
|
|
|
|
|
updateItem(ptr);
|
|
|
|
|
leaveScope();
|
|
|
|
|
goto nextItem;
|
|
|
|
|
}
|
|
|
|
|
if (c == '=') {
|
|
|
|
|
if (insertVariable(ptr, &doSplit, &doSemicolon)) {
|
|
|
|
|
inAssignment = true;
|
|
|
|
|
putSpace = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
inError = true;
|
|
|
|
|
goto skip;
|
|
|
|
|
}
|
|
|
|
|
if (c == '|' || c == '!') {
|
|
|
|
|
updateItem(ptr);
|
|
|
|
|
insertOperator(c);
|
|
|
|
|
goto nextItem;
|
|
|
|
|
}
|
2009-07-16 18:11:09 +02:00
|
|
|
}
|
2009-08-07 19:17:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (putSpace) {
|
|
|
|
|
putSpace = false;
|
|
|
|
|
*ptr++ = ' ';
|
|
|
|
|
}
|
|
|
|
|
*ptr++ = c;
|
|
|
|
|
|
|
|
|
|
forever {
|
|
|
|
|
if (cur == end)
|
|
|
|
|
goto lineEnd;
|
|
|
|
|
c = *cur++;
|
|
|
|
|
if (c != ' ' && c != '\t')
|
|
|
|
|
break;
|
|
|
|
|
putSpace = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} // !inAssignment
|
|
|
|
|
|
|
|
|
|
nextVal:
|
|
|
|
|
ptr = (ushort *)m_proitem.unicode() + m_proitem.length();
|
|
|
|
|
do {
|
|
|
|
|
if (cur == end)
|
|
|
|
|
goto lineEnd;
|
|
|
|
|
c = *cur++;
|
|
|
|
|
} while (c == ' ' || c == '\t');
|
|
|
|
|
if (doSplit) {
|
|
|
|
|
// Qmake's parser supports truly bizarre quote nesting here, but later
|
|
|
|
|
// stages (in qmake) don't grok it anyway. So make it simple instead.
|
|
|
|
|
forever {
|
|
|
|
|
if (c == '\\') {
|
|
|
|
|
ushort ec;
|
|
|
|
|
if (cur != end && ((ec = *cur) == '"' || ec == '\'')) {
|
|
|
|
|
++cur;
|
|
|
|
|
if (putSpace) {
|
|
|
|
|
putSpace = false;
|
|
|
|
|
*ptr++ = ' ';
|
|
|
|
|
}
|
|
|
|
|
*ptr++ = '\\';
|
|
|
|
|
*ptr++ = ec;
|
|
|
|
|
goto getNext;
|
2009-07-16 18:11:09 +02:00
|
|
|
}
|
2009-08-07 19:17:44 +02:00
|
|
|
} else {
|
|
|
|
|
if (quote) {
|
|
|
|
|
if (c == quote) {
|
|
|
|
|
quote = 0;
|
|
|
|
|
} else if (c == ' ' || c == '\t') {
|
|
|
|
|
putSpace = true;
|
|
|
|
|
goto getNext;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (c == '"' || c == '\'') {
|
|
|
|
|
quote = c;
|
|
|
|
|
} else if (c == ')') {
|
|
|
|
|
--parens;
|
|
|
|
|
} else if (c == '(') {
|
|
|
|
|
++parens;
|
|
|
|
|
} else if (c == ' ' || c == '\t') {
|
|
|
|
|
if (parens) {
|
|
|
|
|
putSpace = true;
|
|
|
|
|
goto getNext;
|
|
|
|
|
}
|
|
|
|
|
updateItem(ptr);
|
|
|
|
|
// assert(!putSpace);
|
|
|
|
|
goto nextVal;
|
|
|
|
|
}
|
2009-07-16 18:11:09 +02:00
|
|
|
}
|
2009-07-15 09:58:56 +02:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-08-07 19:17:44 +02:00
|
|
|
if (putSpace) {
|
|
|
|
|
putSpace = false;
|
|
|
|
|
*ptr++ = ' ';
|
|
|
|
|
}
|
|
|
|
|
*ptr++ = c;
|
|
|
|
|
|
|
|
|
|
getNext:
|
2009-08-14 10:15:26 +02:00
|
|
|
if (cur == end) {
|
|
|
|
|
if (!quote && !parens)
|
|
|
|
|
goto flushItem;
|
2009-08-07 19:17:44 +02:00
|
|
|
break;
|
2009-08-14 10:15:26 +02:00
|
|
|
}
|
2009-08-07 19:17:44 +02:00
|
|
|
c = *cur++;
|
2009-07-21 15:51:51 +02:00
|
|
|
}
|
2009-08-07 19:17:44 +02:00
|
|
|
} else { // doSplit
|
|
|
|
|
forever {
|
|
|
|
|
if (putSpace) {
|
|
|
|
|
putSpace = false;
|
|
|
|
|
*ptr++ = ' ';
|
|
|
|
|
}
|
|
|
|
|
*ptr++ = c;
|
|
|
|
|
|
|
|
|
|
forever {
|
|
|
|
|
if (cur == end)
|
|
|
|
|
goto lineEnd;
|
|
|
|
|
c = *cur++;
|
|
|
|
|
if (c != ' ' && c != '\t')
|
|
|
|
|
break;
|
|
|
|
|
putSpace = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
lineEnd:
|
|
|
|
|
if (lineCont) {
|
|
|
|
|
m_proitem.resize(ptr - (ushort *)m_proitem.unicode());
|
|
|
|
|
putSpace = !m_proitem.isEmpty();
|
2009-07-16 18:11:09 +02:00
|
|
|
} else {
|
2009-08-14 10:15:26 +02:00
|
|
|
flushItem:
|
2009-08-07 19:17:44 +02:00
|
|
|
updateItem(ptr);
|
|
|
|
|
putSpace = false;
|
2009-07-16 18:11:09 +02:00
|
|
|
}
|
2009-08-07 19:17:44 +02:00
|
|
|
if (cmtptr)
|
|
|
|
|
insertComment(line.right(orgend - cmtptr));
|
|
|
|
|
} // !inError
|
|
|
|
|
skip:
|
|
|
|
|
if (!lineCont) {
|
2009-07-16 18:11:09 +02:00
|
|
|
finalizeBlock();
|
2009-08-07 19:17:44 +02:00
|
|
|
++m_lineNo;
|
|
|
|
|
goto freshLine;
|
|
|
|
|
}
|
|
|
|
|
ignore:
|
2009-07-16 18:11:09 +02:00
|
|
|
++m_lineNo;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-08-04 20:51:49 +02:00
|
|
|
m_proitem.clear(); // Throw away pre-allocation
|
2009-07-16 18:11:09 +02:00
|
|
|
return true;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::Private::finalizeBlock()
|
|
|
|
|
{
|
2009-07-16 17:22:03 +02:00
|
|
|
if (m_blockstack.top()->blockKind() & ProBlock::SingleLine)
|
|
|
|
|
leaveScope();
|
|
|
|
|
m_block = 0;
|
|
|
|
|
m_commentItem = 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-08-07 19:17:44 +02:00
|
|
|
bool ProFileEvaluator::Private::insertVariable(ushort *ptr, bool *doSplit, bool *doSemicolon)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
ProVariable::VariableOperator opkind;
|
2009-07-15 09:58:56 +02:00
|
|
|
ushort *uc = (ushort *)m_proitem.unicode();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-07-15 09:58:56 +02:00
|
|
|
if (ptr == uc) // Line starting with '=', like a conflict marker
|
2009-08-07 19:17:44 +02:00
|
|
|
return false;
|
2009-04-14 14:35:32 +02:00
|
|
|
|
2009-07-15 09:58:56 +02:00
|
|
|
switch (*(ptr - 1)) {
|
2008-12-02 12:01:29 +01:00
|
|
|
case '+':
|
2009-07-15 09:58:56 +02:00
|
|
|
--ptr;
|
2008-12-02 12:01:29 +01:00
|
|
|
opkind = ProVariable::AddOperator;
|
|
|
|
|
break;
|
|
|
|
|
case '-':
|
2009-07-15 09:58:56 +02:00
|
|
|
--ptr;
|
2008-12-02 12:01:29 +01:00
|
|
|
opkind = ProVariable::RemoveOperator;
|
|
|
|
|
break;
|
|
|
|
|
case '*':
|
2009-07-15 09:58:56 +02:00
|
|
|
--ptr;
|
2008-12-02 12:01:29 +01:00
|
|
|
opkind = ProVariable::UniqueAddOperator;
|
|
|
|
|
break;
|
|
|
|
|
case '~':
|
2009-07-15 09:58:56 +02:00
|
|
|
--ptr;
|
2008-12-02 12:01:29 +01:00
|
|
|
opkind = ProVariable::ReplaceOperator;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
opkind = ProVariable::SetOperator;
|
2009-08-07 19:17:44 +02:00
|
|
|
goto skipTrunc;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-08-07 19:17:44 +02:00
|
|
|
if (ptr == uc) // Line starting with manipulation operator
|
|
|
|
|
return false;
|
|
|
|
|
if (*(ptr - 1) == ' ')
|
2009-07-15 09:58:56 +02:00
|
|
|
--ptr;
|
2009-08-07 19:17:44 +02:00
|
|
|
|
|
|
|
|
skipTrunc:
|
2009-07-15 09:58:56 +02:00
|
|
|
m_proitem.resize(ptr - uc);
|
|
|
|
|
QString proVar = m_proitem;
|
|
|
|
|
proVar.detach();
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
ProBlock *block = m_blockstack.top();
|
2009-07-15 09:58:56 +02:00
|
|
|
ProVariable *variable = new ProVariable(proVar, block);
|
2008-12-02 12:01:29 +01:00
|
|
|
variable->setLineNumber(m_lineNo);
|
|
|
|
|
variable->setVariableOperator(opkind);
|
|
|
|
|
block->appendItem(variable);
|
|
|
|
|
m_block = variable;
|
|
|
|
|
|
|
|
|
|
if (!m_pendingComment.isEmpty()) {
|
|
|
|
|
m_block->setComment(m_pendingComment);
|
|
|
|
|
m_pendingComment.clear();
|
|
|
|
|
}
|
|
|
|
|
m_commentItem = variable;
|
|
|
|
|
|
2009-08-07 19:17:44 +02:00
|
|
|
m_proitem.resize(0);
|
2009-07-15 09:58:56 +02:00
|
|
|
|
2009-08-07 19:17:44 +02:00
|
|
|
*doSplit = (opkind != ProVariable::ReplaceOperator);
|
|
|
|
|
*doSemicolon = (proVar == QLatin1String("DEPENDPATH")
|
|
|
|
|
|| proVar == QLatin1String("INCLUDEPATH"));
|
|
|
|
|
return true;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::Private::insertOperator(const char op)
|
|
|
|
|
{
|
|
|
|
|
ProOperator::OperatorKind opkind;
|
2008-12-09 11:07:24 +01:00
|
|
|
switch (op) {
|
2008-12-02 12:01:29 +01:00
|
|
|
case '!':
|
|
|
|
|
opkind = ProOperator::NotOperator;
|
|
|
|
|
break;
|
|
|
|
|
case '|':
|
|
|
|
|
opkind = ProOperator::OrOperator;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
opkind = ProOperator::OrOperator;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProBlock * const block = currentBlock();
|
|
|
|
|
ProOperator * const proOp = new ProOperator(opkind);
|
|
|
|
|
proOp->setLineNumber(m_lineNo);
|
|
|
|
|
block->appendItem(proOp);
|
|
|
|
|
m_commentItem = proOp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::Private::insertComment(const QString &comment)
|
|
|
|
|
{
|
|
|
|
|
QString strComment;
|
|
|
|
|
if (!m_commentItem)
|
|
|
|
|
strComment = m_pendingComment;
|
|
|
|
|
else
|
|
|
|
|
strComment = m_commentItem->comment();
|
|
|
|
|
|
|
|
|
|
if (strComment.isEmpty())
|
|
|
|
|
strComment = comment;
|
|
|
|
|
else {
|
|
|
|
|
strComment += QLatin1Char('\n');
|
|
|
|
|
strComment += comment.trimmed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
strComment = strComment.trimmed();
|
|
|
|
|
|
|
|
|
|
if (!m_commentItem)
|
|
|
|
|
m_pendingComment = strComment;
|
|
|
|
|
else
|
|
|
|
|
m_commentItem->setComment(strComment);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::Private::enterScope(bool multiLine)
|
|
|
|
|
{
|
|
|
|
|
ProBlock *parent = currentBlock();
|
|
|
|
|
ProBlock *block = new ProBlock(parent);
|
|
|
|
|
block->setLineNumber(m_lineNo);
|
|
|
|
|
parent->setBlockKind(ProBlock::ScopeKind);
|
|
|
|
|
|
|
|
|
|
parent->appendItem(block);
|
|
|
|
|
|
|
|
|
|
if (multiLine)
|
|
|
|
|
block->setBlockKind(ProBlock::ScopeContentsKind);
|
|
|
|
|
else
|
|
|
|
|
block->setBlockKind(ProBlock::ScopeContentsKind|ProBlock::SingleLine);
|
|
|
|
|
|
|
|
|
|
m_blockstack.push(block);
|
|
|
|
|
m_block = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::Private::leaveScope()
|
|
|
|
|
{
|
2009-07-16 17:22:03 +02:00
|
|
|
if (m_blockstack.count() == 1)
|
2009-08-12 13:00:21 +02:00
|
|
|
errorMessage(format("Excess closing brace."));
|
2009-07-16 17:22:03 +02:00
|
|
|
else
|
|
|
|
|
m_blockstack.pop();
|
2008-12-02 12:01:29 +01:00
|
|
|
finalizeBlock();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProBlock *ProFileEvaluator::Private::currentBlock()
|
|
|
|
|
{
|
|
|
|
|
if (m_block)
|
|
|
|
|
return m_block;
|
|
|
|
|
|
|
|
|
|
ProBlock *parent = m_blockstack.top();
|
|
|
|
|
m_block = new ProBlock(parent);
|
|
|
|
|
m_block->setLineNumber(m_lineNo);
|
|
|
|
|
parent->appendItem(m_block);
|
|
|
|
|
|
|
|
|
|
if (!m_pendingComment.isEmpty()) {
|
|
|
|
|
m_block->setComment(m_pendingComment);
|
|
|
|
|
m_pendingComment.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_commentItem = m_block;
|
|
|
|
|
|
|
|
|
|
return m_block;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-07 19:17:44 +02:00
|
|
|
void ProFileEvaluator::Private::updateItem(ushort *ptr)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-08-07 19:17:44 +02:00
|
|
|
m_proitem.resize(ptr - (ushort *)m_proitem.unicode());
|
|
|
|
|
updateItem2();
|
|
|
|
|
}
|
2009-07-15 09:58:56 +02:00
|
|
|
|
2009-08-07 19:17:44 +02:00
|
|
|
void ProFileEvaluator::Private::updateItem2()
|
|
|
|
|
{
|
|
|
|
|
if (m_proitem.isEmpty())
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
|
|
|
|
|
2009-07-15 09:58:56 +02:00
|
|
|
QString proItem = m_proitem;
|
|
|
|
|
proItem.detach();
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
ProBlock *block = currentBlock();
|
|
|
|
|
if (block->blockKind() & ProBlock::VariableKind) {
|
2009-07-15 09:58:56 +02:00
|
|
|
m_commentItem = new ProValue(proItem, static_cast<ProVariable*>(block));
|
|
|
|
|
} else if (proItem.endsWith(QLatin1Char(')'))) {
|
|
|
|
|
m_commentItem = new ProFunction(proItem);
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
2009-07-15 09:58:56 +02:00
|
|
|
m_commentItem = new ProCondition(proItem);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
m_commentItem->setLineNumber(m_lineNo);
|
|
|
|
|
block->appendItem(m_commentItem);
|
2009-08-07 19:17:44 +02:00
|
|
|
|
|
|
|
|
m_proitem.resize(0);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-07-23 16:34:30 +02:00
|
|
|
//////// Evaluator tools /////////
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
QStringList ProFileEvaluator::Private::split_arg_list(const QString ¶ms)
|
2009-07-23 16:34:30 +02:00
|
|
|
{
|
|
|
|
|
int quote = 0;
|
|
|
|
|
QStringList args;
|
|
|
|
|
|
|
|
|
|
const ushort LPAREN = '(';
|
|
|
|
|
const ushort RPAREN = ')';
|
|
|
|
|
const ushort SINGLEQUOTE = '\'';
|
|
|
|
|
const ushort DOUBLEQUOTE = '"';
|
|
|
|
|
const ushort COMMA = ',';
|
|
|
|
|
const ushort SPACE = ' ';
|
|
|
|
|
//const ushort TAB = '\t';
|
|
|
|
|
|
|
|
|
|
ushort unicode;
|
|
|
|
|
const QChar *params_data = params.data();
|
|
|
|
|
const int params_len = params.length();
|
|
|
|
|
int last = 0;
|
|
|
|
|
while (last < params_len && ((params_data+last)->unicode() == SPACE
|
|
|
|
|
/*|| (params_data+last)->unicode() == TAB*/))
|
|
|
|
|
++last;
|
|
|
|
|
for (int x = last, parens = 0; x <= params_len; x++) {
|
|
|
|
|
unicode = (params_data+x)->unicode();
|
|
|
|
|
if (x == params_len) {
|
|
|
|
|
while (x && (params_data+(x-1))->unicode() == SPACE)
|
|
|
|
|
--x;
|
|
|
|
|
QString mid(params_data+last, x-last);
|
|
|
|
|
if (quote) {
|
|
|
|
|
if (mid[0] == quote && mid[(int)mid.length()-1] == quote)
|
|
|
|
|
mid = mid.mid(1, mid.length()-2);
|
|
|
|
|
quote = 0;
|
|
|
|
|
}
|
|
|
|
|
args << mid;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (unicode == LPAREN) {
|
|
|
|
|
--parens;
|
|
|
|
|
} else if (unicode == RPAREN) {
|
|
|
|
|
++parens;
|
|
|
|
|
} else if (quote && unicode == quote) {
|
|
|
|
|
quote = 0;
|
|
|
|
|
} else if (!quote && (unicode == SINGLEQUOTE || unicode == DOUBLEQUOTE)) {
|
|
|
|
|
quote = unicode;
|
|
|
|
|
}
|
|
|
|
|
if (!parens && !quote && unicode == COMMA) {
|
|
|
|
|
QString mid = params.mid(last, x - last).trimmed();
|
|
|
|
|
args << mid;
|
|
|
|
|
last = x+1;
|
|
|
|
|
while (last < params_len && ((params_data+last)->unicode() == SPACE
|
|
|
|
|
/*|| (params_data+last)->unicode() == TAB*/))
|
|
|
|
|
++last;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return args;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
QStringList ProFileEvaluator::Private::split_value_list(const QString &vals, bool do_semicolon)
|
2009-07-23 16:34:30 +02:00
|
|
|
{
|
|
|
|
|
QString build;
|
|
|
|
|
QStringList ret;
|
|
|
|
|
QStack<char> quote;
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
const ushort SPACE = ' ';
|
2009-07-23 16:34:30 +02:00
|
|
|
const ushort LPAREN = '(';
|
|
|
|
|
const ushort RPAREN = ')';
|
|
|
|
|
const ushort SINGLEQUOTE = '\'';
|
|
|
|
|
const ushort DOUBLEQUOTE = '"';
|
|
|
|
|
const ushort BACKSLASH = '\\';
|
|
|
|
|
const ushort SEMICOLON = ';';
|
|
|
|
|
|
|
|
|
|
ushort unicode;
|
|
|
|
|
const QChar *vals_data = vals.data();
|
|
|
|
|
const int vals_len = vals.length();
|
|
|
|
|
for (int x = 0, parens = 0; x < vals_len; x++) {
|
|
|
|
|
unicode = vals_data[x].unicode();
|
|
|
|
|
if (x != (int)vals_len-1 && unicode == BACKSLASH &&
|
|
|
|
|
(vals_data[x+1].unicode() == SINGLEQUOTE || vals_data[x+1].unicode() == DOUBLEQUOTE)) {
|
|
|
|
|
build += vals_data[x++]; //get that 'escape'
|
|
|
|
|
} else if (!quote.isEmpty() && unicode == quote.top()) {
|
|
|
|
|
quote.pop();
|
|
|
|
|
} else if (unicode == SINGLEQUOTE || unicode == DOUBLEQUOTE) {
|
|
|
|
|
quote.push(unicode);
|
|
|
|
|
} else if (unicode == RPAREN) {
|
|
|
|
|
--parens;
|
|
|
|
|
} else if (unicode == LPAREN) {
|
|
|
|
|
++parens;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!parens && quote.isEmpty() && ((do_semicolon && unicode == SEMICOLON) ||
|
2009-07-23 18:36:59 +02:00
|
|
|
vals_data[x] == SPACE)) {
|
2009-07-23 16:34:30 +02:00
|
|
|
ret << build;
|
|
|
|
|
build.clear();
|
|
|
|
|
} else {
|
|
|
|
|
build += vals_data[x];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!build.isEmpty())
|
|
|
|
|
ret << build;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void insertUnique(QHash<QString, QStringList> *map,
|
|
|
|
|
const QString &key, const QStringList &value)
|
|
|
|
|
{
|
|
|
|
|
QStringList &sl = (*map)[key];
|
|
|
|
|
foreach (const QString &str, value)
|
|
|
|
|
if (!sl.contains(str))
|
|
|
|
|
sl.append(str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void removeEach(QHash<QString, QStringList> *map,
|
|
|
|
|
const QString &key, const QStringList &value)
|
|
|
|
|
{
|
|
|
|
|
QStringList &sl = (*map)[key];
|
|
|
|
|
foreach (const QString &str, value)
|
|
|
|
|
sl.removeAll(str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void replaceInList(QStringList *varlist,
|
|
|
|
|
const QRegExp ®exp, const QString &replace, bool global)
|
|
|
|
|
{
|
|
|
|
|
for (QStringList::Iterator varit = varlist->begin(); varit != varlist->end(); ) {
|
|
|
|
|
if ((*varit).contains(regexp)) {
|
|
|
|
|
(*varit).replace(regexp, replace);
|
|
|
|
|
if ((*varit).isEmpty())
|
|
|
|
|
varit = varlist->erase(varit);
|
|
|
|
|
else
|
|
|
|
|
++varit;
|
|
|
|
|
if (!global)
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
++varit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 17:04:50 +02:00
|
|
|
static QString expandEnvVars(const QString &str)
|
|
|
|
|
{
|
|
|
|
|
QString string = str;
|
|
|
|
|
int rep;
|
|
|
|
|
QRegExp reg_variableName(QLatin1String("\\$\\(.*\\)"));
|
|
|
|
|
reg_variableName.setMinimal(true);
|
|
|
|
|
while ((rep = reg_variableName.indexIn(string)) != -1)
|
|
|
|
|
string.replace(rep, reg_variableName.matchedLength(),
|
|
|
|
|
QString::fromLocal8Bit(qgetenv(string.mid(rep + 2, reg_variableName.matchedLength() - 3).toLatin1().constData()).constData()));
|
|
|
|
|
return string;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-30 17:03:12 +02:00
|
|
|
static QStringList expandEnvVars(const QStringList &x)
|
|
|
|
|
{
|
|
|
|
|
QStringList ret;
|
|
|
|
|
foreach (const QString &str, x)
|
|
|
|
|
ret << expandEnvVars(str);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 17:04:50 +02:00
|
|
|
// This is braindead, but we want qmake compat
|
|
|
|
|
static QString fixPathToLocalOS(const QString &str)
|
|
|
|
|
{
|
|
|
|
|
QString string = str;
|
|
|
|
|
|
2009-08-04 20:51:49 +02:00
|
|
|
if (string.length() > 2 && string.at(0).isLetter() && string.at(1) == QLatin1Char(':'))
|
2009-07-23 17:04:50 +02:00
|
|
|
string[0] = string[0].toLower();
|
|
|
|
|
|
|
|
|
|
#if defined(Q_OS_WIN32)
|
|
|
|
|
string.replace(QLatin1Char('/'), QLatin1Char('\\'));
|
|
|
|
|
#else
|
|
|
|
|
string.replace(QLatin1Char('\\'), QLatin1Char('/'));
|
|
|
|
|
#endif
|
|
|
|
|
return string;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 16:34:30 +02:00
|
|
|
//////// Evaluator /////////
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn ProFileEvaluator::Private::visitBeginProBlock(ProBlock *block)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-05-14 14:35:37 +02:00
|
|
|
if (block->blockKind() & ProBlock::ScopeContentsKind) {
|
2009-05-18 17:46:30 +02:00
|
|
|
if (!m_definingFunc.isEmpty()) {
|
|
|
|
|
if (!m_skipLevel || m_cumulative) {
|
|
|
|
|
QHash<QString, ProBlock *> *hash =
|
2009-08-10 17:27:07 +02:00
|
|
|
(m_definingTest ? &m_functionDefs.testFunctions
|
|
|
|
|
: &m_functionDefs.replaceFunctions);
|
2009-05-18 17:46:30 +02:00
|
|
|
if (ProBlock *def = hash->value(m_definingFunc))
|
|
|
|
|
def->deref();
|
|
|
|
|
hash->insert(m_definingFunc, block);
|
|
|
|
|
block->ref();
|
|
|
|
|
block->setBlockKind(block->blockKind() | ProBlock::FunctionBodyKind);
|
|
|
|
|
}
|
|
|
|
|
m_definingFunc.clear();
|
|
|
|
|
return ProItem::ReturnSkip;
|
|
|
|
|
} else if (!(block->blockKind() & ProBlock::FunctionBodyKind)) {
|
2009-08-14 14:36:34 +02:00
|
|
|
if (!m_sts.condition) {
|
|
|
|
|
if (m_skipLevel || m_hadCondition)
|
|
|
|
|
++m_skipLevel;
|
|
|
|
|
} else {
|
2009-05-18 17:46:30 +02:00
|
|
|
Q_ASSERT(!m_skipLevel);
|
2009-08-14 14:36:34 +02:00
|
|
|
}
|
2009-05-18 17:46:30 +02:00
|
|
|
}
|
2009-05-14 14:35:37 +02:00
|
|
|
} else {
|
2009-08-14 14:36:34 +02:00
|
|
|
m_hadCondition = false;
|
2009-05-14 14:35:37 +02:00
|
|
|
if (!m_skipLevel) {
|
|
|
|
|
if (m_sts.condition) {
|
|
|
|
|
m_sts.prevCondition = true;
|
|
|
|
|
m_sts.condition = false;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
Q_ASSERT(!m_sts.condition);
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnTrue;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:25:41 +02:00
|
|
|
void ProFileEvaluator::Private::visitEndProBlock(ProBlock *block)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-05-18 17:46:30 +02:00
|
|
|
if ((block->blockKind() & ProBlock::ScopeContentsKind)
|
|
|
|
|
&& !(block->blockKind() & ProBlock::FunctionBodyKind)) {
|
2008-12-16 10:48:49 +01:00
|
|
|
if (m_skipLevel) {
|
2009-05-14 14:35:37 +02:00
|
|
|
Q_ASSERT(!m_sts.condition);
|
2008-12-12 18:10:42 +01:00
|
|
|
--m_skipLevel;
|
2009-05-14 14:35:37 +02:00
|
|
|
} else if (!(block->blockKind() & ProBlock::SingleLine)) {
|
2008-12-16 10:48:49 +01:00
|
|
|
// Conditionals contained inside this block may have changed the state.
|
|
|
|
|
// So we reset it here to make an else following us do the right thing.
|
2009-05-14 14:35:37 +02:00
|
|
|
m_sts.condition = true;
|
2008-12-16 10:48:49 +01:00
|
|
|
}
|
2008-12-12 18:10:42 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-19 19:00:06 +02:00
|
|
|
ProItem::ProItemReturn ProFileEvaluator::Private::visitProLoopIteration()
|
|
|
|
|
{
|
|
|
|
|
ProLoop &loop = m_loopStack.top();
|
|
|
|
|
|
|
|
|
|
if (loop.infinite) {
|
|
|
|
|
if (!loop.variable.isEmpty())
|
|
|
|
|
m_valuemap[loop.variable] = QStringList(QString::number(loop.index++));
|
|
|
|
|
if (loop.index > 1000) {
|
2009-08-12 13:00:21 +02:00
|
|
|
errorMessage(format("ran into infinite loop (> 1000 iterations)."));
|
2009-05-19 19:00:06 +02:00
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
QString val;
|
|
|
|
|
do {
|
|
|
|
|
if (loop.index >= loop.list.count())
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
val = loop.list.at(loop.index++);
|
|
|
|
|
} while (val.isEmpty()); // stupid, but qmake is like that
|
|
|
|
|
m_valuemap[loop.variable] = QStringList(val);
|
|
|
|
|
}
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::Private::visitProLoopCleanup()
|
|
|
|
|
{
|
|
|
|
|
ProLoop &loop = m_loopStack.top();
|
|
|
|
|
m_valuemap[loop.variable] = loop.oldVarVal;
|
|
|
|
|
m_loopStack.pop_back();
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-14 20:42:45 +02:00
|
|
|
void ProFileEvaluator::Private::visitBeginProVariable(ProVariable *)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-07-14 20:42:45 +02:00
|
|
|
m_sts.varVal.clear();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:25:41 +02:00
|
|
|
void ProFileEvaluator::Private::visitEndProVariable(ProVariable *variable)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-07-14 20:42:45 +02:00
|
|
|
QString varName = variable->variable();
|
|
|
|
|
|
|
|
|
|
switch (variable->variableOperator()) {
|
|
|
|
|
case ProVariable::SetOperator: // =
|
|
|
|
|
if (!m_cumulative) {
|
|
|
|
|
if (!m_skipLevel) {
|
|
|
|
|
m_valuemap[varName] = m_sts.varVal;
|
|
|
|
|
m_filevaluemap[currentProFile()][varName] = m_sts.varVal;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// We are greedy for values.
|
|
|
|
|
m_valuemap[varName] += m_sts.varVal;
|
|
|
|
|
m_filevaluemap[currentProFile()][varName] += m_sts.varVal;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ProVariable::UniqueAddOperator: // *=
|
|
|
|
|
if (!m_skipLevel || m_cumulative) {
|
|
|
|
|
insertUnique(&m_valuemap, varName, m_sts.varVal);
|
|
|
|
|
insertUnique(&m_filevaluemap[currentProFile()], varName, m_sts.varVal);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ProVariable::AddOperator: // +=
|
|
|
|
|
if (!m_skipLevel || m_cumulative) {
|
|
|
|
|
m_valuemap[varName] += m_sts.varVal;
|
|
|
|
|
m_filevaluemap[currentProFile()][varName] += m_sts.varVal;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ProVariable::RemoveOperator: // -=
|
|
|
|
|
if (!m_cumulative) {
|
|
|
|
|
if (!m_skipLevel) {
|
|
|
|
|
removeEach(&m_valuemap, varName, m_sts.varVal);
|
|
|
|
|
removeEach(&m_filevaluemap[currentProFile()], varName, m_sts.varVal);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// We are stingy with our values, too.
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ProVariable::ReplaceOperator: // ~=
|
|
|
|
|
{
|
|
|
|
|
// DEFINES ~= s/a/b/?[gqi]
|
|
|
|
|
|
|
|
|
|
QString val = m_sts.varVal.first();
|
|
|
|
|
doVariableReplace(&val);
|
2009-08-04 20:51:49 +02:00
|
|
|
if (val.length() < 4 || val.at(0) != QLatin1Char('s')) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("the ~= operator can handle only the s/// function."));
|
2009-07-14 20:42:45 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
QChar sep = val.at(1);
|
|
|
|
|
QStringList func = val.split(sep);
|
|
|
|
|
if (func.count() < 3 || func.count() > 4) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("the s/// function expects 3 or 4 arguments."));
|
2009-07-14 20:42:45 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool global = false, quote = false, case_sense = false;
|
|
|
|
|
if (func.count() == 4) {
|
|
|
|
|
global = func[3].indexOf(QLatin1Char('g')) != -1;
|
|
|
|
|
case_sense = func[3].indexOf(QLatin1Char('i')) == -1;
|
|
|
|
|
quote = func[3].indexOf(QLatin1Char('q')) != -1;
|
|
|
|
|
}
|
|
|
|
|
QString pattern = func[1];
|
|
|
|
|
QString replace = func[2];
|
|
|
|
|
if (quote)
|
|
|
|
|
pattern = QRegExp::escape(pattern);
|
|
|
|
|
|
|
|
|
|
QRegExp regexp(pattern, case_sense ? Qt::CaseSensitive : Qt::CaseInsensitive);
|
|
|
|
|
|
|
|
|
|
if (!m_skipLevel || m_cumulative) {
|
|
|
|
|
// We could make a union of modified and unmodified values,
|
|
|
|
|
// but this will break just as much as it fixes, so leave it as is.
|
|
|
|
|
replaceInList(&m_valuemap[varName], regexp, replace, global);
|
|
|
|
|
replaceInList(&m_filevaluemap[currentProFile()][varName], regexp, replace, global);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:25:41 +02:00
|
|
|
void ProFileEvaluator::Private::visitProOperator(ProOperator *oper)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
m_invertNext = (oper->operatorKind() == ProOperator::NotOperator);
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:25:41 +02:00
|
|
|
void ProFileEvaluator::Private::visitProCondition(ProCondition *cond)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2008-12-12 18:10:42 +01:00
|
|
|
if (!m_skipLevel) {
|
2009-08-14 14:36:34 +02:00
|
|
|
m_hadCondition = true;
|
2009-05-25 15:58:58 +02:00
|
|
|
if (!cond->text().compare(QLatin1String("else"), Qt::CaseInsensitive)) {
|
2009-05-14 14:35:37 +02:00
|
|
|
m_sts.condition = !m_sts.prevCondition;
|
|
|
|
|
} else {
|
|
|
|
|
m_sts.prevCondition = false;
|
|
|
|
|
if (!m_sts.condition && isActiveConfig(cond->text(), true) ^ m_invertNext)
|
|
|
|
|
m_sts.condition = true;
|
2008-12-12 18:10:42 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2008-12-12 18:10:42 +01:00
|
|
|
m_invertNext = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn ProFileEvaluator::Private::visitBeginProFile(ProFile * pro)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
m_lineNo = pro->lineNumber();
|
2009-07-28 18:54:03 +02:00
|
|
|
|
|
|
|
|
m_oldPathStack.push(QDir::currentPath());
|
|
|
|
|
if (!QDir::setCurrent(pro->directoryName())) {
|
|
|
|
|
m_oldPathStack.pop();
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-22 17:46:25 +02:00
|
|
|
m_profileStack.push(pro);
|
|
|
|
|
if (m_profileStack.count() == 1) {
|
2009-07-28 18:54:03 +02:00
|
|
|
// Do this only for the initial profile we visit, since
|
2008-12-02 12:01:29 +01:00
|
|
|
// that is *the* profile. All the other times we reach this function will be due to
|
|
|
|
|
// include(file) or load(file)
|
|
|
|
|
|
2009-07-22 11:03:01 +02:00
|
|
|
if (m_parsePreAndPostFiles) {
|
2009-08-04 16:16:27 +02:00
|
|
|
|
|
|
|
|
if (m_option->base_valuemap.isEmpty()) {
|
|
|
|
|
// ### init QMAKE_QMAKE, QMAKE_SH
|
|
|
|
|
// ### init QMAKE_EXT_{C,H,CPP,OBJ}
|
|
|
|
|
// ### init TEMPLATE_PREFIX
|
|
|
|
|
|
|
|
|
|
QString qmake_cache = m_option->cachefile;
|
|
|
|
|
if (qmake_cache.isEmpty() && !m_outputDir.isEmpty()) { //find it as it has not been specified
|
|
|
|
|
QDir dir(m_outputDir);
|
|
|
|
|
forever {
|
|
|
|
|
qmake_cache = dir.filePath(QLatin1String(".qmake.cache"));
|
|
|
|
|
if (QFile::exists(qmake_cache))
|
|
|
|
|
break;
|
2009-08-05 12:18:36 +02:00
|
|
|
if (!dir.cdUp() || dir.isRoot()) {
|
2009-08-04 16:16:27 +02:00
|
|
|
qmake_cache.clear();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!qmake_cache.isEmpty()) {
|
|
|
|
|
qmake_cache = QDir::cleanPath(qmake_cache);
|
2009-09-08 14:13:50 +02:00
|
|
|
QHash<QString, QStringList> cache_valuemap;
|
|
|
|
|
if (evaluateFileInto(qmake_cache, &cache_valuemap, 0)) {
|
2009-08-04 16:16:27 +02:00
|
|
|
m_option->cachefile = qmake_cache;
|
|
|
|
|
if (m_option->qmakespec.isEmpty()) {
|
2009-09-08 14:13:50 +02:00
|
|
|
const QStringList &vals = cache_valuemap.value(QLatin1String("QMAKESPEC"));
|
2009-08-04 16:16:27 +02:00
|
|
|
if (!vals.isEmpty())
|
|
|
|
|
m_option->qmakespec = vals.first();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList mkspec_roots = qmakeMkspecPaths();
|
|
|
|
|
|
|
|
|
|
QString qmakespec = expandEnvVars(m_option->qmakespec);
|
|
|
|
|
if (qmakespec.isEmpty()) {
|
|
|
|
|
foreach (const QString &root, mkspec_roots) {
|
|
|
|
|
QString mkspec = root + QLatin1String("/default");
|
|
|
|
|
QFileInfo default_info(mkspec);
|
|
|
|
|
if (default_info.exists() && default_info.isDir()) {
|
|
|
|
|
qmakespec = mkspec;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (qmakespec.isEmpty()) {
|
2009-08-12 13:00:21 +02:00
|
|
|
errorMessage(format("Could not find qmake configuration directory"));
|
2009-08-04 16:16:27 +02:00
|
|
|
// Unlike in qmake, not finding the spec is not critical ...
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (QDir::isRelativePath(qmakespec)) {
|
|
|
|
|
if (QFile::exists(qmakespec + QLatin1String("/qmake.conf"))) {
|
|
|
|
|
qmakespec = QFileInfo(qmakespec).absoluteFilePath();
|
|
|
|
|
} else if (!m_outputDir.isEmpty()
|
|
|
|
|
&& QFile::exists(m_outputDir + QLatin1Char('/') + qmakespec
|
|
|
|
|
+ QLatin1String("/qmake.conf"))) {
|
|
|
|
|
qmakespec = m_outputDir + QLatin1Char('/') + qmakespec;
|
|
|
|
|
} else {
|
|
|
|
|
foreach (const QString &root, mkspec_roots) {
|
|
|
|
|
QString mkspec = root + QLatin1Char('/') + qmakespec;
|
|
|
|
|
if (QFile::exists(mkspec)) {
|
|
|
|
|
qmakespec = mkspec;
|
|
|
|
|
goto cool;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-08-12 13:00:21 +02:00
|
|
|
errorMessage(format("Could not find qmake configuration file"));
|
2009-08-04 16:16:27 +02:00
|
|
|
// Unlike in qmake, a missing config is not critical ...
|
|
|
|
|
qmakespec.clear();
|
|
|
|
|
cool: ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!qmakespec.isEmpty()) {
|
|
|
|
|
m_option->qmakespec = QDir::cleanPath(qmakespec);
|
|
|
|
|
|
|
|
|
|
QString spec = m_option->qmakespec + QLatin1String("/qmake.conf");
|
2009-08-10 17:27:07 +02:00
|
|
|
if (!evaluateFileInto(spec,
|
|
|
|
|
&m_option->base_valuemap, &m_option->base_functions)) {
|
2009-08-12 13:00:21 +02:00
|
|
|
errorMessage(format("Could not read qmake configuration file %1").arg(spec));
|
2009-09-08 14:19:34 +02:00
|
|
|
} else if (!m_option->cachefile.isEmpty()) {
|
|
|
|
|
evaluateFileInto(m_option->cachefile,
|
2009-09-08 14:18:06 +02:00
|
|
|
&m_option->base_valuemap, &m_option->base_functions);
|
2009-08-04 16:16:27 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-10 17:27:07 +02:00
|
|
|
evaluateFeatureFile(QLatin1String("default_pre.prf"),
|
|
|
|
|
&m_option->base_valuemap, &m_option->base_functions);
|
2009-07-22 11:03:01 +02:00
|
|
|
}
|
2009-08-04 16:16:27 +02:00
|
|
|
|
|
|
|
|
m_valuemap = m_option->base_valuemap;
|
2009-03-19 15:04:43 +01:00
|
|
|
|
2009-08-10 17:27:07 +02:00
|
|
|
clearFunctions(&m_functionDefs);
|
|
|
|
|
m_functionDefs = m_option->base_functions;
|
|
|
|
|
refFunctions(&m_functionDefs.testFunctions);
|
|
|
|
|
refFunctions(&m_functionDefs.replaceFunctions);
|
|
|
|
|
|
2009-07-29 11:30:33 +02:00
|
|
|
QStringList &tgt = m_valuemap[QLatin1String("TARGET")];
|
|
|
|
|
if (tgt.isEmpty())
|
|
|
|
|
tgt.append(QFileInfo(pro->fileName()).baseName());
|
|
|
|
|
|
2009-08-04 20:51:49 +02:00
|
|
|
QStringList &tmp = m_valuemap[QLatin1String("CONFIG")];
|
2009-03-19 15:04:43 +01:00
|
|
|
tmp.append(m_addUserConfigCmdArgs);
|
2009-07-22 11:03:01 +02:00
|
|
|
foreach (const QString &remove, m_removeUserConfigCmdArgs)
|
2009-03-19 15:04:43 +01:00
|
|
|
tmp.removeAll(remove);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnTrue;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn ProFileEvaluator::Private::visitEndProFile(ProFile * pro)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
m_lineNo = pro->lineNumber();
|
2009-07-28 18:54:03 +02:00
|
|
|
|
2009-07-22 17:46:25 +02:00
|
|
|
if (m_profileStack.count() == 1) {
|
2009-07-22 11:03:01 +02:00
|
|
|
if (m_parsePreAndPostFiles) {
|
|
|
|
|
evaluateFeatureFile(QLatin1String("default_post.prf"));
|
|
|
|
|
|
|
|
|
|
QSet<QString> processed;
|
|
|
|
|
forever {
|
|
|
|
|
bool finished = true;
|
|
|
|
|
QStringList configs = valuesDirect(QLatin1String("CONFIG"));
|
|
|
|
|
for (int i = configs.size() - 1; i >= 0; --i) {
|
2009-08-04 20:51:49 +02:00
|
|
|
const QString config = configs.at(i).toLower();
|
2009-07-22 11:03:01 +02:00
|
|
|
if (!processed.contains(config)) {
|
|
|
|
|
processed.insert(config);
|
|
|
|
|
if (evaluateFeatureFile(config)) {
|
|
|
|
|
finished = false;
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-07-22 11:03:01 +02:00
|
|
|
if (finished)
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-07-22 17:46:25 +02:00
|
|
|
m_profileStack.pop();
|
|
|
|
|
|
2009-07-28 18:54:03 +02:00
|
|
|
return returnBool(QDir::setCurrent(m_oldPathStack.pop()));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:25:41 +02:00
|
|
|
void ProFileEvaluator::Private::visitProValue(ProValue *value)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
m_lineNo = value->lineNumber();
|
2009-07-14 20:42:45 +02:00
|
|
|
m_sts.varVal += expandVariableReferences(value->value());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn ProFileEvaluator::Private::visitProFunction(ProFunction *func)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-05-14 14:30:08 +02:00
|
|
|
// Make sure that called subblocks don't inherit & destroy the state
|
|
|
|
|
bool invertThis = m_invertNext;
|
|
|
|
|
m_invertNext = false;
|
2009-08-14 14:36:34 +02:00
|
|
|
if (!m_skipLevel) {
|
|
|
|
|
m_hadCondition = true;
|
2009-05-14 14:35:37 +02:00
|
|
|
m_sts.prevCondition = false;
|
2009-08-14 14:36:34 +02:00
|
|
|
}
|
2009-05-14 14:35:37 +02:00
|
|
|
if (m_cumulative || !m_sts.condition) {
|
2008-12-12 18:10:42 +01:00
|
|
|
QString text = func->text();
|
|
|
|
|
int lparen = text.indexOf(QLatin1Char('('));
|
|
|
|
|
int rparen = text.lastIndexOf(QLatin1Char(')'));
|
2009-01-08 10:46:00 +01:00
|
|
|
Q_ASSERT(lparen < rparen);
|
2008-12-12 18:10:42 +01:00
|
|
|
QString arguments = text.mid(lparen + 1, rparen - lparen - 1);
|
|
|
|
|
QString funcName = text.left(lparen);
|
|
|
|
|
m_lineNo = func->lineNumber();
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn result = evaluateConditionalFunction(funcName.trimmed(), arguments);
|
|
|
|
|
if (result != ProItem::ReturnFalse && result != ProItem::ReturnTrue)
|
|
|
|
|
return result;
|
|
|
|
|
if (!m_skipLevel && ((result == ProItem::ReturnTrue) ^ invertThis))
|
2009-05-14 14:35:37 +02:00
|
|
|
m_sts.condition = true;
|
2008-12-12 18:10:42 +01:00
|
|
|
}
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnTrue;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
QStringList ProFileEvaluator::Private::qmakeMkspecPaths() const
|
2009-07-23 16:34:30 +02:00
|
|
|
{
|
|
|
|
|
QStringList ret;
|
2009-08-04 16:16:27 +02:00
|
|
|
const QString concat = QLatin1String("/mkspecs");
|
|
|
|
|
|
2009-07-23 16:34:30 +02:00
|
|
|
QByteArray qmakepath = qgetenv("QMAKEPATH");
|
2009-08-04 16:16:27 +02:00
|
|
|
if (!qmakepath.isEmpty())
|
|
|
|
|
foreach (const QString &it, QString::fromLocal8Bit(qmakepath).split(m_option->dirlist_sep))
|
|
|
|
|
ret << QDir::cleanPath(it) + concat;
|
|
|
|
|
|
|
|
|
|
ret << propertyValue(QLatin1String("QT_INSTALL_DATA")) + concat;
|
2009-07-23 16:34:30 +02:00
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
QStringList ProFileEvaluator::Private::qmakeFeaturePaths() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-07-31 16:47:18 +02:00
|
|
|
QString mkspecs_concat = QLatin1String("/mkspecs");
|
|
|
|
|
QString features_concat = QLatin1String("/features");
|
2008-12-02 12:01:29 +01:00
|
|
|
QStringList concat;
|
2009-07-31 16:47:18 +02:00
|
|
|
switch (m_option->target_mode) {
|
|
|
|
|
case Option::TARG_MACX_MODE:
|
|
|
|
|
concat << QLatin1String("/features/mac");
|
|
|
|
|
concat << QLatin1String("/features/macx");
|
|
|
|
|
concat << QLatin1String("/features/unix");
|
|
|
|
|
break;
|
|
|
|
|
case Option::TARG_UNIX_MODE:
|
|
|
|
|
concat << QLatin1String("/features/unix");
|
|
|
|
|
break;
|
|
|
|
|
case Option::TARG_WIN_MODE:
|
|
|
|
|
concat << QLatin1String("/features/win32");
|
|
|
|
|
break;
|
|
|
|
|
case Option::TARG_MAC9_MODE:
|
|
|
|
|
concat << QLatin1String("/features/mac");
|
|
|
|
|
concat << QLatin1String("/features/mac9");
|
|
|
|
|
break;
|
|
|
|
|
case Option::TARG_QNX6_MODE:
|
|
|
|
|
concat << QLatin1String("/features/qnx6");
|
|
|
|
|
concat << QLatin1String("/features/unix");
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-07-31 16:47:18 +02:00
|
|
|
concat << features_concat;
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QStringList feature_roots;
|
2009-07-31 16:47:18 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QByteArray mkspec_path = qgetenv("QMAKEFEATURES");
|
2009-08-04 16:16:27 +02:00
|
|
|
if (!mkspec_path.isEmpty())
|
|
|
|
|
foreach (const QString &f, QString::fromLocal8Bit(mkspec_path).split(m_option->dirlist_sep))
|
|
|
|
|
feature_roots += QDir::cleanPath(f);
|
|
|
|
|
|
2009-08-04 15:56:26 +02:00
|
|
|
feature_roots += propertyValue(QLatin1String("QMAKEFEATURES"), false).split(
|
2009-08-04 16:16:27 +02:00
|
|
|
m_option->dirlist_sep, QString::SkipEmptyParts);
|
|
|
|
|
|
|
|
|
|
if (!m_option->cachefile.isEmpty()) {
|
2008-12-02 12:01:29 +01:00
|
|
|
QString path;
|
2009-08-04 16:16:27 +02:00
|
|
|
int last_slash = m_option->cachefile.lastIndexOf((ushort)'/');
|
2008-12-02 12:01:29 +01:00
|
|
|
if (last_slash != -1)
|
2009-08-04 16:16:27 +02:00
|
|
|
path = m_option->cachefile.left(last_slash);
|
2008-12-02 12:01:29 +01:00
|
|
|
foreach (const QString &concat_it, concat)
|
|
|
|
|
feature_roots << (path + concat_it);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QByteArray qmakepath = qgetenv("QMAKEPATH");
|
|
|
|
|
if (!qmakepath.isNull()) {
|
2009-07-23 18:36:59 +02:00
|
|
|
const QStringList lst = QString::fromLocal8Bit(qmakepath).split(m_option->dirlist_sep);
|
2008-12-02 12:01:29 +01:00
|
|
|
foreach (const QString &item, lst) {
|
2009-08-04 16:16:27 +02:00
|
|
|
QString citem = QDir::cleanPath(item);
|
2008-12-02 12:01:29 +01:00
|
|
|
foreach (const QString &concat_it, concat)
|
2009-08-04 16:16:27 +02:00
|
|
|
feature_roots << (citem + mkspecs_concat + concat_it);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!m_option->qmakespec.isEmpty()) {
|
|
|
|
|
feature_roots << (m_option->qmakespec + features_concat);
|
|
|
|
|
|
|
|
|
|
QDir specdir(m_option->qmakespec);
|
|
|
|
|
while (!specdir.isRoot()) {
|
|
|
|
|
if (!specdir.cdUp() || specdir.isRoot())
|
|
|
|
|
break;
|
|
|
|
|
if (QFile::exists(specdir.path() + features_concat)) {
|
|
|
|
|
foreach (const QString &concat_it, concat)
|
|
|
|
|
feature_roots << (specdir.path() + concat_it);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
2009-08-04 16:16:27 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
foreach (const QString &concat_it, concat)
|
|
|
|
|
feature_roots << (propertyValue(QLatin1String("QT_INSTALL_PREFIX")) +
|
|
|
|
|
mkspecs_concat + concat_it);
|
|
|
|
|
foreach (const QString &concat_it, concat)
|
|
|
|
|
feature_roots << (propertyValue(QLatin1String("QT_INSTALL_DATA")) +
|
|
|
|
|
mkspecs_concat + concat_it);
|
2009-08-04 16:16:27 +02:00
|
|
|
|
|
|
|
|
for (int i = 0; i < feature_roots.count(); ++i)
|
|
|
|
|
if (!feature_roots.at(i).endsWith((ushort)'/'))
|
|
|
|
|
feature_roots[i].append((ushort)'/');
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
return feature_roots;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-04 15:56:26 +02:00
|
|
|
QString ProFileEvaluator::Private::propertyValue(const QString &name, bool complain) const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-08-04 16:12:11 +02:00
|
|
|
if (m_option->properties.contains(name))
|
|
|
|
|
return m_option->properties.value(name);
|
2008-12-02 12:01:29 +01:00
|
|
|
if (name == QLatin1String("QMAKE_MKSPECS"))
|
2009-07-23 18:36:59 +02:00
|
|
|
return qmakeMkspecPaths().join(m_option->dirlist_sep);
|
2008-12-02 12:01:29 +01:00
|
|
|
if (name == QLatin1String("QMAKE_VERSION"))
|
|
|
|
|
return QLatin1String("1.0"); //### FIXME
|
2009-08-04 15:56:26 +02:00
|
|
|
if (complain)
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("Querying unknown property %1").arg(name));
|
2009-08-04 15:21:40 +02:00
|
|
|
return QString();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProFile *ProFileEvaluator::Private::currentProFile() const
|
|
|
|
|
{
|
|
|
|
|
if (m_profileStack.count() > 0)
|
|
|
|
|
return m_profileStack.top();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProFileEvaluator::Private::currentFileName() const
|
|
|
|
|
{
|
|
|
|
|
ProFile *pro = currentProFile();
|
|
|
|
|
if (pro)
|
|
|
|
|
return pro->fileName();
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-19 21:19:38 +01:00
|
|
|
QString ProFileEvaluator::Private::currentDirectory() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
ProFile *cur = m_profileStack.top();
|
2008-12-19 21:35:10 +01:00
|
|
|
return cur->directoryName();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-19 19:00:06 +02:00
|
|
|
void ProFileEvaluator::Private::doVariableReplace(QString *str)
|
|
|
|
|
{
|
2009-07-23 18:36:59 +02:00
|
|
|
*str = expandVariableReferences(*str).join(Option::field_sep);
|
2009-05-19 19:00:06 +02:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QStringList ProFileEvaluator::Private::expandVariableReferences(const QString &str)
|
|
|
|
|
{
|
|
|
|
|
QStringList ret;
|
2009-03-11 17:47:43 +01:00
|
|
|
// if (ok)
|
|
|
|
|
// *ok = true;
|
2008-12-02 12:01:29 +01:00
|
|
|
if (str.isEmpty())
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
const ushort LSQUARE = '[';
|
|
|
|
|
const ushort RSQUARE = ']';
|
|
|
|
|
const ushort LCURLY = '{';
|
|
|
|
|
const ushort RCURLY = '}';
|
|
|
|
|
const ushort LPAREN = '(';
|
|
|
|
|
const ushort RPAREN = ')';
|
|
|
|
|
const ushort DOLLAR = '$';
|
|
|
|
|
const ushort BACKSLASH = '\\';
|
|
|
|
|
const ushort UNDERSCORE = '_';
|
|
|
|
|
const ushort DOT = '.';
|
|
|
|
|
const ushort SPACE = ' ';
|
|
|
|
|
const ushort TAB = '\t';
|
2009-03-11 17:47:43 +01:00
|
|
|
const ushort SINGLEQUOTE = '\'';
|
|
|
|
|
const ushort DOUBLEQUOTE = '"';
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-03-11 17:47:43 +01:00
|
|
|
ushort unicode, quote = 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
const QChar *str_data = str.data();
|
|
|
|
|
const int str_len = str.length();
|
|
|
|
|
|
|
|
|
|
ushort term;
|
|
|
|
|
QString var, args;
|
|
|
|
|
|
|
|
|
|
int replaced = 0;
|
|
|
|
|
QString current;
|
|
|
|
|
for (int i = 0; i < str_len; ++i) {
|
2009-03-11 17:47:43 +01:00
|
|
|
unicode = str_data[i].unicode();
|
2008-12-02 12:01:29 +01:00
|
|
|
const int start_var = i;
|
2009-03-11 17:47:43 +01:00
|
|
|
if (unicode == DOLLAR && str_len > i+2) {
|
|
|
|
|
unicode = str_data[++i].unicode();
|
|
|
|
|
if (unicode == DOLLAR) {
|
2008-12-02 12:01:29 +01:00
|
|
|
term = 0;
|
|
|
|
|
var.clear();
|
|
|
|
|
args.clear();
|
|
|
|
|
enum { VAR, ENVIRON, FUNCTION, PROPERTY } var_type = VAR;
|
2009-03-11 17:47:43 +01:00
|
|
|
unicode = str_data[++i].unicode();
|
|
|
|
|
if (unicode == LSQUARE) {
|
|
|
|
|
unicode = str_data[++i].unicode();
|
2008-12-02 12:01:29 +01:00
|
|
|
term = RSQUARE;
|
|
|
|
|
var_type = PROPERTY;
|
2009-03-11 17:47:43 +01:00
|
|
|
} else if (unicode == LCURLY) {
|
|
|
|
|
unicode = str_data[++i].unicode();
|
2008-12-02 12:01:29 +01:00
|
|
|
var_type = VAR;
|
|
|
|
|
term = RCURLY;
|
2009-03-11 17:47:43 +01:00
|
|
|
} else if (unicode == LPAREN) {
|
|
|
|
|
unicode = str_data[++i].unicode();
|
2008-12-02 12:01:29 +01:00
|
|
|
var_type = ENVIRON;
|
|
|
|
|
term = RPAREN;
|
|
|
|
|
}
|
2009-03-11 17:47:43 +01:00
|
|
|
forever {
|
|
|
|
|
if (!(unicode & (0xFF<<8)) &&
|
|
|
|
|
unicode != DOT && unicode != UNDERSCORE &&
|
|
|
|
|
//unicode != SINGLEQUOTE && unicode != DOUBLEQUOTE &&
|
|
|
|
|
(unicode < 'a' || unicode > 'z') && (unicode < 'A' || unicode > 'Z') &&
|
|
|
|
|
(unicode < '0' || unicode > '9'))
|
2008-12-02 12:01:29 +01:00
|
|
|
break;
|
2009-03-11 17:47:43 +01:00
|
|
|
var.append(QChar(unicode));
|
2008-12-02 12:01:29 +01:00
|
|
|
if (++i == str_len)
|
|
|
|
|
break;
|
2009-03-11 17:47:43 +01:00
|
|
|
unicode = str_data[i].unicode();
|
|
|
|
|
// at this point, i points to either the 'term' or 'next' character (which is in unicode)
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-03-11 17:47:43 +01:00
|
|
|
if (var_type == VAR && unicode == LPAREN) {
|
2008-12-02 12:01:29 +01:00
|
|
|
var_type = FUNCTION;
|
|
|
|
|
int depth = 0;
|
2009-03-11 17:47:43 +01:00
|
|
|
forever {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (++i == str_len)
|
|
|
|
|
break;
|
2009-03-11 17:47:43 +01:00
|
|
|
unicode = str_data[i].unicode();
|
|
|
|
|
if (unicode == LPAREN) {
|
2008-12-02 12:01:29 +01:00
|
|
|
depth++;
|
2009-03-11 17:47:43 +01:00
|
|
|
} else if (unicode == RPAREN) {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (!depth)
|
|
|
|
|
break;
|
|
|
|
|
--depth;
|
|
|
|
|
}
|
2009-03-11 17:47:43 +01:00
|
|
|
args.append(QChar(unicode));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-03-11 17:47:43 +01:00
|
|
|
if (++i < str_len)
|
|
|
|
|
unicode = str_data[i].unicode();
|
2008-12-02 12:01:29 +01:00
|
|
|
else
|
2009-03-11 17:47:43 +01:00
|
|
|
unicode = 0;
|
|
|
|
|
// at this point i is pointing to the 'next' character (which is in unicode)
|
|
|
|
|
// this might actually be a term character since you can do $${func()}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
if (term) {
|
2009-03-11 17:47:43 +01:00
|
|
|
if (unicode != term) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("Missing %1 terminator [found %2]")
|
2009-03-11 17:47:43 +01:00
|
|
|
.arg(QChar(term))
|
|
|
|
|
.arg(unicode ? QString(unicode) : QString::fromLatin1(("end-of-line"))));
|
|
|
|
|
// if (ok)
|
|
|
|
|
// *ok = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
return QStringList();
|
|
|
|
|
}
|
2009-03-11 17:47:43 +01:00
|
|
|
} else {
|
|
|
|
|
// move the 'cursor' back to the last char of the thing we were looking at
|
|
|
|
|
--i;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-03-11 17:47:43 +01:00
|
|
|
// since i never points to the 'next' character, there is no reason for this to be set
|
|
|
|
|
unicode = 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QStringList replacement;
|
|
|
|
|
if (var_type == ENVIRON) {
|
2009-03-11 17:47:43 +01:00
|
|
|
replacement = split_value_list(QString::fromLocal8Bit(qgetenv(var.toLatin1().constData())));
|
2008-12-02 12:01:29 +01:00
|
|
|
} else if (var_type == PROPERTY) {
|
|
|
|
|
replacement << propertyValue(var);
|
|
|
|
|
} else if (var_type == FUNCTION) {
|
|
|
|
|
replacement << evaluateExpandFunction(var, args);
|
|
|
|
|
} else if (var_type == VAR) {
|
2009-03-11 17:47:43 +01:00
|
|
|
replacement = values(var);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
if (!(replaced++) && start_var)
|
|
|
|
|
current = str.left(start_var);
|
|
|
|
|
if (!replacement.isEmpty()) {
|
2009-03-11 17:47:43 +01:00
|
|
|
if (quote) {
|
2009-07-23 18:36:59 +02:00
|
|
|
current += replacement.join(Option::field_sep);
|
2009-03-11 17:47:43 +01:00
|
|
|
} else {
|
|
|
|
|
current += replacement.takeFirst();
|
|
|
|
|
if (!replacement.isEmpty()) {
|
|
|
|
|
if (!current.isEmpty())
|
|
|
|
|
ret.append(current);
|
|
|
|
|
current = replacement.takeLast();
|
|
|
|
|
if (!replacement.isEmpty())
|
|
|
|
|
ret += replacement;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (replaced)
|
|
|
|
|
current.append(QLatin1Char('$'));
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-03-11 17:47:43 +01:00
|
|
|
if (quote && unicode == quote) {
|
|
|
|
|
unicode = 0;
|
|
|
|
|
quote = 0;
|
|
|
|
|
} else if (unicode == BACKSLASH) {
|
|
|
|
|
bool escape = false;
|
|
|
|
|
const char *symbols = "[]{}()$\\'\"";
|
|
|
|
|
for (const char *s = symbols; *s; ++s) {
|
|
|
|
|
if (str_data[i+1].unicode() == (ushort)*s) {
|
|
|
|
|
i++;
|
|
|
|
|
escape = true;
|
|
|
|
|
if (!(replaced++))
|
|
|
|
|
current = str.left(start_var);
|
|
|
|
|
current.append(str.at(i));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (escape || !replaced)
|
|
|
|
|
unicode =0;
|
|
|
|
|
} else if (!quote && (unicode == SINGLEQUOTE || unicode == DOUBLEQUOTE)) {
|
|
|
|
|
quote = unicode;
|
|
|
|
|
unicode = 0;
|
|
|
|
|
if (!(replaced++) && i)
|
|
|
|
|
current = str.left(i);
|
|
|
|
|
} else if (!quote && (unicode == SPACE || unicode == TAB)) {
|
|
|
|
|
unicode = 0;
|
|
|
|
|
if (!current.isEmpty()) {
|
|
|
|
|
ret.append(current);
|
|
|
|
|
current.clear();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (replaced && unicode)
|
|
|
|
|
current.append(QChar(unicode));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-03-11 17:47:43 +01:00
|
|
|
if (!replaced)
|
|
|
|
|
ret = QStringList(str);
|
|
|
|
|
else if (!current.isEmpty())
|
2008-12-02 12:01:29 +01:00
|
|
|
ret.append(current);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProFileEvaluator::Private::isActiveConfig(const QString &config, bool regex)
|
|
|
|
|
{
|
|
|
|
|
// magic types for easy flipping
|
|
|
|
|
if (config == QLatin1String("true"))
|
|
|
|
|
return true;
|
|
|
|
|
if (config == QLatin1String("false"))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// mkspecs
|
2009-07-23 18:36:59 +02:00
|
|
|
if ((m_option->target_mode == m_option->TARG_MACX_MODE
|
|
|
|
|
|| m_option->target_mode == m_option->TARG_QNX6_MODE
|
|
|
|
|
|| m_option->target_mode == m_option->TARG_UNIX_MODE)
|
2008-12-02 12:01:29 +01:00
|
|
|
&& config == QLatin1String("unix"))
|
|
|
|
|
return true;
|
2009-07-23 18:36:59 +02:00
|
|
|
if (m_option->target_mode == m_option->TARG_MACX_MODE && config == QLatin1String("macx"))
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
2009-07-23 18:36:59 +02:00
|
|
|
if (m_option->target_mode == m_option->TARG_QNX6_MODE && config == QLatin1String("qnx6"))
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
2009-07-23 18:36:59 +02:00
|
|
|
if (m_option->target_mode == m_option->TARG_MAC9_MODE && config == QLatin1String("mac9"))
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
2009-07-23 18:36:59 +02:00
|
|
|
if ((m_option->target_mode == m_option->TARG_MAC9_MODE
|
|
|
|
|
|| m_option->target_mode == m_option->TARG_MACX_MODE)
|
2008-12-02 12:01:29 +01:00
|
|
|
&& config == QLatin1String("mac"))
|
|
|
|
|
return true;
|
2009-07-23 18:36:59 +02:00
|
|
|
if (m_option->target_mode == m_option->TARG_WIN_MODE && config == QLatin1String("win32"))
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
|
|
|
|
|
2009-07-02 11:05:01 +10:00
|
|
|
if (regex) {
|
|
|
|
|
QRegExp re(config, Qt::CaseSensitive, QRegExp::Wildcard);
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
if (re.exactMatch(m_option->qmakespec))
|
2009-07-02 11:05:01 +10:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
// CONFIG variable
|
|
|
|
|
foreach (const QString &configValue, m_valuemap.value(QLatin1String("CONFIG"))) {
|
|
|
|
|
if (re.exactMatch(configValue))
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// mkspecs
|
2009-07-23 18:36:59 +02:00
|
|
|
if (m_option->qmakespec == config)
|
2009-07-02 11:05:01 +10:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
// CONFIG variable
|
|
|
|
|
foreach (const QString &configValue, m_valuemap.value(QLatin1String("CONFIG"))) {
|
|
|
|
|
if (configValue == config)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-14 17:36:07 +02:00
|
|
|
QList<QStringList> ProFileEvaluator::Private::prepareFunctionArgs(const QString &arguments)
|
|
|
|
|
{
|
|
|
|
|
QList<QStringList> args_list;
|
|
|
|
|
foreach (const QString &urArg, split_arg_list(arguments)) {
|
|
|
|
|
QStringList tmp;
|
|
|
|
|
foreach (const QString &arg, split_value_list(urArg))
|
|
|
|
|
tmp += expandVariableReferences(arg);
|
|
|
|
|
args_list << tmp;
|
|
|
|
|
}
|
|
|
|
|
return args_list;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
QStringList ProFileEvaluator::Private::evaluateFunction(
|
2009-08-14 17:36:07 +02:00
|
|
|
ProBlock *funcPtr, const QList<QStringList> &argumentsList, bool *ok)
|
2009-05-18 17:46:30 +02:00
|
|
|
{
|
|
|
|
|
bool oki;
|
|
|
|
|
QStringList ret;
|
|
|
|
|
|
|
|
|
|
if (m_valuemapStack.count() >= 100) {
|
2009-08-12 13:00:21 +02:00
|
|
|
errorMessage(format("ran into infinite recursion (depth > 100)."));
|
2009-06-03 19:04:10 +02:00
|
|
|
oki = false;
|
2009-05-18 17:46:30 +02:00
|
|
|
} else {
|
|
|
|
|
State sts = m_sts;
|
|
|
|
|
m_valuemapStack.push(m_valuemap);
|
|
|
|
|
m_filevaluemapStack.push(m_filevaluemap);
|
|
|
|
|
|
|
|
|
|
QStringList args;
|
|
|
|
|
for (int i = 0; i < argumentsList.count(); ++i) {
|
2009-08-14 17:36:07 +02:00
|
|
|
args += argumentsList[i];
|
|
|
|
|
m_valuemap[QString::number(i+1)] = argumentsList[i];
|
2009-05-18 17:46:30 +02:00
|
|
|
}
|
|
|
|
|
m_valuemap[QLatin1String("ARGS")] = args;
|
|
|
|
|
oki = (funcPtr->Accept(this) != ProItem::ReturnFalse); // True || Return
|
|
|
|
|
ret = m_returnValue;
|
|
|
|
|
m_returnValue.clear();
|
|
|
|
|
|
|
|
|
|
m_valuemap = m_valuemapStack.pop();
|
|
|
|
|
m_filevaluemap = m_filevaluemapStack.pop();
|
|
|
|
|
m_sts = sts;
|
|
|
|
|
}
|
|
|
|
|
if (ok)
|
|
|
|
|
*ok = oki;
|
|
|
|
|
if (oki)
|
|
|
|
|
return ret;
|
|
|
|
|
return QStringList();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QStringList ProFileEvaluator::Private::evaluateExpandFunction(const QString &func, const QString &arguments)
|
|
|
|
|
{
|
2009-08-14 17:36:07 +02:00
|
|
|
QList<QStringList> args_list = prepareFunctionArgs(arguments);
|
2009-03-17 17:12:29 +01:00
|
|
|
|
2009-08-10 17:27:07 +02:00
|
|
|
if (ProBlock *funcPtr = m_functionDefs.replaceFunctions.value(func, 0))
|
2009-08-14 17:36:07 +02:00
|
|
|
return evaluateFunction(funcPtr, args_list, 0);
|
2009-05-18 17:46:30 +02:00
|
|
|
|
2009-08-14 17:36:07 +02:00
|
|
|
QStringList args; //why don't the builtin functions just use args_list? --Sam
|
|
|
|
|
foreach (const QStringList &arg, args_list)
|
|
|
|
|
args += arg.join(Option::field_sep);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
enum ExpandFunc { E_MEMBER=1, E_FIRST, E_LAST, E_CAT, E_FROMFILE, E_EVAL, E_LIST,
|
|
|
|
|
E_SPRINTF, E_JOIN, E_SPLIT, E_BASENAME, E_DIRNAME, E_SECTION,
|
|
|
|
|
E_FIND, E_SYSTEM, E_UNIQUE, E_QUOTE, E_ESCAPE_EXPAND,
|
|
|
|
|
E_UPPER, E_LOWER, E_FILES, E_PROMPT, E_RE_ESCAPE,
|
|
|
|
|
E_REPLACE };
|
|
|
|
|
|
2009-06-04 15:25:07 +02:00
|
|
|
static QHash<QString, int> expands;
|
|
|
|
|
if (expands.isEmpty()) {
|
|
|
|
|
expands.insert(QLatin1String("member"), E_MEMBER);
|
|
|
|
|
expands.insert(QLatin1String("first"), E_FIRST);
|
|
|
|
|
expands.insert(QLatin1String("last"), E_LAST);
|
|
|
|
|
expands.insert(QLatin1String("cat"), E_CAT);
|
|
|
|
|
expands.insert(QLatin1String("fromfile"), E_FROMFILE); // implementation disabled (see comment below)
|
|
|
|
|
expands.insert(QLatin1String("eval"), E_EVAL);
|
|
|
|
|
expands.insert(QLatin1String("list"), E_LIST);
|
|
|
|
|
expands.insert(QLatin1String("sprintf"), E_SPRINTF);
|
|
|
|
|
expands.insert(QLatin1String("join"), E_JOIN);
|
|
|
|
|
expands.insert(QLatin1String("split"), E_SPLIT);
|
|
|
|
|
expands.insert(QLatin1String("basename"), E_BASENAME);
|
|
|
|
|
expands.insert(QLatin1String("dirname"), E_DIRNAME);
|
|
|
|
|
expands.insert(QLatin1String("section"), E_SECTION);
|
|
|
|
|
expands.insert(QLatin1String("find"), E_FIND);
|
|
|
|
|
expands.insert(QLatin1String("system"), E_SYSTEM);
|
|
|
|
|
expands.insert(QLatin1String("unique"), E_UNIQUE);
|
|
|
|
|
expands.insert(QLatin1String("quote"), E_QUOTE);
|
|
|
|
|
expands.insert(QLatin1String("escape_expand"), E_ESCAPE_EXPAND);
|
|
|
|
|
expands.insert(QLatin1String("upper"), E_UPPER);
|
|
|
|
|
expands.insert(QLatin1String("lower"), E_LOWER);
|
|
|
|
|
expands.insert(QLatin1String("re_escape"), E_RE_ESCAPE);
|
|
|
|
|
expands.insert(QLatin1String("files"), E_FILES);
|
|
|
|
|
expands.insert(QLatin1String("prompt"), E_PROMPT); // interactive, so cannot be implemented
|
|
|
|
|
expands.insert(QLatin1String("replace"), E_REPLACE);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-06-04 15:25:07 +02:00
|
|
|
ExpandFunc func_t = ExpandFunc(expands.value(func.toLower()));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QStringList ret;
|
|
|
|
|
|
|
|
|
|
switch (func_t) {
|
|
|
|
|
case E_BASENAME:
|
|
|
|
|
case E_DIRNAME:
|
|
|
|
|
case E_SECTION: {
|
|
|
|
|
bool regexp = false;
|
|
|
|
|
QString sep, var;
|
|
|
|
|
int beg = 0;
|
|
|
|
|
int end = -1;
|
|
|
|
|
if (func_t == E_SECTION) {
|
|
|
|
|
if (args.count() != 3 && args.count() != 4) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("%1(var) section(var, sep, begin, end) "
|
2008-12-04 19:16:48 +01:00
|
|
|
"requires three or four arguments.").arg(func));
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
|
|
|
|
var = args[0];
|
|
|
|
|
sep = args[1];
|
|
|
|
|
beg = args[2].toInt();
|
|
|
|
|
if (args.count() == 4)
|
|
|
|
|
end = args[3].toInt();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("%1(var) requires one argument.").arg(func));
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
|
|
|
|
var = args[0];
|
|
|
|
|
regexp = true;
|
|
|
|
|
sep = QLatin1String("[\\\\/]");
|
|
|
|
|
if (func_t == E_DIRNAME)
|
|
|
|
|
end = -2;
|
|
|
|
|
else
|
|
|
|
|
beg = -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!var.isNull()) {
|
|
|
|
|
foreach (const QString str, values(var)) {
|
|
|
|
|
if (regexp)
|
|
|
|
|
ret += str.section(QRegExp(sep), beg, end);
|
|
|
|
|
else
|
|
|
|
|
ret += str.section(sep, beg, end);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2008-12-12 16:30:31 +01:00
|
|
|
case E_SPRINTF:
|
|
|
|
|
if(args.count() < 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("sprintf(format, ...) requires at least one argument"));
|
2008-12-12 16:30:31 +01:00
|
|
|
} else {
|
|
|
|
|
QString tmp = args.at(0);
|
|
|
|
|
for (int i = 1; i < args.count(); ++i)
|
|
|
|
|
tmp = tmp.arg(args.at(i));
|
|
|
|
|
ret = split_value_list(tmp);
|
|
|
|
|
}
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
case E_JOIN: {
|
|
|
|
|
if (args.count() < 1 || args.count() > 4) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("join(var, glue, before, after) requires one to four arguments."));
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
|
|
|
|
QString glue, before, after;
|
|
|
|
|
if (args.count() >= 2)
|
|
|
|
|
glue = args[1];
|
|
|
|
|
if (args.count() >= 3)
|
|
|
|
|
before = args[2];
|
|
|
|
|
if (args.count() == 4)
|
|
|
|
|
after = args[3];
|
|
|
|
|
const QStringList &var = values(args.first());
|
|
|
|
|
if (!var.isEmpty())
|
|
|
|
|
ret.append(before + var.join(glue) + after);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-08-12 13:42:29 +02:00
|
|
|
case E_SPLIT:
|
2008-12-04 19:16:48 +01:00
|
|
|
if (args.count() != 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("split(var, sep) requires one or two arguments"));
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
2009-07-23 18:36:59 +02:00
|
|
|
const QString &sep = (args.count() == 2) ? args[1] : Option::field_sep;
|
2008-12-02 12:01:29 +01:00
|
|
|
foreach (const QString &var, values(args.first()))
|
|
|
|
|
foreach (const QString &splt, var.split(sep))
|
|
|
|
|
ret.append(splt);
|
|
|
|
|
}
|
|
|
|
|
break;
|
2009-08-12 13:42:29 +02:00
|
|
|
case E_MEMBER:
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() < 1 || args.count() > 3) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("member(var, start, end) requires one to three arguments."));
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
|
|
|
|
bool ok = true;
|
|
|
|
|
const QStringList var = values(args.first());
|
|
|
|
|
int start = 0, end = 0;
|
|
|
|
|
if (args.count() >= 2) {
|
|
|
|
|
QString start_str = args[1];
|
|
|
|
|
start = start_str.toInt(&ok);
|
|
|
|
|
if (!ok) {
|
|
|
|
|
if (args.count() == 2) {
|
|
|
|
|
int dotdot = start_str.indexOf(QLatin1String(".."));
|
|
|
|
|
if (dotdot != -1) {
|
|
|
|
|
start = start_str.left(dotdot).toInt(&ok);
|
|
|
|
|
if (ok)
|
|
|
|
|
end = start_str.mid(dotdot+2).toInt(&ok);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!ok)
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("member() argument 2 (start) '%2' invalid.")
|
2008-12-02 12:01:29 +01:00
|
|
|
.arg(start_str));
|
|
|
|
|
} else {
|
|
|
|
|
end = start;
|
|
|
|
|
if (args.count() == 3)
|
|
|
|
|
end = args[2].toInt(&ok);
|
|
|
|
|
if (!ok)
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("member() argument 3 (end) '%2' invalid.\n")
|
2008-12-02 12:01:29 +01:00
|
|
|
.arg(args[2]));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (ok) {
|
|
|
|
|
if (start < 0)
|
|
|
|
|
start += var.count();
|
|
|
|
|
if (end < 0)
|
|
|
|
|
end += var.count();
|
|
|
|
|
if (start < 0 || start >= var.count() || end < 0 || end >= var.count()) {
|
|
|
|
|
//nothing
|
|
|
|
|
} else if (start < end) {
|
|
|
|
|
for (int i = start; i <= end && var.count() >= i; i++)
|
|
|
|
|
ret.append(var[i]);
|
|
|
|
|
} else {
|
|
|
|
|
for (int i = start; i >= end && var.count() >= i && i >= 0; i--)
|
|
|
|
|
ret += var[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case E_FIRST:
|
2009-08-12 13:42:29 +02:00
|
|
|
case E_LAST:
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("%1(var) requires one argument.").arg(func));
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
|
|
|
|
const QStringList var = values(args.first());
|
|
|
|
|
if (!var.isEmpty()) {
|
|
|
|
|
if (func_t == E_FIRST)
|
|
|
|
|
ret.append(var[0]);
|
|
|
|
|
else
|
|
|
|
|
ret.append(var.last());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
2008-12-12 16:30:31 +01:00
|
|
|
case E_CAT:
|
|
|
|
|
if (args.count() < 1 || args.count() > 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("cat(file, singleline=true) requires one or two arguments."));
|
2008-12-12 16:30:31 +01:00
|
|
|
} else {
|
|
|
|
|
QString file = args[0];
|
|
|
|
|
|
|
|
|
|
bool singleLine = true;
|
|
|
|
|
if (args.count() > 1)
|
2009-05-25 15:58:58 +02:00
|
|
|
singleLine = (!args[1].compare(QLatin1String("true"), Qt::CaseInsensitive));
|
2008-12-12 16:30:31 +01:00
|
|
|
|
|
|
|
|
QFile qfile(file);
|
|
|
|
|
if (qfile.open(QIODevice::ReadOnly)) {
|
|
|
|
|
QTextStream stream(&qfile);
|
|
|
|
|
while (!stream.atEnd()) {
|
|
|
|
|
ret += split_value_list(stream.readLine().trimmed());
|
|
|
|
|
if (!singleLine)
|
|
|
|
|
ret += QLatin1String("\n");
|
|
|
|
|
}
|
|
|
|
|
qfile.close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#if 0 // Used only by Qt's configure for caching
|
|
|
|
|
case E_FROMFILE:
|
|
|
|
|
if (args.count() != 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("fromfile(file, variable) requires two arguments."));
|
2008-12-12 16:30:31 +01:00
|
|
|
} else {
|
|
|
|
|
QString file = args[0], seek_variableName = args[1];
|
|
|
|
|
|
2009-07-23 17:04:50 +02:00
|
|
|
ProFile pro(fixPathToLocalOS(file));
|
2008-12-12 16:30:31 +01:00
|
|
|
|
|
|
|
|
ProFileEvaluator visitor;
|
|
|
|
|
visitor.setVerbose(m_verbose);
|
|
|
|
|
visitor.setCumulative(m_cumulative);
|
|
|
|
|
|
|
|
|
|
if (!visitor.queryProFile(&pro))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (!visitor.accept(&pro))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
ret = visitor.values(seek_variableName);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
2009-08-12 13:42:29 +02:00
|
|
|
case E_EVAL:
|
2008-12-12 16:30:31 +01:00
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("eval(variable) requires one argument"));
|
2008-12-12 16:30:31 +01:00
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
ret += values(args.at(0));
|
|
|
|
|
}
|
2009-08-12 13:42:29 +02:00
|
|
|
break;
|
2008-12-12 16:30:31 +01:00
|
|
|
case E_LIST: {
|
|
|
|
|
static int x = 0;
|
|
|
|
|
QString tmp;
|
|
|
|
|
tmp.sprintf(".QMAKE_INTERNAL_TMP_variableName_%d", x++);
|
|
|
|
|
ret = QStringList(tmp);
|
|
|
|
|
QStringList lst;
|
|
|
|
|
foreach (const QString &arg, args)
|
|
|
|
|
lst += split_value_list(arg);
|
|
|
|
|
m_valuemap[tmp] = lst;
|
|
|
|
|
break; }
|
|
|
|
|
case E_FIND:
|
|
|
|
|
if (args.count() != 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("find(var, str) requires two arguments."));
|
2008-12-12 16:30:31 +01:00
|
|
|
} else {
|
|
|
|
|
QRegExp regx(args[1]);
|
|
|
|
|
foreach (const QString &val, values(args.first()))
|
|
|
|
|
if (regx.indexIn(val) != -1)
|
|
|
|
|
ret += val;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case E_SYSTEM:
|
2009-03-02 19:58:54 +01:00
|
|
|
if (!m_skipLevel) {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() < 1 || args.count() > 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("system(execute) requires one or two arguments."));
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
|
|
|
|
char buff[256];
|
|
|
|
|
FILE *proc = QT_POPEN(args[0].toLatin1(), "r");
|
|
|
|
|
bool singleLine = true;
|
|
|
|
|
if (args.count() > 1)
|
2009-05-25 15:58:58 +02:00
|
|
|
singleLine = (!args[1].compare(QLatin1String("true"), Qt::CaseInsensitive));
|
2008-12-02 12:01:29 +01:00
|
|
|
QString output;
|
|
|
|
|
while (proc && !feof(proc)) {
|
|
|
|
|
int read_in = int(fread(buff, 1, 255, proc));
|
|
|
|
|
if (!read_in)
|
|
|
|
|
break;
|
|
|
|
|
for (int i = 0; i < read_in; i++) {
|
|
|
|
|
if ((singleLine && buff[i] == '\n') || buff[i] == '\t')
|
|
|
|
|
buff[i] = ' ';
|
|
|
|
|
}
|
|
|
|
|
buff[read_in] = '\0';
|
|
|
|
|
output += QLatin1String(buff);
|
|
|
|
|
}
|
|
|
|
|
ret += split_value_list(output);
|
2009-06-04 15:18:14 +02:00
|
|
|
if (proc)
|
|
|
|
|
QT_PCLOSE(proc);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
2008-12-12 16:30:31 +01:00
|
|
|
break;
|
|
|
|
|
case E_UNIQUE:
|
|
|
|
|
if(args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("unique(var) requires one argument."));
|
2008-12-12 16:30:31 +01:00
|
|
|
} else {
|
|
|
|
|
foreach (const QString &var, values(args.first()))
|
|
|
|
|
if (!ret.contains(var))
|
|
|
|
|
ret.append(var);
|
|
|
|
|
}
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
case E_QUOTE:
|
|
|
|
|
for (int i = 0; i < args.count(); ++i)
|
|
|
|
|
ret += QStringList(args.at(i));
|
|
|
|
|
break;
|
2008-12-12 16:30:31 +01:00
|
|
|
case E_ESCAPE_EXPAND:
|
|
|
|
|
for (int i = 0; i < args.size(); ++i) {
|
|
|
|
|
QChar *i_data = args[i].data();
|
|
|
|
|
int i_len = args[i].length();
|
|
|
|
|
for (int x = 0; x < i_len; ++x) {
|
|
|
|
|
if (*(i_data+x) == QLatin1Char('\\') && x < i_len-1) {
|
|
|
|
|
if (*(i_data+x+1) == QLatin1Char('\\')) {
|
|
|
|
|
++x;
|
|
|
|
|
} else {
|
|
|
|
|
struct {
|
|
|
|
|
char in, out;
|
|
|
|
|
} mapped_quotes[] = {
|
|
|
|
|
{ 'n', '\n' },
|
|
|
|
|
{ 't', '\t' },
|
|
|
|
|
{ 'r', '\r' },
|
|
|
|
|
{ 0, 0 }
|
|
|
|
|
};
|
|
|
|
|
for (int i = 0; mapped_quotes[i].in; ++i) {
|
|
|
|
|
if (*(i_data+x+1) == QLatin1Char(mapped_quotes[i].in)) {
|
|
|
|
|
*(i_data+x) = QLatin1Char(mapped_quotes[i].out);
|
|
|
|
|
if (x < i_len-2)
|
|
|
|
|
memmove(i_data+x+1, i_data+x+2, (i_len-x-2)*sizeof(QChar));
|
|
|
|
|
--i_len;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ret.append(QString(i_data, i_len));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case E_RE_ESCAPE:
|
|
|
|
|
for (int i = 0; i < args.size(); ++i)
|
|
|
|
|
ret += QRegExp::escape(args[i]);
|
|
|
|
|
break;
|
|
|
|
|
case E_UPPER:
|
|
|
|
|
case E_LOWER:
|
|
|
|
|
for (int i = 0; i < args.count(); ++i)
|
|
|
|
|
if (func_t == E_UPPER)
|
|
|
|
|
ret += args[i].toUpper();
|
|
|
|
|
else
|
|
|
|
|
ret += args[i].toLower();
|
|
|
|
|
break;
|
|
|
|
|
case E_FILES:
|
|
|
|
|
if (args.count() != 1 && args.count() != 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("files(pattern, recursive=false) requires one or two arguments"));
|
2008-12-12 16:30:31 +01:00
|
|
|
} else {
|
|
|
|
|
bool recursive = false;
|
|
|
|
|
if (args.count() == 2)
|
2009-05-25 15:58:58 +02:00
|
|
|
recursive = (!args[1].compare(QLatin1String("true"), Qt::CaseInsensitive) || args[1].toInt());
|
2008-12-12 16:30:31 +01:00
|
|
|
QStringList dirs;
|
2009-07-23 17:04:50 +02:00
|
|
|
QString r = fixPathToLocalOS(args[0]);
|
2008-12-12 16:30:31 +01:00
|
|
|
int slash = r.lastIndexOf(QDir::separator());
|
|
|
|
|
if (slash != -1) {
|
|
|
|
|
dirs.append(r.left(slash));
|
|
|
|
|
r = r.mid(slash+1);
|
|
|
|
|
} else {
|
|
|
|
|
dirs.append(QString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QRegExp regex(r, Qt::CaseSensitive, QRegExp::Wildcard);
|
|
|
|
|
for (int d = 0; d < dirs.count(); d++) {
|
|
|
|
|
QString dir = dirs[d];
|
2009-07-23 18:36:59 +02:00
|
|
|
if (!dir.isEmpty() && !dir.endsWith(m_option->dir_sep))
|
2008-12-12 16:30:31 +01:00
|
|
|
dir += QLatin1Char('/');
|
|
|
|
|
|
|
|
|
|
QDir qdir(dir);
|
|
|
|
|
for (int i = 0; i < (int)qdir.count(); ++i) {
|
|
|
|
|
if (qdir[i] == QLatin1String(".") || qdir[i] == QLatin1String(".."))
|
|
|
|
|
continue;
|
|
|
|
|
QString fname = dir + qdir[i];
|
|
|
|
|
if (QFileInfo(fname).isDir()) {
|
|
|
|
|
if (recursive)
|
|
|
|
|
dirs.append(fname);
|
|
|
|
|
}
|
|
|
|
|
if (regex.exactMatch(qdir[i]))
|
|
|
|
|
ret += fname;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case E_REPLACE:
|
|
|
|
|
if(args.count() != 3 ) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("replace(var, before, after) requires three arguments"));
|
2008-12-12 16:30:31 +01:00
|
|
|
} else {
|
|
|
|
|
const QRegExp before(args[1]);
|
|
|
|
|
const QString after(args[2]);
|
|
|
|
|
foreach (QString val, values(args.first()))
|
|
|
|
|
ret += val.replace(before, after);
|
|
|
|
|
}
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
case 0:
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("'%1' is not a recognized replace function").arg(func));
|
2008-12-02 12:01:29 +01:00
|
|
|
break;
|
|
|
|
|
default:
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("Function '%1' is not implemented").arg(func));
|
2008-12-02 12:01:29 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ProItemReturn ProFileEvaluator::Private::evaluateConditionalFunction(
|
2009-05-12 17:15:54 +02:00
|
|
|
const QString &function, const QString &arguments)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-08-14 17:36:07 +02:00
|
|
|
QList<QStringList> args_list = prepareFunctionArgs(arguments);
|
2009-05-18 17:46:30 +02:00
|
|
|
|
2009-08-10 17:27:07 +02:00
|
|
|
if (ProBlock *funcPtr = m_functionDefs.testFunctions.value(function, 0)) {
|
2009-05-18 17:46:30 +02:00
|
|
|
bool ok;
|
2009-08-14 17:36:07 +02:00
|
|
|
QStringList ret = evaluateFunction(funcPtr, args_list, &ok);
|
2009-05-18 17:46:30 +02:00
|
|
|
if (ok) {
|
|
|
|
|
if (ret.isEmpty()) {
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
} else {
|
|
|
|
|
if (ret.first() != QLatin1String("false")) {
|
|
|
|
|
if (ret.first() == QLatin1String("true")) {
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
} else {
|
|
|
|
|
bool ok;
|
|
|
|
|
int val = ret.first().toInt(&ok);
|
|
|
|
|
if (ok) {
|
|
|
|
|
if (val)
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
} else {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("Unexpected return value from test '%1': %2")
|
2009-05-18 17:46:30 +02:00
|
|
|
.arg(function).arg(ret.join(QLatin1String(" :: "))));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-14 17:36:07 +02:00
|
|
|
QStringList args; //why don't the builtin functions just use args_list? --Sam
|
|
|
|
|
foreach (const QStringList &arg, args_list)
|
|
|
|
|
args += arg.join(Option::field_sep);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-17 18:47:12 +01:00
|
|
|
enum TestFunc { T_REQUIRES=1, T_GREATERTHAN, T_LESSTHAN, T_EQUALS,
|
|
|
|
|
T_EXISTS, T_EXPORT, T_CLEAR, T_UNSET, T_EVAL, T_CONFIG, T_SYSTEM,
|
|
|
|
|
T_RETURN, T_BREAK, T_NEXT, T_DEFINED, T_CONTAINS, T_INFILE,
|
2009-05-18 17:46:30 +02:00
|
|
|
T_COUNT, T_ISEMPTY, T_INCLUDE, T_LOAD, T_DEBUG, T_MESSAGE, T_IF,
|
2009-05-19 19:00:06 +02:00
|
|
|
T_FOR, T_DEFINE_TEST, T_DEFINE_REPLACE };
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-06-04 15:25:07 +02:00
|
|
|
static QHash<QString, int> functions;
|
|
|
|
|
if (functions.isEmpty()) {
|
|
|
|
|
functions.insert(QLatin1String("requires"), T_REQUIRES);
|
|
|
|
|
functions.insert(QLatin1String("greaterThan"), T_GREATERTHAN);
|
|
|
|
|
functions.insert(QLatin1String("lessThan"), T_LESSTHAN);
|
|
|
|
|
functions.insert(QLatin1String("equals"), T_EQUALS);
|
|
|
|
|
functions.insert(QLatin1String("isEqual"), T_EQUALS);
|
|
|
|
|
functions.insert(QLatin1String("exists"), T_EXISTS);
|
|
|
|
|
functions.insert(QLatin1String("export"), T_EXPORT);
|
|
|
|
|
functions.insert(QLatin1String("clear"), T_CLEAR);
|
|
|
|
|
functions.insert(QLatin1String("unset"), T_UNSET);
|
|
|
|
|
functions.insert(QLatin1String("eval"), T_EVAL);
|
|
|
|
|
functions.insert(QLatin1String("CONFIG"), T_CONFIG);
|
|
|
|
|
functions.insert(QLatin1String("if"), T_IF);
|
|
|
|
|
functions.insert(QLatin1String("isActiveConfig"), T_CONFIG);
|
|
|
|
|
functions.insert(QLatin1String("system"), T_SYSTEM);
|
|
|
|
|
functions.insert(QLatin1String("return"), T_RETURN);
|
|
|
|
|
functions.insert(QLatin1String("break"), T_BREAK);
|
|
|
|
|
functions.insert(QLatin1String("next"), T_NEXT);
|
|
|
|
|
functions.insert(QLatin1String("defined"), T_DEFINED);
|
|
|
|
|
functions.insert(QLatin1String("contains"), T_CONTAINS);
|
|
|
|
|
functions.insert(QLatin1String("infile"), T_INFILE);
|
|
|
|
|
functions.insert(QLatin1String("count"), T_COUNT);
|
|
|
|
|
functions.insert(QLatin1String("isEmpty"), T_ISEMPTY);
|
|
|
|
|
functions.insert(QLatin1String("load"), T_LOAD); //v
|
|
|
|
|
functions.insert(QLatin1String("include"), T_INCLUDE); //v
|
|
|
|
|
functions.insert(QLatin1String("debug"), T_DEBUG);
|
|
|
|
|
functions.insert(QLatin1String("message"), T_MESSAGE); //v
|
|
|
|
|
functions.insert(QLatin1String("warning"), T_MESSAGE); //v
|
|
|
|
|
functions.insert(QLatin1String("error"), T_MESSAGE); //v
|
|
|
|
|
functions.insert(QLatin1String("for"), T_FOR); //v
|
|
|
|
|
functions.insert(QLatin1String("defineTest"), T_DEFINE_TEST); //v
|
|
|
|
|
functions.insert(QLatin1String("defineReplace"), T_DEFINE_REPLACE); //v
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-06-04 15:25:07 +02:00
|
|
|
TestFunc func_t = (TestFunc)functions.value(function);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
switch (func_t) {
|
2009-05-18 17:46:30 +02:00
|
|
|
case T_DEFINE_TEST:
|
|
|
|
|
m_definingTest = true;
|
|
|
|
|
goto defineFunc;
|
|
|
|
|
case T_DEFINE_REPLACE:
|
|
|
|
|
m_definingTest = false;
|
|
|
|
|
defineFunc:
|
|
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("%s(function) requires one argument.").arg(function));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
m_definingFunc = args.first();
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
case T_DEFINED:
|
|
|
|
|
if (args.count() < 1 || args.count() > 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("defined(function, [\"test\"|\"replace\"])"
|
2009-05-18 17:46:30 +02:00
|
|
|
" requires one or two arguments."));
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
if (args.count() > 1) {
|
|
|
|
|
if (args[1] == QLatin1String("test"))
|
2009-08-10 17:27:07 +02:00
|
|
|
return returnBool(m_functionDefs.testFunctions.contains(args[0]));
|
2009-05-18 17:46:30 +02:00
|
|
|
else if (args[1] == QLatin1String("replace"))
|
2009-08-10 17:27:07 +02:00
|
|
|
return returnBool(m_functionDefs.replaceFunctions.contains(args[0]));
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("defined(function, type):"
|
2009-05-18 17:46:30 +02:00
|
|
|
" unexpected type [%1].\n").arg(args[1]));
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
2009-08-10 17:27:07 +02:00
|
|
|
return returnBool(m_functionDefs.replaceFunctions.contains(args[0])
|
|
|
|
|
|| m_functionDefs.testFunctions.contains(args[0]));
|
2009-05-18 17:46:30 +02:00
|
|
|
case T_RETURN:
|
|
|
|
|
m_returnValue = args;
|
|
|
|
|
// It is "safe" to ignore returns - due to qmake brokeness
|
|
|
|
|
// they cannot be used to terminate loops anyway.
|
|
|
|
|
if (m_skipLevel || m_cumulative)
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
if (m_valuemapStack.isEmpty()) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("unexpected return()."));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
return ProItem::ReturnReturn;
|
|
|
|
|
case T_EXPORT:
|
|
|
|
|
if (m_skipLevel && !m_cumulative)
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("export(variable) requires one argument."));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < m_valuemapStack.size(); ++i) {
|
2009-08-04 20:51:49 +02:00
|
|
|
m_valuemapStack[i][args[0]] = m_valuemap.value(args[0]);
|
2009-05-18 17:46:30 +02:00
|
|
|
m_filevaluemapStack[i][currentProFile()][args[0]] =
|
2009-08-04 20:51:49 +02:00
|
|
|
m_filevaluemap.value(currentProFile()).value(args[0]);
|
2009-05-18 17:46:30 +02:00
|
|
|
}
|
|
|
|
|
return ProItem::ReturnTrue;
|
2008-12-17 18:47:12 +01:00
|
|
|
#if 0
|
|
|
|
|
case T_INFILE:
|
|
|
|
|
case T_REQUIRES:
|
|
|
|
|
case T_EVAL:
|
2009-05-19 19:00:06 +02:00
|
|
|
#endif
|
|
|
|
|
case T_FOR: {
|
|
|
|
|
if (m_cumulative) // This is a no-win situation, so just pretend it's no loop
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
if (m_skipLevel)
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
if (args.count() > 2 || args.count() < 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("for({var, list|var, forever|ever})"
|
2009-05-19 19:00:06 +02:00
|
|
|
" requires one or two arguments."));
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
ProLoop loop;
|
|
|
|
|
loop.infinite = false;
|
|
|
|
|
loop.index = 0;
|
|
|
|
|
QString it_list;
|
|
|
|
|
if (args.count() == 1) {
|
|
|
|
|
doVariableReplace(&args[0]);
|
|
|
|
|
it_list = args[0];
|
|
|
|
|
if (args[0] != QLatin1String("ever")) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("for({var, list|var, forever|ever})"
|
2009-05-19 19:00:06 +02:00
|
|
|
" requires one or two arguments."));
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
it_list = QLatin1String("forever");
|
|
|
|
|
} else {
|
|
|
|
|
loop.variable = args[0];
|
|
|
|
|
loop.oldVarVal = m_valuemap.value(loop.variable);
|
|
|
|
|
doVariableReplace(&args[1]);
|
|
|
|
|
it_list = args[1];
|
|
|
|
|
}
|
2009-08-04 20:51:49 +02:00
|
|
|
loop.list = m_valuemap.value(it_list);
|
2009-05-19 19:00:06 +02:00
|
|
|
if (loop.list.isEmpty()) {
|
|
|
|
|
if (it_list == QLatin1String("forever")) {
|
|
|
|
|
loop.infinite = true;
|
|
|
|
|
} else {
|
|
|
|
|
int dotdot = it_list.indexOf(QLatin1String(".."));
|
|
|
|
|
if (dotdot != -1) {
|
|
|
|
|
bool ok;
|
|
|
|
|
int start = it_list.left(dotdot).toInt(&ok);
|
|
|
|
|
if (ok) {
|
|
|
|
|
int end = it_list.mid(dotdot+2).toInt(&ok);
|
|
|
|
|
if (ok) {
|
|
|
|
|
if (start < end) {
|
|
|
|
|
for (int i = start; i <= end; i++)
|
|
|
|
|
loop.list << QString::number(i);
|
|
|
|
|
} else {
|
|
|
|
|
for (int i = start; i >= end; i--)
|
|
|
|
|
loop.list << QString::number(i);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
m_loopStack.push(loop);
|
|
|
|
|
m_sts.condition = true;
|
|
|
|
|
return ProItem::ReturnLoop;
|
|
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
case T_BREAK:
|
2009-05-19 19:00:06 +02:00
|
|
|
if (m_skipLevel)
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
if (!m_loopStack.isEmpty())
|
|
|
|
|
return ProItem::ReturnBreak;
|
|
|
|
|
// ### missing: breaking out of multiline blocks
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("unexpected break()."));
|
2009-05-19 19:00:06 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-17 18:47:12 +01:00
|
|
|
case T_NEXT:
|
2009-05-19 19:00:06 +02:00
|
|
|
if (m_skipLevel)
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
if (!m_loopStack.isEmpty())
|
|
|
|
|
return ProItem::ReturnNext;
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("unexpected next()."));
|
2009-05-19 19:00:06 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2009-05-18 15:42:45 +02:00
|
|
|
case T_IF: {
|
|
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("if(condition) requires one argument."));
|
2009-05-18 15:42:45 +02:00
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
QString cond = args.first();
|
|
|
|
|
bool escaped = false; // This is more than qmake does
|
|
|
|
|
bool quoted = false;
|
|
|
|
|
bool ret = true;
|
|
|
|
|
bool orOp = false;
|
|
|
|
|
bool invert = false;
|
|
|
|
|
bool isFunc = false;
|
|
|
|
|
int parens = 0;
|
|
|
|
|
QString test;
|
|
|
|
|
test.reserve(20);
|
|
|
|
|
QString args;
|
|
|
|
|
args.reserve(50);
|
|
|
|
|
const QChar *d = cond.unicode();
|
|
|
|
|
const QChar *ed = d + cond.length();
|
|
|
|
|
while (d < ed) {
|
|
|
|
|
ushort c = (d++)->unicode();
|
|
|
|
|
if (!escaped) {
|
|
|
|
|
if (c == '\\') {
|
|
|
|
|
escaped = true;
|
|
|
|
|
args += c; // Assume no-one quotes the test name
|
|
|
|
|
continue;
|
|
|
|
|
} else if (c == '"') {
|
|
|
|
|
quoted = !quoted;
|
|
|
|
|
args += c; // Ditto
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
escaped = false;
|
|
|
|
|
}
|
|
|
|
|
if (quoted) {
|
|
|
|
|
args += c; // Ditto
|
|
|
|
|
} else {
|
|
|
|
|
bool isOp = false;
|
|
|
|
|
if (c == '(') {
|
|
|
|
|
isFunc = true;
|
|
|
|
|
if (parens)
|
|
|
|
|
args += c;
|
|
|
|
|
++parens;
|
|
|
|
|
} else if (c == ')') {
|
|
|
|
|
--parens;
|
|
|
|
|
if (parens)
|
|
|
|
|
args += c;
|
|
|
|
|
} else if (!parens) {
|
|
|
|
|
if (c == ':' || c == '|')
|
|
|
|
|
isOp = true;
|
|
|
|
|
else if (c == '!')
|
|
|
|
|
invert = true;
|
|
|
|
|
else
|
|
|
|
|
test += c;
|
|
|
|
|
} else {
|
|
|
|
|
args += c;
|
|
|
|
|
}
|
|
|
|
|
if (!parens && (isOp || d == ed)) {
|
|
|
|
|
// Yes, qmake doesn't shortcut evaluations here. We can't, either,
|
|
|
|
|
// as some test functions have side effects.
|
|
|
|
|
bool success;
|
|
|
|
|
if (isFunc) {
|
|
|
|
|
success = evaluateConditionalFunction(test, args);
|
|
|
|
|
} else {
|
|
|
|
|
success = isActiveConfig(test, true);
|
|
|
|
|
}
|
|
|
|
|
success ^= invert;
|
|
|
|
|
if (orOp)
|
|
|
|
|
ret |= success;
|
|
|
|
|
else
|
|
|
|
|
ret &= success;
|
|
|
|
|
orOp = (c == '|');
|
|
|
|
|
invert = false;
|
|
|
|
|
isFunc = false;
|
|
|
|
|
test.clear();
|
|
|
|
|
args.clear();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return returnBool(ret);
|
|
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
case T_CONFIG: {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() < 1 || args.count() > 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("CONFIG(config) requires one or two arguments."));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
if (args.count() == 1) {
|
2008-12-12 13:23:22 +01:00
|
|
|
//cond = isActiveConfig(args.first()); XXX
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
const QStringList mutuals = args[1].split(QLatin1Char('|'));
|
2008-12-12 13:23:22 +01:00
|
|
|
const QStringList &configs = valuesDirect(QLatin1String("CONFIG"));
|
2009-03-19 15:04:43 +01:00
|
|
|
|
2009-02-04 20:41:41 +01:00
|
|
|
for (int i = configs.size() - 1; i >= 0; i--) {
|
2008-12-02 12:01:29 +01:00
|
|
|
for (int mut = 0; mut < mutuals.count(); mut++) {
|
|
|
|
|
if (configs[i] == mutuals[mut].trimmed()) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(configs[i] == args[0]);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
case T_CONTAINS: {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() < 2 || args.count() > 3) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("contains(var, val) requires two or three arguments."));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QRegExp regx(args[1]);
|
|
|
|
|
const QStringList &l = values(args.first());
|
|
|
|
|
if (args.count() == 2) {
|
|
|
|
|
for (int i = 0; i < l.size(); ++i) {
|
|
|
|
|
const QString val = l[i];
|
|
|
|
|
if (regx.exactMatch(val) || val == args[1]) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnTrue;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
const QStringList mutuals = args[2].split(QLatin1Char('|'));
|
|
|
|
|
for (int i = l.size() - 1; i >= 0; i--) {
|
|
|
|
|
const QString val = l[i];
|
|
|
|
|
for (int mut = 0; mut < mutuals.count(); mut++) {
|
|
|
|
|
if (val == mutuals[mut].trimmed()) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(regx.exactMatch(val) || val == args[1]);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-08-12 13:42:29 +02:00
|
|
|
case T_COUNT:
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() != 2 && args.count() != 3) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("count(var, count, op=\"equals\") requires two or three arguments."));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
if (args.count() == 3) {
|
|
|
|
|
QString comp = args[2];
|
|
|
|
|
if (comp == QLatin1String(">") || comp == QLatin1String("greaterThan")) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(values(args.first()).count() > args[1].toInt());
|
2008-12-02 12:01:29 +01:00
|
|
|
} else if (comp == QLatin1String(">=")) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(values(args.first()).count() >= args[1].toInt());
|
2008-12-02 12:01:29 +01:00
|
|
|
} else if (comp == QLatin1String("<") || comp == QLatin1String("lessThan")) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(values(args.first()).count() < args[1].toInt());
|
2008-12-02 12:01:29 +01:00
|
|
|
} else if (comp == QLatin1String("<=")) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(values(args.first()).count() <= args[1].toInt());
|
2009-05-12 17:15:54 +02:00
|
|
|
} else if (comp == QLatin1String("equals") || comp == QLatin1String("isEqual")
|
|
|
|
|
|| comp == QLatin1String("=") || comp == QLatin1String("==")) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(values(args.first()).count() == args[1].toInt());
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("unexpected modifier to count(%2)").arg(comp));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(values(args.first()).count() == args[1].toInt());
|
2009-05-14 17:14:37 +02:00
|
|
|
case T_GREATERTHAN:
|
|
|
|
|
case T_LESSTHAN: {
|
|
|
|
|
if (args.count() != 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("%1(variable, value) requires two arguments.").arg(function));
|
2009-05-14 17:14:37 +02:00
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
2009-07-23 18:36:59 +02:00
|
|
|
QString rhs(args[1]), lhs(values(args[0]).join(Option::field_sep));
|
2009-05-14 17:14:37 +02:00
|
|
|
bool ok;
|
|
|
|
|
int rhs_int = rhs.toInt(&ok);
|
|
|
|
|
if (ok) { // do integer compare
|
|
|
|
|
int lhs_int = lhs.toInt(&ok);
|
|
|
|
|
if (ok) {
|
|
|
|
|
if (func_t == T_GREATERTHAN)
|
|
|
|
|
return returnBool(lhs_int > rhs_int);
|
|
|
|
|
return returnBool(lhs_int < rhs_int);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (func_t == T_GREATERTHAN)
|
|
|
|
|
return returnBool(lhs > rhs);
|
|
|
|
|
return returnBool(lhs < rhs);
|
|
|
|
|
}
|
|
|
|
|
case T_EQUALS:
|
|
|
|
|
if (args.count() != 2) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("%1(variable, value) requires two arguments.").arg(function));
|
2009-05-14 17:14:37 +02:00
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
2009-07-23 18:36:59 +02:00
|
|
|
return returnBool(values(args[0]).join(Option::field_sep) == args[1]);
|
2009-05-14 17:14:37 +02:00
|
|
|
case T_CLEAR: {
|
|
|
|
|
if (m_skipLevel && !m_cumulative)
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("%1(variable) requires one argument.").arg(function));
|
2009-05-14 17:14:37 +02:00
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
QHash<QString, QStringList>::Iterator it = m_valuemap.find(args[0]);
|
|
|
|
|
if (it == m_valuemap.end())
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
it->clear();
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
}
|
|
|
|
|
case T_UNSET: {
|
|
|
|
|
if (m_skipLevel && !m_cumulative)
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("%1(variable) requires one argument.").arg(function));
|
2009-05-14 17:14:37 +02:00
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
}
|
|
|
|
|
QHash<QString, QStringList>::Iterator it = m_valuemap.find(args[0]);
|
|
|
|
|
if (it == m_valuemap.end())
|
|
|
|
|
return ProItem::ReturnFalse;
|
|
|
|
|
m_valuemap.erase(it);
|
|
|
|
|
return ProItem::ReturnTrue;
|
|
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
case T_INCLUDE: {
|
2008-12-17 18:52:14 +01:00
|
|
|
if (m_skipLevel && !m_cumulative)
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
QString parseInto;
|
2009-08-14 15:41:26 +10:00
|
|
|
// the third optional argument to include() controls warnings
|
|
|
|
|
// and is not used here
|
|
|
|
|
if ((args.count() == 2) || (args.count() == 3) ) {
|
2008-12-02 12:01:29 +01:00
|
|
|
parseInto = args[1];
|
|
|
|
|
} else if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("include(file) requires one, two or three arguments."));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
QString fileName = args.first();
|
|
|
|
|
// ### this breaks if we have include(c:/reallystupid.pri) but IMHO that's really bad style.
|
2008-12-19 21:19:38 +01:00
|
|
|
QDir currentProPath(currentDirectory());
|
2008-12-02 12:01:29 +01:00
|
|
|
fileName = QDir::cleanPath(currentProPath.absoluteFilePath(fileName));
|
2009-05-14 14:36:37 +02:00
|
|
|
State sts = m_sts;
|
|
|
|
|
bool ok = evaluateFile(fileName);
|
|
|
|
|
m_sts = sts;
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(ok);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
case T_LOAD: {
|
2008-12-17 18:52:14 +01:00
|
|
|
if (m_skipLevel && !m_cumulative)
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
QString parseInto;
|
|
|
|
|
bool ignore_error = false;
|
|
|
|
|
if (args.count() == 2) {
|
|
|
|
|
QString sarg = args[1];
|
2009-05-25 15:58:58 +02:00
|
|
|
ignore_error = (!sarg.compare(QLatin1String("true"), Qt::CaseInsensitive) || sarg.toInt());
|
2008-12-02 12:01:29 +01:00
|
|
|
} else if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("load(feature) requires one or two arguments."));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-05-12 17:15:54 +02:00
|
|
|
// XXX ignore_error unused
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(evaluateFeatureFile(args.first()));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
case T_DEBUG:
|
|
|
|
|
// Yup - do nothing. Nothing is going to enable debug output anyway.
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-17 18:47:12 +01:00
|
|
|
case T_MESSAGE: {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("%1(message) requires one argument.").arg(function));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-07-23 17:04:50 +02:00
|
|
|
QString msg = expandEnvVars(args.first());
|
2009-08-12 13:00:21 +02:00
|
|
|
fileMessage(QString::fromLatin1("Project %1: %2").arg(function.toUpper(), msg));
|
2009-05-20 14:35:00 +02:00
|
|
|
// ### Consider real termination in non-cumulative mode
|
|
|
|
|
return returnBool(function != QLatin1String("error"));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
#if 0 // Way too dangerous to enable.
|
|
|
|
|
case T_SYSTEM: {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("system(exec) requires one argument."));
|
2009-05-18 17:46:30 +02:00
|
|
|
ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-05-18 17:46:30 +02:00
|
|
|
return returnBool(system(args.first().toLatin1().constData()) == 0);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
#endif
|
|
|
|
|
case T_ISEMPTY: {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("isEmpty(var) requires one argument."));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
QStringList sl = values(args.first());
|
|
|
|
|
if (sl.count() == 0) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnTrue;
|
2008-12-02 12:01:29 +01:00
|
|
|
} else if (sl.count() > 0) {
|
|
|
|
|
QString var = sl.first();
|
2009-05-12 17:15:54 +02:00
|
|
|
if (var.isEmpty())
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnTrue;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
case T_EXISTS: {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (args.count() != 1) {
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("exists(file) requires one argument."));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
QString file = args.first();
|
2009-07-23 17:04:50 +02:00
|
|
|
file = fixPathToLocalOS(file);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (QFile::exists(file)) {
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnTrue;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
//regular expression I guess
|
2008-12-19 21:19:38 +01:00
|
|
|
QString dirstr = currentDirectory();
|
2009-07-23 18:36:59 +02:00
|
|
|
int slsh = file.lastIndexOf(m_option->dir_sep);
|
2008-12-02 12:01:29 +01:00
|
|
|
if (slsh != -1) {
|
|
|
|
|
dirstr = file.left(slsh+1);
|
|
|
|
|
file = file.right(file.length() - slsh - 1);
|
|
|
|
|
}
|
2009-03-11 17:26:52 +01:00
|
|
|
if (file.contains(QLatin1Char('*')) || file.contains(QLatin1Char('?')))
|
2009-05-12 17:15:54 +02:00
|
|
|
if (!QDir(dirstr).entryList(QStringList(file)).isEmpty())
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnTrue;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2008-12-17 18:47:12 +01:00
|
|
|
case 0:
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("'%1' is not a recognized test function").arg(function));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-17 18:47:12 +01:00
|
|
|
default:
|
2009-08-12 13:00:21 +02:00
|
|
|
logMessage(format("Function '%1' is not implemented").arg(function));
|
2009-05-18 17:46:30 +02:00
|
|
|
return ProItem::ReturnFalse;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-12 16:30:31 +01:00
|
|
|
QStringList ProFileEvaluator::Private::values(const QString &variableName,
|
|
|
|
|
const QHash<QString, QStringList> &place,
|
|
|
|
|
const ProFile *pro) const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2008-12-12 16:30:31 +01:00
|
|
|
if (variableName == QLatin1String("LITERAL_WHITESPACE")) //a real space in a token
|
|
|
|
|
return QStringList(QLatin1String("\t"));
|
|
|
|
|
if (variableName == QLatin1String("LITERAL_DOLLAR")) //a real $
|
|
|
|
|
return QStringList(QLatin1String("$"));
|
|
|
|
|
if (variableName == QLatin1String("LITERAL_HASH")) //a real #
|
|
|
|
|
return QStringList(QLatin1String("#"));
|
|
|
|
|
if (variableName == QLatin1String("OUT_PWD")) //the out going dir
|
|
|
|
|
return QStringList(m_outputDir);
|
|
|
|
|
if (variableName == QLatin1String("PWD") || //current working dir (of _FILE_)
|
|
|
|
|
variableName == QLatin1String("IN_PWD"))
|
2008-12-19 21:19:38 +01:00
|
|
|
return QStringList(currentDirectory());
|
2008-12-12 16:30:31 +01:00
|
|
|
if (variableName == QLatin1String("DIR_SEPARATOR"))
|
2009-07-23 18:36:59 +02:00
|
|
|
return QStringList(m_option->dir_sep);
|
2008-12-12 16:30:31 +01:00
|
|
|
if (variableName == QLatin1String("DIRLIST_SEPARATOR"))
|
2009-07-23 18:36:59 +02:00
|
|
|
return QStringList(m_option->dirlist_sep);
|
2008-12-12 16:30:31 +01:00
|
|
|
if (variableName == QLatin1String("_LINE_")) //parser line number
|
|
|
|
|
return QStringList(QString::number(m_lineNo));
|
|
|
|
|
if (variableName == QLatin1String("_FILE_")) //parser file; qmake is a bit weird here
|
|
|
|
|
return QStringList(m_profileStack.size() == 1 ? pro->fileName() : QFileInfo(pro->fileName()).fileName());
|
|
|
|
|
if (variableName == QLatin1String("_DATE_")) //current date/time
|
|
|
|
|
return QStringList(QDateTime::currentDateTime().toString());
|
|
|
|
|
if (variableName == QLatin1String("_PRO_FILE_"))
|
2009-07-22 11:06:18 +02:00
|
|
|
return QStringList(m_profileStack.first()->fileName());
|
2008-12-12 16:30:31 +01:00
|
|
|
if (variableName == QLatin1String("_PRO_FILE_PWD_"))
|
2009-07-22 11:06:18 +02:00
|
|
|
return QStringList(QFileInfo(m_profileStack.first()->fileName()).absolutePath());
|
2008-12-12 16:30:31 +01:00
|
|
|
if (variableName == QLatin1String("_QMAKE_CACHE_"))
|
2009-08-11 12:38:23 +02:00
|
|
|
return QStringList(m_option->cachefile);
|
2008-12-12 16:30:31 +01:00
|
|
|
if (variableName.startsWith(QLatin1String("QMAKE_HOST."))) {
|
|
|
|
|
QString ret, type = variableName.mid(11);
|
|
|
|
|
#if defined(Q_OS_WIN32)
|
|
|
|
|
if (type == QLatin1String("os")) {
|
|
|
|
|
ret = QLatin1String("Windows");
|
|
|
|
|
} else if (type == QLatin1String("name")) {
|
|
|
|
|
DWORD name_length = 1024;
|
|
|
|
|
TCHAR name[1024];
|
|
|
|
|
if (GetComputerName(name, &name_length))
|
|
|
|
|
ret = QString::fromUtf16((ushort*)name, name_length);
|
|
|
|
|
} else if (type == QLatin1String("version") || type == QLatin1String("version_string")) {
|
|
|
|
|
QSysInfo::WinVersion ver = QSysInfo::WindowsVersion;
|
|
|
|
|
if (type == QLatin1String("version"))
|
|
|
|
|
ret = QString::number(ver);
|
|
|
|
|
else if (ver == QSysInfo::WV_Me)
|
|
|
|
|
ret = QLatin1String("WinMe");
|
|
|
|
|
else if (ver == QSysInfo::WV_95)
|
|
|
|
|
ret = QLatin1String("Win95");
|
|
|
|
|
else if (ver == QSysInfo::WV_98)
|
|
|
|
|
ret = QLatin1String("Win98");
|
|
|
|
|
else if (ver == QSysInfo::WV_NT)
|
|
|
|
|
ret = QLatin1String("WinNT");
|
|
|
|
|
else if (ver == QSysInfo::WV_2000)
|
|
|
|
|
ret = QLatin1String("Win2000");
|
|
|
|
|
else if (ver == QSysInfo::WV_2000)
|
|
|
|
|
ret = QLatin1String("Win2003");
|
|
|
|
|
else if (ver == QSysInfo::WV_XP)
|
|
|
|
|
ret = QLatin1String("WinXP");
|
|
|
|
|
else if (ver == QSysInfo::WV_VISTA)
|
|
|
|
|
ret = QLatin1String("WinVista");
|
|
|
|
|
else
|
|
|
|
|
ret = QLatin1String("Unknown");
|
|
|
|
|
} else if (type == QLatin1String("arch")) {
|
|
|
|
|
SYSTEM_INFO info;
|
|
|
|
|
GetSystemInfo(&info);
|
|
|
|
|
switch(info.wProcessorArchitecture) {
|
|
|
|
|
#ifdef PROCESSOR_ARCHITECTURE_AMD64
|
|
|
|
|
case PROCESSOR_ARCHITECTURE_AMD64:
|
|
|
|
|
ret = QLatin1String("x86_64");
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
case PROCESSOR_ARCHITECTURE_INTEL:
|
|
|
|
|
ret = QLatin1String("x86");
|
|
|
|
|
break;
|
|
|
|
|
case PROCESSOR_ARCHITECTURE_IA64:
|
|
|
|
|
#ifdef PROCESSOR_ARCHITECTURE_IA32_ON_WIN64
|
|
|
|
|
case PROCESSOR_ARCHITECTURE_IA32_ON_WIN64:
|
|
|
|
|
#endif
|
|
|
|
|
ret = QLatin1String("IA64");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ret = QLatin1String("Unknown");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#elif defined(Q_OS_UNIX)
|
|
|
|
|
struct utsname name;
|
|
|
|
|
if (!uname(&name)) {
|
|
|
|
|
if (type == QLatin1String("os"))
|
|
|
|
|
ret = QString::fromLatin1(name.sysname);
|
|
|
|
|
else if (type == QLatin1String("name"))
|
|
|
|
|
ret = QString::fromLatin1(name.nodename);
|
|
|
|
|
else if (type == QLatin1String("version"))
|
|
|
|
|
ret = QString::fromLatin1(name.release);
|
|
|
|
|
else if (type == QLatin1String("version_string"))
|
|
|
|
|
ret = QString::fromLatin1(name.version);
|
|
|
|
|
else if (type == QLatin1String("arch"))
|
|
|
|
|
ret = QString::fromLatin1(name.machine);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
return QStringList(ret);
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-04 20:51:49 +02:00
|
|
|
QStringList result = place.value(variableName);
|
2008-12-12 16:30:31 +01:00
|
|
|
if (result.isEmpty()) {
|
2009-07-29 11:30:33 +02:00
|
|
|
if (variableName == QLatin1String("TEMPLATE")) {
|
2008-12-12 16:30:31 +01:00
|
|
|
result.append(QLatin1String("app"));
|
|
|
|
|
} else if (variableName == QLatin1String("QMAKE_DIR_SEP")) {
|
2009-07-23 18:36:59 +02:00
|
|
|
result.append(m_option->dirlist_sep);
|
2008-12-12 16:30:31 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2008-12-12 16:30:31 +01:00
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList ProFileEvaluator::Private::values(const QString &variableName) const
|
|
|
|
|
{
|
|
|
|
|
return values(variableName, m_valuemap, currentProFile());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList ProFileEvaluator::Private::values(const QString &variableName, const ProFile *pro) const
|
|
|
|
|
{
|
2008-12-12 16:30:31 +01:00
|
|
|
return values(variableName, m_filevaluemap[pro], pro);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-08-04 20:39:28 +02:00
|
|
|
// virtual
|
2008-12-02 12:01:29 +01:00
|
|
|
ProFile *ProFileEvaluator::parsedProFile(const QString &fileName)
|
|
|
|
|
{
|
2009-08-04 20:39:28 +02:00
|
|
|
ProFile *pro = new ProFile(fileName);
|
|
|
|
|
if (d->read(pro))
|
|
|
|
|
return pro;
|
|
|
|
|
delete pro;
|
2008-12-02 12:01:29 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-04 20:39:28 +02:00
|
|
|
// virtual
|
2008-12-02 12:01:29 +01:00
|
|
|
void ProFileEvaluator::releaseParsedProFile(ProFile *proFile)
|
|
|
|
|
{
|
|
|
|
|
delete proFile;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-12 17:15:54 +02:00
|
|
|
bool ProFileEvaluator::Private::evaluateFile(const QString &fileName)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-08-04 20:39:28 +02:00
|
|
|
QFileInfo fi(fileName);
|
|
|
|
|
if (!fi.exists())
|
|
|
|
|
return false;
|
|
|
|
|
QString fn = QDir::cleanPath(fi.absoluteFilePath());
|
|
|
|
|
foreach (const ProFile *pf, m_profileStack)
|
|
|
|
|
if (pf->fileName() == fn) {
|
2009-08-12 13:00:21 +02:00
|
|
|
errorMessage(format("circular inclusion of %1").arg(fn));
|
2009-08-04 20:39:28 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
ProFile *pro = q->parsedProFile(fn);
|
2008-12-02 12:01:29 +01:00
|
|
|
if (pro) {
|
2009-05-18 17:46:30 +02:00
|
|
|
bool ok = (pro->Accept(this) == ProItem::ReturnTrue);
|
2008-12-02 18:14:06 +01:00
|
|
|
q->releaseParsedProFile(pro);
|
2009-05-12 17:15:54 +02:00
|
|
|
return ok;
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
2009-05-12 17:15:54 +02:00
|
|
|
return false;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-04 16:16:27 +02:00
|
|
|
bool ProFileEvaluator::Private::evaluateFeatureFile(
|
2009-08-10 17:27:07 +02:00
|
|
|
const QString &fileName, QHash<QString, QStringList> *values, FunctionDefs *funcs)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-08-04 16:16:27 +02:00
|
|
|
QString fn = fileName;
|
2009-07-20 16:58:29 +02:00
|
|
|
if (!fn.endsWith(QLatin1String(".prf")))
|
|
|
|
|
fn += QLatin1String(".prf");
|
2009-08-04 16:16:27 +02:00
|
|
|
|
|
|
|
|
if (!fileName.contains((ushort)'/') || !QFile::exists(fn)) {
|
|
|
|
|
if (m_option->feature_roots.isEmpty())
|
|
|
|
|
m_option->feature_roots = qmakeFeaturePaths();
|
|
|
|
|
int start_root = 0;
|
|
|
|
|
QString currFn = currentFileName();
|
|
|
|
|
if (QFileInfo(currFn).fileName() == QFileInfo(fn).fileName()) {
|
|
|
|
|
for (int root = 0; root < m_option->feature_roots.size(); ++root)
|
|
|
|
|
if (m_option->feature_roots.at(root) + fn == currFn) {
|
|
|
|
|
start_root = root + 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for (int root = start_root; root < m_option->feature_roots.size(); ++root) {
|
|
|
|
|
QString fname = m_option->feature_roots.at(root) + fn;
|
|
|
|
|
if (QFileInfo(fname).exists()) {
|
|
|
|
|
fn = fname;
|
|
|
|
|
goto cool;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-08-04 16:16:27 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
cool:
|
|
|
|
|
// It's beyond me why qmake has this inside this if ...
|
|
|
|
|
QStringList &already = m_valuemap[QLatin1String("QMAKE_INTERNAL_INCLUDED_FEATURES")];
|
|
|
|
|
if (already.contains(fn))
|
|
|
|
|
return true;
|
|
|
|
|
already.append(fn);
|
|
|
|
|
} else {
|
|
|
|
|
fn = QDir::cleanPath(fn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (values) {
|
2009-08-10 17:27:07 +02:00
|
|
|
return evaluateFileInto(fn, values, funcs);
|
2009-08-04 16:16:27 +02:00
|
|
|
} else {
|
|
|
|
|
bool cumulative = m_cumulative;
|
|
|
|
|
m_cumulative = false;
|
2009-08-04 20:48:22 +02:00
|
|
|
|
|
|
|
|
// Don't use evaluateFile() here to avoid the virtual parsedProFile().
|
|
|
|
|
// The path is fully normalized already.
|
|
|
|
|
ProFile pro(fn);
|
|
|
|
|
bool ok = false;
|
|
|
|
|
if (read(&pro))
|
|
|
|
|
ok = (pro.Accept(this) == ProItem::ReturnTrue);
|
|
|
|
|
|
2009-08-04 16:16:27 +02:00
|
|
|
m_cumulative = cumulative;
|
|
|
|
|
return ok;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-08-04 16:16:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProFileEvaluator::Private::evaluateFileInto(
|
2009-08-10 17:27:07 +02:00
|
|
|
const QString &fileName, QHash<QString, QStringList> *values, FunctionDefs *funcs)
|
2009-08-04 16:16:27 +02:00
|
|
|
{
|
|
|
|
|
ProFileEvaluator visitor(m_option);
|
|
|
|
|
visitor.d->m_cumulative = false;
|
|
|
|
|
visitor.d->m_parsePreAndPostFiles = false;
|
|
|
|
|
visitor.d->m_verbose = m_verbose;
|
|
|
|
|
visitor.d->m_valuemap = *values;
|
2009-08-10 17:27:07 +02:00
|
|
|
if (funcs)
|
|
|
|
|
visitor.d->m_functionDefs = *funcs;
|
2009-08-04 16:16:27 +02:00
|
|
|
if (!visitor.d->evaluateFile(fileName))
|
|
|
|
|
return false;
|
|
|
|
|
*values = visitor.d->m_valuemap;
|
2009-08-10 17:27:07 +02:00
|
|
|
if (funcs) {
|
|
|
|
|
*funcs = visitor.d->m_functionDefs;
|
|
|
|
|
// So they are not unref'd
|
|
|
|
|
visitor.d->m_functionDefs.testFunctions.clear();
|
|
|
|
|
visitor.d->m_functionDefs.replaceFunctions.clear();
|
|
|
|
|
}
|
2009-08-04 16:16:27 +02:00
|
|
|
return true;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProFileEvaluator::Private::format(const char *fmt) const
|
|
|
|
|
{
|
|
|
|
|
ProFile *pro = currentProFile();
|
|
|
|
|
QString fileName = pro ? pro->fileName() : QLatin1String("Not a file");
|
|
|
|
|
int lineNumber = pro ? m_lineNo : 0;
|
|
|
|
|
return QString::fromLatin1("%1(%2):").arg(fileName).arg(lineNumber) + QString::fromAscii(fmt);
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-12 13:00:21 +02:00
|
|
|
void ProFileEvaluator::Private::logMessage(const QString &message) const
|
|
|
|
|
{
|
|
|
|
|
if (m_verbose && !m_skipLevel)
|
|
|
|
|
q->logMessage(message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::Private::fileMessage(const QString &message) const
|
|
|
|
|
{
|
|
|
|
|
if (!m_skipLevel)
|
|
|
|
|
q->fileMessage(message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::Private::errorMessage(const QString &message) const
|
|
|
|
|
{
|
|
|
|
|
if (!m_skipLevel)
|
|
|
|
|
q->errorMessage(message);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// ProFileEvaluator
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-07-23 18:36:59 +02:00
|
|
|
ProFileEvaluator::ProFileEvaluator(ProFileEvaluator::Option *option)
|
|
|
|
|
: d(new Private(this, option))
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProFileEvaluator::~ProFileEvaluator()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProFileEvaluator::contains(const QString &variableName) const
|
|
|
|
|
{
|
|
|
|
|
return d->m_valuemap.contains(variableName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList ProFileEvaluator::values(const QString &variableName) const
|
|
|
|
|
{
|
2009-07-30 17:03:12 +02:00
|
|
|
return expandEnvVars(d->values(variableName));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList ProFileEvaluator::values(const QString &variableName, const ProFile *pro) const
|
|
|
|
|
{
|
2009-07-30 17:03:12 +02:00
|
|
|
return expandEnvVars(d->values(variableName, pro));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-07-10 13:37:02 +02:00
|
|
|
QStringList ProFileEvaluator::absolutePathValues(
|
|
|
|
|
const QString &variable, const QString &baseDirectory) const
|
|
|
|
|
{
|
|
|
|
|
QStringList result;
|
|
|
|
|
foreach (const QString &el, values(variable)) {
|
|
|
|
|
const QFileInfo info = QFileInfo(baseDirectory, el);
|
|
|
|
|
if (info.isDir())
|
|
|
|
|
result << QDir::cleanPath(info.absoluteFilePath());
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList ProFileEvaluator::absoluteFileValues(
|
|
|
|
|
const QString &variable, const QString &baseDirectory, const QStringList &searchDirs,
|
|
|
|
|
const ProFile *pro) const
|
|
|
|
|
{
|
|
|
|
|
QStringList result;
|
|
|
|
|
foreach (const QString &el, pro ? values(variable, pro) : values(variable)) {
|
|
|
|
|
QFileInfo info(el);
|
|
|
|
|
if (info.isAbsolute()) {
|
|
|
|
|
if (info.exists()) {
|
|
|
|
|
result << QDir::cleanPath(el);
|
|
|
|
|
goto next;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
foreach (const QString &dir, searchDirs) {
|
|
|
|
|
QFileInfo info(dir, el);
|
|
|
|
|
if (info.isFile()) {
|
|
|
|
|
result << QDir::cleanPath(info.filePath());
|
|
|
|
|
goto next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (baseDirectory.isEmpty())
|
|
|
|
|
goto next;
|
|
|
|
|
info = QFileInfo(baseDirectory, el);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
QFileInfo baseInfo(info.absolutePath());
|
|
|
|
|
if (baseInfo.exists()) {
|
|
|
|
|
QString wildcard = info.fileName();
|
|
|
|
|
if (wildcard.contains(QLatin1Char('*')) || wildcard.contains(QLatin1Char('?'))) {
|
|
|
|
|
QDir theDir(QDir::cleanPath(baseInfo.filePath()));
|
|
|
|
|
foreach (const QString &fn, theDir.entryList(QStringList(wildcard)))
|
|
|
|
|
if (fn != QLatin1String(".") && fn != QLatin1String(".."))
|
|
|
|
|
result << theDir.absoluteFilePath(fn);
|
|
|
|
|
} // else if (acceptMissing)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
next: ;
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
ProFileEvaluator::TemplateType ProFileEvaluator::templateType()
|
|
|
|
|
{
|
2008-12-12 13:23:22 +01:00
|
|
|
QStringList templ = values(QLatin1String("TEMPLATE"));
|
2008-12-02 12:01:29 +01:00
|
|
|
if (templ.count() >= 1) {
|
2009-05-25 15:58:58 +02:00
|
|
|
const QString &t = templ.last();
|
|
|
|
|
if (!t.compare(QLatin1String("app"), Qt::CaseInsensitive))
|
2008-12-02 12:01:29 +01:00
|
|
|
return TT_Application;
|
2009-05-25 15:58:58 +02:00
|
|
|
if (!t.compare(QLatin1String("lib"), Qt::CaseInsensitive))
|
2008-12-02 12:01:29 +01:00
|
|
|
return TT_Library;
|
2009-05-25 15:58:58 +02:00
|
|
|
if (!t.compare(QLatin1String("script"), Qt::CaseInsensitive))
|
2008-12-02 12:01:29 +01:00
|
|
|
return TT_Script;
|
2009-05-25 15:58:58 +02:00
|
|
|
if (!t.compare(QLatin1String("subdirs"), Qt::CaseInsensitive))
|
2008-12-02 12:01:29 +01:00
|
|
|
return TT_Subdirs;
|
|
|
|
|
}
|
|
|
|
|
return TT_Unknown;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProFileEvaluator::queryProFile(ProFile *pro)
|
|
|
|
|
{
|
|
|
|
|
return d->read(pro);
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-07 13:13:12 +02:00
|
|
|
bool ProFileEvaluator::queryProFile(ProFile *pro, const QString &content)
|
|
|
|
|
{
|
|
|
|
|
return d->read(pro, content);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
bool ProFileEvaluator::accept(ProFile *pro)
|
|
|
|
|
{
|
|
|
|
|
return pro->Accept(d);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProFileEvaluator::propertyValue(const QString &name) const
|
|
|
|
|
{
|
|
|
|
|
return d->propertyValue(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::logMessage(const QString &message)
|
|
|
|
|
{
|
2009-08-12 13:00:21 +02:00
|
|
|
qWarning("%s", qPrintable(message));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::fileMessage(const QString &message)
|
|
|
|
|
{
|
2009-08-12 13:00:21 +02:00
|
|
|
qWarning("%s", qPrintable(message));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::errorMessage(const QString &message)
|
|
|
|
|
{
|
2009-08-12 13:00:21 +02:00
|
|
|
qWarning("%s", qPrintable(message));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProFileEvaluator::setVerbose(bool on)
|
|
|
|
|
{
|
|
|
|
|
d->m_verbose = on;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-12 18:10:42 +01:00
|
|
|
void ProFileEvaluator::setCumulative(bool on)
|
|
|
|
|
{
|
|
|
|
|
d->m_cumulative = on;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-12 16:30:31 +01:00
|
|
|
void ProFileEvaluator::setOutputDir(const QString &dir)
|
|
|
|
|
{
|
|
|
|
|
d->m_outputDir = dir;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-19 15:04:43 +01:00
|
|
|
void ProFileEvaluator::setUserConfigCmdArgs(const QStringList &addUserConfigCmdArgs, const QStringList &removeUserConfigCmdArgs)
|
|
|
|
|
{
|
|
|
|
|
d->m_addUserConfigCmdArgs = addUserConfigCmdArgs;
|
|
|
|
|
d->m_removeUserConfigCmdArgs = removeUserConfigCmdArgs;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-25 16:43:50 +02:00
|
|
|
void ProFileEvaluator::setParsePreAndPostFiles(bool on)
|
|
|
|
|
{
|
|
|
|
|
d->m_parsePreAndPostFiles = on;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QT_END_NAMESPACE
|