You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kaffeine/kaffeine/src/input/dvb/cleaner.cpp

83 lines
2.1 KiB

/*
* cleaner.cpp
*
* Copyright (C) 2005-2007 Christophe Thommeret <hftom@free.fr>
*
* 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
*/
#include <sys/statvfs.h>
#include <tqdir.h>
#include <tqstringlist.h>
#include <tqptrlist.h>
#include <tqfileinfo.h>
#include "cleaner.h"
Cleaner::Cleaner( const TQString &lpath, const TQString &rpath )
{
setPaths( lpath, rpath );
connect( &timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(doClean()) );
timer.start( 60*1000 );
}
Cleaner::~Cleaner()
{
wait();
}
void Cleaner::doClean()
{
start(IdlePriority);
}
void Cleaner::setPaths( const TQString &lpath, const TQString &rpath )
{
livePath = lpath;
recordPath = rpath;
}
void Cleaner::run()
{
TQStringList list;
TQDir d;
double freemb;
struct statvfs buf;
d.setPath( livePath );
list = d.entryList( "DVBLive-*", TQDir::Files, TQDir::Name );
if ( list.count()>1 ) d.remove( list[0] );
if ( statvfs( recordPath.local8Bit(), &buf ) ) {
fprintf(stderr,"Couldn't get file system statistics\n");
return;
}
freemb = (double)(((double)(buf.f_bavail)*(double)(buf.f_bsize))/(1024.0*1024.0));
if ( freemb<1000 ) {
d.setPath( recordPath );
const TQFileInfoList *infos = d.entryInfoList( "*.m2t", TQDir::Files|TQDir::NoSymLinks|TQDir::Writable, TQDir::Time|TQDir::Reversed );
TQFileInfoListIterator it( *infos );
TQFileInfo *i;
/*if ( ( i=it.current() )!=0 )
d.remove( i->absFilePath() );*/
}
}
#include "cleaner.moc"