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.
167 lines
5.0 KiB
167 lines
5.0 KiB
15 years ago
|
/* This file is part of the KDE libraries
|
||
|
Copyright (C) 2000 David Faure <faure@kde.org>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2 of the License, or (at your option) any later version.
|
||
|
|
||
|
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
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#include "kdirsize.h"
|
||
|
#include <kdebug.h>
|
||
|
#include <kglobal.h>
|
||
14 years ago
|
#include <tqapplication.h>
|
||
|
#include <tqtimer.h>
|
||
12 years ago
|
#include <config-tdefile.h>
|
||
15 years ago
|
|
||
12 years ago
|
using namespace TDEIO;
|
||
15 years ago
|
|
||
|
KDirSize::KDirSize( const KURL & directory )
|
||
12 years ago
|
: TDEIO::Job(false /*No GUI*/), m_bAsync(true), m_totalSize(0L), m_totalFiles(0L), m_totalSubdirs(0L)
|
||
15 years ago
|
{
|
||
|
startNextJob( directory );
|
||
|
}
|
||
|
|
||
|
KDirSize::KDirSize( const KFileItemList & lstItems )
|
||
12 years ago
|
: TDEIO::Job(false /*No GUI*/), m_bAsync(true), m_totalSize(0L), m_totalFiles(0L), m_totalSubdirs(0L), m_lstItems(lstItems)
|
||
15 years ago
|
{
|
||
14 years ago
|
TQTimer::singleShot( 0, this, TQT_SLOT(processList()) );
|
||
15 years ago
|
}
|
||
|
|
||
|
void KDirSize::processList()
|
||
|
{
|
||
|
while (!m_lstItems.isEmpty())
|
||
|
{
|
||
|
KFileItem * item = m_lstItems.first();
|
||
|
m_lstItems.removeFirst();
|
||
|
if ( !item->isLink() )
|
||
|
{
|
||
|
if ( item->isDir() )
|
||
|
{
|
||
12 years ago
|
kdDebug(tdefile_area) << "KDirSize::processList dir -> listing" << endl;
|
||
15 years ago
|
KURL url = item->url();
|
||
|
startNextJob( url );
|
||
|
return; // we'll come back later, when this one's finished
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
m_totalSize += item->size();
|
||
|
// no long long with kdDebug()
|
||
12 years ago
|
// kdDebug(tdefile_area) << "KDirSize::processList file -> " << m_totalSize << endl;
|
||
15 years ago
|
}
|
||
|
}
|
||
|
}
|
||
12 years ago
|
kdDebug(tdefile_area) << "KDirSize::processList finished" << endl;
|
||
15 years ago
|
if ( !m_bAsync )
|
||
14 years ago
|
tqApp->exit_loop();
|
||
15 years ago
|
emitResult();
|
||
|
}
|
||
|
|
||
|
void KDirSize::startNextJob( const KURL & url )
|
||
|
{
|
||
12 years ago
|
TDEIO::ListJob * listJob = TDEIO::listRecursive( url, false /* no GUI */ );
|
||
|
connect( listJob, TQT_SIGNAL(entries( TDEIO::Job *,
|
||
|
const TDEIO::UDSEntryList& )),
|
||
|
TQT_SLOT( slotEntries( TDEIO::Job*,
|
||
|
const TDEIO::UDSEntryList& )));
|
||
15 years ago
|
addSubjob( listJob );
|
||
|
}
|
||
|
|
||
12 years ago
|
void KDirSize::slotEntries( TDEIO::Job*, const TDEIO::UDSEntryList & list )
|
||
15 years ago
|
{
|
||
12 years ago
|
static const TQString& dot = TDEGlobal::staticQString( "." );
|
||
|
static const TQString& dotdot = TDEGlobal::staticQString( ".." );
|
||
12 years ago
|
TDEIO::UDSEntryListConstIterator it = list.begin();
|
||
|
TDEIO::UDSEntryListConstIterator end = list.end();
|
||
15 years ago
|
for (; it != end; ++it) {
|
||
12 years ago
|
TDEIO::UDSEntry::ConstIterator it2 = (*it).begin();
|
||
|
TDEIO::filesize_t size = 0;
|
||
15 years ago
|
bool isLink = false;
|
||
|
bool isDir = false;
|
||
14 years ago
|
TQString name;
|
||
15 years ago
|
for( ; it2 != (*it).end(); it2++ ) {
|
||
|
switch( (*it2).m_uds ) {
|
||
12 years ago
|
case TDEIO::UDS_NAME:
|
||
15 years ago
|
name = (*it2).m_str;
|
||
|
break;
|
||
12 years ago
|
case TDEIO::UDS_LINK_DEST:
|
||
15 years ago
|
isLink = !(*it2).m_str.isEmpty();
|
||
|
break;
|
||
12 years ago
|
case TDEIO::UDS_SIZE:
|
||
15 years ago
|
size = ((*it2).m_long);
|
||
|
break;
|
||
12 years ago
|
case TDEIO::UDS_FILE_TYPE:
|
||
15 years ago
|
isDir = S_ISDIR((*it2).m_long);
|
||
|
break;
|
||
|
default:
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
if ( name == dot )
|
||
|
m_totalSize += size;
|
||
|
else if ( name != dotdot )
|
||
|
{
|
||
|
if (!isLink)
|
||
|
m_totalSize += size;
|
||
|
if (!isDir)
|
||
|
m_totalFiles++;
|
||
|
else
|
||
|
m_totalSubdirs++;
|
||
12 years ago
|
//kdDebug(tdefile_area) << name << ":" << size << endl;
|
||
15 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//static
|
||
|
KDirSize * KDirSize::dirSizeJob( const KURL & directory )
|
||
|
{
|
||
|
return new KDirSize( directory ); // useless - but consistent with other jobs
|
||
|
}
|
||
|
|
||
|
//static
|
||
|
KDirSize * KDirSize::dirSizeJob( const KFileItemList & lstItems )
|
||
|
{
|
||
|
return new KDirSize( lstItems );
|
||
|
}
|
||
|
|
||
|
//static
|
||
12 years ago
|
TDEIO::filesize_t KDirSize::dirSize( const KURL & directory )
|
||
15 years ago
|
{
|
||
|
KDirSize * dirSize = dirSizeJob( directory );
|
||
|
dirSize->setSync();
|
||
14 years ago
|
tqApp->enter_loop();
|
||
15 years ago
|
return dirSize->totalSize();
|
||
|
}
|
||
|
|
||
|
|
||
12 years ago
|
void KDirSize::slotResult( TDEIO::Job * job )
|
||
15 years ago
|
{
|
||
12 years ago
|
kdDebug(tdefile_area) << " KDirSize::slotResult( TDEIO::Job * job ) m_lstItems:" << m_lstItems.count() << endl;
|
||
15 years ago
|
if ( !m_lstItems.isEmpty() )
|
||
|
{
|
||
|
subjobs.remove(job); // Remove job, but don't kill this job.
|
||
|
processList();
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if ( !m_bAsync )
|
||
14 years ago
|
tqApp->exit_loop();
|
||
12 years ago
|
TDEIO::Job::slotResult( job );
|
||
15 years ago
|
}
|
||
|
}
|
||
|
|
||
|
void KDirSize::virtual_hook( int id, void* data )
|
||
12 years ago
|
{ TDEIO::Job::virtual_hook( id, data ); }
|
||
15 years ago
|
|
||
|
#include "kdirsize.moc"
|