2011-03-28 04:26:47 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
|
|
|
// Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
|
|
|
|
//
|
|
|
|
// 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; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// 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, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Thread_DiskObserver.h"
|
|
|
|
|
|
|
|
#include "Global.h"
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
|
2011-10-29 16:26:09 +02:00
|
|
|
#define MIN_DISKSPACE 104857600ui64 //100 MB
|
2011-03-28 04:26:47 +02:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Constructor & Destructor
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DiskObserverThread::DiskObserverThread(const QString &path)
|
|
|
|
:
|
|
|
|
m_path(makeRootDir(path))
|
|
|
|
{
|
|
|
|
m_terminated = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
DiskObserverThread::~DiskObserverThread(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Protected functions
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void DiskObserverThread::run(void)
|
|
|
|
{
|
|
|
|
qDebug("DiskSpace observer started!");
|
2011-10-29 16:26:09 +02:00
|
|
|
m_terminated = false;
|
2011-03-28 04:26:47 +02:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
observe();
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
fprintf(stderr, "\nGURU MEDITATION !!!\n");
|
|
|
|
FatalAppExit(0, L"Unhandeled exception error, application will exit!");
|
|
|
|
TerminateProcess(GetCurrentProcess(), -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiskObserverThread::observe(void)
|
|
|
|
{
|
2011-10-29 16:26:09 +02:00
|
|
|
unsigned __int64 minimumSpace = MIN_DISKSPACE;
|
|
|
|
unsigned __int64 freeSpace, previousSpace = 0ui64;
|
|
|
|
bool ok = false;
|
2011-03-28 04:26:47 +02:00
|
|
|
|
|
|
|
while(!m_terminated)
|
|
|
|
{
|
2011-10-29 16:26:09 +02:00
|
|
|
freeSpace = lamexp_free_diskspace(m_path, &ok);
|
|
|
|
if(ok)
|
2011-03-28 04:26:47 +02:00
|
|
|
{
|
2011-10-29 16:26:09 +02:00
|
|
|
if(freeSpace < minimumSpace)
|
|
|
|
{
|
|
|
|
qWarning("Free diskspace on '%s' dropped below %s MB, only %s MB free!", m_path.toUtf8().constData(), QString::number(minimumSpace / 1048576ui64).toUtf8().constData(), QString::number(freeSpace / 1048576ui64).toUtf8().constData());
|
|
|
|
emit messageLogged(tr("Low diskspace on drive '%1' detected (only %2 MB are free), problems can occur!").arg(QDir::toNativeSeparators(m_path), QString::number(freeSpace / 1048576ui64)), true);
|
2011-11-08 15:12:31 +01:00
|
|
|
minimumSpace = qMin(freeSpace, (minimumSpace >> 1));
|
2011-10-29 16:26:09 +02:00
|
|
|
}
|
|
|
|
if(freeSpace != previousSpace)
|
|
|
|
{
|
|
|
|
emit freeSpaceChanged(freeSpace);
|
|
|
|
previousSpace = freeSpace;
|
|
|
|
}
|
2011-03-28 04:26:47 +02:00
|
|
|
}
|
2011-11-18 20:47:34 +01:00
|
|
|
msleep(2000);
|
2011-03-28 04:26:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString DiskObserverThread::makeRootDir(const QString &baseDir)
|
|
|
|
{
|
|
|
|
QDir dir(baseDir);
|
|
|
|
|
|
|
|
if(!dir.exists())
|
|
|
|
{
|
|
|
|
return baseDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
while(success)
|
|
|
|
{
|
|
|
|
success = dir.cdUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir.canonicalPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// SLOTS
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*NONE*/
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// EVENTS
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*NONE*/
|