2011-03-04 12:15:19 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Author: Milian Wolff, KDAB (milian.wolff@kdab.com)
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2011-03-04 12:15:19 +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:19 +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:19 +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:19 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-05-06 15:05:37 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2011-03-04 12:15:19 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef ANALYZER_INTERNAL_MEMCHECKSETTINGS_H
|
|
|
|
|
#define ANALYZER_INTERNAL_MEMCHECKSETTINGS_H
|
|
|
|
|
|
2011-03-04 16:00:01 +01:00
|
|
|
#include <analyzerbase/analyzersettings.h>
|
2011-03-04 12:15:19 +01:00
|
|
|
|
2011-05-23 13:50:28 +02:00
|
|
|
namespace Valgrind {
|
2011-03-04 12:15:19 +01:00
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Generic memcheck settings
|
|
|
|
|
*/
|
2011-04-04 14:39:29 +02:00
|
|
|
class AbstractMemcheckSettings : public Analyzer::AbstractAnalyzerSubConfig
|
2011-03-04 12:15:19 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2011-05-18 17:05:49 +02:00
|
|
|
|
2011-03-04 12:15:19 +01:00
|
|
|
public:
|
2011-05-18 19:35:42 +02:00
|
|
|
AbstractMemcheckSettings() {}
|
2011-03-04 12:15:19 +01:00
|
|
|
|
|
|
|
|
virtual bool fromMap(const QVariantMap &map);
|
|
|
|
|
|
|
|
|
|
int numCallers() const { return m_numCallers; }
|
|
|
|
|
bool trackOrigins() const { return m_trackOrigins; }
|
|
|
|
|
bool filterExternalIssues() const { return m_filterExternalIssues; }
|
|
|
|
|
QList<int> visibleErrorKinds() const { return m_visibleErrorKinds; }
|
|
|
|
|
|
|
|
|
|
virtual QStringList suppressionFiles() const = 0;
|
|
|
|
|
virtual void addSuppressionFiles(const QStringList &) = 0;
|
|
|
|
|
virtual void removeSuppressionFiles(const QStringList &) = 0;
|
|
|
|
|
|
|
|
|
|
virtual QVariantMap defaults() const;
|
|
|
|
|
|
|
|
|
|
virtual QString id() const;
|
|
|
|
|
virtual QString displayName() const;
|
2011-03-04 16:00:01 +01:00
|
|
|
virtual QWidget *createConfigWidget(QWidget *parent);
|
2011-03-04 12:15:19 +01:00
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void setNumCallers(int);
|
|
|
|
|
void setTrackOrigins(bool);
|
|
|
|
|
void setFilterExternalIssues(bool);
|
|
|
|
|
void setVisibleErrorKinds(const QList<int> &);
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void numCallersChanged(int);
|
|
|
|
|
void trackOriginsChanged(bool);
|
|
|
|
|
void filterExternalIssuesChanged(bool);
|
|
|
|
|
void visibleErrorKindsChanged(const QList<int> &);
|
|
|
|
|
void suppressionFilesRemoved(const QStringList &);
|
|
|
|
|
void suppressionFilesAdded(const QStringList &);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual QVariantMap toMap() const;
|
|
|
|
|
|
|
|
|
|
int m_numCallers;
|
|
|
|
|
bool m_trackOrigins;
|
|
|
|
|
bool m_filterExternalIssues;
|
|
|
|
|
QList<int> m_visibleErrorKinds;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Global memcheck settings
|
|
|
|
|
*/
|
|
|
|
|
class MemcheckGlobalSettings : public AbstractMemcheckSettings
|
|
|
|
|
{
|
|
|
|
|
public:
|
2011-05-18 19:35:42 +02:00
|
|
|
MemcheckGlobalSettings() {}
|
2011-03-04 12:15:19 +01:00
|
|
|
|
|
|
|
|
QStringList suppressionFiles() const;
|
|
|
|
|
// in the global settings we change the internal list directly
|
|
|
|
|
void addSuppressionFiles(const QStringList &);
|
|
|
|
|
void removeSuppressionFiles(const QStringList &);
|
|
|
|
|
|
|
|
|
|
QVariantMap toMap() const;
|
2011-03-04 16:00:04 +01:00
|
|
|
QVariantMap defaults() const;
|
|
|
|
|
|
|
|
|
|
// internal settings which don't require any UI
|
|
|
|
|
void setLastSuppressionDialogDirectory(const QString &directory);
|
|
|
|
|
QString lastSuppressionDialogDirectory() const;
|
|
|
|
|
|
|
|
|
|
void setLastSuppressionDialogHistory(const QStringList &history);
|
|
|
|
|
QStringList lastSuppressionDialogHistory() const;
|
2011-03-04 12:15:19 +01:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
bool fromMap(const QVariantMap &map);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QStringList m_suppressionFiles;
|
2011-03-04 16:00:04 +01:00
|
|
|
QString m_lastSuppressionDirectory;
|
|
|
|
|
QStringList m_lastSuppressionHistory;
|
2011-03-04 12:15:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Per-project memcheck settings, saves a diff to the global suppression files list
|
|
|
|
|
*/
|
|
|
|
|
class MemcheckProjectSettings : public AbstractMemcheckSettings
|
|
|
|
|
{
|
|
|
|
|
public:
|
2011-05-18 19:35:42 +02:00
|
|
|
MemcheckProjectSettings() {}
|
2011-03-04 12:15:19 +01:00
|
|
|
|
|
|
|
|
QStringList suppressionFiles() const;
|
|
|
|
|
// in the project-specific settings we store a diff to the global list
|
|
|
|
|
void addSuppressionFiles(const QStringList &suppressions);
|
|
|
|
|
void removeSuppressionFiles(const QStringList &suppressions);
|
|
|
|
|
|
|
|
|
|
QVariantMap toMap() const;
|
2011-03-04 16:00:04 +01:00
|
|
|
QVariantMap defaults() const;
|
2011-03-04 12:15:19 +01:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
bool fromMap(const QVariantMap &map);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QStringList m_disabledGlobalSuppressionFiles;
|
|
|
|
|
QStringList m_addedSuppressionFiles;
|
|
|
|
|
};
|
|
|
|
|
|
2011-05-18 17:05:49 +02:00
|
|
|
} // namespace Internal
|
2011-05-23 13:50:28 +02:00
|
|
|
} // namespace Valgrind
|
2011-03-04 12:15:19 +01:00
|
|
|
|
|
|
|
|
#endif // ANALYZER_INTERNAL_MEMCHECKSETTINGS_H
|