2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2012-01-05 04:03:39 +00:00
|
|
|
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2012-01-20 03:06:31 +00:00
|
|
|
** Contact: http://www.qt-project.org/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the qmake application of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
** GNU Lesser General Public License Usage
|
2011-05-24 09:34:08 +00:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this
|
|
|
|
** file. Please review the following information to ensure the GNU Lesser
|
|
|
|
** General Public License version 2.1 requirements will be met:
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-05-24 09:34:08 +00:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2011-04-27 10:05:43 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2011-05-24 09:34:08 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** 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.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
2011-05-24 09:34:08 +00:00
|
|
|
** Other Usage
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
2012-01-24 06:17:24 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef PROJECT_H
|
|
|
|
#define PROJECT_H
|
|
|
|
|
|
|
|
#include <qstringlist.h>
|
|
|
|
#include <qtextstream.h>
|
|
|
|
#include <qstring.h>
|
|
|
|
#include <qstack.h>
|
2012-01-09 18:25:44 +00:00
|
|
|
#include <qhash.h>
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <qmetatype.h>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
class QMakeProperty;
|
|
|
|
|
|
|
|
struct ParsableBlock;
|
|
|
|
struct IteratorBlock;
|
|
|
|
struct FunctionBlock;
|
|
|
|
|
|
|
|
class QMakeProject
|
|
|
|
{
|
|
|
|
struct ScopeBlock
|
|
|
|
{
|
|
|
|
enum TestStatus { TestNone, TestFound, TestSeek };
|
|
|
|
ScopeBlock() : iterate(0), ignore(false), else_status(TestNone) { }
|
|
|
|
ScopeBlock(bool i) : iterate(0), ignore(i), else_status(TestNone) { }
|
|
|
|
~ScopeBlock();
|
|
|
|
IteratorBlock *iterate;
|
|
|
|
uint ignore : 1, else_status : 2;
|
|
|
|
};
|
|
|
|
friend struct ParsableBlock;
|
|
|
|
friend struct IteratorBlock;
|
|
|
|
friend struct FunctionBlock;
|
|
|
|
|
|
|
|
QStack<ScopeBlock> scope_blocks;
|
|
|
|
QStack<FunctionBlock *> function_blocks;
|
|
|
|
IteratorBlock *iterator;
|
|
|
|
FunctionBlock *function;
|
2012-01-09 18:25:44 +00:00
|
|
|
QHash<QString, FunctionBlock*> testFunctions, replaceFunctions;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-01-31 17:36:18 +00:00
|
|
|
bool host_build;
|
|
|
|
bool need_restart;
|
2011-04-27 10:05:43 +00:00
|
|
|
bool own_prop;
|
|
|
|
bool backslashWarned;
|
2012-06-12 18:15:41 +00:00
|
|
|
QString project_build_root;
|
2012-05-10 09:22:07 +00:00
|
|
|
QString conffile;
|
2012-05-10 10:59:14 +00:00
|
|
|
QString superfile;
|
2012-05-10 08:41:54 +00:00
|
|
|
QString cachefile;
|
2012-06-01 09:08:52 +00:00
|
|
|
QString real_spec, short_spec;
|
2012-01-30 14:47:45 +00:00
|
|
|
QString pfile;
|
2011-04-27 10:05:43 +00:00
|
|
|
QMakeProperty *prop;
|
|
|
|
void reset();
|
2012-02-21 11:44:27 +00:00
|
|
|
QStringList extra_configs;
|
2012-04-23 10:06:59 +00:00
|
|
|
QHash<QString, QStringList> vars, init_vars, base_vars, extra_vars;
|
2012-01-09 18:25:44 +00:00
|
|
|
bool parse(const QString &text, QHash<QString, QStringList> &place, int line_count=1);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
enum IncludeStatus {
|
|
|
|
IncludeSuccess,
|
|
|
|
IncludeFeatureAlreadyLoaded,
|
|
|
|
IncludeFailure,
|
|
|
|
IncludeNoExist,
|
|
|
|
IncludeParseFailure
|
|
|
|
};
|
|
|
|
enum IncludeFlags {
|
|
|
|
IncludeFlagNone = 0x00,
|
|
|
|
IncludeFlagFeature = 0x01,
|
|
|
|
IncludeFlagNewParser = 0x02,
|
|
|
|
IncludeFlagNewProject = 0x04
|
|
|
|
};
|
2012-01-09 18:25:44 +00:00
|
|
|
IncludeStatus doProjectInclude(QString file, uchar flags, QHash<QString, QStringList> &place);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-01-09 18:25:44 +00:00
|
|
|
bool doProjectCheckReqs(const QStringList &deps, QHash<QString, QStringList> &place);
|
|
|
|
bool doVariableReplace(QString &str, QHash<QString, QStringList> &place);
|
|
|
|
QStringList doVariableReplaceExpand(const QString &str, QHash<QString, QStringList> &place, bool *ok=0);
|
2012-02-20 21:19:11 +00:00
|
|
|
void init(QMakeProperty *);
|
2012-01-31 17:36:18 +00:00
|
|
|
void cleanup();
|
2012-04-23 10:06:59 +00:00
|
|
|
void loadDefaults();
|
2012-04-23 12:13:07 +00:00
|
|
|
void setupProject();
|
2012-01-09 18:25:44 +00:00
|
|
|
QStringList &values(const QString &v, QHash<QString, QStringList> &place);
|
2012-04-23 14:57:01 +00:00
|
|
|
QStringList magicValues(const QString &v, const QHash<QString, QStringList> &place) const;
|
2012-04-17 10:15:39 +00:00
|
|
|
QStringList qmakeFeaturePaths();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
public:
|
2012-02-20 21:19:11 +00:00
|
|
|
QMakeProject(QMakeProperty *p = 0) { init(p); }
|
2012-01-09 18:25:44 +00:00
|
|
|
QMakeProject(QMakeProject *p, const QHash<QString, QStringList> *nvars=0);
|
2011-04-27 10:05:43 +00:00
|
|
|
~QMakeProject();
|
|
|
|
|
2012-02-21 11:56:47 +00:00
|
|
|
void setExtraVars(const QHash<QString, QStringList> &_vars) { extra_vars = _vars; }
|
2012-02-21 11:44:27 +00:00
|
|
|
void setExtraConfigs(const QStringList &_cfgs) { extra_configs = _cfgs; }
|
|
|
|
|
2012-01-30 14:29:56 +00:00
|
|
|
enum { ReadProFile=0x01, ReadSetup=0x02, ReadFeatures=0x04, ReadAll=0xFF };
|
2011-04-27 10:05:43 +00:00
|
|
|
inline bool parse(const QString &text) { return parse(text, vars); }
|
|
|
|
bool read(const QString &project, uchar cmd=ReadAll);
|
|
|
|
bool read(uchar cmd=ReadAll);
|
|
|
|
|
|
|
|
QStringList userExpandFunctions() { return replaceFunctions.keys(); }
|
|
|
|
QStringList userTestFunctions() { return testFunctions.keys(); }
|
|
|
|
|
|
|
|
QString projectFile();
|
2012-06-12 18:15:41 +00:00
|
|
|
QString buildRoot() const { return project_build_root; }
|
2012-05-10 09:22:07 +00:00
|
|
|
QString confFile() const { return conffile; }
|
2012-05-10 08:41:54 +00:00
|
|
|
QString cacheFile() const { return cachefile; }
|
2012-06-26 13:36:39 +00:00
|
|
|
QString specDir() const { return real_spec; }
|
2011-04-27 10:05:43 +00:00
|
|
|
inline QMakeProperty *properties() { return prop; }
|
|
|
|
|
2012-01-09 18:25:44 +00:00
|
|
|
bool doProjectTest(QString str, QHash<QString, QStringList> &place);
|
2011-04-27 10:05:43 +00:00
|
|
|
bool doProjectTest(QString func, const QString ¶ms,
|
2012-01-09 18:25:44 +00:00
|
|
|
QHash<QString, QStringList> &place);
|
2011-04-27 10:05:43 +00:00
|
|
|
bool doProjectTest(QString func, QStringList args,
|
2012-01-09 18:25:44 +00:00
|
|
|
QHash<QString, QStringList> &place);
|
2011-04-27 10:05:43 +00:00
|
|
|
bool doProjectTest(QString func, QList<QStringList> args,
|
2012-01-09 18:25:44 +00:00
|
|
|
QHash<QString, QStringList> &place);
|
2011-04-27 10:05:43 +00:00
|
|
|
QStringList doProjectExpand(QString func, const QString ¶ms,
|
2012-01-09 18:25:44 +00:00
|
|
|
QHash<QString, QStringList> &place);
|
2011-04-27 10:05:43 +00:00
|
|
|
QStringList doProjectExpand(QString func, QStringList args,
|
2012-01-09 18:25:44 +00:00
|
|
|
QHash<QString, QStringList> &place);
|
2011-04-27 10:05:43 +00:00
|
|
|
QStringList doProjectExpand(QString func, QList<QStringList> args,
|
2012-01-09 18:25:44 +00:00
|
|
|
QHash<QString, QStringList> &place);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QStringList expand(const QString &v);
|
|
|
|
QString expand(const QString &v, const QString &file, int line);
|
|
|
|
QStringList expand(const QString &func, const QList<QStringList> &args);
|
|
|
|
bool test(const QString &v);
|
|
|
|
bool test(const QString &func, const QList<QStringList> &args);
|
|
|
|
bool isActiveConfig(const QString &x, bool regex=false,
|
2012-01-09 18:25:44 +00:00
|
|
|
QHash<QString, QStringList> *place=NULL);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-04-23 15:06:58 +00:00
|
|
|
bool isSet(const QString &v) const { return vars.contains(v); }
|
|
|
|
bool isEmpty(const QString &v) const;
|
|
|
|
QStringList values(const QString &v) const { return vars[v]; }
|
2012-04-23 15:16:56 +00:00
|
|
|
QStringList &values(const QString &v) { return vars[v]; }
|
2012-04-23 15:06:58 +00:00
|
|
|
QString first(const QString &v) const;
|
|
|
|
int intValue(const QString &v, int defaultValue = 0) const;
|
|
|
|
const QHash<QString, QStringList> &variables() const { return vars; }
|
2012-04-23 15:16:56 +00:00
|
|
|
QHash<QString, QStringList> &variables() { return vars; }
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-04-23 17:27:43 +00:00
|
|
|
void dump() const;
|
|
|
|
|
2012-01-31 17:36:18 +00:00
|
|
|
bool isHostBuild() const { return host_build; }
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
friend class MakefileGenerator;
|
2012-01-09 18:25:44 +00:00
|
|
|
bool read(const QString &file, QHash<QString, QStringList> &place);
|
|
|
|
bool read(QTextStream &file, QHash<QString, QStringList> &place);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(QMakeProject*)
|
|
|
|
|
|
|
|
inline QString QMakeProject::projectFile()
|
|
|
|
{
|
|
|
|
if (pfile == "-")
|
|
|
|
return QString("(stdin)");
|
|
|
|
return pfile;
|
|
|
|
}
|
|
|
|
|
2012-04-23 15:06:58 +00:00
|
|
|
inline QString QMakeProject::first(const QString &v) const
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
const QStringList vals = values(v);
|
|
|
|
if(vals.isEmpty())
|
|
|
|
return QString("");
|
|
|
|
return vals.first();
|
|
|
|
}
|
|
|
|
|
2012-04-23 15:06:58 +00:00
|
|
|
inline int QMakeProject::intValue(const QString &v, int defaultValue) const
|
2012-04-16 09:07:02 +00:00
|
|
|
{
|
|
|
|
const QString str = first(v);
|
|
|
|
if (!str.isEmpty()) {
|
|
|
|
bool ok;
|
|
|
|
int i = str.toInt(&ok);
|
|
|
|
if (ok)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // PROJECT_H
|