2011-03-04 12:15:18 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator Instrumentation Tools
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Author: Milian Wolff, KDAB (milian.wolff@kdab.com)
|
|
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
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.
|
2011-03-04 12:15:18 +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
|
2011-03-04 12:15:18 +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.
|
|
|
|
|
**
|
2011-03-04 12:15:18 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "analyzersettings.h"
|
|
|
|
|
|
|
|
|
|
#include "analyzermanager.h"
|
|
|
|
|
#include "ianalyzertool.h"
|
|
|
|
|
#include "analyzerplugin.h"
|
|
|
|
|
#include "analyzeroptionspage.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2011-03-08 13:56:52 +01:00
|
|
|
#include <QtCore/QSettings>
|
2011-03-04 12:15:18 +01:00
|
|
|
|
|
|
|
|
using namespace Analyzer::Internal;
|
|
|
|
|
|
2011-04-19 15:42:14 +02:00
|
|
|
static const char groupC[] = "Analyzer";
|
2011-07-25 20:16:29 +02:00
|
|
|
static const char useGlobalC[] = "Analyzer.Project.UseGlobal";
|
2011-03-04 12:15:18 +01:00
|
|
|
|
2011-05-18 15:56:01 +02:00
|
|
|
namespace Analyzer {
|
|
|
|
|
|
2011-03-04 12:15:18 +01:00
|
|
|
AnalyzerGlobalSettings *AnalyzerGlobalSettings::m_instance = 0;
|
|
|
|
|
|
2011-03-04 16:00:01 +01:00
|
|
|
AnalyzerSettings::AnalyzerSettings(QObject *parent)
|
2011-05-18 15:56:01 +02:00
|
|
|
: QObject(parent)
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-25 20:16:29 +02:00
|
|
|
QVariantMap AnalyzerSettings::defaults() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap map;
|
|
|
|
|
foreach (AbstractAnalyzerSubConfig *config, subConfigs()) {
|
|
|
|
|
map.unite(config->defaults());
|
|
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-04 12:15:18 +01:00
|
|
|
bool AnalyzerSettings::fromMap(const QVariantMap &map)
|
2011-07-25 20:16:29 +02:00
|
|
|
{
|
|
|
|
|
return fromMap(map, &m_subConfigs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AnalyzerSettings::fromMap(const QVariantMap &map, QList<AbstractAnalyzerSubConfig *> *subConfigs)
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
|
|
|
|
bool ret = true;
|
2011-07-25 20:16:29 +02:00
|
|
|
foreach (AbstractAnalyzerSubConfig *config, *subConfigs) {
|
2011-03-04 12:15:18 +01:00
|
|
|
ret = ret && config->fromMap(map);
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-25 20:16:29 +02:00
|
|
|
QVariantMap AnalyzerSettings::toMap() const
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
2011-07-25 20:16:29 +02:00
|
|
|
return toMap(m_subConfigs);
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
2011-07-25 20:16:29 +02:00
|
|
|
QVariantMap AnalyzerSettings::toMap(const QList<AbstractAnalyzerSubConfig *> &subConfigs) const
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
|
|
|
|
QVariantMap map;
|
2011-07-25 20:16:29 +02:00
|
|
|
foreach (AbstractAnalyzerSubConfig *config, subConfigs) {
|
2011-03-04 12:15:18 +01:00
|
|
|
map.unite(config->toMap());
|
|
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-04 16:00:01 +01:00
|
|
|
AnalyzerGlobalSettings::AnalyzerGlobalSettings(QObject *parent)
|
|
|
|
|
: AnalyzerSettings(parent)
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
|
|
|
|
QTC_ASSERT(!m_instance, return);
|
|
|
|
|
m_instance = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AnalyzerGlobalSettings *AnalyzerGlobalSettings::instance()
|
|
|
|
|
{
|
|
|
|
|
if (!m_instance)
|
2011-03-04 16:00:01 +01:00
|
|
|
m_instance = new AnalyzerGlobalSettings(AnalyzerPlugin::instance());
|
|
|
|
|
|
2011-03-04 12:15:18 +01:00
|
|
|
return m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AnalyzerGlobalSettings::~AnalyzerGlobalSettings()
|
|
|
|
|
{
|
|
|
|
|
m_instance = 0;
|
2011-07-25 20:16:29 +02:00
|
|
|
qDeleteAll(m_subConfigs);
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AnalyzerGlobalSettings::readSettings()
|
|
|
|
|
{
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
|
|
|
|
|
|
|
|
|
QVariantMap map;
|
|
|
|
|
|
2011-04-19 15:42:14 +02:00
|
|
|
settings->beginGroup(QLatin1String(groupC));
|
2011-03-04 12:15:18 +01:00
|
|
|
// read the values from config, using the keys from the defaults value map
|
|
|
|
|
const QVariantMap def = defaults();
|
|
|
|
|
for (QVariantMap::ConstIterator it = def.constBegin(); it != def.constEnd(); ++it)
|
|
|
|
|
map.insert(it.key(), settings->value(it.key(), it.value()));
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
|
|
|
|
|
// apply the values to our member variables
|
|
|
|
|
fromMap(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AnalyzerGlobalSettings::writeSettings() const
|
|
|
|
|
{
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
2011-04-19 15:42:14 +02:00
|
|
|
settings->beginGroup(QLatin1String(groupC));
|
2011-03-04 12:15:18 +01:00
|
|
|
const QVariantMap map = toMap();
|
|
|
|
|
for (QVariantMap::ConstIterator it = map.begin(); it != map.end(); ++it)
|
|
|
|
|
settings->setValue(it.key(), it.value());
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-18 19:35:42 +02:00
|
|
|
void AnalyzerGlobalSettings::registerSubConfigs
|
|
|
|
|
(AnalyzerSubConfigFactory globalCreator, AnalyzerSubConfigFactory projectCreator)
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
2011-07-25 20:16:29 +02:00
|
|
|
m_projectSubConfigFactories.append(projectCreator);
|
2011-03-04 12:15:18 +01:00
|
|
|
|
2011-05-18 19:35:42 +02:00
|
|
|
AbstractAnalyzerSubConfig *config = globalCreator();
|
2011-07-25 20:16:29 +02:00
|
|
|
m_subConfigs.append(config);
|
2011-03-04 12:15:18 +01:00
|
|
|
AnalyzerPlugin::instance()->addAutoReleasedObject(new AnalyzerOptionsPage(config));
|
|
|
|
|
|
|
|
|
|
readSettings();
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-25 20:16:29 +02:00
|
|
|
QList<AnalyzerSubConfigFactory> AnalyzerGlobalSettings::projectSubConfigFactories() const
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
2011-07-25 20:16:29 +02:00
|
|
|
return m_projectSubConfigFactories;
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
2011-03-04 16:00:01 +01:00
|
|
|
AnalyzerProjectSettings::AnalyzerProjectSettings(QObject *parent)
|
2011-07-25 20:16:29 +02:00
|
|
|
: AnalyzerSettings(parent), m_useGlobalSettings(true)
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
|
|
|
|
// add sub configs
|
2011-07-25 20:16:29 +02:00
|
|
|
foreach (AnalyzerSubConfigFactory factory, AnalyzerGlobalSettings::instance()->projectSubConfigFactories()) {
|
|
|
|
|
AbstractAnalyzerSubConfig *config = factory();
|
|
|
|
|
m_customConfigurations.append(config);
|
|
|
|
|
}
|
2011-03-04 12:15:18 +01:00
|
|
|
|
2011-07-25 20:16:29 +02:00
|
|
|
m_subConfigs = AnalyzerGlobalSettings::instance()->subConfigs();
|
|
|
|
|
resetCustomToGlobalSettings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AnalyzerProjectSettings::~AnalyzerProjectSettings()
|
|
|
|
|
{
|
|
|
|
|
qDeleteAll(m_customConfigurations);
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AnalyzerProjectSettings::displayName() const
|
|
|
|
|
{
|
|
|
|
|
return tr("Analyzer Settings");
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-04 16:00:01 +01:00
|
|
|
bool AnalyzerProjectSettings::fromMap(const QVariantMap &map)
|
2011-03-04 12:15:18 +01:00
|
|
|
{
|
2011-07-25 20:16:29 +02:00
|
|
|
if (!AnalyzerSettings::fromMap(map, &m_customConfigurations))
|
|
|
|
|
return false;
|
|
|
|
|
m_useGlobalSettings = map.value(QLatin1String(useGlobalC), true).toBool();
|
|
|
|
|
return true;
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariantMap AnalyzerProjectSettings::toMap() const
|
|
|
|
|
{
|
2011-07-25 20:16:29 +02:00
|
|
|
QVariantMap map = AnalyzerSettings::toMap(m_customConfigurations);
|
|
|
|
|
map.insert(QLatin1String(useGlobalC), m_useGlobalSettings);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AnalyzerProjectSettings::setUsingGlobalSettings(bool value)
|
|
|
|
|
{
|
|
|
|
|
if (value == m_useGlobalSettings)
|
|
|
|
|
return;
|
|
|
|
|
m_useGlobalSettings = value;
|
|
|
|
|
if (m_useGlobalSettings) {
|
|
|
|
|
m_subConfigs = AnalyzerGlobalSettings::instance()->subConfigs();
|
|
|
|
|
} else {
|
|
|
|
|
m_subConfigs = m_customConfigurations;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AnalyzerProjectSettings::resetCustomToGlobalSettings()
|
|
|
|
|
{
|
|
|
|
|
AnalyzerGlobalSettings *gs = AnalyzerGlobalSettings::instance();
|
|
|
|
|
AnalyzerSettings::fromMap(gs->toMap(), &m_customConfigurations);
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
2011-05-18 15:56:01 +02:00
|
|
|
|
|
|
|
|
} // namespace Analyzer
|