Files
qt-creator/src/libs/utils/environment.cpp

538 lines
17 KiB
C++
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01:00
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** 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.
2010-12-17 16:01:08 +01:00
**
****************************************************************************/
2008-12-02 16:19:05 +01:00
2008-12-02 12:01:29 +01:00
#include "environment.h"
#include "algorithm.h"
#include "qtcassert.h"
#include <QDir>
#include <QProcessEnvironment>
#include <QSet>
#include <QCoreApplication>
class SystemEnvironment : public Utils::Environment
{
public:
SystemEnvironment()
: Environment(QProcessEnvironment::systemEnvironment().toStringList())
{
if (Utils::HostOsInfo::isLinuxHost()) {
QString ldLibraryPath = value("LD_LIBRARY_PATH");
QDir lib(QCoreApplication::applicationDirPath());
lib.cd("../lib");
QString toReplace = lib.path();
lib.cd("qtcreator");
toReplace.append(':');
toReplace.append(lib.path());
if (ldLibraryPath.startsWith(toReplace))
set("LD_LIBRARY_PATH", ldLibraryPath.remove(0, toReplace.length()));
}
}
};
Q_GLOBAL_STATIC(SystemEnvironment, staticSystemEnvironment)
2008-12-02 12:01:29 +01:00
namespace Utils {
2008-12-02 12:01:29 +01:00
void EnvironmentItem::sort(QList<EnvironmentItem> *list)
{
Utils::sort(*list, &EnvironmentItem::name);
}
QList<EnvironmentItem> EnvironmentItem::fromStringList(const QStringList &list)
2008-12-02 12:01:29 +01:00
{
QList<EnvironmentItem> result;
for (const QString &string : list) {
int pos = string.indexOf('=', 1);
2008-12-09 11:07:24 +01:00
if (pos == -1) {
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;
}
QStringList EnvironmentItem::toStringList(const QList<EnvironmentItem> &list)
2008-12-02 12:01:29 +01:00
{
QStringList result;
for (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
result << QString(item.name + '=' + item.value);
2008-12-02 12:01:29 +01:00
}
return result;
}
Environment::Environment(const QStringList &env, OsType osType) : m_osType(osType)
2008-12-02 12:01:29 +01:00
{
for (const QString &s : env) {
int i = s.indexOf('=', 1);
2008-12-09 11:07:24 +01:00
if (i >= 0) {
if (m_osType == OsTypeWindows)
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
}
}
}
QStringList Environment::toStringList() const
2008-12-02 12:01:29 +01:00
{
QStringList result;
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 += '=';
entry += it.value();
result.push_back(entry);
}
2008-12-02 12:01:29 +01:00
return result;
}
QProcessEnvironment Environment::toProcessEnvironment() const
{
QProcessEnvironment result;
const QMap<QString, QString>::const_iterator end = m_values.constEnd();
for (QMap<QString, QString>::const_iterator it = m_values.constBegin(); it != end; ++it)
result.insert(it.key(), it.value());
return result;
}
2008-12-02 12:01:29 +01:00
void Environment::set(const QString &key, const QString &value)
{
m_values.insert(m_osType == OsTypeWindows ? key.toUpper() : key, value);
2008-12-02 12:01:29 +01:00
}
void Environment::unset(const QString &key)
{
m_values.remove(m_osType == OsTypeWindows ? key.toUpper() : key);
2008-12-02 12:01:29 +01:00
}
void Environment::appendOrSet(const QString &key, const QString &value, const QString &sep)
{
const QString &_key = m_osType == OsTypeWindows ? key.toUpper() : key;
QMap<QString, QString>::iterator it = m_values.find(_key);
if (it == m_values.end()) {
2008-12-02 12:01:29 +01:00
m_values.insert(_key, value);
} else {
// 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)
{
const QString &_key = m_osType == OsTypeWindows ? key.toUpper() : key;
QMap<QString, QString>::iterator it = m_values.find(_key);
if (it == m_values.end()) {
2008-12-02 12:01:29 +01:00
m_values.insert(_key, value);
} else {
// 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)
{
appendOrSet("PATH", QDir::toNativeSeparators(value),
QString(OsSpecificAspects(m_osType).pathListSeparator()));
2008-12-02 12:01:29 +01:00
}
void Environment::prependOrSetPath(const QString &value)
{
prependOrSet("PATH", QDir::toNativeSeparators(value),
QString(OsSpecificAspects(m_osType).pathListSeparator()));
2008-12-02 12:01:29 +01:00
}
void Environment::prependOrSetLibrarySearchPath(const QString &value)
{
switch (m_osType) {
case OsTypeWindows: {
const QChar sep = ';';
prependOrSet("PATH", QDir::toNativeSeparators(value), QString(sep));
break;
}
case OsTypeMac: {
const QString sep = ":";
const QString nativeValue = QDir::toNativeSeparators(value);
prependOrSet("DYLD_LIBRARY_PATH", nativeValue, sep);
prependOrSet("DYLD_FRAMEWORK_PATH", nativeValue, sep);
break;
}
case OsTypeLinux:
case OsTypeOtherUnix: {
const QChar sep = ':';
prependOrSet("LD_LIBRARY_PATH", QDir::toNativeSeparators(value), QString(sep));
break;
}
default:
break;
}
}
2008-12-02 12:01:29 +01:00
Environment Environment::systemEnvironment()
{
return *staticSystemEnvironment();
2008-12-02 12:01:29 +01:00
}
const char lcMessages[] = "LC_MESSAGES";
const char englishLocale[] = "en_US.utf8";
void Environment::setupEnglishOutput(Environment *environment)
{
environment->set(lcMessages, englishLocale);
}
void Environment::setupEnglishOutput(QProcessEnvironment *environment)
{
environment->insert(lcMessages, englishLocale);
}
void Environment::setupEnglishOutput(QStringList *environment)
{
Environment env(*environment);
setupEnglishOutput(&env);
*environment = env.toStringList();
}
2008-12-02 12:01:29 +01:00
void Environment::clear()
{
m_values.clear();
}
FileName Environment::searchInDirectory(const QStringList &execs, QString directory,
QSet<QString> &alreadyChecked) const
{
const QChar slash = '/';
// Avoid turing / into // on windows which triggers windows to check
// for network drives!
const QString dir = directory.endsWith(slash) ? directory : directory + slash;
if (directory.isEmpty() || alreadyChecked.contains(dir))
return {};
alreadyChecked.insert(dir);
for (const QString &exec : execs) {
QFileInfo fi(dir + exec);
if (fi.isFile() && fi.isExecutable())
return FileName::fromString(fi.absoluteFilePath());
}
return FileName();
}
QStringList Environment::appendExeExtensions(const QString &executable) const
2008-12-02 12:01:29 +01:00
{
QStringList execs(executable);
const QFileInfo fi(executable);
if (m_osType == OsTypeWindows) {
// Check all the executable extensions on windows:
// PATHEXT is only used if the executable has no extension
if (fi.suffix().isEmpty()) {
const QStringList extensions = value("PATHEXT").split(';');
for (const QString &ext : extensions)
execs << executable + ext.toLower();
}
}
return execs;
}
bool Environment::isSameExecutable(const QString &exe1, const QString &exe2) const
{
const QStringList exe1List = appendExeExtensions(exe1);
const QStringList exe2List = appendExeExtensions(exe2);
for (const QString &i1 : exe1List) {
for (const QString &i2 : exe2List) {
if (Utils::FileName::fromString(i1) == Utils::FileName::fromString(i2))
return true;
}
}
return false;
}
FileName Environment::searchInPath(const QString &executable,
const QStringList &additionalDirs,
const PathFilter &func) const
{
if (executable.isEmpty())
return FileName();
const QString exec = QDir::cleanPath(expandVariables(executable));
const QFileInfo fi(exec);
const QStringList execs = appendExeExtensions(exec);
if (fi.isAbsolute()) {
for (const QString &path : execs) {
QFileInfo pfi = QFileInfo(path);
if (pfi.isFile() && pfi.isExecutable())
return FileName::fromString(path);
}
return FileName::fromString(exec);
}
QSet<QString> alreadyChecked;
for (const QString &dir : additionalDirs) {
FileName tmp = searchInDirectory(execs, dir, alreadyChecked);
if (!tmp.isEmpty() && (!func || func(tmp.toString())))
return tmp;
}
if (executable.contains('/'))
return FileName();
for (const QString &p : path()) {
FileName tmp = searchInDirectory(execs, QDir::fromNativeSeparators(p), alreadyChecked);
if (!tmp.isEmpty() && (!func || func(tmp.toString())))
return tmp;
}
return FileName();
2008-12-02 12:01:29 +01:00
}
QStringList Environment::path() const
{
return m_values.value("PATH")
.split(OsSpecificAspects(m_osType).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();
}
Environment::const_iterator Environment::constFind(const QString &name) const
2008-12-02 12:01:29 +01:00
{
return m_values.constFind(name);
2008-12-02 12:01:29 +01:00
}
int Environment::size() const
{
return m_values.size();
}
void Environment::modify(const QList<EnvironmentItem> & list)
{
Environment resultEnvironment = *this;
for (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;
int replaceCount = 0;
2008-12-09 11:07:24 +01:00
for (int i=0; i < value.size(); ++i) {
if (value.at(i) == '$') {
2008-12-09 11:07:24 +01:00
if ((i + 1) < value.size()) {
2008-12-02 12:01:29 +01:00
const QChar &c = value.at(i+1);
int end = -1;
if (c == '(')
end = value.indexOf(')', i);
else if (c == '{')
end = value.indexOf('}', 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);
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());
++replaceCount;
QTC_ASSERT(replaceCount < 100, break);
2008-12-02 12:01:29 +01:00
}
}
}
}
resultEnvironment.set(item.name, value);
}
}
*this = resultEnvironment;
}
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(EnvironmentItem(otherIt.key(), otherIt.value()));
++otherIt;
} else if (otherIt == other.constEnd()) {
EnvironmentItem item(thisIt.key(), QString());
item.unset = true;
result.append(item);
++thisIt;
} else if (thisIt.key() < otherIt.key()) {
EnvironmentItem item(thisIt.key(), QString());
item.unset = true;
result.append(item);
++thisIt;
} else if (thisIt.key() > otherIt.key()) {
result.append(EnvironmentItem(otherIt.key(), otherIt.value()));
++otherIt;
} else {
if (thisIt.value() != otherIt.value())
result.append(EnvironmentItem(otherIt.key(), otherIt.value()));
++otherIt;
++thisIt;
}
}
return result;
}
bool Environment::hasKey(const QString &key) const
{
return m_values.contains(key);
}
QString Environment::userName() const
{
return value(QString::fromLatin1(m_osType == OsTypeWindows ? "USERNAME" : "USER"));
}
bool Environment::operator!=(const Environment &other) const
{
return !(*this == other);
}
bool Environment::operator==(const Environment &other) const
{
return m_osType == other.m_osType && m_values == other.m_values;
}
/** Expand environment variables in a string.
*
* Environment variables are accepted in the following forms:
* $SOMEVAR, ${SOMEVAR} on Unix and %SOMEVAR% on Windows.
* No escapes and quoting are supported.
* If a variable is not found, it is not substituted.
*/
QString Environment::expandVariables(const QString &input) const
{
QString result = input;
if (m_osType == OsTypeWindows) {
for (int vStart = -1, i = 0; i < result.length(); ) {
if (result.at(i++) == '%') {
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;
}
} else {
vStart = i;
}
}
}
} 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 == '$')
state = OPTIONALVARIABLEBRACE;
} else if (state == OPTIONALVARIABLEBRACE) {
if (c == '{') {
state = BRACEDVARIABLE;
vStart = i;
} else if (c.isLetterOrNumber() || c == '_') {
state = VARIABLE;
vStart = i - 1;
} else {
state = BASE;
}
} else if (state == BRACEDVARIABLE) {
if (c == '}') {
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 != '_') {
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;
}
}
}
if (state == VARIABLE) {
const_iterator it = m_values.constFind(result.mid(vStart));
if (it != constEnd())
result.replace(vStart - 1, result.length() - vStart + 1, *it);
}
}
return result;
}
QStringList Environment::expandVariables(const QStringList &variables) const
{
return Utils::transform(variables, [this](const QString &i) { return expandVariables(i); });
}
} // namespace Utils