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$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "qmakeevaluator.h"
|
|
|
|
|
|
|
|
#include "qmakeevaluator_p.h"
|
|
|
|
#include "qmakeglobals.h"
|
|
|
|
#include "qmakeparser.h"
|
2013-05-29 18:18:51 +00:00
|
|
|
#include "qmakevfs.h"
|
2012-09-05 16:29:19 +00:00
|
|
|
#include "ioutils.h"
|
|
|
|
|
|
|
|
#include <qbytearray.h>
|
|
|
|
#include <qdir.h>
|
|
|
|
#include <qfile.h>
|
|
|
|
#include <qfileinfo.h>
|
|
|
|
#include <qlist.h>
|
|
|
|
#include <qregexp.h>
|
|
|
|
#include <qset.h>
|
|
|
|
#include <qstringlist.h>
|
|
|
|
#include <qtextstream.h>
|
2013-09-05 05:55:49 +00:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
# include <qjsondocument.h>
|
|
|
|
# include <qjsonobject.h>
|
|
|
|
# include <qjsonarray.h>
|
|
|
|
#endif
|
2013-07-23 15:57:44 +00:00
|
|
|
#ifdef PROEVALUATOR_THREAD_SAFE
|
|
|
|
# include <qthreadpool.h>
|
|
|
|
#endif
|
2012-09-05 16:29:19 +00:00
|
|
|
|
2016-08-23 12:05:54 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2012-09-05 16:29:19 +00:00
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
#include <time.h>
|
|
|
|
#include <utime.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2016-07-14 16:10:50 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/wait.h>
|
2012-09-05 16:29:19 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#else
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
#define QT_POPEN _popen
|
2016-06-16 13:38:22 +00:00
|
|
|
#define QT_POPEN_READ "rb"
|
2012-09-05 16:29:19 +00:00
|
|
|
#define QT_PCLOSE _pclose
|
|
|
|
#else
|
|
|
|
#define QT_POPEN popen
|
2016-06-16 13:38:22 +00:00
|
|
|
#define QT_POPEN_READ "r"
|
2012-09-05 16:29:19 +00:00
|
|
|
#define QT_PCLOSE pclose
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace QMakeInternal;
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
#define fL1S(s) QString::fromLatin1(s)
|
|
|
|
|
|
|
|
enum ExpandFunc {
|
2016-05-18 14:35:01 +00:00
|
|
|
E_INVALID = 0, E_MEMBER, E_STR_MEMBER, E_FIRST, E_TAKE_FIRST, E_LAST, E_TAKE_LAST,
|
2016-05-13 13:58:20 +00:00
|
|
|
E_SIZE, E_STR_SIZE, E_CAT, E_FROMFILE, E_EVAL, E_LIST, E_SPRINTF, E_FORMAT_NUMBER,
|
2016-05-13 11:31:14 +00:00
|
|
|
E_NUM_ADD, E_JOIN, E_SPLIT, E_BASENAME, E_DIRNAME, E_SECTION,
|
2016-05-13 14:53:01 +00:00
|
|
|
E_FIND, E_SYSTEM, E_UNIQUE, E_SORTED, E_REVERSE, E_QUOTE, E_ESCAPE_EXPAND,
|
2013-09-19 11:21:26 +00:00
|
|
|
E_UPPER, E_LOWER, E_TITLE, E_FILES, E_PROMPT, E_RE_ESCAPE, E_VAL_ESCAPE,
|
2012-09-05 16:29:19 +00:00
|
|
|
E_REPLACE, E_SORT_DEPENDS, E_RESOLVE_DEPENDS, E_ENUMERATE_VARS,
|
|
|
|
E_SHADOWED, E_ABSOLUTE_PATH, E_RELATIVE_PATH, E_CLEAN_PATH,
|
2014-03-11 14:56:52 +00:00
|
|
|
E_SYSTEM_PATH, E_SHELL_PATH, E_SYSTEM_QUOTE, E_SHELL_QUOTE, E_GETENV
|
2012-09-05 16:29:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum TestFunc {
|
|
|
|
T_INVALID = 0, T_REQUIRES, T_GREATERTHAN, T_LESSTHAN, T_EQUALS,
|
|
|
|
T_EXISTS, T_EXPORT, T_CLEAR, T_UNSET, T_EVAL, T_CONFIG, T_SYSTEM,
|
2016-08-23 12:05:54 +00:00
|
|
|
T_DEFINED, T_DISCARD_FROM, T_CONTAINS, T_INFILE,
|
2013-09-05 05:55:49 +00:00
|
|
|
T_COUNT, T_ISEMPTY, T_PARSE_JSON, T_INCLUDE, T_LOAD, T_DEBUG, T_LOG, T_MESSAGE, T_WARNING, T_ERROR, T_IF,
|
2016-11-24 17:41:48 +00:00
|
|
|
T_MKPATH, T_WRITE_FILE, T_TOUCH, T_CACHE, T_RELOAD_PROPERTIES
|
2012-09-05 16:29:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void QMakeEvaluator::initFunctionStatics()
|
|
|
|
{
|
|
|
|
static const struct {
|
|
|
|
const char * const name;
|
|
|
|
const ExpandFunc func;
|
|
|
|
} expandInits[] = {
|
|
|
|
{ "member", E_MEMBER },
|
2016-05-18 14:35:01 +00:00
|
|
|
{ "str_member", E_STR_MEMBER },
|
2012-09-05 16:29:19 +00:00
|
|
|
{ "first", E_FIRST },
|
2016-05-12 18:38:54 +00:00
|
|
|
{ "take_first", E_TAKE_FIRST },
|
2012-09-05 16:29:19 +00:00
|
|
|
{ "last", E_LAST },
|
2016-05-12 18:38:54 +00:00
|
|
|
{ "take_last", E_TAKE_LAST },
|
2012-09-05 16:29:19 +00:00
|
|
|
{ "size", E_SIZE },
|
2016-05-13 13:58:20 +00:00
|
|
|
{ "str_size", E_STR_SIZE },
|
2012-09-05 16:29:19 +00:00
|
|
|
{ "cat", E_CAT },
|
|
|
|
{ "fromfile", E_FROMFILE },
|
|
|
|
{ "eval", E_EVAL },
|
|
|
|
{ "list", E_LIST },
|
|
|
|
{ "sprintf", E_SPRINTF },
|
|
|
|
{ "format_number", E_FORMAT_NUMBER },
|
2016-05-13 11:31:14 +00:00
|
|
|
{ "num_add", E_NUM_ADD },
|
2012-09-05 16:29:19 +00:00
|
|
|
{ "join", E_JOIN },
|
|
|
|
{ "split", E_SPLIT },
|
|
|
|
{ "basename", E_BASENAME },
|
|
|
|
{ "dirname", E_DIRNAME },
|
|
|
|
{ "section", E_SECTION },
|
|
|
|
{ "find", E_FIND },
|
|
|
|
{ "system", E_SYSTEM },
|
|
|
|
{ "unique", E_UNIQUE },
|
2016-05-13 14:53:01 +00:00
|
|
|
{ "sorted", E_SORTED },
|
2012-09-05 16:29:19 +00:00
|
|
|
{ "reverse", E_REVERSE },
|
|
|
|
{ "quote", E_QUOTE },
|
|
|
|
{ "escape_expand", E_ESCAPE_EXPAND },
|
|
|
|
{ "upper", E_UPPER },
|
|
|
|
{ "lower", E_LOWER },
|
2013-09-19 11:21:26 +00:00
|
|
|
{ "title", E_TITLE },
|
2012-09-05 16:29:19 +00:00
|
|
|
{ "re_escape", E_RE_ESCAPE },
|
|
|
|
{ "val_escape", E_VAL_ESCAPE },
|
|
|
|
{ "files", E_FILES },
|
|
|
|
{ "prompt", E_PROMPT },
|
|
|
|
{ "replace", E_REPLACE },
|
|
|
|
{ "sort_depends", E_SORT_DEPENDS },
|
|
|
|
{ "resolve_depends", E_RESOLVE_DEPENDS },
|
|
|
|
{ "enumerate_vars", E_ENUMERATE_VARS },
|
|
|
|
{ "shadowed", E_SHADOWED },
|
|
|
|
{ "absolute_path", E_ABSOLUTE_PATH },
|
|
|
|
{ "relative_path", E_RELATIVE_PATH },
|
|
|
|
{ "clean_path", E_CLEAN_PATH },
|
|
|
|
{ "system_path", E_SYSTEM_PATH },
|
|
|
|
{ "shell_path", E_SHELL_PATH },
|
|
|
|
{ "system_quote", E_SYSTEM_QUOTE },
|
|
|
|
{ "shell_quote", E_SHELL_QUOTE },
|
2014-03-11 14:56:52 +00:00
|
|
|
{ "getenv", E_GETENV },
|
2012-09-05 16:29:19 +00:00
|
|
|
};
|
2016-02-01 08:49:22 +00:00
|
|
|
statics.expands.reserve((int)(sizeof(expandInits)/sizeof(expandInits[0])));
|
2012-09-05 16:29:19 +00:00
|
|
|
for (unsigned i = 0; i < sizeof(expandInits)/sizeof(expandInits[0]); ++i)
|
|
|
|
statics.expands.insert(ProKey(expandInits[i].name), expandInits[i].func);
|
|
|
|
|
|
|
|
static const struct {
|
|
|
|
const char * const name;
|
|
|
|
const TestFunc func;
|
|
|
|
} testInits[] = {
|
|
|
|
{ "requires", T_REQUIRES },
|
|
|
|
{ "greaterThan", T_GREATERTHAN },
|
|
|
|
{ "lessThan", T_LESSTHAN },
|
|
|
|
{ "equals", T_EQUALS },
|
|
|
|
{ "isEqual", T_EQUALS },
|
|
|
|
{ "exists", T_EXISTS },
|
|
|
|
{ "export", T_EXPORT },
|
|
|
|
{ "clear", T_CLEAR },
|
|
|
|
{ "unset", T_UNSET },
|
|
|
|
{ "eval", T_EVAL },
|
|
|
|
{ "CONFIG", T_CONFIG },
|
|
|
|
{ "if", T_IF },
|
|
|
|
{ "isActiveConfig", T_CONFIG },
|
|
|
|
{ "system", T_SYSTEM },
|
2016-08-23 12:05:54 +00:00
|
|
|
{ "discard_from", T_DISCARD_FROM },
|
2012-09-05 16:29:19 +00:00
|
|
|
{ "defined", T_DEFINED },
|
|
|
|
{ "contains", T_CONTAINS },
|
|
|
|
{ "infile", T_INFILE },
|
|
|
|
{ "count", T_COUNT },
|
|
|
|
{ "isEmpty", T_ISEMPTY },
|
2013-09-05 05:55:49 +00:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
{ "parseJson", T_PARSE_JSON },
|
|
|
|
#endif
|
2012-09-05 16:29:19 +00:00
|
|
|
{ "load", T_LOAD },
|
|
|
|
{ "include", T_INCLUDE },
|
|
|
|
{ "debug", T_DEBUG },
|
|
|
|
{ "log", T_LOG },
|
|
|
|
{ "message", T_MESSAGE },
|
|
|
|
{ "warning", T_WARNING },
|
|
|
|
{ "error", T_ERROR },
|
|
|
|
{ "mkpath", T_MKPATH },
|
|
|
|
{ "write_file", T_WRITE_FILE },
|
|
|
|
{ "touch", T_TOUCH },
|
|
|
|
{ "cache", T_CACHE },
|
2016-11-24 17:41:48 +00:00
|
|
|
{ "reload_properties", T_RELOAD_PROPERTIES },
|
2012-09-05 16:29:19 +00:00
|
|
|
};
|
2016-02-01 08:49:22 +00:00
|
|
|
statics.functions.reserve((int)(sizeof(testInits)/sizeof(testInits[0])));
|
2012-09-05 16:29:19 +00:00
|
|
|
for (unsigned i = 0; i < sizeof(testInits)/sizeof(testInits[0]); ++i)
|
|
|
|
statics.functions.insert(ProKey(testInits[i].name), testInits[i].func);
|
|
|
|
}
|
|
|
|
|
2016-05-13 11:45:48 +00:00
|
|
|
static bool isTrue(const ProString &str)
|
2012-09-05 16:29:19 +00:00
|
|
|
{
|
|
|
|
return !str.compare(statics.strtrue, Qt::CaseInsensitive) || str.toInt();
|
|
|
|
}
|
|
|
|
|
2016-05-18 14:35:01 +00:00
|
|
|
bool
|
|
|
|
QMakeEvaluator::getMemberArgs(const ProKey &func, int srclen, const ProStringList &args,
|
|
|
|
int *start, int *end)
|
|
|
|
{
|
|
|
|
*start = 0, *end = 0;
|
|
|
|
if (args.count() >= 2) {
|
|
|
|
bool ok = true;
|
|
|
|
const ProString &start_str = args.at(1);
|
|
|
|
*start = start_str.toInt(&ok);
|
|
|
|
if (!ok) {
|
|
|
|
if (args.count() == 2) {
|
|
|
|
int dotdot = start_str.indexOf(statics.strDotDot);
|
|
|
|
if (dotdot != -1) {
|
|
|
|
*start = start_str.left(dotdot).toInt(&ok);
|
|
|
|
if (ok)
|
|
|
|
*end = start_str.mid(dotdot+2).toInt(&ok);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ok) {
|
|
|
|
evalError(fL1S("%1() argument 2 (start) '%2' invalid.")
|
|
|
|
.arg(func.toQString(m_tmp1), start_str.toQString(m_tmp2)));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*end = *start;
|
|
|
|
if (args.count() == 3)
|
|
|
|
*end = args.at(2).toInt(&ok);
|
|
|
|
if (!ok) {
|
|
|
|
evalError(fL1S("%1() argument 3 (end) '%2' invalid.")
|
|
|
|
.arg(func.toQString(m_tmp1), args.at(2).toQString(m_tmp2)));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*start < 0)
|
|
|
|
*start += srclen;
|
|
|
|
if (*end < 0)
|
|
|
|
*end += srclen;
|
|
|
|
if (*start < 0 || *start >= srclen || *end < 0 || *end >= srclen)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-16 08:15:08 +00:00
|
|
|
#if defined(Q_OS_WIN) && defined(PROEVALUATOR_FULL)
|
2012-09-05 16:29:19 +00:00
|
|
|
static QString windowsErrorCode()
|
|
|
|
{
|
|
|
|
wchar_t *string = 0;
|
|
|
|
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM,
|
|
|
|
NULL,
|
|
|
|
GetLastError(),
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
|
|
|
(LPWSTR)&string,
|
|
|
|
0,
|
|
|
|
NULL);
|
|
|
|
QString ret = QString::fromWCharArray(string);
|
|
|
|
LocalFree((HLOCAL)string);
|
2015-05-13 18:53:49 +00:00
|
|
|
return ret.trimmed();
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-11-17 19:55:33 +00:00
|
|
|
QString
|
|
|
|
QMakeEvaluator::quoteValue(const ProString &val)
|
2012-09-05 16:29:19 +00:00
|
|
|
{
|
|
|
|
QString ret;
|
|
|
|
ret.reserve(val.size());
|
|
|
|
const QChar *chars = val.constData();
|
|
|
|
bool quote = val.isEmpty();
|
|
|
|
bool escaping = false;
|
|
|
|
for (int i = 0, l = val.size(); i < l; i++) {
|
|
|
|
QChar c = chars[i];
|
|
|
|
ushort uc = c.unicode();
|
|
|
|
if (uc < 32) {
|
|
|
|
if (!escaping) {
|
|
|
|
escaping = true;
|
|
|
|
ret += QLatin1String("$$escape_expand(");
|
|
|
|
}
|
|
|
|
switch (uc) {
|
|
|
|
case '\r':
|
|
|
|
ret += QLatin1String("\\\\r");
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
ret += QLatin1String("\\\\n");
|
|
|
|
break;
|
|
|
|
case '\t':
|
|
|
|
ret += QLatin1String("\\\\t");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret += QString::fromLatin1("\\\\x%1").arg(uc, 2, 16, QLatin1Char('0'));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (escaping) {
|
|
|
|
escaping = false;
|
|
|
|
ret += QLatin1Char(')');
|
|
|
|
}
|
|
|
|
switch (uc) {
|
|
|
|
case '\\':
|
|
|
|
ret += QLatin1String("\\\\");
|
|
|
|
break;
|
|
|
|
case '"':
|
|
|
|
ret += QLatin1String("\\\"");
|
|
|
|
break;
|
|
|
|
case '\'':
|
|
|
|
ret += QLatin1String("\\'");
|
|
|
|
break;
|
|
|
|
case '$':
|
|
|
|
ret += QLatin1String("\\$");
|
|
|
|
break;
|
|
|
|
case '#':
|
|
|
|
ret += QLatin1String("$${LITERAL_HASH}");
|
|
|
|
break;
|
|
|
|
case 32:
|
|
|
|
quote = true;
|
2016-06-27 13:43:33 +00:00
|
|
|
Q_FALLTHROUGH();
|
2012-09-05 16:29:19 +00:00
|
|
|
default:
|
|
|
|
ret += c;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (escaping)
|
|
|
|
ret += QLatin1Char(')');
|
|
|
|
if (quote) {
|
|
|
|
ret.prepend(QLatin1Char('"'));
|
|
|
|
ret.append(QLatin1Char('"'));
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-09-05 05:55:49 +00:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
static void addJsonValue(const QJsonValue &value, const QString &keyPrefix, ProValueMap *map);
|
|
|
|
|
|
|
|
static void insertJsonKeyValue(const QString &key, const QStringList &values, ProValueMap *map)
|
|
|
|
{
|
|
|
|
map->insert(ProKey(key), ProStringList(values));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addJsonArray(const QJsonArray &array, const QString &keyPrefix, ProValueMap *map)
|
|
|
|
{
|
|
|
|
QStringList keys;
|
2016-02-01 07:42:04 +00:00
|
|
|
const int size = array.count();
|
|
|
|
keys.reserve(size);
|
|
|
|
for (int i = 0; i < size; ++i) {
|
2016-02-08 09:27:28 +00:00
|
|
|
const QString number = QString::number(i);
|
|
|
|
keys.append(number);
|
|
|
|
addJsonValue(array.at(i), keyPrefix + number, map);
|
2013-09-05 05:55:49 +00:00
|
|
|
}
|
|
|
|
insertJsonKeyValue(keyPrefix + QLatin1String("_KEYS_"), keys, map);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addJsonObject(const QJsonObject &object, const QString &keyPrefix, ProValueMap *map)
|
|
|
|
{
|
2016-02-01 07:42:04 +00:00
|
|
|
QStringList keys;
|
|
|
|
keys.reserve(object.size());
|
|
|
|
for (auto it = object.begin(), end = object.end(); it != end; ++it) {
|
|
|
|
const QString key = it.key();
|
|
|
|
keys.append(key);
|
|
|
|
addJsonValue(it.value(), keyPrefix + key, map);
|
|
|
|
}
|
|
|
|
insertJsonKeyValue(keyPrefix + QLatin1String("_KEYS_"), keys, map);
|
2013-09-05 05:55:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void addJsonValue(const QJsonValue &value, const QString &keyPrefix, ProValueMap *map)
|
|
|
|
{
|
|
|
|
switch (value.type()) {
|
|
|
|
case QJsonValue::Bool:
|
|
|
|
insertJsonKeyValue(keyPrefix, QStringList() << (value.toBool() ? QLatin1String("true") : QLatin1String("false")), map);
|
|
|
|
break;
|
|
|
|
case QJsonValue::Double:
|
|
|
|
insertJsonKeyValue(keyPrefix, QStringList() << QString::number(value.toDouble()), map);
|
|
|
|
break;
|
|
|
|
case QJsonValue::String:
|
|
|
|
insertJsonKeyValue(keyPrefix, QStringList() << value.toString(), map);
|
|
|
|
break;
|
|
|
|
case QJsonValue::Array:
|
|
|
|
addJsonArray(value.toArray(), keyPrefix + QLatin1Char('.'), map);
|
|
|
|
break;
|
|
|
|
case QJsonValue::Object:
|
|
|
|
addJsonObject(value.toObject(), keyPrefix + QLatin1Char('.'), map);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-11 14:22:45 +00:00
|
|
|
struct ErrorPosition {
|
|
|
|
int line;
|
|
|
|
int column;
|
|
|
|
};
|
|
|
|
|
|
|
|
static ErrorPosition calculateErrorPosition(const QByteArray &json, int offset)
|
|
|
|
{
|
|
|
|
ErrorPosition pos = { 0, 0 };
|
|
|
|
offset--; // offset is 1-based, switching to 0-based
|
|
|
|
for (int i = 0; i < offset; ++i) {
|
|
|
|
switch (json.at(i)) {
|
|
|
|
case '\n':
|
|
|
|
pos.line++;
|
|
|
|
pos.column = 0;
|
|
|
|
break;
|
|
|
|
case '\r':
|
|
|
|
break;
|
|
|
|
case '\t':
|
|
|
|
pos.column = (pos.column + 8) & ~7;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pos.column++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Lines and columns in text editors are 1-based:
|
|
|
|
pos.line++;
|
|
|
|
pos.column++;
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
2016-05-19 13:40:55 +00:00
|
|
|
QMakeEvaluator::VisitReturn QMakeEvaluator::parseJsonInto(const QByteArray &json, const QString &into, ProValueMap *value)
|
2013-09-05 05:55:49 +00:00
|
|
|
{
|
2016-05-19 13:40:55 +00:00
|
|
|
QJsonParseError error;
|
|
|
|
QJsonDocument document = QJsonDocument::fromJson(json, &error);
|
|
|
|
if (document.isNull()) {
|
2016-11-11 14:22:45 +00:00
|
|
|
if (error.error != QJsonParseError::NoError) {
|
|
|
|
ErrorPosition errorPos = calculateErrorPosition(json, error.offset);
|
|
|
|
evalError(fL1S("Error parsing JSON at %1:%2: %3")
|
|
|
|
.arg(errorPos.line).arg(errorPos.column).arg(error.errorString()));
|
|
|
|
}
|
2013-09-05 05:55:49 +00:00
|
|
|
return QMakeEvaluator::ReturnFalse;
|
2016-05-19 13:40:55 +00:00
|
|
|
}
|
2013-09-05 05:55:49 +00:00
|
|
|
|
|
|
|
QString currentKey = into + QLatin1Char('.');
|
|
|
|
|
|
|
|
// top-level item is either an array or object
|
|
|
|
if (document.isArray())
|
|
|
|
addJsonArray(document.array(), currentKey, value);
|
|
|
|
else if (document.isObject())
|
|
|
|
addJsonObject(document.object(), currentKey, value);
|
|
|
|
else
|
|
|
|
return QMakeEvaluator::ReturnFalse;
|
|
|
|
|
|
|
|
return QMakeEvaluator::ReturnTrue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-05 16:29:19 +00:00
|
|
|
QMakeEvaluator::VisitReturn
|
|
|
|
QMakeEvaluator::writeFile(const QString &ctx, const QString &fn, QIODevice::OpenMode mode,
|
2015-12-11 11:08:47 +00:00
|
|
|
bool exe, const QString &contents)
|
2012-09-05 16:29:19 +00:00
|
|
|
{
|
|
|
|
QString errStr;
|
2015-12-11 11:08:47 +00:00
|
|
|
if (!m_vfs->writeFile(fn, mode, exe, contents, &errStr)) {
|
2015-05-13 18:53:19 +00:00
|
|
|
evalError(fL1S("Cannot write %1file %2: %3")
|
2013-05-29 15:12:11 +00:00
|
|
|
.arg(ctx, QDir::toNativeSeparators(fn), errStr));
|
2012-09-05 16:29:19 +00:00
|
|
|
return ReturnFalse;
|
|
|
|
}
|
2013-05-29 15:12:11 +00:00
|
|
|
m_parser->discardFileFromCache(fn);
|
2012-09-05 16:29:19 +00:00
|
|
|
return ReturnTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef QT_BOOTSTRAPPED
|
|
|
|
void QMakeEvaluator::runProcess(QProcess *proc, const QString &command) const
|
|
|
|
{
|
|
|
|
proc->setWorkingDirectory(currentDirectory());
|
|
|
|
# ifdef PROEVALUATOR_SETENV
|
|
|
|
if (!m_option->environment.isEmpty())
|
|
|
|
proc->setProcessEnvironment(m_option->environment);
|
|
|
|
# endif
|
|
|
|
# ifdef Q_OS_WIN
|
|
|
|
proc->setNativeArguments(QLatin1String("/v:off /s /c \"") + command + QLatin1Char('"'));
|
|
|
|
proc->start(m_option->getEnv(QLatin1String("COMSPEC")), QStringList());
|
|
|
|
# else
|
|
|
|
proc->start(QLatin1String("/bin/sh"), QStringList() << QLatin1String("-c") << command);
|
|
|
|
# endif
|
|
|
|
proc->waitForFinished(-1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-07-15 16:09:24 +00:00
|
|
|
QByteArray QMakeEvaluator::getCommandOutput(const QString &args, int *exitCode) const
|
2012-09-05 16:29:19 +00:00
|
|
|
{
|
2012-09-17 19:18:10 +00:00
|
|
|
QByteArray out;
|
2012-09-05 16:29:19 +00:00
|
|
|
#ifndef QT_BOOTSTRAPPED
|
|
|
|
QProcess proc;
|
|
|
|
runProcess(&proc, args);
|
2016-07-15 16:09:24 +00:00
|
|
|
*exitCode = (proc.exitStatus() == QProcess::NormalExit) ? proc.exitCode() : -1;
|
2012-09-05 16:29:19 +00:00
|
|
|
QByteArray errout = proc.readAllStandardError();
|
|
|
|
# ifdef PROEVALUATOR_FULL
|
|
|
|
// FIXME: Qt really should have the option to set forwarding per channel
|
|
|
|
fputs(errout.constData(), stderr);
|
|
|
|
# else
|
|
|
|
if (!errout.isEmpty()) {
|
|
|
|
if (errout.endsWith('\n'))
|
|
|
|
errout.chop(1);
|
2015-12-17 15:27:23 +00:00
|
|
|
m_handler->message(
|
|
|
|
QMakeHandler::EvalError | (m_cumulative ? QMakeHandler::CumulativeEvalMessage : 0),
|
|
|
|
QString::fromLocal8Bit(errout));
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
# endif
|
2012-09-17 19:18:10 +00:00
|
|
|
out = proc.readAllStandardOutput();
|
|
|
|
# ifdef Q_OS_WIN
|
|
|
|
// FIXME: Qt's line end conversion on sequential files should really be fixed
|
|
|
|
out.replace("\r\n", "\n");
|
|
|
|
# endif
|
2012-09-05 16:29:19 +00:00
|
|
|
#else
|
|
|
|
if (FILE *proc = QT_POPEN(QString(QLatin1String("cd ")
|
|
|
|
+ IoUtils::shellQuote(QDir::toNativeSeparators(currentDirectory()))
|
2016-06-16 13:38:22 +00:00
|
|
|
+ QLatin1String(" && ") + args).toLocal8Bit().constData(), QT_POPEN_READ)) {
|
2012-09-05 16:29:19 +00:00
|
|
|
while (!feof(proc)) {
|
|
|
|
char buff[10 * 1024];
|
|
|
|
int read_in = int(fread(buff, 1, sizeof(buff), proc));
|
|
|
|
if (!read_in)
|
|
|
|
break;
|
|
|
|
out += QByteArray(buff, read_in);
|
|
|
|
}
|
2016-07-15 16:09:24 +00:00
|
|
|
int ec = QT_PCLOSE(proc);
|
|
|
|
# ifdef Q_OS_WIN
|
|
|
|
*exitCode = ec >= 0 ? ec : -1;
|
|
|
|
# else
|
|
|
|
*exitCode = WIFEXITED(ec) ? WEXITSTATUS(ec) : -1;
|
|
|
|
# endif
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
2016-06-16 13:38:22 +00:00
|
|
|
# ifdef Q_OS_WIN
|
|
|
|
out.replace("\r\n", "\n");
|
|
|
|
# endif
|
2012-09-05 16:29:19 +00:00
|
|
|
#endif
|
2012-09-17 19:18:10 +00:00
|
|
|
return out;
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QMakeEvaluator::populateDeps(
|
2013-02-01 19:03:02 +00:00
|
|
|
const ProStringList &deps, const ProString &prefix, const ProStringList &suffixes,
|
2014-07-25 17:37:57 +00:00
|
|
|
const ProString &priosfx,
|
2012-09-05 16:29:19 +00:00
|
|
|
QHash<ProKey, QSet<ProKey> > &dependencies, ProValueMap &dependees,
|
2014-07-25 17:37:57 +00:00
|
|
|
QMultiMap<int, ProString> &rootSet) const
|
2012-09-05 16:29:19 +00:00
|
|
|
{
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &item : deps)
|
2012-09-05 16:29:19 +00:00
|
|
|
if (!dependencies.contains(item.toKey())) {
|
|
|
|
QSet<ProKey> &dset = dependencies[item.toKey()]; // Always create entry
|
2013-02-01 19:03:02 +00:00
|
|
|
ProStringList depends;
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &suffix : suffixes)
|
2013-02-01 19:03:02 +00:00
|
|
|
depends += values(ProKey(prefix + item + suffix));
|
2012-09-05 16:29:19 +00:00
|
|
|
if (depends.isEmpty()) {
|
2014-07-25 17:37:57 +00:00
|
|
|
rootSet.insert(first(ProKey(prefix + item + priosfx)).toInt(), item);
|
2012-09-05 16:29:19 +00:00
|
|
|
} else {
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &dep : qAsConst(depends)) {
|
2012-09-05 16:29:19 +00:00
|
|
|
dset.insert(dep.toKey());
|
|
|
|
dependees[dep.toKey()] << item;
|
|
|
|
}
|
2014-07-25 17:37:57 +00:00
|
|
|
populateDeps(depends, prefix, suffixes, priosfx, dependencies, dependees, rootSet);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 19:41:20 +00:00
|
|
|
QMakeEvaluator::VisitReturn QMakeEvaluator::evaluateBuiltinExpand(
|
|
|
|
int func_t, const ProKey &func, const ProStringList &args, ProStringList &ret)
|
2012-09-05 16:29:19 +00:00
|
|
|
{
|
|
|
|
traceMsg("calling built-in $$%s(%s)", dbgKey(func), dbgSepStrList(args));
|
|
|
|
|
|
|
|
switch (func_t) {
|
|
|
|
case E_BASENAME:
|
|
|
|
case E_DIRNAME:
|
|
|
|
case E_SECTION: {
|
|
|
|
bool regexp = false;
|
|
|
|
QString sep;
|
|
|
|
ProString var;
|
|
|
|
int beg = 0;
|
|
|
|
int end = -1;
|
|
|
|
if (func_t == E_SECTION) {
|
|
|
|
if (args.count() != 3 && args.count() != 4) {
|
2016-11-09 12:11:31 +00:00
|
|
|
evalError(fL1S("section(var, sep, begin, end) requires three or four arguments."));
|
2012-09-05 16:29:19 +00:00
|
|
|
} else {
|
|
|
|
var = args[0];
|
|
|
|
sep = args.at(1).toQString();
|
2016-05-13 11:44:42 +00:00
|
|
|
beg = args.at(2).toInt();
|
2012-09-05 16:29:19 +00:00
|
|
|
if (args.count() == 4)
|
2016-05-13 11:44:42 +00:00
|
|
|
end = args.at(3).toInt();
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("%1(var) requires one argument.").arg(func.toQString(m_tmp1)));
|
|
|
|
} else {
|
|
|
|
var = args[0];
|
|
|
|
regexp = true;
|
|
|
|
sep = QLatin1String("[\\\\/]");
|
|
|
|
if (func_t == E_DIRNAME)
|
|
|
|
end = -2;
|
|
|
|
else
|
|
|
|
beg = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!var.isEmpty()) {
|
2016-01-26 13:38:54 +00:00
|
|
|
const auto strings = values(map(var));
|
2012-09-05 16:29:19 +00:00
|
|
|
if (regexp) {
|
|
|
|
QRegExp sepRx(sep);
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &str : strings) {
|
2012-09-05 16:29:19 +00:00
|
|
|
const QString &rstr = str.toQString(m_tmp1).section(sepRx, beg, end);
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? str : ProString(rstr).setSource(str));
|
|
|
|
}
|
|
|
|
} else {
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &str : strings) {
|
2012-09-05 16:29:19 +00:00
|
|
|
const QString &rstr = str.toQString(m_tmp1).section(sep, beg, end);
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? str : ProString(rstr).setSource(str));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_SPRINTF:
|
|
|
|
if (args.count() < 1) {
|
|
|
|
evalError(fL1S("sprintf(format, ...) requires at least one argument."));
|
|
|
|
} else {
|
|
|
|
QString tmp = args.at(0).toQString(m_tmp1);
|
|
|
|
for (int i = 1; i < args.count(); ++i)
|
|
|
|
tmp = tmp.arg(args.at(i).toQString(m_tmp2));
|
2014-02-05 20:26:37 +00:00
|
|
|
ret << (tmp.isSharedWith(m_tmp1) ? args.at(0) : ProString(tmp).setSource(args.at(0)));
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_FORMAT_NUMBER:
|
|
|
|
if (args.count() > 2) {
|
|
|
|
evalError(fL1S("format_number(number[, options...]) requires one or two arguments."));
|
|
|
|
} else {
|
|
|
|
int ibase = 10;
|
|
|
|
int obase = 10;
|
|
|
|
int width = 0;
|
|
|
|
bool zeropad = false;
|
|
|
|
bool leftalign = false;
|
|
|
|
enum { DefaultSign, PadSign, AlwaysSign } sign = DefaultSign;
|
|
|
|
if (args.count() >= 2) {
|
2016-05-13 13:40:00 +00:00
|
|
|
const auto opts = split_value_list(args.at(1).toQStringRef());
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &opt : opts) {
|
2016-05-13 13:17:54 +00:00
|
|
|
if (opt.startsWith(QLatin1String("ibase="))) {
|
|
|
|
ibase = opt.mid(6).toInt();
|
|
|
|
} else if (opt.startsWith(QLatin1String("obase="))) {
|
|
|
|
obase = opt.mid(6).toInt();
|
|
|
|
} else if (opt.startsWith(QLatin1String("width="))) {
|
|
|
|
width = opt.mid(6).toInt();
|
|
|
|
} else if (opt == QLatin1String("zeropad")) {
|
2012-09-05 16:29:19 +00:00
|
|
|
zeropad = true;
|
2016-05-13 13:17:54 +00:00
|
|
|
} else if (opt == QLatin1String("padsign")) {
|
2012-09-05 16:29:19 +00:00
|
|
|
sign = PadSign;
|
2016-05-13 13:17:54 +00:00
|
|
|
} else if (opt == QLatin1String("alwayssign")) {
|
2012-09-05 16:29:19 +00:00
|
|
|
sign = AlwaysSign;
|
2016-05-13 13:17:54 +00:00
|
|
|
} else if (opt == QLatin1String("leftalign")) {
|
2012-09-05 16:29:19 +00:00
|
|
|
leftalign = true;
|
|
|
|
} else {
|
2016-05-13 13:17:54 +00:00
|
|
|
evalError(fL1S("format_number(): invalid format option %1.")
|
|
|
|
.arg(opt.toQString(m_tmp3)));
|
2012-09-05 16:29:19 +00:00
|
|
|
goto formfail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-13 13:17:54 +00:00
|
|
|
if (args.at(0).contains(QLatin1Char('.'))) {
|
2012-09-05 16:29:19 +00:00
|
|
|
evalError(fL1S("format_number(): floats are currently not supported."));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
bool ok;
|
2016-05-13 11:42:15 +00:00
|
|
|
qlonglong num = args.at(0).toLongLong(&ok, ibase);
|
2012-09-05 16:29:19 +00:00
|
|
|
if (!ok) {
|
|
|
|
evalError(fL1S("format_number(): malformed number %2 for base %1.")
|
2016-05-13 13:17:54 +00:00
|
|
|
.arg(ibase).arg(args.at(0).toQString(m_tmp3)));
|
2012-09-05 16:29:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
QString outstr;
|
|
|
|
if (num < 0) {
|
|
|
|
num = -num;
|
|
|
|
outstr = QLatin1Char('-');
|
|
|
|
} else if (sign == AlwaysSign) {
|
|
|
|
outstr = QLatin1Char('+');
|
|
|
|
} else if (sign == PadSign) {
|
|
|
|
outstr = QLatin1Char(' ');
|
|
|
|
}
|
|
|
|
QString numstr = QString::number(num, obase);
|
|
|
|
int space = width - outstr.length() - numstr.length();
|
|
|
|
if (space <= 0) {
|
|
|
|
outstr += numstr;
|
|
|
|
} else if (leftalign) {
|
|
|
|
outstr += numstr + QString(space, QLatin1Char(' '));
|
|
|
|
} else if (zeropad) {
|
|
|
|
outstr += QString(space, QLatin1Char('0')) + numstr;
|
|
|
|
} else {
|
|
|
|
outstr.prepend(QString(space, QLatin1Char(' ')));
|
|
|
|
outstr += numstr;
|
|
|
|
}
|
|
|
|
ret += ProString(outstr);
|
|
|
|
}
|
|
|
|
formfail:
|
|
|
|
break;
|
2016-05-13 11:31:14 +00:00
|
|
|
case E_NUM_ADD:
|
|
|
|
if (args.count() < 1 || args.at(0).isEmpty()) {
|
|
|
|
evalError(fL1S("num_add(num, ...) requires at least one argument."));
|
|
|
|
} else {
|
|
|
|
qlonglong sum = 0;
|
|
|
|
for (const ProString &arg : qAsConst(args)) {
|
|
|
|
if (arg.contains(QLatin1Char('.'))) {
|
|
|
|
evalError(fL1S("num_add(): floats are currently not supported."));
|
|
|
|
goto nafail;
|
|
|
|
}
|
|
|
|
bool ok;
|
|
|
|
qlonglong num = arg.toLongLong(&ok);
|
|
|
|
if (!ok) {
|
|
|
|
evalError(fL1S("num_add(): malformed number %1.")
|
|
|
|
.arg(arg.toQString(m_tmp3)));
|
|
|
|
goto nafail;
|
|
|
|
}
|
|
|
|
sum += num;
|
|
|
|
}
|
|
|
|
ret += ProString(QString::number(sum));
|
|
|
|
}
|
|
|
|
nafail:
|
|
|
|
break;
|
2012-09-05 16:29:19 +00:00
|
|
|
case E_JOIN: {
|
|
|
|
if (args.count() < 1 || args.count() > 4) {
|
|
|
|
evalError(fL1S("join(var, glue, before, after) requires one to four arguments."));
|
|
|
|
} else {
|
2016-05-13 13:21:05 +00:00
|
|
|
ProString glue, before, after;
|
2012-09-05 16:29:19 +00:00
|
|
|
if (args.count() >= 2)
|
2016-05-13 13:21:05 +00:00
|
|
|
glue = args.at(1);
|
2012-09-05 16:29:19 +00:00
|
|
|
if (args.count() >= 3)
|
|
|
|
before = args[2];
|
|
|
|
if (args.count() == 4)
|
|
|
|
after = args[3];
|
|
|
|
const ProStringList &var = values(map(args.at(0)));
|
|
|
|
if (!var.isEmpty()) {
|
|
|
|
const ProFile *src = currentProFile();
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &v : var)
|
2012-09-05 16:29:19 +00:00
|
|
|
if (const ProFile *s = v.sourceFile()) {
|
|
|
|
src = s;
|
|
|
|
break;
|
|
|
|
}
|
2013-03-12 20:48:12 +00:00
|
|
|
ret << ProString(before + var.join(glue) + after).setSource(src);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_SPLIT:
|
|
|
|
if (args.count() < 1 || args.count() > 2) {
|
|
|
|
evalError(fL1S("split(var, sep) requires one or two arguments."));
|
|
|
|
} else {
|
|
|
|
const QString &sep = (args.count() == 2) ? args.at(1).toQString(m_tmp1) : statics.field_sep;
|
2016-01-26 13:38:54 +00:00
|
|
|
const auto vars = values(map(args.at(0)));
|
|
|
|
for (const ProString &var : vars) {
|
|
|
|
const auto splits = var.toQString(m_tmp2).split(sep);
|
|
|
|
for (const QString &splt : splits)
|
2012-09-05 16:29:19 +00:00
|
|
|
ret << (splt.isSharedWith(m_tmp2) ? var : ProString(splt).setSource(var));
|
2016-01-26 13:38:54 +00:00
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_MEMBER:
|
|
|
|
if (args.count() < 1 || args.count() > 3) {
|
|
|
|
evalError(fL1S("member(var, start, end) requires one to three arguments."));
|
|
|
|
} else {
|
2016-05-18 14:35:01 +00:00
|
|
|
const ProStringList &src = values(map(args.at(0)));
|
|
|
|
int start, end;
|
|
|
|
if (getMemberArgs(func, src.size(), args, &start, &end)) {
|
|
|
|
ret.reserve(qAbs(end - start) + 1);
|
|
|
|
if (start < end) {
|
|
|
|
for (int i = start; i <= end && src.size() >= i; i++)
|
|
|
|
ret += src.at(i);
|
2012-09-05 16:29:19 +00:00
|
|
|
} else {
|
2016-05-18 14:35:01 +00:00
|
|
|
for (int i = start; i >= end && src.size() >= i && i >= 0; i--)
|
|
|
|
ret += src.at(i);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-18 14:35:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_STR_MEMBER:
|
|
|
|
if (args.count() < 1 || args.count() > 3) {
|
|
|
|
evalError(fL1S("str_member(str, start, end) requires one to three arguments."));
|
|
|
|
} else {
|
|
|
|
const ProString &src = args.at(0);
|
|
|
|
int start, end;
|
|
|
|
if (getMemberArgs(func, src.size(), args, &start, &end)) {
|
|
|
|
QString res;
|
|
|
|
res.reserve(qAbs(end - start) + 1);
|
|
|
|
if (start < end) {
|
|
|
|
for (int i = start; i <= end && src.size() >= i; i++)
|
|
|
|
res += src.at(i);
|
2012-09-05 16:29:19 +00:00
|
|
|
} else {
|
2016-05-18 14:35:01 +00:00
|
|
|
for (int i = start; i >= end && src.size() >= i && i >= 0; i--)
|
|
|
|
res += src.at(i);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
2016-05-18 14:35:01 +00:00
|
|
|
ret += ProString(res);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_FIRST:
|
|
|
|
case E_LAST:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("%1(var) requires one argument.").arg(func.toQString(m_tmp1)));
|
|
|
|
} else {
|
|
|
|
const ProStringList &var = values(map(args.at(0)));
|
|
|
|
if (!var.isEmpty()) {
|
|
|
|
if (func_t == E_FIRST)
|
|
|
|
ret.append(var[0]);
|
|
|
|
else
|
|
|
|
ret.append(var.last());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2016-05-12 18:38:54 +00:00
|
|
|
case E_TAKE_FIRST:
|
|
|
|
case E_TAKE_LAST:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("%1(var) requires one argument.").arg(func.toQString(m_tmp1)));
|
|
|
|
} else {
|
|
|
|
ProStringList &var = valuesRef(map(args.at(0)));
|
|
|
|
if (!var.isEmpty()) {
|
|
|
|
if (func_t == E_TAKE_FIRST)
|
|
|
|
ret.append(var.takeFirst());
|
|
|
|
else
|
|
|
|
ret.append(var.takeLast());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2012-09-05 16:29:19 +00:00
|
|
|
case E_SIZE:
|
|
|
|
if (args.count() != 1)
|
|
|
|
evalError(fL1S("size(var) requires one argument."));
|
|
|
|
else
|
|
|
|
ret.append(ProString(QString::number(values(map(args.at(0))).size())));
|
|
|
|
break;
|
2016-05-13 13:58:20 +00:00
|
|
|
case E_STR_SIZE:
|
|
|
|
if (args.count() != 1)
|
|
|
|
evalError(fL1S("str_size(str) requires one argument."));
|
|
|
|
else
|
|
|
|
ret.append(ProString(QString::number(args.at(0).size())));
|
|
|
|
break;
|
2012-09-05 16:29:19 +00:00
|
|
|
case E_CAT:
|
|
|
|
if (args.count() < 1 || args.count() > 2) {
|
|
|
|
evalError(fL1S("cat(file, singleline=true) requires one or two arguments."));
|
|
|
|
} else {
|
|
|
|
const QString &file = args.at(0).toQString(m_tmp1);
|
|
|
|
|
|
|
|
bool blob = false;
|
|
|
|
bool lines = false;
|
|
|
|
bool singleLine = true;
|
|
|
|
if (args.count() > 1) {
|
2016-05-13 13:17:54 +00:00
|
|
|
if (!args.at(1).compare(QLatin1String("false"), Qt::CaseInsensitive))
|
2012-09-05 16:29:19 +00:00
|
|
|
singleLine = false;
|
2016-05-13 13:17:54 +00:00
|
|
|
else if (!args.at(1).compare(QLatin1String("blob"), Qt::CaseInsensitive))
|
2012-09-05 16:29:19 +00:00
|
|
|
blob = true;
|
2016-05-13 13:17:54 +00:00
|
|
|
else if (!args.at(1).compare(QLatin1String("lines"), Qt::CaseInsensitive))
|
2012-09-05 16:29:19 +00:00
|
|
|
lines = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile qfile(resolvePath(m_option->expandEnvVars(file)));
|
|
|
|
if (qfile.open(QIODevice::ReadOnly)) {
|
|
|
|
QTextStream stream(&qfile);
|
|
|
|
if (blob) {
|
|
|
|
ret += ProString(stream.readAll());
|
|
|
|
} else {
|
|
|
|
while (!stream.atEnd()) {
|
|
|
|
if (lines) {
|
|
|
|
ret += ProString(stream.readLine());
|
|
|
|
} else {
|
2016-05-13 13:40:00 +00:00
|
|
|
const QString &line = stream.readLine();
|
|
|
|
ret += split_value_list(QStringRef(&line).trimmed());
|
2012-09-05 16:29:19 +00:00
|
|
|
if (!singleLine)
|
|
|
|
ret += ProString("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_FROMFILE:
|
|
|
|
if (args.count() != 2) {
|
|
|
|
evalError(fL1S("fromfile(file, variable) requires two arguments."));
|
|
|
|
} else {
|
|
|
|
ProValueMap vars;
|
|
|
|
QString fn = resolvePath(m_option->expandEnvVars(args.at(0).toQString(m_tmp1)));
|
|
|
|
fn.detach();
|
2012-09-19 19:56:16 +00:00
|
|
|
if (evaluateFileInto(fn, &vars, LoadProOnly) == ReturnTrue)
|
2012-09-05 16:29:19 +00:00
|
|
|
ret = vars.value(map(args.at(1)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_EVAL:
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
(cherry picked from qtcreator/29a93998df8405e8799ad23934a56cd99fb36403)
Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
2013-01-08 01:32:53 +00:00
|
|
|
if (args.count() != 1)
|
2012-09-05 16:29:19 +00:00
|
|
|
evalError(fL1S("eval(variable) requires one argument."));
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
(cherry picked from qtcreator/29a93998df8405e8799ad23934a56cd99fb36403)
Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
2013-01-08 01:32:53 +00:00
|
|
|
else
|
2012-09-05 16:29:19 +00:00
|
|
|
ret += values(map(args.at(0)));
|
|
|
|
break;
|
|
|
|
case E_LIST: {
|
|
|
|
QString tmp;
|
|
|
|
tmp.sprintf(".QMAKE_INTERNAL_TMP_variableName_%d", m_listCount++);
|
|
|
|
ret = ProStringList(ProString(tmp));
|
|
|
|
ProStringList lst;
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &arg : args)
|
2016-05-13 13:40:00 +00:00
|
|
|
lst += split_value_list(arg.toQStringRef(), arg.sourceFile()); // Relies on deep copy
|
2012-09-05 16:29:19 +00:00
|
|
|
m_valuemapStack.top()[ret.at(0).toKey()] = lst;
|
|
|
|
break; }
|
|
|
|
case E_FIND:
|
|
|
|
if (args.count() != 2) {
|
|
|
|
evalError(fL1S("find(var, str) requires two arguments."));
|
|
|
|
} else {
|
|
|
|
QRegExp regx(args.at(1).toQString());
|
|
|
|
int t = 0;
|
2016-01-26 13:38:54 +00:00
|
|
|
const auto vals = values(map(args.at(0)));
|
|
|
|
for (const ProString &val : vals) {
|
2012-09-05 16:29:19 +00:00
|
|
|
if (regx.indexIn(val.toQString(m_tmp[t])) != -1)
|
|
|
|
ret += val;
|
|
|
|
t ^= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_SYSTEM:
|
|
|
|
if (!m_skipLevel) {
|
2016-07-15 16:09:24 +00:00
|
|
|
if (args.count() < 1 || args.count() > 3) {
|
|
|
|
evalError(fL1S("system(command, [mode], [stsvar]) requires one to three arguments."));
|
2012-09-05 16:29:19 +00:00
|
|
|
} else {
|
|
|
|
bool blob = false;
|
|
|
|
bool lines = false;
|
|
|
|
bool singleLine = true;
|
|
|
|
if (args.count() > 1) {
|
2016-05-13 13:17:54 +00:00
|
|
|
if (!args.at(1).compare(QLatin1String("false"), Qt::CaseInsensitive))
|
2012-09-05 16:29:19 +00:00
|
|
|
singleLine = false;
|
2016-05-13 13:17:54 +00:00
|
|
|
else if (!args.at(1).compare(QLatin1String("blob"), Qt::CaseInsensitive))
|
2012-09-05 16:29:19 +00:00
|
|
|
blob = true;
|
2016-05-13 13:17:54 +00:00
|
|
|
else if (!args.at(1).compare(QLatin1String("lines"), Qt::CaseInsensitive))
|
2012-09-05 16:29:19 +00:00
|
|
|
lines = true;
|
|
|
|
}
|
2016-07-15 16:09:24 +00:00
|
|
|
int exitCode;
|
|
|
|
QByteArray bytes = getCommandOutput(args.at(0).toQString(m_tmp2), &exitCode);
|
|
|
|
if (args.count() > 2 && !args.at(2).isEmpty()) {
|
|
|
|
m_valuemapStack.top()[args.at(2).toKey()] =
|
|
|
|
ProStringList(ProString(QString::number(exitCode)));
|
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
if (lines) {
|
|
|
|
QTextStream stream(bytes);
|
|
|
|
while (!stream.atEnd())
|
|
|
|
ret += ProString(stream.readLine());
|
|
|
|
} else {
|
|
|
|
QString output = QString::fromLocal8Bit(bytes);
|
|
|
|
if (blob) {
|
|
|
|
ret += ProString(output);
|
|
|
|
} else {
|
|
|
|
output.replace(QLatin1Char('\t'), QLatin1Char(' '));
|
|
|
|
if (singleLine)
|
|
|
|
output.replace(QLatin1Char('\n'), QLatin1Char(' '));
|
2016-05-13 13:40:00 +00:00
|
|
|
ret += split_value_list(QStringRef(&output));
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_UNIQUE:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("unique(var) requires one argument."));
|
|
|
|
} else {
|
|
|
|
ret = values(map(args.at(0)));
|
|
|
|
ret.removeDuplicates();
|
|
|
|
}
|
|
|
|
break;
|
2016-05-13 14:53:01 +00:00
|
|
|
case E_SORTED:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("sorted(var) requires one argument."));
|
|
|
|
} else {
|
|
|
|
ret = values(map(args.at(0)));
|
|
|
|
std::sort(ret.begin(), ret.end());
|
|
|
|
}
|
|
|
|
break;
|
2012-09-05 16:29:19 +00:00
|
|
|
case E_REVERSE:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("reverse(var) requires one argument."));
|
|
|
|
} else {
|
|
|
|
ProStringList var = values(args.at(0).toKey());
|
|
|
|
for (int i = 0; i < var.size() / 2; i++)
|
|
|
|
qSwap(var[i], var[var.size() - i - 1]);
|
|
|
|
ret += var;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_QUOTE:
|
|
|
|
ret += args;
|
|
|
|
break;
|
|
|
|
case E_ESCAPE_EXPAND:
|
|
|
|
for (int i = 0; i < args.size(); ++i) {
|
|
|
|
QString str = args.at(i).toQString();
|
|
|
|
QChar *i_data = str.data();
|
|
|
|
int i_len = str.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(ProString(QString(i_data, i_len)).setSource(args.at(i)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_RE_ESCAPE:
|
|
|
|
for (int i = 0; i < args.size(); ++i) {
|
|
|
|
const QString &rstr = QRegExp::escape(args.at(i).toQString(m_tmp1));
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? args.at(i) : ProString(rstr).setSource(args.at(i)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_VAL_ESCAPE:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("val_escape(var) requires one argument."));
|
|
|
|
} else {
|
|
|
|
const ProStringList &vals = values(args.at(0).toKey());
|
|
|
|
ret.reserve(vals.size());
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &str : vals)
|
2012-09-05 16:29:19 +00:00
|
|
|
ret += ProString(quoteValue(str));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_UPPER:
|
|
|
|
case E_LOWER:
|
2013-09-19 11:21:26 +00:00
|
|
|
case E_TITLE:
|
2012-09-05 16:29:19 +00:00
|
|
|
for (int i = 0; i < args.count(); ++i) {
|
|
|
|
QString rstr = args.at(i).toQString(m_tmp1);
|
2013-09-19 11:21:26 +00:00
|
|
|
if (func_t == E_UPPER) {
|
|
|
|
rstr = rstr.toUpper();
|
|
|
|
} else {
|
|
|
|
rstr = rstr.toLower();
|
|
|
|
if (func_t == E_TITLE && rstr.length() > 0)
|
|
|
|
rstr[0] = rstr.at(0).toTitleCase();
|
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? args.at(i) : ProString(rstr).setSource(args.at(i)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_FILES:
|
|
|
|
if (args.count() != 1 && args.count() != 2) {
|
|
|
|
evalError(fL1S("files(pattern, recursive=false) requires one or two arguments."));
|
|
|
|
} else {
|
|
|
|
bool recursive = false;
|
|
|
|
if (args.count() == 2)
|
2016-05-13 11:45:48 +00:00
|
|
|
recursive = isTrue(args.at(1));
|
2012-09-05 16:29:19 +00:00
|
|
|
QStringList dirs;
|
|
|
|
QString r = m_option->expandEnvVars(args.at(0).toQString(m_tmp1))
|
|
|
|
.replace(QLatin1Char('\\'), QLatin1Char('/'));
|
|
|
|
QString pfx;
|
|
|
|
if (IoUtils::isRelativePath(r)) {
|
|
|
|
pfx = currentDirectory();
|
|
|
|
if (!pfx.endsWith(QLatin1Char('/')))
|
|
|
|
pfx += QLatin1Char('/');
|
|
|
|
}
|
|
|
|
int slash = r.lastIndexOf(QLatin1Char('/'));
|
|
|
|
if (slash != -1) {
|
|
|
|
dirs.append(r.left(slash+1));
|
|
|
|
r = r.mid(slash+1);
|
|
|
|
} else {
|
|
|
|
dirs.append(QString());
|
|
|
|
}
|
|
|
|
|
|
|
|
r.detach(); // Keep m_tmp out of QRegExp's cache
|
|
|
|
QRegExp regex(r, Qt::CaseSensitive, QRegExp::Wildcard);
|
|
|
|
for (int d = 0; d < dirs.count(); d++) {
|
|
|
|
QString dir = dirs[d];
|
|
|
|
QDir qdir(pfx + dir);
|
|
|
|
for (int i = 0; i < (int)qdir.count(); ++i) {
|
|
|
|
if (qdir[i] == statics.strDot || qdir[i] == statics.strDotDot)
|
|
|
|
continue;
|
|
|
|
QString fname = dir + qdir[i];
|
|
|
|
if (IoUtils::fileType(pfx + fname) == IoUtils::FileIsDir) {
|
|
|
|
if (recursive)
|
|
|
|
dirs.append(fname + QLatin1Char('/'));
|
|
|
|
}
|
|
|
|
if (regex.exactMatch(qdir[i]))
|
|
|
|
ret += ProString(fname).setSource(currentProFile());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#ifdef PROEVALUATOR_FULL
|
|
|
|
case E_PROMPT: {
|
2016-11-10 19:04:20 +00:00
|
|
|
if (args.count() != 1 && args.count() != 2) {
|
|
|
|
evalError(fL1S("prompt(question, [decorate=true]) requires one or two arguments."));
|
2012-09-05 16:29:19 +00:00
|
|
|
// } else if (currentFileName() == QLatin1String("-")) {
|
|
|
|
// evalError(fL1S("prompt(question) cannot be used when '-o -' is used"));
|
|
|
|
} else {
|
|
|
|
QString msg = m_option->expandEnvVars(args.at(0).toQString(m_tmp1));
|
2016-11-10 19:04:20 +00:00
|
|
|
bool decorate = true;
|
|
|
|
if (args.count() == 2)
|
|
|
|
decorate = isTrue(args.at(1));
|
|
|
|
if (decorate) {
|
|
|
|
if (!msg.endsWith(QLatin1Char('?')))
|
|
|
|
msg += QLatin1Char('?');
|
|
|
|
fprintf(stderr, "Project PROMPT: %s ", qPrintable(msg));
|
|
|
|
} else {
|
|
|
|
fputs(qPrintable(msg), stderr);
|
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
QFile qfile;
|
|
|
|
if (qfile.open(stdin, QIODevice::ReadOnly)) {
|
|
|
|
QTextStream t(&qfile);
|
2016-05-13 13:40:00 +00:00
|
|
|
const QString &line = t.readLine();
|
2016-11-25 19:41:20 +00:00
|
|
|
if (t.atEnd()) {
|
|
|
|
fputs("\n", stderr);
|
|
|
|
evalError(fL1S("Unexpected EOF."));
|
|
|
|
return ReturnError;
|
|
|
|
}
|
2016-05-13 13:40:00 +00:00
|
|
|
ret = split_value_list(QStringRef(&line));
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break; }
|
|
|
|
#endif
|
|
|
|
case E_REPLACE:
|
|
|
|
if (args.count() != 3 ) {
|
|
|
|
evalError(fL1S("replace(var, before, after) requires three arguments."));
|
|
|
|
} else {
|
|
|
|
const QRegExp before(args.at(1).toQString());
|
|
|
|
const QString &after(args.at(2).toQString(m_tmp2));
|
2016-01-26 13:38:54 +00:00
|
|
|
const auto vals = values(map(args.at(0)));
|
|
|
|
for (const ProString &val : vals) {
|
2012-09-05 16:29:19 +00:00
|
|
|
QString rstr = val.toQString(m_tmp1);
|
|
|
|
QString copy = rstr; // Force a detach on modify
|
|
|
|
rstr.replace(before, after);
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? val : ProString(rstr).setSource(val));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_SORT_DEPENDS:
|
|
|
|
case E_RESOLVE_DEPENDS:
|
2014-07-25 17:37:57 +00:00
|
|
|
if (args.count() < 1 || args.count() > 4) {
|
|
|
|
evalError(fL1S("%1(var, [prefix, [suffixes, [prio-suffix]]]) requires one to four arguments.")
|
2013-02-01 19:03:02 +00:00
|
|
|
.arg(func.toQString(m_tmp1)));
|
2012-09-05 16:29:19 +00:00
|
|
|
} else {
|
|
|
|
QHash<ProKey, QSet<ProKey> > dependencies;
|
|
|
|
ProValueMap dependees;
|
2014-07-25 17:37:57 +00:00
|
|
|
QMultiMap<int, ProString> rootSet;
|
2012-09-05 16:29:19 +00:00
|
|
|
ProStringList orgList = values(args.at(0).toKey());
|
2014-07-25 17:37:57 +00:00
|
|
|
ProString prefix = args.count() < 2 ? ProString() : args.at(1);
|
|
|
|
ProString priosfx = args.count() < 4 ? ProString(".priority") : args.at(3);
|
|
|
|
populateDeps(orgList, prefix,
|
2013-02-01 19:03:02 +00:00
|
|
|
args.count() < 3 ? ProStringList(ProString(".depends"))
|
2016-05-13 13:40:00 +00:00
|
|
|
: split_value_list(args.at(2).toQStringRef()),
|
2014-07-25 17:37:57 +00:00
|
|
|
priosfx, dependencies, dependees, rootSet);
|
|
|
|
while (!rootSet.isEmpty()) {
|
|
|
|
QMultiMap<int, ProString>::iterator it = rootSet.begin();
|
|
|
|
const ProString item = *it;
|
|
|
|
rootSet.erase(it);
|
2012-09-05 16:29:19 +00:00
|
|
|
if ((func_t == E_RESOLVE_DEPENDS) || orgList.contains(item))
|
|
|
|
ret.prepend(item);
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &dep : qAsConst(dependees[item.toKey()])) {
|
2012-09-05 16:29:19 +00:00
|
|
|
QSet<ProKey> &dset = dependencies[dep.toKey()];
|
2014-07-25 17:37:57 +00:00
|
|
|
dset.remove(item.toKey());
|
2012-09-05 16:29:19 +00:00
|
|
|
if (dset.isEmpty())
|
2014-07-25 17:37:57 +00:00
|
|
|
rootSet.insert(first(ProKey(prefix + dep + priosfx)).toInt(), dep);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_ENUMERATE_VARS: {
|
|
|
|
QSet<ProString> keys;
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProValueMap &vmap : qAsConst(m_valuemapStack))
|
2012-09-05 16:29:19 +00:00
|
|
|
for (ProValueMap::ConstIterator it = vmap.constBegin(); it != vmap.constEnd(); ++it)
|
|
|
|
keys.insert(it.key());
|
|
|
|
ret.reserve(keys.size());
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &key : qAsConst(keys))
|
2012-09-05 16:29:19 +00:00
|
|
|
ret << key;
|
|
|
|
break; }
|
|
|
|
case E_SHADOWED:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("shadowed(path) requires one argument."));
|
|
|
|
} else {
|
|
|
|
QString rstr = m_option->shadowedPath(resolvePath(args.at(0).toQString(m_tmp1)));
|
|
|
|
if (rstr.isEmpty())
|
|
|
|
break;
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? args.at(0) : ProString(rstr).setSource(args.at(0)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_ABSOLUTE_PATH:
|
|
|
|
if (args.count() > 2) {
|
|
|
|
evalError(fL1S("absolute_path(path[, base]) requires one or two arguments."));
|
|
|
|
} else {
|
|
|
|
QString rstr = QDir::cleanPath(
|
|
|
|
QDir(args.count() > 1 ? args.at(1).toQString(m_tmp2) : currentDirectory())
|
|
|
|
.absoluteFilePath(args.at(0).toQString(m_tmp1)));
|
2016-07-05 16:07:14 +00:00
|
|
|
ret << (rstr.isSharedWith(m_tmp1)
|
|
|
|
? args.at(0)
|
|
|
|
: args.count() > 1 && rstr.isSharedWith(m_tmp2)
|
|
|
|
? args.at(1)
|
|
|
|
: ProString(rstr).setSource(args.at(0)));
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_RELATIVE_PATH:
|
|
|
|
if (args.count() > 2) {
|
|
|
|
evalError(fL1S("relative_path(path[, base]) requires one or two arguments."));
|
|
|
|
} else {
|
|
|
|
QDir baseDir(args.count() > 1 ? args.at(1).toQString(m_tmp2) : currentDirectory());
|
|
|
|
QString rstr = baseDir.relativeFilePath(baseDir.absoluteFilePath(
|
|
|
|
args.at(0).toQString(m_tmp1)));
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? args.at(0) : ProString(rstr).setSource(args.at(0)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_CLEAN_PATH:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("clean_path(path) requires one argument."));
|
|
|
|
} else {
|
|
|
|
QString rstr = QDir::cleanPath(args.at(0).toQString(m_tmp1));
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? args.at(0) : ProString(rstr).setSource(args.at(0)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_SYSTEM_PATH:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("system_path(path) requires one argument."));
|
|
|
|
} else {
|
|
|
|
QString rstr = args.at(0).toQString(m_tmp1);
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
rstr.replace(QLatin1Char('/'), QLatin1Char('\\'));
|
|
|
|
#else
|
|
|
|
rstr.replace(QLatin1Char('\\'), QLatin1Char('/'));
|
|
|
|
#endif
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? args.at(0) : ProString(rstr).setSource(args.at(0)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_SHELL_PATH:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("shell_path(path) requires one argument."));
|
|
|
|
} else {
|
|
|
|
QString rstr = args.at(0).toQString(m_tmp1);
|
2014-04-29 18:39:13 +00:00
|
|
|
if (m_dirSep.startsWith(QLatin1Char('\\'))) {
|
2012-09-05 16:29:19 +00:00
|
|
|
rstr.replace(QLatin1Char('/'), QLatin1Char('\\'));
|
2014-04-29 18:39:13 +00:00
|
|
|
} else {
|
2012-09-05 16:29:19 +00:00
|
|
|
rstr.replace(QLatin1Char('\\'), QLatin1Char('/'));
|
2014-04-29 18:39:13 +00:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
// Convert d:/foo/bar to msys-style /d/foo/bar.
|
|
|
|
if (rstr.length() > 2 && rstr.at(1) == QLatin1Char(':') && rstr.at(2) == QLatin1Char('/')) {
|
|
|
|
rstr[1] = rstr.at(0);
|
|
|
|
rstr[0] = QLatin1Char('/');
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? args.at(0) : ProString(rstr).setSource(args.at(0)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_SYSTEM_QUOTE:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("system_quote(arg) requires one argument."));
|
|
|
|
} else {
|
|
|
|
QString rstr = IoUtils::shellQuote(args.at(0).toQString(m_tmp1));
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? args.at(0) : ProString(rstr).setSource(args.at(0)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case E_SHELL_QUOTE:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("shell_quote(arg) requires one argument."));
|
|
|
|
} else {
|
|
|
|
QString rstr = args.at(0).toQString(m_tmp1);
|
|
|
|
if (m_dirSep.startsWith(QLatin1Char('\\')))
|
|
|
|
rstr = IoUtils::shellQuoteWin(rstr);
|
|
|
|
else
|
|
|
|
rstr = IoUtils::shellQuoteUnix(rstr);
|
|
|
|
ret << (rstr.isSharedWith(m_tmp1) ? args.at(0) : ProString(rstr).setSource(args.at(0)));
|
|
|
|
}
|
|
|
|
break;
|
2014-03-11 14:56:52 +00:00
|
|
|
case E_GETENV:
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("getenv(arg) requires one argument."));
|
|
|
|
} else {
|
|
|
|
const ProString &var = args.at(0);
|
|
|
|
const ProString &val = ProString(m_option->getEnv(var.toQString(m_tmp1)));
|
|
|
|
ret << val;
|
|
|
|
}
|
|
|
|
break;
|
2012-09-05 16:29:19 +00:00
|
|
|
default:
|
|
|
|
evalError(fL1S("Function '%1' is not implemented.").arg(func.toQString(m_tmp1)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-11-25 19:41:20 +00:00
|
|
|
return ReturnTrue;
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QMakeEvaluator::VisitReturn QMakeEvaluator::evaluateBuiltinConditional(
|
2012-09-03 18:57:59 +00:00
|
|
|
int func_t, const ProKey &function, const ProStringList &args)
|
2012-09-05 16:29:19 +00:00
|
|
|
{
|
|
|
|
traceMsg("calling built-in %s(%s)", dbgKey(function), dbgSepStrList(args));
|
|
|
|
|
|
|
|
switch (func_t) {
|
|
|
|
case T_DEFINED: {
|
|
|
|
if (args.count() < 1 || args.count() > 2) {
|
2015-05-11 14:36:09 +00:00
|
|
|
evalError(fL1S("defined(function, [\"test\"|\"replace\"|\"var\"])"
|
2012-09-05 16:29:19 +00:00
|
|
|
" requires one or two arguments."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
const ProKey &var = args.at(0).toKey();
|
|
|
|
if (args.count() > 1) {
|
|
|
|
if (args[1] == QLatin1String("test")) {
|
|
|
|
return returnBool(m_functionDefs.testFunctions.contains(var));
|
|
|
|
} else if (args[1] == QLatin1String("replace")) {
|
|
|
|
return returnBool(m_functionDefs.replaceFunctions.contains(var));
|
|
|
|
} else if (args[1] == QLatin1String("var")) {
|
|
|
|
ProValueMap::Iterator it;
|
|
|
|
return returnBool(findValues(var, &it));
|
|
|
|
}
|
|
|
|
evalError(fL1S("defined(function, type): unexpected type [%1].")
|
|
|
|
.arg(args.at(1).toQString(m_tmp1)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
return returnBool(m_functionDefs.replaceFunctions.contains(var)
|
|
|
|
|| m_functionDefs.testFunctions.contains(var));
|
|
|
|
}
|
|
|
|
case T_EXPORT: {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("export(variable) requires one argument."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
const ProKey &var = map(args.at(0));
|
|
|
|
for (ProValueMapStack::Iterator vmi = m_valuemapStack.end();
|
|
|
|
--vmi != m_valuemapStack.begin(); ) {
|
|
|
|
ProValueMap::Iterator it = (*vmi).find(var);
|
|
|
|
if (it != (*vmi).end()) {
|
|
|
|
if (it->constBegin() == statics.fakeValue.constBegin()) {
|
|
|
|
// This is stupid, but qmake doesn't propagate deletions
|
|
|
|
m_valuemapStack.first()[var] = ProStringList();
|
|
|
|
} else {
|
|
|
|
m_valuemapStack.first()[var] = *it;
|
|
|
|
}
|
|
|
|
(*vmi).erase(it);
|
|
|
|
while (--vmi != m_valuemapStack.begin())
|
|
|
|
(*vmi).remove(var);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ReturnTrue;
|
|
|
|
}
|
2016-08-23 12:05:54 +00:00
|
|
|
case T_DISCARD_FROM: {
|
|
|
|
if (args.count() != 1 || args.at(0).isEmpty()) {
|
|
|
|
evalError(fL1S("discard_from(file) requires one argument."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
if (m_valuemapStack.count() != 1) {
|
|
|
|
evalError(fL1S("discard_from() cannot be called from functions."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
QString fn = resolvePath(args.at(0).toQString(m_tmp1));
|
|
|
|
ProFile *pro = m_parser->parsedProFile(fn, QMakeParser::ParseOnlyCached);
|
|
|
|
if (!pro)
|
|
|
|
return ReturnFalse;
|
|
|
|
ProValueMap &vmap = m_valuemapStack.first();
|
|
|
|
for (auto vit = vmap.begin(); vit != vmap.end(); ) {
|
|
|
|
if (!vit->isEmpty()) {
|
|
|
|
auto isFrom = [pro](const ProString &s) {
|
|
|
|
return s.sourceFile() == pro;
|
|
|
|
};
|
|
|
|
vit->erase(std::remove_if(vit->begin(), vit->end(), isFrom), vit->end());
|
|
|
|
if (vit->isEmpty()) {
|
|
|
|
// When an initially non-empty variable becomes entirely empty,
|
|
|
|
// undefine it altogether.
|
|
|
|
vit = vmap.erase(vit);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++vit;
|
|
|
|
}
|
2016-11-11 19:01:53 +00:00
|
|
|
for (auto fit = m_functionDefs.testFunctions.begin(); fit != m_functionDefs.testFunctions.end(); ) {
|
|
|
|
if (fit->pro() == pro)
|
|
|
|
fit = m_functionDefs.testFunctions.erase(fit);
|
|
|
|
else
|
|
|
|
++fit;
|
|
|
|
}
|
|
|
|
for (auto fit = m_functionDefs.replaceFunctions.begin(); fit != m_functionDefs.replaceFunctions.end(); ) {
|
|
|
|
if (fit->pro() == pro)
|
|
|
|
fit = m_functionDefs.replaceFunctions.erase(fit);
|
|
|
|
else
|
|
|
|
++fit;
|
|
|
|
}
|
2016-08-23 12:05:54 +00:00
|
|
|
pro->deref();
|
2016-11-11 13:45:48 +00:00
|
|
|
ProStringList &iif = m_valuemapStack.first()[ProKey("QMAKE_INTERNAL_INCLUDED_FILES")];
|
|
|
|
int idx = iif.indexOf(ProString(fn));
|
|
|
|
if (idx >= 0)
|
|
|
|
iif.removeAt(idx);
|
2016-08-23 12:05:54 +00:00
|
|
|
return ReturnTrue;
|
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
case T_INFILE:
|
|
|
|
if (args.count() < 2 || args.count() > 3) {
|
|
|
|
evalError(fL1S("infile(file, var, [values]) requires two or three arguments."));
|
|
|
|
} else {
|
|
|
|
ProValueMap vars;
|
|
|
|
QString fn = resolvePath(m_option->expandEnvVars(args.at(0).toQString(m_tmp1)));
|
|
|
|
fn.detach();
|
2012-09-19 19:56:16 +00:00
|
|
|
VisitReturn ok = evaluateFileInto(fn, &vars, LoadProOnly);
|
|
|
|
if (ok != ReturnTrue)
|
|
|
|
return ok;
|
2012-09-05 16:29:19 +00:00
|
|
|
if (args.count() == 2)
|
|
|
|
return returnBool(vars.contains(map(args.at(1))));
|
|
|
|
QRegExp regx;
|
|
|
|
const QString &qry = args.at(2).toQString(m_tmp1);
|
|
|
|
if (qry != QRegExp::escape(qry)) {
|
|
|
|
QString copy = qry;
|
|
|
|
copy.detach();
|
|
|
|
regx.setPattern(copy);
|
|
|
|
}
|
|
|
|
int t = 0;
|
2016-01-26 13:38:54 +00:00
|
|
|
const auto strings = vars.value(map(args.at(1)));
|
|
|
|
for (const ProString &s : strings) {
|
2012-09-05 16:29:19 +00:00
|
|
|
if ((!regx.isEmpty() && regx.exactMatch(s.toQString(m_tmp[t]))) || s == qry)
|
|
|
|
return ReturnTrue;
|
|
|
|
t ^= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ReturnFalse;
|
|
|
|
case T_REQUIRES:
|
2013-05-16 13:21:20 +00:00
|
|
|
#ifdef PROEVALUATOR_FULL
|
2016-06-30 14:02:29 +00:00
|
|
|
if (checkRequirements(args) == ReturnError)
|
|
|
|
return ReturnError;
|
2012-09-05 16:29:19 +00:00
|
|
|
#endif
|
2013-05-16 13:21:20 +00:00
|
|
|
return ReturnFalse; // Another qmake breakage
|
2012-09-05 16:29:19 +00:00
|
|
|
case T_EVAL: {
|
|
|
|
VisitReturn ret = ReturnFalse;
|
2016-05-13 13:32:50 +00:00
|
|
|
QString contents = args.join(statics.field_sep);
|
|
|
|
ProFile *pro = m_parser->parsedProBlock(QStringRef(&contents),
|
2012-09-05 16:29:19 +00:00
|
|
|
m_current.pro->fileName(), m_current.line);
|
2015-02-02 17:52:24 +00:00
|
|
|
if (m_cumulative || pro->isOk()) {
|
|
|
|
m_locationStack.push(m_current);
|
|
|
|
visitProBlock(pro, pro->tokPtr());
|
|
|
|
ret = ReturnTrue; // This return value is not too useful, but that's qmake
|
|
|
|
m_current = m_locationStack.pop();
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
2015-02-02 17:52:24 +00:00
|
|
|
pro->deref();
|
2012-09-05 16:29:19 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
case T_IF: {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("if(condition) requires one argument."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
2016-07-19 17:51:41 +00:00
|
|
|
return evaluateConditional(args.at(0).toQStringRef(),
|
2016-06-29 13:40:17 +00:00
|
|
|
m_current.pro->fileName(), m_current.line);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
case T_CONFIG: {
|
|
|
|
if (args.count() < 1 || args.count() > 2) {
|
|
|
|
evalError(fL1S("CONFIG(config) requires one or two arguments."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
if (args.count() == 1)
|
2016-05-13 13:26:42 +00:00
|
|
|
return returnBool(isActiveConfig(args.at(0).toQStringRef()));
|
2012-09-05 16:29:19 +00:00
|
|
|
const QStringList &mutuals = args.at(1).toQString(m_tmp2).split(QLatin1Char('|'));
|
|
|
|
const ProStringList &configs = values(statics.strCONFIG);
|
|
|
|
|
|
|
|
for (int i = configs.size() - 1; i >= 0; i--) {
|
|
|
|
for (int mut = 0; mut < mutuals.count(); mut++) {
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
(cherry picked from qtcreator/29a93998df8405e8799ad23934a56cd99fb36403)
Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
2013-01-08 01:32:53 +00:00
|
|
|
if (configs[i] == mutuals[mut].trimmed())
|
2012-09-05 16:29:19 +00:00
|
|
|
return returnBool(configs[i] == args[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
case T_CONTAINS: {
|
|
|
|
if (args.count() < 2 || args.count() > 3) {
|
|
|
|
evalError(fL1S("contains(var, val) requires two or three arguments."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &qry = args.at(1).toQString(m_tmp1);
|
|
|
|
QRegExp regx;
|
|
|
|
if (qry != QRegExp::escape(qry)) {
|
|
|
|
QString copy = qry;
|
|
|
|
copy.detach();
|
|
|
|
regx.setPattern(copy);
|
|
|
|
}
|
|
|
|
const ProStringList &l = values(map(args.at(0)));
|
|
|
|
if (args.count() == 2) {
|
|
|
|
int t = 0;
|
|
|
|
for (int i = 0; i < l.size(); ++i) {
|
|
|
|
const ProString &val = l[i];
|
|
|
|
if ((!regx.isEmpty() && regx.exactMatch(val.toQString(m_tmp[t]))) || val == qry)
|
|
|
|
return ReturnTrue;
|
|
|
|
t ^= 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const QStringList &mutuals = args.at(2).toQString(m_tmp3).split(QLatin1Char('|'));
|
|
|
|
for (int i = l.size() - 1; i >= 0; i--) {
|
|
|
|
const ProString val = l[i];
|
|
|
|
for (int mut = 0; mut < mutuals.count(); mut++) {
|
|
|
|
if (val == mutuals[mut].trimmed()) {
|
|
|
|
return returnBool((!regx.isEmpty()
|
|
|
|
&& regx.exactMatch(val.toQString(m_tmp2)))
|
|
|
|
|| val == qry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
case T_COUNT: {
|
|
|
|
if (args.count() != 2 && args.count() != 3) {
|
|
|
|
evalError(fL1S("count(var, count, op=\"equals\") requires two or three arguments."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
int cnt = values(map(args.at(0))).count();
|
2016-05-13 11:44:42 +00:00
|
|
|
int val = args.at(1).toInt();
|
2012-09-05 16:29:19 +00:00
|
|
|
if (args.count() == 3) {
|
|
|
|
const ProString &comp = args.at(2);
|
|
|
|
if (comp == QLatin1String(">") || comp == QLatin1String("greaterThan")) {
|
|
|
|
return returnBool(cnt > val);
|
|
|
|
} else if (comp == QLatin1String(">=")) {
|
|
|
|
return returnBool(cnt >= val);
|
|
|
|
} else if (comp == QLatin1String("<") || comp == QLatin1String("lessThan")) {
|
|
|
|
return returnBool(cnt < val);
|
|
|
|
} else if (comp == QLatin1String("<=")) {
|
|
|
|
return returnBool(cnt <= val);
|
|
|
|
} else if (comp == QLatin1String("equals") || comp == QLatin1String("isEqual")
|
|
|
|
|| comp == QLatin1String("=") || comp == QLatin1String("==")) {
|
2014-04-02 18:38:57 +00:00
|
|
|
// fallthrough
|
2012-09-05 16:29:19 +00:00
|
|
|
} else {
|
|
|
|
evalError(fL1S("Unexpected modifier to count(%2).").arg(comp.toQString(m_tmp1)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
}
|
2014-04-02 18:38:57 +00:00
|
|
|
return returnBool(cnt == val);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
case T_GREATERTHAN:
|
|
|
|
case T_LESSTHAN: {
|
|
|
|
if (args.count() != 2) {
|
|
|
|
evalError(fL1S("%1(variable, value) requires two arguments.")
|
|
|
|
.arg(function.toQString(m_tmp1)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
2016-05-13 13:17:54 +00:00
|
|
|
const ProString &rhs = args.at(1);
|
|
|
|
const QString &lhs = values(map(args.at(0))).join(statics.field_sep);
|
2012-09-05 16:29:19 +00: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)
|
2016-05-13 13:17:54 +00:00
|
|
|
return returnBool(lhs > rhs.toQStringRef());
|
|
|
|
return returnBool(lhs < rhs.toQStringRef());
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
case T_EQUALS:
|
|
|
|
if (args.count() != 2) {
|
|
|
|
evalError(fL1S("%1(variable, value) requires two arguments.")
|
|
|
|
.arg(function.toQString(m_tmp1)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
return returnBool(values(map(args.at(0))).join(statics.field_sep)
|
|
|
|
== args.at(1).toQString(m_tmp1));
|
|
|
|
case T_CLEAR: {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("%1(variable) requires one argument.")
|
|
|
|
.arg(function.toQString(m_tmp1)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
ProValueMap *hsh;
|
|
|
|
ProValueMap::Iterator it;
|
|
|
|
const ProKey &var = map(args.at(0));
|
|
|
|
if (!(hsh = findValues(var, &it)))
|
|
|
|
return ReturnFalse;
|
|
|
|
if (hsh == &m_valuemapStack.top())
|
|
|
|
it->clear();
|
|
|
|
else
|
|
|
|
m_valuemapStack.top()[var].clear();
|
|
|
|
return ReturnTrue;
|
|
|
|
}
|
|
|
|
case T_UNSET: {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("%1(variable) requires one argument.")
|
|
|
|
.arg(function.toQString(m_tmp1)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
ProValueMap *hsh;
|
|
|
|
ProValueMap::Iterator it;
|
|
|
|
const ProKey &var = map(args.at(0));
|
|
|
|
if (!(hsh = findValues(var, &it)))
|
|
|
|
return ReturnFalse;
|
|
|
|
if (m_valuemapStack.size() == 1)
|
|
|
|
hsh->erase(it);
|
|
|
|
else if (hsh == &m_valuemapStack.top())
|
|
|
|
*it = statics.fakeValue;
|
|
|
|
else
|
|
|
|
m_valuemapStack.top()[var] = statics.fakeValue;
|
|
|
|
return ReturnTrue;
|
|
|
|
}
|
2013-09-05 05:55:49 +00:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
case T_PARSE_JSON: {
|
|
|
|
if (args.count() != 2) {
|
|
|
|
evalError(fL1S("parseJson(variable, into) requires two arguments."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray json = values(args.at(0).toKey()).join(QLatin1Char(' ')).toUtf8();
|
|
|
|
QString parseInto = args.at(1).toQString(m_tmp2);
|
|
|
|
return parseJsonInto(json, parseInto, &m_valuemapStack.top());
|
|
|
|
}
|
|
|
|
#endif
|
2012-09-05 16:29:19 +00:00
|
|
|
case T_INCLUDE: {
|
|
|
|
if (args.count() < 1 || args.count() > 3) {
|
|
|
|
evalError(fL1S("include(file, [into, [silent]]) requires one, two or three arguments."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
QString parseInto;
|
|
|
|
LoadFlags flags = 0;
|
2013-08-08 16:01:22 +00:00
|
|
|
if (m_cumulative)
|
|
|
|
flags = LoadSilent;
|
2012-09-05 16:29:19 +00:00
|
|
|
if (args.count() >= 2) {
|
2016-08-22 15:25:02 +00:00
|
|
|
if (!args.at(1).isEmpty())
|
|
|
|
parseInto = args.at(1) + QLatin1Char('.');
|
2016-05-13 11:45:48 +00:00
|
|
|
if (args.count() >= 3 && isTrue(args.at(2)))
|
2012-09-05 16:29:19 +00:00
|
|
|
flags = LoadSilent;
|
|
|
|
}
|
|
|
|
QString fn = resolvePath(m_option->expandEnvVars(args.at(0).toQString(m_tmp1)));
|
|
|
|
fn.detach();
|
2012-09-19 19:56:16 +00:00
|
|
|
VisitReturn ok;
|
2012-09-05 16:29:19 +00:00
|
|
|
if (parseInto.isEmpty()) {
|
|
|
|
ok = evaluateFileChecked(fn, QMakeHandler::EvalIncludeFile, LoadProOnly | flags);
|
|
|
|
} else {
|
|
|
|
ProValueMap symbols;
|
2012-09-19 19:56:16 +00:00
|
|
|
if ((ok = evaluateFileInto(fn, &symbols, LoadAll | flags)) == ReturnTrue) {
|
2012-09-05 16:29:19 +00:00
|
|
|
ProValueMap newMap;
|
|
|
|
for (ProValueMap::ConstIterator
|
|
|
|
it = m_valuemapStack.top().constBegin(),
|
|
|
|
end = m_valuemapStack.top().constEnd();
|
|
|
|
it != end; ++it) {
|
2016-08-22 15:25:02 +00:00
|
|
|
const ProString &ky = it.key();
|
|
|
|
if (!ky.startsWith(parseInto))
|
2012-09-05 16:29:19 +00:00
|
|
|
newMap[it.key()] = it.value();
|
|
|
|
}
|
|
|
|
for (ProValueMap::ConstIterator it = symbols.constBegin();
|
|
|
|
it != symbols.constEnd(); ++it) {
|
|
|
|
const QString &ky = it.key().toQString(m_tmp1);
|
|
|
|
if (!ky.startsWith(QLatin1Char('.')))
|
2016-08-22 15:25:02 +00:00
|
|
|
newMap.insert(ProKey(parseInto + ky), it.value());
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
m_valuemapStack.top() = newMap;
|
|
|
|
}
|
|
|
|
}
|
2012-09-19 19:56:16 +00:00
|
|
|
if (ok == ReturnFalse && (flags & LoadSilent))
|
|
|
|
ok = ReturnTrue;
|
|
|
|
return ok;
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
case T_LOAD: {
|
|
|
|
bool ignore_error = false;
|
|
|
|
if (args.count() == 2) {
|
2016-05-13 11:45:48 +00:00
|
|
|
ignore_error = isTrue(args.at(1));
|
2012-09-05 16:29:19 +00:00
|
|
|
} else if (args.count() != 1) {
|
|
|
|
evalError(fL1S("load(feature) requires one or two arguments."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
2012-09-19 19:56:16 +00:00
|
|
|
VisitReturn ok = evaluateFeatureFile(m_option->expandEnvVars(args.at(0).toQString()),
|
|
|
|
ignore_error);
|
|
|
|
if (ok == ReturnFalse && ignore_error)
|
|
|
|
ok = ReturnTrue;
|
|
|
|
return ok;
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
case T_DEBUG: {
|
|
|
|
#ifdef PROEVALUATOR_DEBUG
|
|
|
|
if (args.count() != 2) {
|
|
|
|
evalError(fL1S("debug(level, message) requires two arguments."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
int level = args.at(0).toInt();
|
|
|
|
if (level <= m_debugLevel) {
|
|
|
|
const QString &msg = m_option->expandEnvVars(args.at(1).toQString(m_tmp2));
|
|
|
|
debugMsg(level, "Project DEBUG: %s", qPrintable(msg));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return ReturnTrue;
|
|
|
|
}
|
|
|
|
case T_LOG:
|
|
|
|
case T_ERROR:
|
|
|
|
case T_WARNING:
|
|
|
|
case T_MESSAGE: {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("%1(message) requires one argument.")
|
|
|
|
.arg(function.toQString(m_tmp1)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
const QString &msg = m_option->expandEnvVars(args.at(0).toQString(m_tmp2));
|
|
|
|
if (!m_skipLevel) {
|
|
|
|
if (func_t == T_LOG) {
|
|
|
|
#ifdef PROEVALUATOR_FULL
|
|
|
|
fputs(msg.toLatin1().constData(), stderr);
|
|
|
|
#endif
|
2016-07-14 14:48:25 +00:00
|
|
|
} else if (!msg.isEmpty() || func_t != T_ERROR) {
|
2013-09-02 14:43:49 +00:00
|
|
|
m_handler->fileMessage(
|
|
|
|
(func_t == T_ERROR ? QMakeHandler::ErrorMessage :
|
|
|
|
func_t == T_WARNING ? QMakeHandler::WarningMessage :
|
|
|
|
QMakeHandler::InfoMessage)
|
|
|
|
| (m_cumulative ? QMakeHandler::CumulativeEvalMessage : 0),
|
|
|
|
fL1S("Project %1: %2").arg(function.toQString(m_tmp1).toUpper(), msg));
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return (func_t == T_ERROR && !m_cumulative) ? ReturnError : ReturnTrue;
|
|
|
|
}
|
|
|
|
case T_SYSTEM: {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("system(exec) requires one argument."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
2013-05-16 13:21:20 +00:00
|
|
|
#ifdef PROEVALUATOR_FULL
|
|
|
|
if (m_cumulative) // Anything else would be insanity
|
|
|
|
return ReturnFalse;
|
2012-09-05 16:29:19 +00:00
|
|
|
#ifndef QT_BOOTSTRAPPED
|
|
|
|
QProcess proc;
|
|
|
|
proc.setProcessChannelMode(QProcess::ForwardedChannels);
|
|
|
|
runProcess(&proc, args.at(0).toQString(m_tmp2));
|
|
|
|
return returnBool(proc.exitStatus() == QProcess::NormalExit && proc.exitCode() == 0);
|
|
|
|
#else
|
2016-07-14 16:10:50 +00:00
|
|
|
int ec = system((QLatin1String("cd ")
|
|
|
|
+ IoUtils::shellQuote(QDir::toNativeSeparators(currentDirectory()))
|
|
|
|
+ QLatin1String(" && ") + args.at(0)).toLocal8Bit().constData());
|
|
|
|
# ifdef Q_OS_UNIX
|
|
|
|
if (ec != -1 && WIFSIGNALED(ec) && (WTERMSIG(ec) == SIGQUIT || WTERMSIG(ec) == SIGINT))
|
|
|
|
raise(WTERMSIG(ec));
|
|
|
|
# endif
|
|
|
|
return returnBool(ec == 0);
|
2012-09-05 16:29:19 +00:00
|
|
|
#endif
|
2013-05-16 13:21:20 +00:00
|
|
|
#else
|
|
|
|
return ReturnTrue;
|
2012-09-05 16:29:19 +00:00
|
|
|
#endif
|
2013-05-16 13:21:20 +00:00
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
case T_ISEMPTY: {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("isEmpty(var) requires one argument."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
return returnBool(values(map(args.at(0))).isEmpty());
|
|
|
|
}
|
|
|
|
case T_EXISTS: {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("exists(file) requires one argument."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
const QString &file = resolvePath(m_option->expandEnvVars(args.at(0).toQString(m_tmp1)));
|
|
|
|
|
2013-05-29 18:18:51 +00:00
|
|
|
// Don't use VFS here:
|
|
|
|
// - it supports neither listing nor even directories
|
|
|
|
// - it's unlikely that somebody would test for files they created themselves
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
(cherry picked from qtcreator/29a93998df8405e8799ad23934a56cd99fb36403)
Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
2013-01-08 01:32:53 +00:00
|
|
|
if (IoUtils::exists(file))
|
2012-09-05 16:29:19 +00:00
|
|
|
return ReturnTrue;
|
|
|
|
int slsh = file.lastIndexOf(QLatin1Char('/'));
|
|
|
|
QString fn = file.mid(slsh+1);
|
|
|
|
if (fn.contains(QLatin1Char('*')) || fn.contains(QLatin1Char('?'))) {
|
|
|
|
QString dirstr = file.left(slsh+1);
|
|
|
|
if (!QDir(dirstr).entryList(QStringList(fn)).isEmpty())
|
|
|
|
return ReturnTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
case T_MKPATH: {
|
|
|
|
if (args.count() != 1) {
|
|
|
|
evalError(fL1S("mkpath(file) requires one argument."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
2013-05-16 13:21:20 +00:00
|
|
|
#ifdef PROEVALUATOR_FULL
|
2012-09-05 16:29:19 +00:00
|
|
|
const QString &fn = resolvePath(args.at(0).toQString(m_tmp1));
|
|
|
|
if (!QDir::current().mkpath(fn)) {
|
|
|
|
evalError(fL1S("Cannot create directory %1.").arg(QDir::toNativeSeparators(fn)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
2013-05-16 13:21:20 +00:00
|
|
|
#endif
|
2012-09-05 16:29:19 +00:00
|
|
|
return ReturnTrue;
|
|
|
|
}
|
|
|
|
case T_WRITE_FILE: {
|
|
|
|
if (args.count() > 3) {
|
2015-12-11 11:08:47 +00:00
|
|
|
evalError(fL1S("write_file(name, [content var, [append] [exe]]) requires one to three arguments."));
|
2012-09-05 16:29:19 +00:00
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
QIODevice::OpenMode mode = QIODevice::Truncate;
|
2015-12-11 11:08:47 +00:00
|
|
|
bool exe = false;
|
2012-09-05 16:29:19 +00:00
|
|
|
QString contents;
|
|
|
|
if (args.count() >= 2) {
|
|
|
|
const ProStringList &vals = values(args.at(1).toKey());
|
|
|
|
if (!vals.isEmpty())
|
2014-02-05 18:54:01 +00:00
|
|
|
contents = vals.join(QLatin1Char('\n')) + QLatin1Char('\n');
|
2015-12-11 11:08:47 +00:00
|
|
|
if (args.count() >= 3) {
|
2016-05-13 13:40:00 +00:00
|
|
|
const auto opts = split_value_list(args.at(2).toQStringRef());
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &opt : opts) {
|
2015-12-11 11:08:47 +00:00
|
|
|
opt.toQString(m_tmp3);
|
|
|
|
if (m_tmp3 == QLatin1String("append")) {
|
|
|
|
mode = QIODevice::Append;
|
|
|
|
} else if (m_tmp3 == QLatin1String("exe")) {
|
|
|
|
exe = true;
|
|
|
|
} else {
|
|
|
|
evalError(fL1S("write_file(): invalid flag %1.").arg(m_tmp3));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
2014-01-14 13:21:10 +00:00
|
|
|
QString path = resolvePath(args.at(0).toQString(m_tmp1));
|
|
|
|
path.detach(); // make sure to not leak m_tmp1 into the map of written files.
|
2015-12-11 11:08:47 +00:00
|
|
|
return writeFile(QString(), path, mode, exe, contents);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
case T_TOUCH: {
|
|
|
|
if (args.count() != 2) {
|
|
|
|
evalError(fL1S("touch(file, reffile) requires two arguments."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
2013-05-16 13:21:20 +00:00
|
|
|
#ifdef PROEVALUATOR_FULL
|
2012-09-05 16:29:19 +00:00
|
|
|
const QString &tfn = resolvePath(args.at(0).toQString(m_tmp1));
|
|
|
|
const QString &rfn = resolvePath(args.at(1).toQString(m_tmp2));
|
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
struct stat st;
|
|
|
|
if (stat(rfn.toLocal8Bit().constData(), &st)) {
|
|
|
|
evalError(fL1S("Cannot stat() reference file %1: %2.").arg(rfn, fL1S(strerror(errno))));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
struct utimbuf utb;
|
|
|
|
utb.actime = time(0);
|
|
|
|
utb.modtime = st.st_mtime;
|
|
|
|
if (utime(tfn.toLocal8Bit().constData(), &utb)) {
|
|
|
|
evalError(fL1S("Cannot touch %1: %2.").arg(tfn, fL1S(strerror(errno))));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
HANDLE rHand = CreateFile((wchar_t*)rfn.utf16(),
|
|
|
|
GENERIC_READ, FILE_SHARE_READ,
|
|
|
|
NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
|
|
if (rHand == INVALID_HANDLE_VALUE) {
|
2015-05-13 19:09:43 +00:00
|
|
|
evalError(fL1S("Cannot open reference file %1: %2").arg(rfn, windowsErrorCode()));
|
2012-09-05 16:29:19 +00:00
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
FILETIME ft;
|
|
|
|
GetFileTime(rHand, 0, 0, &ft);
|
|
|
|
CloseHandle(rHand);
|
|
|
|
HANDLE wHand = CreateFile((wchar_t*)tfn.utf16(),
|
|
|
|
GENERIC_WRITE, FILE_SHARE_READ,
|
|
|
|
NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
|
|
if (wHand == INVALID_HANDLE_VALUE) {
|
2015-05-13 19:09:43 +00:00
|
|
|
evalError(fL1S("Cannot open %1: %2").arg(tfn, windowsErrorCode()));
|
2012-09-05 16:29:19 +00:00
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
SetFileTime(wHand, 0, 0, &ft);
|
|
|
|
CloseHandle(wHand);
|
2013-05-16 13:21:20 +00:00
|
|
|
#endif
|
2012-09-05 16:29:19 +00:00
|
|
|
#endif
|
|
|
|
return ReturnTrue;
|
|
|
|
}
|
|
|
|
case T_CACHE: {
|
|
|
|
if (args.count() > 3) {
|
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
|
|
|
evalError(fL1S("cache(var, [set|add|sub] [transient] [super|stash], [srcvar]) requires one to three arguments."));
|
2012-09-05 16:29:19 +00:00
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
bool persist = true;
|
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
|
|
|
enum { TargetStash, TargetCache, TargetSuper } target = TargetCache;
|
2012-09-05 16:29:19 +00:00
|
|
|
enum { CacheSet, CacheAdd, CacheSub } mode = CacheSet;
|
|
|
|
ProKey srcvar;
|
|
|
|
if (args.count() >= 2) {
|
2016-05-13 13:40:00 +00:00
|
|
|
const auto opts = split_value_list(args.at(1).toQStringRef());
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &opt : opts) {
|
2012-09-05 16:29:19 +00:00
|
|
|
opt.toQString(m_tmp3);
|
|
|
|
if (m_tmp3 == QLatin1String("transient")) {
|
|
|
|
persist = false;
|
|
|
|
} else if (m_tmp3 == QLatin1String("super")) {
|
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
|
|
|
target = TargetSuper;
|
|
|
|
} else if (m_tmp3 == QLatin1String("stash")) {
|
|
|
|
target = TargetStash;
|
2012-09-05 16:29:19 +00:00
|
|
|
} else if (m_tmp3 == QLatin1String("set")) {
|
|
|
|
mode = CacheSet;
|
|
|
|
} else if (m_tmp3 == QLatin1String("add")) {
|
|
|
|
mode = CacheAdd;
|
|
|
|
} else if (m_tmp3 == QLatin1String("sub")) {
|
|
|
|
mode = CacheSub;
|
|
|
|
} else {
|
|
|
|
evalError(fL1S("cache(): invalid flag %1.").arg(m_tmp3));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (args.count() >= 3) {
|
|
|
|
srcvar = args.at(2).toKey();
|
|
|
|
} else if (mode != CacheSet) {
|
|
|
|
evalError(fL1S("cache(): modes other than 'set' require a source variable."));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
QString varstr;
|
|
|
|
ProKey dstvar = args.at(0).toKey();
|
|
|
|
if (!dstvar.isEmpty()) {
|
|
|
|
if (srcvar.isEmpty())
|
|
|
|
srcvar = dstvar;
|
|
|
|
ProValueMap::Iterator srcvarIt;
|
|
|
|
if (!findValues(srcvar, &srcvarIt)) {
|
|
|
|
evalError(fL1S("Variable %1 is not defined.").arg(srcvar.toQString(m_tmp1)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
// The caches for the host and target may differ (e.g., when we are manipulating
|
|
|
|
// CONFIG), so we cannot compute a common new value for both.
|
|
|
|
const ProStringList &diffval = *srcvarIt;
|
|
|
|
ProStringList newval;
|
|
|
|
bool changed = false;
|
|
|
|
for (bool hostBuild = false; ; hostBuild = true) {
|
2013-07-23 15:57:44 +00:00
|
|
|
#ifdef PROEVALUATOR_THREAD_SAFE
|
|
|
|
m_option->mutex.lock();
|
|
|
|
#endif
|
|
|
|
QMakeBaseEnv *baseEnv =
|
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
|
|
|
m_option->baseEnvs.value(QMakeBaseKey(m_buildRoot, m_stashfile, hostBuild));
|
2013-07-23 15:57:44 +00:00
|
|
|
#ifdef PROEVALUATOR_THREAD_SAFE
|
|
|
|
// It's ok to unlock this before locking baseEnv,
|
|
|
|
// as we have no intention to initialize the env.
|
|
|
|
m_option->mutex.unlock();
|
|
|
|
#endif
|
|
|
|
do {
|
|
|
|
if (!baseEnv)
|
|
|
|
break;
|
|
|
|
#ifdef PROEVALUATOR_THREAD_SAFE
|
|
|
|
QMutexLocker locker(&baseEnv->mutex);
|
2013-08-12 19:12:36 +00:00
|
|
|
if (baseEnv->inProgress && baseEnv->evaluator != this) {
|
2013-07-23 15:57:44 +00:00
|
|
|
// The env is still in the works, but it may be already past the cache
|
|
|
|
// loading. So we need to wait for completion and amend it as usual.
|
|
|
|
QThreadPool::globalInstance()->releaseThread();
|
|
|
|
baseEnv->cond.wait(&baseEnv->mutex);
|
|
|
|
QThreadPool::globalInstance()->reserveThread();
|
|
|
|
}
|
|
|
|
if (!baseEnv->isOk)
|
|
|
|
break;
|
|
|
|
#endif
|
2012-09-05 16:29:19 +00:00
|
|
|
QMakeEvaluator *baseEval = baseEnv->evaluator;
|
|
|
|
const ProStringList &oldval = baseEval->values(dstvar);
|
|
|
|
if (mode == CacheSet) {
|
|
|
|
newval = diffval;
|
|
|
|
} else {
|
|
|
|
newval = oldval;
|
|
|
|
if (mode == CacheAdd)
|
|
|
|
newval += diffval;
|
|
|
|
else
|
2015-01-30 18:18:54 +00:00
|
|
|
newval.removeEach(diffval);
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
if (oldval != newval) {
|
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
|
|
|
if (target != TargetStash || !m_stashfile.isEmpty()) {
|
|
|
|
baseEval->valuesRef(dstvar) = newval;
|
|
|
|
if (target == TargetSuper) {
|
|
|
|
do {
|
|
|
|
if (dstvar == QLatin1String("QMAKEPATH")) {
|
|
|
|
baseEval->m_qmakepath = newval.toQStringList();
|
|
|
|
baseEval->updateMkspecPaths();
|
|
|
|
} else if (dstvar == QLatin1String("QMAKEFEATURES")) {
|
|
|
|
baseEval->m_qmakefeatures = newval.toQStringList();
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
baseEval->updateFeaturePaths();
|
|
|
|
if (hostBuild == m_hostBuild)
|
|
|
|
m_featureRoots = baseEval->m_featureRoots;
|
|
|
|
} while (false);
|
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
|
|
|
changed = true;
|
|
|
|
}
|
2013-07-23 15:57:44 +00:00
|
|
|
} while (false);
|
2012-09-05 16:29:19 +00:00
|
|
|
if (hostBuild)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// We assume that whatever got the cached value to be what it is now will do so
|
|
|
|
// the next time as well, so we just skip the persisting if nothing changed.
|
|
|
|
if (!persist || !changed)
|
|
|
|
return ReturnTrue;
|
|
|
|
varstr = dstvar.toQString();
|
|
|
|
if (mode == CacheAdd)
|
|
|
|
varstr += QLatin1String(" +=");
|
|
|
|
else if (mode == CacheSub)
|
|
|
|
varstr += QLatin1String(" -=");
|
|
|
|
else
|
|
|
|
varstr += QLatin1String(" =");
|
|
|
|
if (diffval.count() == 1) {
|
|
|
|
varstr += QLatin1Char(' ');
|
|
|
|
varstr += quoteValue(diffval.at(0));
|
|
|
|
} else if (!diffval.isEmpty()) {
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &vval : diffval) {
|
2012-09-05 16:29:19 +00:00
|
|
|
varstr += QLatin1String(" \\\n ");
|
|
|
|
varstr += quoteValue(vval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
varstr += QLatin1Char('\n');
|
|
|
|
}
|
|
|
|
QString fn;
|
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
|
|
|
if (target == TargetSuper) {
|
2012-09-05 16:29:19 +00:00
|
|
|
if (m_superfile.isEmpty()) {
|
2013-11-07 19:41:20 +00:00
|
|
|
m_superfile = QDir::cleanPath(m_outputDir + QLatin1String("/.qmake.super"));
|
2014-03-26 20:20:00 +00:00
|
|
|
printf("Info: creating super cache file %s\n", qPrintable(QDir::toNativeSeparators(m_superfile)));
|
2012-09-05 16:29:19 +00:00
|
|
|
valuesRef(ProKey("_QMAKE_SUPER_CACHE_")) << ProString(m_superfile);
|
|
|
|
}
|
|
|
|
fn = m_superfile;
|
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
|
|
|
} else if (target == TargetCache) {
|
2012-09-05 16:29:19 +00:00
|
|
|
if (m_cachefile.isEmpty()) {
|
2013-11-07 19:41:20 +00:00
|
|
|
m_cachefile = QDir::cleanPath(m_outputDir + QLatin1String("/.qmake.cache"));
|
2014-03-26 20:20:00 +00:00
|
|
|
printf("Info: creating cache file %s\n", qPrintable(QDir::toNativeSeparators(m_cachefile)));
|
2012-09-05 16:29:19 +00:00
|
|
|
valuesRef(ProKey("_QMAKE_CACHE_")) << ProString(m_cachefile);
|
|
|
|
// We could update m_{source,build}Root and m_featureRoots here, or even
|
|
|
|
// "re-home" our rootEnv, but this doesn't sound too useful - if somebody
|
|
|
|
// wanted qmake to find something in the build directory, he could have
|
|
|
|
// done so "from the outside".
|
|
|
|
// The sub-projects will find the new cache all by themselves.
|
|
|
|
}
|
|
|
|
fn = m_cachefile;
|
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
|
|
|
} else {
|
|
|
|
fn = m_stashfile;
|
|
|
|
if (fn.isEmpty())
|
|
|
|
fn = QDir::cleanPath(m_outputDir + QLatin1String("/.qmake.stash"));
|
|
|
|
if (!m_vfs->exists(fn)) {
|
2014-03-26 20:20:00 +00:00
|
|
|
printf("Info: creating stash file %s\n", qPrintable(QDir::toNativeSeparators(fn)));
|
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
|
|
|
valuesRef(ProKey("_QMAKE_STASH_")) << ProString(fn);
|
|
|
|
}
|
2012-09-05 16:29:19 +00:00
|
|
|
}
|
2015-12-11 11:08:47 +00:00
|
|
|
return writeFile(fL1S("cache "), fn, QIODevice::Append, false, varstr);
|
2013-05-16 13:21:20 +00:00
|
|
|
}
|
2016-11-24 17:41:48 +00:00
|
|
|
case T_RELOAD_PROPERTIES:
|
|
|
|
#ifdef QT_BUILD_QMAKE
|
|
|
|
m_option->reloadProperties();
|
|
|
|
#endif
|
|
|
|
return ReturnTrue;
|
2012-09-05 16:29:19 +00:00
|
|
|
default:
|
|
|
|
evalError(fL1S("Function '%1' is not implemented.").arg(function.toQString(m_tmp1)));
|
|
|
|
return ReturnFalse;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|