forked from openkylin/quarkai
91 lines
2.3 KiB
C++
91 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) 2013 ~ 2018 National University of Defense Technology(NUDT) & Tianjin Kylin Ltd.
|
|
*
|
|
* Authors:
|
|
* Kobe Lee xiangli@ubuntukylin.com/kobe24_lixiang@126.com
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 3.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "filesystemdata.h"
|
|
#include <QDebug>
|
|
|
|
FileSystemData::FileSystemData(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
const QString FileSystemData::deviceName() const
|
|
{
|
|
return m_devName;
|
|
}
|
|
|
|
void FileSystemData::setDevName(const QString &name)
|
|
{
|
|
if (name != m_devName)
|
|
m_devName = name;
|
|
}
|
|
|
|
const QString FileSystemData::mountDir() const
|
|
{
|
|
return m_mountDir;
|
|
}
|
|
|
|
const QString FileSystemData::diskType() const
|
|
{
|
|
return m_diskType;
|
|
}
|
|
|
|
const QString FileSystemData::totalCapacity() const
|
|
{
|
|
return m_totalCapacity;
|
|
}
|
|
|
|
const QString FileSystemData::freeCapacity() const
|
|
{
|
|
return m_freeCapacity;
|
|
}
|
|
|
|
const QString FileSystemData::availCapacity() const
|
|
{
|
|
return m_availCapacity;
|
|
}
|
|
|
|
const QString FileSystemData::usedCapactiy() const
|
|
{
|
|
return m_usedCapactiy;
|
|
}
|
|
|
|
const int FileSystemData::usedPercentage()
|
|
{
|
|
return m_percentage;
|
|
}
|
|
|
|
void FileSystemData::updateDiskInfo(QString mountDir, QString diskType, QString totalCapacity, QString freeCapacity, QString availCapacity, QString usedCapactiy, int percentage)
|
|
{
|
|
if (mountDir != m_mountDir)
|
|
m_mountDir = mountDir;
|
|
if (diskType != m_diskType)
|
|
m_diskType = diskType;
|
|
if (totalCapacity != m_totalCapacity)
|
|
m_totalCapacity = totalCapacity;
|
|
if (freeCapacity != m_freeCapacity)
|
|
m_freeCapacity = freeCapacity;
|
|
if (availCapacity != m_availCapacity)
|
|
m_availCapacity = availCapacity;
|
|
if (usedCapactiy != m_usedCapactiy)
|
|
m_usedCapactiy = usedCapactiy;
|
|
if (percentage != m_percentage)
|
|
m_percentage = percentage;
|
|
}
|