2012-09-05 16:29:19 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2013-01-02 11:13:29 +00:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-09-19 12:28:29 +00:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2012-09-05 16:29:19 +00:00
|
|
|
**
|
|
|
|
** This file is part of the qmake application of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
2012-09-19 12:28:29 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
**
|
2012-09-05 16:29:19 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-19 12:28:29 +00: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.
|
2012-09-05 16:29:19 +00:00
|
|
|
**
|
2012-09-19 12:28:29 +00:00
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2012-09-05 16:29:19 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** GNU General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3.0 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
2012-09-05 16:29:19 +00:00
|
|
|
**
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QMAKEEVALUATOR_H
|
|
|
|
#define QMAKEEVALUATOR_H
|
|
|
|
|
|
|
|
#if defined(PROEVALUATOR_FULL) && defined(PROEVALUATOR_THREAD_SAFE)
|
|
|
|
# error PROEVALUATOR_FULL is incompatible with PROEVALUATOR_THREAD_SAFE due to cache() implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "qmakeparser.h"
|
|
|
|
#include "ioutils.h"
|
|
|
|
|
|
|
|
#include <qlist.h>
|
|
|
|
#include <qlinkedlist.h>
|
|
|
|
#include <qset.h>
|
|
|
|
#include <qstack.h>
|
|
|
|
#include <qstring.h>
|
|
|
|
#include <qstringlist.h>
|
2013-06-03 17:08:10 +00:00
|
|
|
#include <qshareddata.h>
|
2012-09-05 16:29:19 +00:00
|
|
|
#ifndef QT_BOOTSTRAPPED
|
|
|
|
# include <qprocess.h>
|
|
|
|
#endif
|
2013-06-03 17:08:10 +00:00
|
|
|
#ifdef PROEVALUATOR_THREAD_SAFE
|
|
|
|
# include <qmutex.h>
|
|
|
|
#endif
|
2012-09-05 16:29:19 +00:00
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
class QMakeGlobals;
|
|
|
|
|
|
|
|
class QMAKE_EXPORT QMakeHandler : public QMakeParserHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
SourceEvaluator = 0x10,
|
|
|
|
|
|
|
|
EvalWarnLanguage = SourceEvaluator | WarningMessage | WarnLanguage,
|
|
|
|
EvalWarnDeprecated = SourceEvaluator | WarningMessage | WarnDeprecated,
|
|
|
|
|
|
|
|
EvalError = ErrorMessage | SourceEvaluator
|
|
|
|
};
|
|
|
|
|
|
|
|
// error(), warning() and message() from .pro file
|
|
|
|
virtual void fileMessage(const QString &msg) = 0;
|
|
|
|
|
|
|
|
enum EvalFileType { EvalProjectFile, EvalIncludeFile, EvalConfigFile, EvalFeatureFile, EvalAuxFile };
|
|
|
|
virtual void aboutToEval(ProFile *parent, ProFile *proFile, EvalFileType type) = 0;
|
|
|
|
virtual void doneWithEval(ProFile *parent) = 0;
|
|
|
|
};
|
|
|
|
|
2013-06-03 17:08:10 +00:00
|
|
|
typedef QPair<QString, QString> QMakeFeatureKey; // key, parent
|
|
|
|
typedef QHash<QMakeFeatureKey, QString> QMakeFeatureHash;
|
|
|
|
|
|
|
|
class QMAKE_EXPORT QMakeFeatureRoots : public QSharedData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QMakeFeatureRoots(const QStringList &_paths) : paths(_paths) {}
|
|
|
|
const QStringList paths;
|
|
|
|
mutable QMakeFeatureHash cache;
|
|
|
|
#ifdef PROEVALUATOR_THREAD_SAFE
|
|
|
|
mutable QMutex mutex;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2012-09-05 16:29:19 +00:00
|
|
|
// We use a QLinkedList based stack instead of a QVector based one (QStack), so that
|
|
|
|
// the addresses of value maps stay constant. The qmake generators rely on that.
|
|
|
|
class QMAKE_EXPORT ProValueMapStack : public QLinkedList<ProValueMap>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
inline void push(const ProValueMap &t) { append(t); }
|
|
|
|
inline ProValueMap pop() { return takeLast(); }
|
|
|
|
ProValueMap &top() { return last(); }
|
|
|
|
const ProValueMap &top() const { return last(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
class QMAKE_EXPORT QMakeEvaluator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum LoadFlag {
|
|
|
|
LoadProOnly = 0,
|
|
|
|
LoadPreFiles = 1,
|
|
|
|
LoadPostFiles = 2,
|
|
|
|
LoadAll = LoadPreFiles|LoadPostFiles,
|
2013-06-14 07:50:46 +00:00
|
|
|
LoadSilent = 0x10,
|
|
|
|
LoadHidden = 0x20
|
2012-09-05 16:29:19 +00:00
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(LoadFlags, LoadFlag)
|
|
|
|
|
|
|
|
static void initStatics();
|
|
|
|
static void initFunctionStatics();
|
2013-05-29 18:18:51 +00:00
|
|
|
QMakeEvaluator(QMakeGlobals *option, QMakeParser *parser, QMakeVfs *vfs,
|
2012-09-05 16:29:19 +00:00
|
|
|
QMakeHandler *handler);
|
|
|
|
~QMakeEvaluator();
|
|
|
|
|
|
|
|
void setExtraVars(const ProValueMap &extraVars) { m_extraVars = extraVars; }
|
|
|
|
void setExtraConfigs(const ProStringList &extraConfigs) { m_extraConfigs = extraConfigs; }
|
|
|
|
void setOutputDir(const QString &outputDir) { m_outputDir = outputDir; }
|
|
|
|
|
|
|
|
ProStringList values(const ProKey &variableName) const;
|
|
|
|
ProStringList &valuesRef(const ProKey &variableName);
|
|
|
|
ProString first(const ProKey &variableName) const;
|
|
|
|
ProString propertyValue(const ProKey &val) const;
|
|
|
|
|
|
|
|
ProString dirSep() const { return m_dirSep; }
|
|
|
|
bool isHostBuild() const { return m_hostBuild; }
|
|
|
|
|
|
|
|
enum VisitReturn {
|
|
|
|
ReturnFalse,
|
|
|
|
ReturnTrue,
|
|
|
|
ReturnError,
|
|
|
|
ReturnBreak,
|
|
|
|
ReturnNext,
|
|
|
|
ReturnReturn
|
|
|
|
};
|
|
|
|
|
|
|
|
static ALWAYS_INLINE VisitReturn returnBool(bool b)
|
|
|
|
{ return b ? ReturnTrue : ReturnFalse; }
|
|
|
|
|
|
|
|
static ALWAYS_INLINE uint getBlockLen(const ushort *&tokPtr);
|
|
|
|
ProString getStr(const ushort *&tokPtr);
|
|
|
|
ProKey getHashStr(const ushort *&tokPtr);
|
|
|
|
void evaluateExpression(const ushort *&tokPtr, ProStringList *ret, bool joined);
|
|
|
|
static ALWAYS_INLINE void skipStr(const ushort *&tokPtr);
|
|
|
|
static ALWAYS_INLINE void skipHashStr(const ushort *&tokPtr);
|
|
|
|
void skipExpression(const ushort *&tokPtr);
|
|
|
|
|
|
|
|
void loadDefaults();
|
|
|
|
bool prepareProject(const QString &inDir);
|
|
|
|
bool loadSpecInternal();
|
|
|
|
bool loadSpec();
|
|
|
|
void initFrom(const QMakeEvaluator &other);
|
|
|
|
void setupProject();
|
|
|
|
void evaluateCommand(const QString &cmds, const QString &where);
|
2013-10-08 21:44:24 +00:00
|
|
|
void applyExtraConfigs();
|
2012-09-05 16:29:19 +00:00
|
|
|
VisitReturn visitProFile(ProFile *pro, QMakeHandler::EvalFileType type,
|
|
|
|
LoadFlags flags);
|
|
|
|
VisitReturn visitProBlock(ProFile *pro, const ushort *tokPtr);
|
|
|
|
VisitReturn visitProBlock(const ushort *tokPtr);
|
|
|
|
VisitReturn visitProLoop(const ProKey &variable, const ushort *exprPtr,
|
|
|
|
const ushort *tokPtr);
|
|
|
|
void visitProFunctionDef(ushort tok, const ProKey &name, const ushort *tokPtr);
|
|
|
|
void visitProVariable(ushort tok, const ProStringList &curr, const ushort *&tokPtr);
|
|
|
|
|
|
|
|
ALWAYS_INLINE const ProKey &map(const ProString &var) { return map(var.toKey()); }
|
|
|
|
const ProKey &map(const ProKey &var);
|
|
|
|
ProValueMap *findValues(const ProKey &variableName, ProValueMap::Iterator *it);
|
|
|
|
|
|
|
|
void setTemplate();
|
|
|
|
|
|
|
|
ProStringList split_value_list(const QString &vals, const ProFile *source = 0);
|
|
|
|
ProStringList expandVariableReferences(const ProString &value, int *pos = 0, bool joined = false);
|
|
|
|
ProStringList expandVariableReferences(const ushort *&tokPtr, int sizeHint = 0, bool joined = false);
|
|
|
|
|
|
|
|
QString currentFileName() const;
|
|
|
|
QString currentDirectory() const;
|
|
|
|
ProFile *currentProFile() const;
|
|
|
|
QString resolvePath(const QString &fileName) const
|
|
|
|
{ return QMakeInternal::IoUtils::resolvePath(currentDirectory(), fileName); }
|
|
|
|
|
2012-09-19 19:56:16 +00:00
|
|
|
VisitReturn evaluateFile(const QString &fileName, QMakeHandler::EvalFileType type,
|
2012-09-05 16:29:19 +00:00
|
|
|
LoadFlags flags);
|
2012-09-19 19:56:16 +00:00
|
|
|
VisitReturn evaluateFileChecked(const QString &fileName, QMakeHandler::EvalFileType type,
|
|
|
|
LoadFlags flags);
|
|
|
|
VisitReturn evaluateFeatureFile(const QString &fileName, bool silent = false);
|
|
|
|
VisitReturn evaluateFileInto(const QString &fileName,
|
|
|
|
ProValueMap *values, // output-only
|
|
|
|
LoadFlags flags);
|
|
|
|
VisitReturn evaluateConfigFeatures();
|
2012-09-05 16:29:19 +00:00
|
|
|
void message(int type, const QString &msg) const;
|
|
|
|
void evalError(const QString &msg) const
|
|
|
|
{ message(QMakeHandler::EvalError, msg); }
|
|
|
|
void languageWarning(const QString &msg) const
|
|
|
|
{ message(QMakeHandler::EvalWarnLanguage, msg); }
|
|
|
|
void deprecationWarning(const QString &msg) const
|
|
|
|
{ message(QMakeHandler::EvalWarnDeprecated, msg); }
|
|
|
|
|
|
|
|
QList<ProStringList> prepareFunctionArgs(const ushort *&tokPtr);
|
|
|
|
ProStringList evaluateFunction(const ProFunctionDef &func,
|
2012-09-19 19:56:16 +00:00
|
|
|
const QList<ProStringList> &argumentsList, VisitReturn *ok);
|
2012-09-05 16:29:19 +00:00
|
|
|
VisitReturn evaluateBoolFunction(const ProFunctionDef &func,
|
|
|
|
const QList<ProStringList> &argumentsList,
|
|
|
|
const ProString &function);
|
|
|
|
|
|
|
|
ProStringList evaluateExpandFunction(const ProKey &function, const ushort *&tokPtr);
|
|
|
|
VisitReturn evaluateConditionalFunction(const ProKey &function, const ushort *&tokPtr);
|
|
|
|
|
2012-09-03 18:57:59 +00:00
|
|
|
ProStringList evaluateBuiltinExpand(int func_t, const ProKey &function, const ProStringList &args);
|
|
|
|
VisitReturn evaluateBuiltinConditional(int func_t, const ProKey &function, const ProStringList &args);
|
2012-09-05 16:29:19 +00:00
|
|
|
|
|
|
|
bool evaluateConditional(const QString &cond, const QString &where, int line = -1);
|
|
|
|
#ifdef PROEVALUATOR_FULL
|
|
|
|
void checkRequirements(const ProStringList &deps);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void updateMkspecPaths();
|
|
|
|
void updateFeaturePaths();
|
|
|
|
|
|
|
|
bool isActiveConfig(const QString &config, bool regex = false);
|
|
|
|
|
|
|
|
void populateDeps(
|
2013-02-01 19:03:02 +00:00
|
|
|
const ProStringList &deps, const ProString &prefix, const ProStringList &suffixes,
|
2012-09-05 16:29:19 +00:00
|
|
|
QHash<ProKey, QSet<ProKey> > &dependencies,
|
|
|
|
ProValueMap &dependees, ProStringList &rootSet) const;
|
|
|
|
|
|
|
|
VisitReturn writeFile(const QString &ctx, const QString &fn, QIODevice::OpenMode mode,
|
|
|
|
const QString &contents);
|
|
|
|
#ifndef QT_BOOTSTRAPPED
|
|
|
|
void runProcess(QProcess *proc, const QString &command) const;
|
|
|
|
#endif
|
|
|
|
QByteArray getCommandOutput(const QString &args) const;
|
|
|
|
|
|
|
|
static void removeEach(ProStringList *varlist, const ProStringList &value);
|
|
|
|
|
|
|
|
QMakeEvaluator *m_caller;
|
|
|
|
#ifdef PROEVALUATOR_CUMULATIVE
|
|
|
|
bool m_cumulative;
|
|
|
|
int m_skipLevel;
|
|
|
|
#else
|
|
|
|
enum { m_cumulative = 0 };
|
|
|
|
enum { m_skipLevel = 0 };
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PROEVALUATOR_DEBUG
|
|
|
|
void debugMsgInternal(int level, const char *fmt, ...) const;
|
|
|
|
void traceMsgInternal(const char *fmt, ...) const;
|
|
|
|
static QString formatValue(const ProString &val, bool forceQuote = false);
|
|
|
|
static QString formatValueList(const ProStringList &vals, bool commas = false);
|
|
|
|
static QString formatValueListList(const QList<ProStringList> &vals);
|
|
|
|
|
|
|
|
const int m_debugLevel;
|
|
|
|
#else
|
|
|
|
ALWAYS_INLINE void debugMsgInternal(int, const char *, ...) const {}
|
|
|
|
ALWAYS_INLINE void traceMsgInternal(const char *, ...) const {}
|
|
|
|
|
|
|
|
enum { m_debugLevel = 0 };
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct Location {
|
|
|
|
Location() : pro(0), line(0) {}
|
|
|
|
Location(ProFile *_pro, ushort _line) : pro(_pro), line(_line) {}
|
|
|
|
void clear() { pro = 0; line = 0; }
|
|
|
|
ProFile *pro;
|
|
|
|
ushort line;
|
|
|
|
};
|
|
|
|
|
|
|
|
Location m_current; // Currently evaluated location
|
|
|
|
QStack<Location> m_locationStack; // All execution location changes
|
|
|
|
QStack<ProFile *> m_profileStack; // Includes only
|
|
|
|
|
|
|
|
ProValueMap m_extraVars;
|
|
|
|
ProStringList m_extraConfigs;
|
|
|
|
QString m_outputDir;
|
|
|
|
|
|
|
|
int m_listCount;
|
|
|
|
bool m_valuemapInited;
|
|
|
|
bool m_hostBuild;
|
|
|
|
QString m_qmakespec;
|
|
|
|
QString m_qmakespecName;
|
|
|
|
QString m_superfile;
|
|
|
|
QString m_conffile;
|
|
|
|
QString m_cachefile;
|
|
|
|
QString m_sourceRoot;
|
|
|
|
QString m_buildRoot;
|
|
|
|
QStringList m_qmakepath;
|
|
|
|
QStringList m_qmakefeatures;
|
|
|
|
QStringList m_mkspecPaths;
|
2013-06-03 17:08:10 +00:00
|
|
|
QExplicitlySharedDataPointer<QMakeFeatureRoots> m_featureRoots;
|
2012-09-05 16:29:19 +00:00
|
|
|
ProString m_dirSep;
|
|
|
|
ProFunctionDefs m_functionDefs;
|
|
|
|
ProStringList m_returnValue;
|
|
|
|
ProValueMapStack m_valuemapStack; // VariableName must be us-ascii, the content however can be non-us-ascii.
|
|
|
|
QString m_tmp1, m_tmp2, m_tmp3, m_tmp[2]; // Temporaries for efficient toQString
|
|
|
|
mutable QString m_mtmp;
|
|
|
|
|
|
|
|
QMakeGlobals *m_option;
|
|
|
|
QMakeParser *m_parser;
|
|
|
|
QMakeHandler *m_handler;
|
2013-05-29 18:18:51 +00:00
|
|
|
QMakeVfs *m_vfs;
|
2012-09-05 16:29:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(QMakeEvaluator::LoadFlags)
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // QMAKEEVALUATOR_H
|