kde-playground/massif-visualizer/massifdata/filedata.h
2015-09-30 16:47:20 +03:00

101 lines
2.6 KiB
C++

/*
This file is part of Massif Visualizer
Copyright 2010 Milian Wolff <mail@milianw.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MASSIF_FILEDATA_H
#define MASSIF_FILEDATA_H
#include "massifdata_export.h"
#include <QtCore/QObject>
#include <QtCore/QVector>
namespace Massif {
class SnapshotItem;
/**
* This structure holds all information that can be extracted from a massif output file.
*/
class MASSIFDATA_EXPORT FileData : public QObject
{
Q_OBJECT
public:
FileData(QObject* parent = 0);
virtual ~FileData();
/**
* Set the @p cmd that was profiled with massif.
*/
void setCmd(const QString& cmd);
/**
* @return Command that was profiled with massif.
*/
QString cmd() const;
/**
* Set a @p description.
*/
void setDescription(const QString& description);
/**
* @return Description for this massif run.
*/
QString description() const;
/**
* Set the @p unit that times are measured in.
*/
void setTimeUnit(const QString& unit);
/**
* @return The unit that times are measured in.
*/
QString timeUnit() const;
/**
* Adds @p snapshot to this dataset and takes ownership.
*/
void addSnapshot(SnapshotItem* snapshot);
/**
* @return List of all snapshots that make up this dataset.
*/
QVector<SnapshotItem*> snapshots() const;
/**
* Marks @p snapshot as peak of this dataset.
* The snapshot should already been added to the dataset.
*/
void setPeak(SnapshotItem* snapshot);
/**
* @return The peak snapshot in this dataset.
*/
SnapshotItem* peak() const;
private:
QString m_cmd;
QString m_description;
QString m_timeUnit;
QVector<SnapshotItem*> m_snapshots;
SnapshotItem* m_peak;
};
}
#endif // MASSIF_FILEDATA_H