2012-09-05 16:29:19 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-09-05 16:29:19 +00:00
|
|
|
**
|
|
|
|
** This file is part of the qmake application of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
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
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-09-05 16:29:19 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QMAKEGLOBALS_H
|
|
|
|
#define QMAKEGLOBALS_H
|
|
|
|
|
|
|
|
#include "qmake_global.h"
|
|
|
|
#include "proitems.h"
|
|
|
|
|
|
|
|
#ifdef QT_BUILD_QMAKE
|
|
|
|
# include <property.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <qhash.h>
|
|
|
|
#include <qstringlist.h>
|
|
|
|
#ifndef QT_BOOTSTRAPPED
|
|
|
|
# include <qprocess.h>
|
|
|
|
#endif
|
|
|
|
#ifdef PROEVALUATOR_THREAD_SAFE
|
|
|
|
# include <qmutex.h>
|
|
|
|
# include <qwaitcondition.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
class QMakeEvaluator;
|
|
|
|
|
2017-02-03 17:12:52 +00:00
|
|
|
enum QMakeEvalPhase { QMakeEvalEarly, QMakeEvalBefore, QMakeEvalAfter, QMakeEvalLate };
|
|
|
|
|
2012-09-05 16:29:19 +00:00
|
|
|
class QMakeBaseKey
|
|
|
|
{
|
|
|
|
public:
|
support a cache that is really just a cache
unlike .qmake.cache & co., the presence of this file has no magic
effects on where mkspecs, modules and other things are searched.
as the obvious name "cache" is of course already taken, we call it
"stash".
the file is searched up to the super cache (if present), otherwise up to
the normal cache/conf (if present), otherwise up to the root.
if it's not found, it is created next to the super cache (if present),
otherwise next to the cache/conf (if present), otherwise in the current
output directory.
note that the cache really should be created and populated by the
top-level project if there are subprojects: otherwise, if there is an
"anchor" (super/cache/conf), subprojects would race for updating the
cache and make a mess. without an "anchor", each subproject would just
create its own cache, kind of defeating its purpose. this is no
different from the existing "cache", but it's worth mentioning that
removing the "anchoring" function does not remove the "nesting order"
constraint.
Task-number: QTBUG-31340
Change-Id: I786d40cef40d14582a0dd4a9407863001bec4c98
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
2013-11-07 19:40:00 +00:00
|
|
|
QMakeBaseKey(const QString &_root, const QString &_stash, bool _hostBuild);
|
2012-09-05 16:29:19 +00:00
|
|
|
|
|
|
|
QString root;
|
support a cache that is really just a cache
unlike .qmake.cache & co., the presence of this file has no magic
effects on where mkspecs, modules and other things are searched.
as the obvious name "cache" is of course already taken, we call it
"stash".
the file is searched up to the super cache (if present), otherwise up to
the normal cache/conf (if present), otherwise up to the root.
if it's not found, it is created next to the super cache (if present),
otherwise next to the cache/conf (if present), otherwise in the current
output directory.
note that the cache really should be created and populated by the
top-level project if there are subprojects: otherwise, if there is an
"anchor" (super/cache/conf), subprojects would race for updating the
cache and make a mess. without an "anchor", each subproject would just
create its own cache, kind of defeating its purpose. this is no
different from the existing "cache", but it's worth mentioning that
removing the "anchoring" function does not remove the "nesting order"
constraint.
Task-number: QTBUG-31340
Change-Id: I786d40cef40d14582a0dd4a9407863001bec4c98
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
2013-11-07 19:40:00 +00:00
|
|
|
QString stash;
|
2012-09-05 16:29:19 +00:00
|
|
|
bool hostBuild;
|
|
|
|
};
|
|
|
|
|
|
|
|
uint qHash(const QMakeBaseKey &key);
|
|
|
|
bool operator==(const QMakeBaseKey &one, const QMakeBaseKey &two);
|
|
|
|
|
|
|
|
class QMakeBaseEnv
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QMakeBaseEnv();
|
|
|
|
~QMakeBaseEnv();
|
|
|
|
|
|
|
|
#ifdef PROEVALUATOR_THREAD_SAFE
|
|
|
|
QMutex mutex;
|
|
|
|
QWaitCondition cond;
|
|
|
|
bool inProgress;
|
|
|
|
// The coupling of this flag to thread safety exists because for other
|
|
|
|
// use cases failure is immediately fatal anyway.
|
|
|
|
bool isOk;
|
|
|
|
#endif
|
|
|
|
QMakeEvaluator *evaluator;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QMAKE_EXPORT QMakeCmdLineParserState
|
|
|
|
{
|
|
|
|
public:
|
2017-02-03 17:12:52 +00:00
|
|
|
QMakeCmdLineParserState(const QString &_pwd) : pwd(_pwd), phase(QMakeEvalBefore) {}
|
2012-09-05 16:29:19 +00:00
|
|
|
QString pwd;
|
2017-02-03 17:12:52 +00:00
|
|
|
QStringList cmds[4], configs[4];
|
|
|
|
QStringList extraargs;
|
|
|
|
QMakeEvalPhase phase;
|
2013-01-30 17:37:11 +00:00
|
|
|
|
2017-02-03 17:12:52 +00:00
|
|
|
void flush() { phase = QMakeEvalBefore; }
|
2012-09-05 16:29:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class QMAKE_EXPORT QMakeGlobals
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QMakeGlobals();
|
|
|
|
~QMakeGlobals();
|
|
|
|
|
|
|
|
bool do_cache;
|
|
|
|
QString dir_sep;
|
|
|
|
QString dirlist_sep;
|
|
|
|
QString cachefile;
|
|
|
|
#ifdef PROEVALUATOR_SETENV
|
|
|
|
QProcessEnvironment environment;
|
|
|
|
#endif
|
|
|
|
QString qmake_abslocation;
|
2017-01-03 18:10:14 +00:00
|
|
|
QStringList qmake_args, qmake_extra_args;
|
2012-09-05 16:29:19 +00:00
|
|
|
|
2015-07-13 09:21:22 +00:00
|
|
|
QString qtconf;
|
2012-09-05 16:29:19 +00:00
|
|
|
QString qmakespec, xqmakespec;
|
|
|
|
QString user_template, user_template_prefix;
|
2017-02-03 17:12:52 +00:00
|
|
|
QString extra_cmds[4];
|
2012-09-05 16:29:19 +00:00
|
|
|
|
|
|
|
#ifdef PROEVALUATOR_DEBUG
|
|
|
|
int debugLevel;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
enum ArgumentReturn { ArgumentUnknown, ArgumentMalformed, ArgumentsOk };
|
|
|
|
ArgumentReturn addCommandLineArguments(QMakeCmdLineParserState &state,
|
|
|
|
QStringList &args, int *pos);
|
|
|
|
void commitCommandLineArguments(QMakeCmdLineParserState &state);
|
|
|
|
void setCommandLineArguments(const QString &pwd, const QStringList &args);
|
|
|
|
void useEnvironment();
|
|
|
|
void setDirectories(const QString &input_dir, const QString &output_dir);
|
|
|
|
#ifdef QT_BUILD_QMAKE
|
|
|
|
void setQMakeProperty(QMakeProperty *prop) { property = prop; }
|
2016-11-24 17:41:48 +00:00
|
|
|
void reloadProperties() { property->reload(); }
|
2012-09-05 16:29:19 +00:00
|
|
|
ProString propertyValue(const ProKey &name) const { return property->value(name); }
|
|
|
|
#else
|
|
|
|
# ifdef PROEVALUATOR_INIT_PROPS
|
|
|
|
bool initProperties();
|
|
|
|
# else
|
|
|
|
void setProperties(const QHash<QString, QString> &props);
|
2015-05-15 18:58:50 +00:00
|
|
|
void setProperties(const QHash<ProKey, ProString> &props) { properties = props; }
|
2012-09-05 16:29:19 +00:00
|
|
|
# endif
|
|
|
|
ProString propertyValue(const ProKey &name) const { return properties.value(name); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QString expandEnvVars(const QString &str) const;
|
|
|
|
QString shadowedPath(const QString &fileName) const;
|
2013-09-05 16:30:05 +00:00
|
|
|
QStringList splitPathList(const QString &value) const;
|
2012-09-05 16:29:19 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString getEnv(const QString &) const;
|
|
|
|
QStringList getPathListEnv(const QString &var) const;
|
|
|
|
|
|
|
|
QString cleanSpec(QMakeCmdLineParserState &state, const QString &spec);
|
|
|
|
|
|
|
|
QString source_root, build_root;
|
|
|
|
|
|
|
|
#ifdef QT_BUILD_QMAKE
|
|
|
|
QMakeProperty *property;
|
|
|
|
#else
|
|
|
|
QHash<ProKey, ProString> properties;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PROEVALUATOR_THREAD_SAFE
|
|
|
|
QMutex mutex;
|
|
|
|
#endif
|
|
|
|
QHash<QMakeBaseKey, QMakeBaseEnv *> baseEnvs;
|
|
|
|
|
|
|
|
friend class QMakeEvaluator;
|
|
|
|
};
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // QMAKEGLOBALS_H
|