2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
**
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "environment.h"
|
|
|
|
|
2012-08-23 15:53:58 +02:00
|
|
|
#include "hostosinfo.h"
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDir>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QString>
|
2012-04-30 19:01:26 +02:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
|
|
|
class SystemEnvironment : public Utils::Environment
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SystemEnvironment()
|
|
|
|
: Environment(QProcess::systemEnvironment())
|
|
|
|
{
|
2012-08-23 15:53:58 +02:00
|
|
|
if (Utils::HostOsInfo::isLinuxHost()) {
|
|
|
|
QString ldLibraryPath = value(QLatin1String("LD_LIBRARY_PATH"));
|
|
|
|
QDir lib(QCoreApplication::applicationDirPath());
|
|
|
|
lib.cd("../lib");
|
|
|
|
QString toReplace = lib.path();
|
|
|
|
lib.cd("qtcreator");
|
|
|
|
toReplace.append(QLatin1String(":"));
|
|
|
|
toReplace.append(lib.path());
|
|
|
|
|
|
|
|
if (ldLibraryPath.startsWith(toReplace))
|
|
|
|
set(QLatin1String("LD_LIBRARY_PATH"), ldLibraryPath.remove(0, toReplace.length()));
|
|
|
|
}
|
2012-04-30 19:01:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Q_GLOBAL_STATIC(SystemEnvironment, staticSystemEnvironment)
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-05-24 12:04:24 +02:00
|
|
|
namespace Utils {
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-12-06 16:45:07 +01:00
|
|
|
static bool sortEnvironmentItem(const EnvironmentItem &a, const EnvironmentItem &b)
|
|
|
|
{
|
|
|
|
return a.name < b.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnvironmentItem::sort(QList<EnvironmentItem> *list)
|
|
|
|
{
|
|
|
|
qSort(list->begin(), list->end(), &sortEnvironmentItem);
|
|
|
|
}
|
|
|
|
|
2011-05-24 12:04:24 +02:00
|
|
|
QList<EnvironmentItem> EnvironmentItem::fromStringList(const QStringList &list)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
QList<EnvironmentItem> result;
|
|
|
|
foreach (const QString &string, list) {
|
|
|
|
int pos = string.indexOf(QLatin1Char('='));
|
2008-12-09 11:07:24 +01:00
|
|
|
if (pos == -1) {
|
2010-02-01 12:43:56 +01:00
|
|
|
EnvironmentItem item(string, QString());
|
2008-12-02 12:01:29 +01:00
|
|
|
item.unset = true;
|
|
|
|
result.append(item);
|
|
|
|
} else {
|
|
|
|
EnvironmentItem item(string.left(pos), string.mid(pos+1));
|
|
|
|
result.append(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-05-24 12:04:24 +02:00
|
|
|
QStringList EnvironmentItem::toStringList(const QList<EnvironmentItem> &list)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
QStringList result;
|
|
|
|
foreach (const EnvironmentItem &item, list) {
|
2008-12-09 11:07:24 +01:00
|
|
|
if (item.unset)
|
2008-12-02 12:01:29 +01:00
|
|
|
result << QString(item.name);
|
|
|
|
else
|
2012-01-04 17:34:08 +01:00
|
|
|
result << QString(item.name + QLatin1Char('=') + item.value);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-05-24 12:04:24 +02:00
|
|
|
Environment::Environment(const QStringList &env)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2008-12-09 11:07:24 +01:00
|
|
|
foreach (const QString &s, env) {
|
2011-05-24 11:57:26 +02:00
|
|
|
int i = s.indexOf(QLatin1Char('='));
|
2008-12-09 11:07:24 +01:00
|
|
|
if (i >= 0) {
|
2012-08-23 15:53:58 +02:00
|
|
|
if (HostOsInfo::isWindowsHost())
|
|
|
|
m_values.insert(s.left(i).toUpper(), s.mid(i+1));
|
|
|
|
else
|
|
|
|
m_values.insert(s.left(i), s.mid(i+1));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-13 17:25:09 +01:00
|
|
|
QStringList Environment::toStringList() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
QStringList result;
|
2009-01-13 17:25:09 +01:00
|
|
|
const QMap<QString, QString>::const_iterator end = m_values.constEnd();
|
|
|
|
for (QMap<QString, QString>::const_iterator it = m_values.constBegin(); it != end; ++it) {
|
|
|
|
QString entry = it.key();
|
|
|
|
entry += QLatin1Char('=');
|
|
|
|
entry += it.value();
|
|
|
|
result.push_back(entry);
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::set(const QString &key, const QString &value)
|
|
|
|
{
|
2012-08-23 15:53:58 +02:00
|
|
|
m_values.insert(HostOsInfo::isWindowsHost() ? key.toUpper() : key, value);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::unset(const QString &key)
|
|
|
|
{
|
2012-08-23 15:53:58 +02:00
|
|
|
m_values.remove(HostOsInfo::isWindowsHost() ? key.toUpper() : key);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::appendOrSet(const QString &key, const QString &value, const QString &sep)
|
|
|
|
{
|
2012-08-23 15:53:58 +02:00
|
|
|
const QString &_key = HostOsInfo::isWindowsHost() ? key.toUpper() : key;
|
|
|
|
QMap<QString, QString>::iterator it = m_values.find(_key);
|
2010-02-17 17:38:48 +01:00
|
|
|
if (it == m_values.end()) {
|
2008-12-02 12:01:29 +01:00
|
|
|
m_values.insert(_key, value);
|
|
|
|
} else {
|
2010-02-17 17:38:48 +01:00
|
|
|
// Append unless it is already there
|
|
|
|
const QString toAppend = sep + value;
|
|
|
|
if (!it.value().endsWith(toAppend))
|
|
|
|
it.value().append(toAppend);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::prependOrSet(const QString&key, const QString &value, const QString &sep)
|
|
|
|
{
|
2012-08-23 15:53:58 +02:00
|
|
|
const QString &_key = HostOsInfo::isWindowsHost() ? key.toUpper() : key;
|
|
|
|
QMap<QString, QString>::iterator it = m_values.find(_key);
|
2010-02-17 17:38:48 +01:00
|
|
|
if (it == m_values.end()) {
|
2008-12-02 12:01:29 +01:00
|
|
|
m_values.insert(_key, value);
|
|
|
|
} else {
|
2010-02-17 17:38:48 +01:00
|
|
|
// Prepend unless it is already there
|
|
|
|
const QString toPrepend = value + sep;
|
|
|
|
if (!it.value().startsWith(toPrepend))
|
|
|
|
it.value().prepend(toPrepend);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::appendOrSetPath(const QString &value)
|
|
|
|
{
|
2012-08-31 16:39:20 +02:00
|
|
|
appendOrSet(QLatin1String("PATH"), QDir::toNativeSeparators(value),
|
|
|
|
QString(HostOsInfo::pathListSeparator()));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::prependOrSetPath(const QString &value)
|
|
|
|
{
|
2012-08-31 16:39:20 +02:00
|
|
|
prependOrSet(QLatin1String("PATH"), QDir::toNativeSeparators(value),
|
|
|
|
QString(HostOsInfo::pathListSeparator()));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-29 13:25:25 +02:00
|
|
|
void Environment::prependOrSetLibrarySearchPath(const QString &value)
|
|
|
|
{
|
2012-08-23 15:53:58 +02:00
|
|
|
switch (HostOsInfo::hostOs()) {
|
|
|
|
case HostOsInfo::HostOsWindows: {
|
|
|
|
const QChar sep = QLatin1Char(';');
|
|
|
|
const QLatin1String path("PATH");
|
|
|
|
prependOrSet(path, QDir::toNativeSeparators(value), QString(sep));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case HostOsInfo::HostOsLinux:
|
|
|
|
case HostOsInfo::HostOsOtherUnix: {
|
|
|
|
const QChar sep = QLatin1Char(':');
|
|
|
|
const QLatin1String path("LD_LIBRARY_PATH");
|
|
|
|
prependOrSet(path, QDir::toNativeSeparators(value), QString(sep));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: // we could set DYLD_LIBRARY_PATH on Mac but it is unnecessary in practice
|
|
|
|
break;
|
|
|
|
}
|
2011-04-29 13:25:25 +02:00
|
|
|
}
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
Environment Environment::systemEnvironment()
|
|
|
|
{
|
2012-04-30 19:01:26 +02:00
|
|
|
return *staticSystemEnvironment();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::clear()
|
|
|
|
{
|
|
|
|
m_values.clear();
|
|
|
|
}
|
|
|
|
|
2010-09-23 13:08:03 +02:00
|
|
|
QString Environment::searchInPath(const QString &executable,
|
2010-10-18 11:10:55 +02:00
|
|
|
const QStringList &additionalDirs) const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-10-18 11:10:55 +02:00
|
|
|
QStringList execs;
|
|
|
|
execs << executable;
|
2012-08-23 15:53:58 +02:00
|
|
|
if (HostOsInfo::isWindowsHost()) {
|
|
|
|
// Check all the executable extensions on windows:
|
|
|
|
QStringList extensions = value(QLatin1String("PATHEXT")).split(QLatin1Char(';'));
|
|
|
|
|
|
|
|
// .exe.bat is legal (and run when starting new.exe), so always go through the
|
|
|
|
// complete list once:
|
|
|
|
foreach (const QString &ext, extensions)
|
|
|
|
execs << executable + ext.toLower();
|
|
|
|
}
|
2010-10-18 11:10:55 +02:00
|
|
|
return searchInPath(execs, additionalDirs);
|
|
|
|
}
|
2010-09-23 13:08:03 +02:00
|
|
|
|
2010-10-18 11:10:55 +02:00
|
|
|
QString Environment::searchInPath(const QStringList &executables,
|
|
|
|
const QStringList &additionalDirs) const
|
|
|
|
{
|
2011-05-24 12:04:24 +02:00
|
|
|
const QChar slash = QLatin1Char('/');
|
2010-10-18 11:10:55 +02:00
|
|
|
foreach (const QString &executable, executables) {
|
2011-04-29 13:39:43 +02:00
|
|
|
QString exec = QDir::cleanPath(expandVariables(executable));
|
2010-09-23 13:08:03 +02:00
|
|
|
|
2010-10-18 11:10:55 +02:00
|
|
|
if (exec.isEmpty())
|
2010-09-23 13:08:03 +02:00
|
|
|
continue;
|
|
|
|
|
2010-10-18 11:10:55 +02:00
|
|
|
QFileInfo baseFi(exec);
|
|
|
|
if (baseFi.isAbsolute() && baseFi.exists())
|
2011-04-29 13:28:21 +02:00
|
|
|
return exec;
|
2010-10-18 11:10:55 +02:00
|
|
|
|
|
|
|
// Check in directories:
|
|
|
|
foreach (const QString &dir, additionalDirs) {
|
|
|
|
if (dir.isEmpty())
|
|
|
|
continue;
|
|
|
|
QFileInfo fi(dir + QLatin1Char('/') + exec);
|
|
|
|
if (fi.isFile() && fi.isExecutable())
|
|
|
|
return fi.absoluteFilePath();
|
|
|
|
}
|
2010-09-23 13:08:03 +02:00
|
|
|
|
2010-10-18 11:10:55 +02:00
|
|
|
// Check in path:
|
|
|
|
if (exec.indexOf(slash) != -1)
|
|
|
|
continue;
|
|
|
|
foreach (const QString &p, path()) {
|
2012-03-22 11:27:30 +01:00
|
|
|
QString fp = QDir::fromNativeSeparators(p);
|
|
|
|
// Avoid turing / into // on windows which triggers windows to check
|
|
|
|
// for network drives!
|
|
|
|
if (!fp.endsWith(slash))
|
|
|
|
fp += slash;
|
2010-10-18 11:10:55 +02:00
|
|
|
fp += exec;
|
|
|
|
const QFileInfo fi(fp);
|
2011-02-09 13:31:40 +01:00
|
|
|
if (fi.exists() && fi.isExecutable() && !fi.isDir())
|
2010-10-18 11:10:55 +02:00
|
|
|
return fi.absoluteFilePath();
|
|
|
|
}
|
2010-09-23 13:08:03 +02:00
|
|
|
}
|
2010-02-02 17:09:41 +01:00
|
|
|
return QString();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QStringList Environment::path() const
|
|
|
|
{
|
2012-08-31 16:39:20 +02:00
|
|
|
return m_values.value(QLatin1String("PATH")).split(HostOsInfo::pathListSeparator(),
|
|
|
|
QString::SkipEmptyParts);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString Environment::value(const QString &key) const
|
|
|
|
{
|
|
|
|
return m_values.value(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Environment::key(Environment::const_iterator it) const
|
|
|
|
{
|
|
|
|
return it.key();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Environment::value(Environment::const_iterator it) const
|
|
|
|
{
|
|
|
|
return it.value();
|
|
|
|
}
|
|
|
|
|
|
|
|
Environment::const_iterator Environment::constBegin() const
|
|
|
|
{
|
|
|
|
return m_values.constBegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
Environment::const_iterator Environment::constEnd() const
|
|
|
|
{
|
|
|
|
return m_values.constEnd();
|
|
|
|
}
|
|
|
|
|
2010-10-18 21:14:45 +02:00
|
|
|
Environment::const_iterator Environment::constFind(const QString &name) const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
QMap<QString, QString>::const_iterator it = m_values.constFind(name);
|
2008-12-09 11:07:24 +01:00
|
|
|
if (it == m_values.constEnd())
|
2008-12-02 12:01:29 +01:00
|
|
|
return constEnd();
|
|
|
|
else
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Environment::size() const
|
|
|
|
{
|
|
|
|
return m_values.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::modify(const QList<EnvironmentItem> & list)
|
|
|
|
{
|
|
|
|
Environment resultEnvironment = *this;
|
|
|
|
foreach (const EnvironmentItem &item, list) {
|
2008-12-09 11:07:24 +01:00
|
|
|
if (item.unset) {
|
2008-12-02 12:01:29 +01:00
|
|
|
resultEnvironment.unset(item.name);
|
|
|
|
} else {
|
|
|
|
// TODO use variable expansion
|
|
|
|
QString value = item.value;
|
2008-12-09 11:07:24 +01:00
|
|
|
for (int i=0; i < value.size(); ++i) {
|
|
|
|
if (value.at(i) == QLatin1Char('$')) {
|
|
|
|
if ((i + 1) < value.size()) {
|
2008-12-02 12:01:29 +01:00
|
|
|
const QChar &c = value.at(i+1);
|
|
|
|
int end = -1;
|
2012-01-04 17:34:08 +01:00
|
|
|
if (c == QLatin1Char('('))
|
|
|
|
end = value.indexOf(QLatin1Char(')'), i);
|
|
|
|
else if (c == QLatin1Char('{'))
|
|
|
|
end = value.indexOf(QLatin1Char('}'), i);
|
2008-12-09 11:07:24 +01:00
|
|
|
if (end != -1) {
|
2008-12-02 12:01:29 +01:00
|
|
|
const QString &name = value.mid(i+2, end-i-2);
|
2010-10-18 21:14:45 +02:00
|
|
|
Environment::const_iterator it = constFind(name);
|
2008-12-09 11:07:24 +01:00
|
|
|
if (it != constEnd())
|
2008-12-02 12:01:29 +01:00
|
|
|
value.replace(i, end-i+1, it.value());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resultEnvironment.set(item.name, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*this = resultEnvironment;
|
|
|
|
}
|
|
|
|
|
2011-02-15 15:32:20 +01:00
|
|
|
QList<EnvironmentItem> Environment::diff(const Environment &other) const
|
|
|
|
{
|
|
|
|
QMap<QString, QString>::const_iterator thisIt = constBegin();
|
|
|
|
QMap<QString, QString>::const_iterator otherIt = other.constBegin();
|
|
|
|
|
|
|
|
QList<EnvironmentItem> result;
|
|
|
|
while (thisIt != constEnd() || otherIt != other.constEnd()) {
|
|
|
|
if (thisIt == constEnd()) {
|
|
|
|
result.append(Utils::EnvironmentItem(otherIt.key(), otherIt.value()));
|
|
|
|
++otherIt;
|
|
|
|
} else if (otherIt == constEnd()) {
|
|
|
|
Utils::EnvironmentItem item(thisIt.key(), QString());
|
|
|
|
item.unset = true;
|
|
|
|
result.append(item);
|
|
|
|
++thisIt;
|
|
|
|
} else if (thisIt.key() < otherIt.key()) {
|
|
|
|
Utils::EnvironmentItem item(thisIt.key(), QString());
|
|
|
|
item.unset = true;
|
|
|
|
result.append(item);
|
|
|
|
++thisIt;
|
|
|
|
} else if (thisIt.key() > otherIt.key()) {
|
|
|
|
result.append(Utils::EnvironmentItem(otherIt.key(), otherIt.value()));
|
|
|
|
++otherIt;
|
|
|
|
} else {
|
|
|
|
result.append(Utils::EnvironmentItem(otherIt.key(), otherIt.value()));
|
|
|
|
++otherIt;
|
|
|
|
++thisIt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-04-19 18:13:23 +02:00
|
|
|
bool Environment::hasKey(const QString &key)
|
|
|
|
{
|
|
|
|
return m_values.contains(key);
|
|
|
|
}
|
|
|
|
|
2012-08-31 16:47:53 +02:00
|
|
|
QString Environment::userName() const
|
|
|
|
{
|
|
|
|
return value(QLatin1String(HostOsInfo::isWindowsHost() ? "USERNAME" : "USER"));
|
|
|
|
}
|
|
|
|
|
2010-01-11 10:25:15 +01:00
|
|
|
bool Environment::operator!=(const Environment &other) const
|
2009-03-19 18:15:33 +01:00
|
|
|
{
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
|
|
|
|
2010-01-11 10:25:15 +01:00
|
|
|
bool Environment::operator==(const Environment &other) const
|
2009-03-19 18:15:33 +01:00
|
|
|
{
|
|
|
|
return m_values == other.m_values;
|
|
|
|
}
|
|
|
|
|
2010-09-22 15:10:20 +02:00
|
|
|
/** Expand environment variables in a string.
|
|
|
|
*
|
|
|
|
* Environment variables are accepted in the following forms:
|
2010-10-19 11:10:58 +02:00
|
|
|
* $SOMEVAR, ${SOMEVAR} on Unix and %SOMEVAR% on Windows.
|
|
|
|
* No escapes and quoting are supported.
|
|
|
|
* If a variable is not found, it is not substituted.
|
2010-09-22 15:10:20 +02:00
|
|
|
*/
|
|
|
|
QString Environment::expandVariables(const QString &input) const
|
|
|
|
{
|
2010-10-19 11:10:58 +02:00
|
|
|
QString result = input;
|
|
|
|
|
2012-08-23 15:53:58 +02:00
|
|
|
if (HostOsInfo::isWindowsHost()) {
|
|
|
|
for (int vStart = -1, i = 0; i < result.length(); ) {
|
|
|
|
if (result.at(i++) == QLatin1Char('%')) {
|
|
|
|
if (vStart > 0) {
|
|
|
|
const_iterator it = m_values.constFind(result.mid(vStart, i - vStart - 1).toUpper());
|
|
|
|
if (it != m_values.constEnd()) {
|
|
|
|
result.replace(vStart - 1, i - vStart + 1, *it);
|
|
|
|
i = vStart - 1 + it->length();
|
|
|
|
vStart = -1;
|
|
|
|
} else {
|
|
|
|
vStart = i;
|
|
|
|
}
|
2010-10-19 11:10:58 +02:00
|
|
|
} else {
|
|
|
|
vStart = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 15:53:58 +02:00
|
|
|
} else {
|
|
|
|
enum { BASE, OPTIONALVARIABLEBRACE, VARIABLE, BRACEDVARIABLE } state = BASE;
|
|
|
|
int vStart = -1;
|
|
|
|
|
|
|
|
for (int i = 0; i < result.length();) {
|
|
|
|
QChar c = result.at(i++);
|
|
|
|
if (state == BASE) {
|
|
|
|
if (c == QLatin1Char('$'))
|
|
|
|
state = OPTIONALVARIABLEBRACE;
|
|
|
|
} else if (state == OPTIONALVARIABLEBRACE) {
|
|
|
|
if (c == QLatin1Char('{')) {
|
|
|
|
state = BRACEDVARIABLE;
|
|
|
|
vStart = i;
|
|
|
|
} else if (c.isLetterOrNumber() || c == QLatin1Char('_')) {
|
|
|
|
state = VARIABLE;
|
|
|
|
vStart = i - 1;
|
|
|
|
} else {
|
|
|
|
state = BASE;
|
2010-10-19 11:10:58 +02:00
|
|
|
}
|
2012-08-23 15:53:58 +02:00
|
|
|
} else if (state == BRACEDVARIABLE) {
|
|
|
|
if (c == QLatin1Char('}')) {
|
|
|
|
const_iterator it = m_values.constFind(result.mid(vStart, i - 1 - vStart));
|
|
|
|
if (it != constEnd()) {
|
|
|
|
result.replace(vStart - 2, i - vStart + 2, *it);
|
|
|
|
i = vStart - 2 + it->length();
|
|
|
|
}
|
|
|
|
state = BASE;
|
|
|
|
}
|
|
|
|
} else if (state == VARIABLE) {
|
|
|
|
if (!c.isLetterOrNumber() && c != QLatin1Char('_')) {
|
|
|
|
const_iterator it = m_values.constFind(result.mid(vStart, i - vStart - 1));
|
|
|
|
if (it != constEnd()) {
|
|
|
|
result.replace(vStart - 1, i - vStart, *it);
|
|
|
|
i = vStart - 1 + it->length();
|
|
|
|
}
|
|
|
|
state = BASE;
|
2010-10-19 11:10:58 +02:00
|
|
|
}
|
2010-09-22 15:10:20 +02:00
|
|
|
}
|
|
|
|
}
|
2012-08-23 15:53:58 +02:00
|
|
|
if (state == VARIABLE) {
|
|
|
|
const_iterator it = m_values.constFind(result.mid(vStart));
|
|
|
|
if (it != constEnd())
|
|
|
|
result.replace(vStart - 1, result.length() - vStart + 1, *it);
|
|
|
|
}
|
2010-09-22 15:10:20 +02:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2010-09-23 13:08:03 +02:00
|
|
|
|
|
|
|
QStringList Environment::expandVariables(const QStringList &variables) const
|
|
|
|
{
|
|
|
|
QStringList results;
|
2011-05-24 12:04:24 +02:00
|
|
|
foreach (const QString &i, variables)
|
2010-09-23 13:08:03 +02:00
|
|
|
results << expandVariables(i);
|
|
|
|
return results;
|
|
|
|
}
|
2011-05-24 12:04:24 +02:00
|
|
|
|
|
|
|
} // namespace Utils
|