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.
148 lines
3.2 KiB
148 lines
3.2 KiB
/*
|
|
KNode, the KDE newsreader
|
|
Copyright (c) 1999-2005 the KNode authors.
|
|
See file AUTHORS for details
|
|
|
|
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.
|
|
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, US
|
|
*/
|
|
|
|
|
|
#include <kdebug.h>
|
|
#include <tdelocale.h>
|
|
#include <tdeio/job.h>
|
|
|
|
#include <libtdepim/progressmanager.h>
|
|
|
|
#include "knarticle.h"
|
|
#include "knglobals.h"
|
|
#include "knnetaccess.h"
|
|
#include "knnntpaccount.h"
|
|
|
|
#include <tqstylesheet.h>
|
|
|
|
KNJobConsumer::KNJobConsumer()
|
|
{
|
|
}
|
|
|
|
|
|
KNJobConsumer::~KNJobConsumer()
|
|
{
|
|
TQValueList<KNJobData*>::Iterator it;
|
|
for ( it = mJobs.begin(); it != mJobs.end(); ++it )
|
|
(*it)->c_onsumer = 0;
|
|
}
|
|
|
|
|
|
void KNJobConsumer::emitJob( KNJobData *j )
|
|
{
|
|
if ( j ) {
|
|
mJobs.append( j );
|
|
knGlobals.netAccess()->addJob( j );
|
|
}
|
|
}
|
|
|
|
|
|
void KNJobConsumer::jobDone( KNJobData *j )
|
|
{
|
|
if ( j && mJobs.remove( j ) )
|
|
processJob( j );
|
|
}
|
|
|
|
|
|
void KNJobConsumer::processJob( KNJobData *j )
|
|
{
|
|
delete j;
|
|
}
|
|
|
|
|
|
// the assingment of a_ccount may cause race conditions, check again.... (CG)
|
|
KNJobData::KNJobData(jobType t, KNJobConsumer *c, KNServerInfo *a, KNJobItem *i)
|
|
: t_ype(t), d_ata(i), a_ccount(a), c_anceled(false), a_uthError(false), c_onsumer(c),
|
|
mJob( 0 ),
|
|
mProgressItem( 0 )
|
|
{
|
|
d_ata->setLocked(true);
|
|
}
|
|
|
|
|
|
|
|
KNJobData::~KNJobData()
|
|
{
|
|
d_ata->setLocked(false);
|
|
}
|
|
|
|
|
|
void KNJobData::notifyConsumer()
|
|
{
|
|
|
|
if(c_onsumer)
|
|
c_onsumer->jobDone(this);
|
|
else
|
|
delete this;
|
|
}
|
|
|
|
void KNJobData::cancel()
|
|
{
|
|
c_anceled = true;
|
|
if ( mJob ) {
|
|
mJob->kill();
|
|
mJob = 0;
|
|
}
|
|
if ( mProgressItem ) {
|
|
mProgressItem->setStatus( "Canceled" );
|
|
mProgressItem->setComplete();
|
|
mProgressItem = 0;
|
|
}
|
|
}
|
|
|
|
void KNJobData::setJob( TDEIO::Job *job )
|
|
{
|
|
mJob = job;
|
|
if ( job ) {
|
|
connect( job, TQT_SIGNAL( percent(TDEIO::Job*, unsigned long) ),
|
|
TQT_SLOT( slotJobPercent(TDEIO::Job*, unsigned long) ) );
|
|
connect( job, TQT_SIGNAL( infoMessage(TDEIO::Job*, const TQString&) ),
|
|
TQT_SLOT( slotJobInfoMessage(TDEIO::Job*, const TQString&) ) );
|
|
}
|
|
}
|
|
|
|
void KNJobData::createProgressItem()
|
|
{
|
|
if ( mProgressItem )
|
|
return;
|
|
KNNntpAccount *acc = static_cast<KNNntpAccount*>( account() );
|
|
TQString msg = i18n( "KNode" );
|
|
if ( type() == JTmail )
|
|
msg = i18n( "Sending message" );
|
|
else {
|
|
if ( acc )
|
|
msg = TQStyleSheet::escape( acc->name() );
|
|
}
|
|
bool encr = false;
|
|
if ( acc && acc->encryption() != KNServerInfo::None )
|
|
encr = true;
|
|
mProgressItem = KPIM::ProgressManager::createProgressItem( 0,
|
|
KPIM::ProgressManager::getUniqueID(), msg, i18n( "Waiting..." ), true, encr );
|
|
}
|
|
|
|
void KNJobData::slotJobPercent( TDEIO::Job*, unsigned long percent )
|
|
{
|
|
kdDebug(5003) << k_funcinfo << "Progress: " << percent << endl;
|
|
setProgress( percent );
|
|
}
|
|
|
|
void KNJobData::slotJobInfoMessage( TDEIO::Job*, const TQString &msg )
|
|
{
|
|
kdDebug(5003) << k_funcinfo << "Status: " << msg << endl;
|
|
setStatus( msg );
|
|
}
|
|
|
|
|
|
#include "knjobdata.moc"
|