2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-04-27 10:05:43 +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.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "property.h"
|
|
|
|
#include "option.h"
|
|
|
|
|
|
|
|
#include <qdir.h>
|
|
|
|
#include <qsettings.h>
|
2021-01-28 15:06:26 +00:00
|
|
|
#include <qmakelibraryinfo.h>
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <qstringlist.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
2012-02-29 13:02:48 +00:00
|
|
|
static const struct {
|
|
|
|
const char *name;
|
2021-01-28 15:06:26 +00:00
|
|
|
int loc;
|
2012-02-28 19:57:38 +00:00
|
|
|
bool raw;
|
2016-11-08 12:41:27 +00:00
|
|
|
bool singular;
|
2012-02-29 13:02:48 +00:00
|
|
|
} propList[] = {
|
2021-01-28 15:06:26 +00:00
|
|
|
{ "QT_SYSROOT", QMakeLibraryInfo::SysrootPath, true, true },
|
2016-11-08 12:41:27 +00:00
|
|
|
{ "QT_INSTALL_PREFIX", QLibraryInfo::PrefixPath, false, false },
|
|
|
|
{ "QT_INSTALL_ARCHDATA", QLibraryInfo::ArchDataPath, false, false },
|
|
|
|
{ "QT_INSTALL_DATA", QLibraryInfo::DataPath, false, false },
|
|
|
|
{ "QT_INSTALL_DOCS", QLibraryInfo::DocumentationPath, false, false },
|
|
|
|
{ "QT_INSTALL_HEADERS", QLibraryInfo::HeadersPath, false, false },
|
|
|
|
{ "QT_INSTALL_LIBS", QLibraryInfo::LibrariesPath, false, false },
|
|
|
|
{ "QT_INSTALL_LIBEXECS", QLibraryInfo::LibraryExecutablesPath, false, false },
|
|
|
|
{ "QT_INSTALL_BINS", QLibraryInfo::BinariesPath, false, false },
|
|
|
|
{ "QT_INSTALL_TESTS", QLibraryInfo::TestsPath, false, false },
|
|
|
|
{ "QT_INSTALL_PLUGINS", QLibraryInfo::PluginsPath, false, false },
|
2021-02-05 17:08:46 +00:00
|
|
|
{ "QT_INSTALL_QML", QLibraryInfo::QmlImportsPath, false, false },
|
2016-11-08 12:41:27 +00:00
|
|
|
{ "QT_INSTALL_TRANSLATIONS", QLibraryInfo::TranslationsPath, false, false },
|
|
|
|
{ "QT_INSTALL_CONFIGURATION", QLibraryInfo::SettingsPath, false, false },
|
|
|
|
{ "QT_INSTALL_EXAMPLES", QLibraryInfo::ExamplesPath, false, false },
|
|
|
|
{ "QT_INSTALL_DEMOS", QLibraryInfo::ExamplesPath, false, false }, // Just backwards compat
|
2021-01-28 15:06:26 +00:00
|
|
|
{ "QT_HOST_PREFIX", QMakeLibraryInfo::HostPrefixPath, true, false },
|
|
|
|
{ "QT_HOST_DATA", QMakeLibraryInfo::HostDataPath, true, false },
|
|
|
|
{ "QT_HOST_BINS", QMakeLibraryInfo::HostBinariesPath, true, false },
|
|
|
|
{ "QT_HOST_LIBEXECS", QMakeLibraryInfo::HostLibraryExecutablesPath, true, false },
|
|
|
|
{ "QT_HOST_LIBS", QMakeLibraryInfo::HostLibrariesPath, true, false },
|
|
|
|
{ "QMAKE_SPEC", QMakeLibraryInfo::HostSpecPath, true, true },
|
|
|
|
{ "QMAKE_XSPEC", QMakeLibraryInfo::TargetSpecPath, true, true },
|
2012-02-29 13:02:48 +00:00
|
|
|
};
|
|
|
|
|
2018-08-02 22:22:24 +00:00
|
|
|
QMakeProperty::QMakeProperty() : settings(nullptr)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2016-11-24 17:41:48 +00:00
|
|
|
reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QMakeProperty::reload()
|
|
|
|
{
|
2021-01-28 15:06:26 +00:00
|
|
|
QMakeLibraryInfo::reload();
|
2013-10-31 15:12:54 +00:00
|
|
|
for (unsigned i = 0; i < sizeof(propList)/sizeof(propList[0]); i++) {
|
2012-03-09 18:11:27 +00:00
|
|
|
QString name = QString::fromLatin1(propList[i].name);
|
2016-11-08 12:41:27 +00:00
|
|
|
if (!propList[i].singular) {
|
2021-01-28 15:06:26 +00:00
|
|
|
m_values[ProKey(name + "/src")] = QMakeLibraryInfo::rawLocation(
|
|
|
|
propList[i].loc, QMakeLibraryInfo::EffectiveSourcePaths);
|
|
|
|
m_values[ProKey(name + "/get")] = QMakeLibraryInfo::rawLocation(
|
|
|
|
propList[i].loc, QMakeLibraryInfo::EffectivePaths);
|
2016-11-08 12:41:27 +00:00
|
|
|
}
|
2021-01-28 15:06:26 +00:00
|
|
|
QString val = QMakeLibraryInfo::rawLocation(propList[i].loc, QMakeLibraryInfo::FinalPaths);
|
2012-03-09 18:11:27 +00:00
|
|
|
if (!propList[i].raw) {
|
2021-01-28 15:06:26 +00:00
|
|
|
m_values[ProKey(name + "/dev")] =
|
|
|
|
QMakeLibraryInfo::rawLocation(propList[i].loc, QMakeLibraryInfo::DevicePaths);
|
|
|
|
m_values[ProKey(name)] = QMakeLibraryInfo::path(propList[i].loc);
|
2012-03-09 18:11:27 +00:00
|
|
|
name += "/raw";
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
m_values[ProKey(name)] = val;
|
2012-03-09 18:11:27 +00:00
|
|
|
}
|
2021-03-09 15:15:26 +00:00
|
|
|
#ifdef QMAKE_VERSION_STR
|
2012-09-12 17:27:09 +00:00
|
|
|
m_values["QMAKE_VERSION"] = ProString(QMAKE_VERSION_STR);
|
2021-03-09 15:15:26 +00:00
|
|
|
#endif
|
2012-08-21 12:47:08 +00:00
|
|
|
#ifdef QT_VERSION_STR
|
2012-09-06 10:21:38 +00:00
|
|
|
m_values["QT_VERSION"] = ProString(QT_VERSION_STR);
|
2012-08-21 12:47:08 +00:00
|
|
|
#endif
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QMakeProperty::~QMakeProperty()
|
|
|
|
{
|
|
|
|
delete settings;
|
2018-08-02 22:22:24 +00:00
|
|
|
settings = nullptr;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QMakeProperty::initSettings()
|
|
|
|
{
|
2020-12-22 13:21:11 +00:00
|
|
|
if (!settings) {
|
2012-12-02 16:24:19 +00:00
|
|
|
settings = new QSettings(QSettings::UserScope, "QtProject", "QMake");
|
2011-04-27 10:05:43 +00:00
|
|
|
settings->setFallbacksEnabled(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString
|
|
|
|
QMakeProperty::value(const ProKey &vk)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString val = m_values.value(vk);
|
2012-02-29 13:02:48 +00:00
|
|
|
if (!val.isNull())
|
|
|
|
return val;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
initSettings();
|
2013-01-30 17:43:13 +00:00
|
|
|
return settings->value(vk.toQString()).toString();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-09-06 10:21:38 +00:00
|
|
|
QMakeProperty::hasValue(const ProKey &v)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-06-18 11:57:39 +00:00
|
|
|
return !value(v).isNull();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QMakeProperty::setValue(QString var, const QString &val)
|
|
|
|
{
|
|
|
|
initSettings();
|
2012-06-18 11:57:39 +00:00
|
|
|
settings->setValue(var, val);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QMakeProperty::remove(const QString &var)
|
|
|
|
{
|
|
|
|
initSettings();
|
2012-06-18 11:57:39 +00:00
|
|
|
settings->remove(var);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QMakeProperty::exec()
|
|
|
|
{
|
|
|
|
bool ret = true;
|
2020-12-22 13:21:11 +00:00
|
|
|
if (Option::qmake_mode == Option::QMAKE_QUERY_PROPERTY) {
|
|
|
|
if (Option::prop::properties.isEmpty()) {
|
2011-04-27 10:05:43 +00:00
|
|
|
initSettings();
|
2016-01-26 13:38:54 +00:00
|
|
|
const auto keys = settings->childKeys();
|
|
|
|
for (const QString &key : keys) {
|
2013-01-30 17:43:13 +00:00
|
|
|
QString val = settings->value(key).toString();
|
2012-06-18 11:57:39 +00:00
|
|
|
fprintf(stdout, "%s:%s\n", qPrintable(key), qPrintable(val));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
QStringList specialProps;
|
2013-10-31 15:12:54 +00:00
|
|
|
for (unsigned i = 0; i < sizeof(propList)/sizeof(propList[0]); i++)
|
2012-02-29 13:02:48 +00:00
|
|
|
specialProps.append(QString::fromLatin1(propList[i].name));
|
2011-04-27 10:05:43 +00:00
|
|
|
specialProps.append("QMAKE_VERSION");
|
|
|
|
#ifdef QT_VERSION_STR
|
|
|
|
specialProps.append("QT_VERSION");
|
|
|
|
#endif
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const QString &prop : qAsConst(specialProps)) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString val = value(ProKey(prop));
|
|
|
|
ProString pval = value(ProKey(prop + "/raw"));
|
|
|
|
ProString gval = value(ProKey(prop + "/get"));
|
2013-06-11 14:08:30 +00:00
|
|
|
ProString sval = value(ProKey(prop + "/src"));
|
2014-12-03 21:07:29 +00:00
|
|
|
ProString dval = value(ProKey(prop + "/dev"));
|
2012-03-09 18:11:27 +00:00
|
|
|
fprintf(stdout, "%s:%s\n", prop.toLatin1().constData(), val.toLatin1().constData());
|
|
|
|
if (!pval.isEmpty() && pval != val)
|
|
|
|
fprintf(stdout, "%s/raw:%s\n", prop.toLatin1().constData(), pval.toLatin1().constData());
|
2012-05-03 13:36:03 +00:00
|
|
|
if (!gval.isEmpty() && gval != (pval.isEmpty() ? val : pval))
|
|
|
|
fprintf(stdout, "%s/get:%s\n", prop.toLatin1().constData(), gval.toLatin1().constData());
|
2013-06-11 14:08:30 +00:00
|
|
|
if (!sval.isEmpty() && sval != gval)
|
|
|
|
fprintf(stdout, "%s/src:%s\n", prop.toLatin1().constData(), sval.toLatin1().constData());
|
2014-12-03 21:07:29 +00:00
|
|
|
if (!dval.isEmpty() && dval != pval)
|
|
|
|
fprintf(stdout, "%s/dev:%s\n", prop.toLatin1().constData(), dval.toLatin1().constData());
|
2012-03-09 18:11:27 +00:00
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-10-18 19:43:59 +00:00
|
|
|
for (QStringList::ConstIterator it = Option::prop::properties.cbegin();
|
|
|
|
it != Option::prop::properties.cend(); it++) {
|
2020-12-22 13:21:11 +00:00
|
|
|
if (Option::prop::properties.count() > 1)
|
2011-04-27 10:05:43 +00:00
|
|
|
fprintf(stdout, "%s:", (*it).toLatin1().constData());
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey pkey(*it);
|
|
|
|
if (!hasValue(pkey)) {
|
2011-04-27 10:05:43 +00:00
|
|
|
ret = false;
|
|
|
|
fprintf(stdout, "**Unknown**\n");
|
|
|
|
} else {
|
2012-09-06 10:21:38 +00:00
|
|
|
fprintf(stdout, "%s\n", value(pkey).toLatin1().constData());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if(Option::qmake_mode == Option::QMAKE_SET_PROPERTY) {
|
2018-10-18 19:43:59 +00:00
|
|
|
for (QStringList::ConstIterator it = Option::prop::properties.cbegin();
|
|
|
|
it != Option::prop::properties.cend(); it++) {
|
2011-04-27 10:05:43 +00:00
|
|
|
QString var = (*it);
|
|
|
|
it++;
|
2018-10-18 19:43:59 +00:00
|
|
|
if (it == Option::prop::properties.cend()) {
|
2011-04-27 10:05:43 +00:00
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(!var.startsWith("."))
|
|
|
|
setValue(var, (*it));
|
|
|
|
}
|
|
|
|
} else if(Option::qmake_mode == Option::QMAKE_UNSET_PROPERTY) {
|
2018-10-18 19:43:59 +00:00
|
|
|
for (QStringList::ConstIterator it = Option::prop::properties.cbegin();
|
|
|
|
it != Option::prop::properties.cend(); it++) {
|
2011-04-27 10:05:43 +00:00
|
|
|
QString var = (*it);
|
|
|
|
if(!var.startsWith("."))
|
|
|
|
remove(var);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|