mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-18 20:02:17 +03:00
bdbb85f245
only to avoid thread clottering. Improve error reporting from the csync thread.
187 lines
5.4 KiB
C++
187 lines
5.4 KiB
C++
/*
|
|
* Copyright (C) by Duncan Mac-Vicar P. <duncan@kde.org>
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.org>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <QDebug>
|
|
#include <QDir>
|
|
#include <QUrl>
|
|
#include <QMutexLocker>
|
|
#include <QThread>
|
|
#include <QStringList>
|
|
#include <QTextStream>
|
|
#include <QTimer>
|
|
|
|
#include "csync.h"
|
|
|
|
#include "mirall/owncloudfolder.h"
|
|
#include "mirall/mirallconfigfile.h"
|
|
|
|
namespace Mirall {
|
|
|
|
ownCloudFolder::ownCloudFolder(const QString &alias,
|
|
const QString &path,
|
|
const QString &secondPath,
|
|
QObject *parent)
|
|
: Folder(alias, path, parent)
|
|
, _secondPath(secondPath)
|
|
, _localCheckOnly( false )
|
|
, _csync(0)
|
|
, _pollTimerCnt(0)
|
|
, _csyncError(false)
|
|
{
|
|
#ifdef USE_WATCHER
|
|
qDebug() << "****** ownCloud folder using watcher *******";
|
|
// The folder interval is set in the folder parent class.
|
|
#else
|
|
/* If local polling is used, the polltimer of class Folder has to fire more
|
|
* often
|
|
* Set a local poll time of 2000 milliseconds, which results in a 30 seconds
|
|
* remote poll interval, defined in slotPollTimerRemoteCheck
|
|
*/
|
|
|
|
_pollTimer->stop();
|
|
connect( _pollTimer, SIGNAL(timeout()), this, SLOT(slotPollTimerRemoteCheck()));
|
|
setPollInterval( 2000 );
|
|
_pollTimer->start();
|
|
qDebug() << "****** ownCloud folder using local poll *******";
|
|
#endif
|
|
}
|
|
|
|
ownCloudFolder::~ownCloudFolder()
|
|
{
|
|
}
|
|
|
|
#ifndef USE_WATCHER
|
|
void ownCloudFolder::slotPollTimerRemoteCheck()
|
|
{
|
|
_localCheckOnly = true;
|
|
_pollTimerCnt++;
|
|
if( _pollTimerCnt == 15 ) {
|
|
_pollTimerCnt = 0;
|
|
_localCheckOnly = false;
|
|
}
|
|
qDebug() << "**** CSyncFolder Poll Timer check: " << _pollTimerCnt << " - " << _localCheckOnly;
|
|
}
|
|
#endif
|
|
|
|
bool ownCloudFolder::isBusy() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
QString ownCloudFolder::secondPath() const
|
|
{
|
|
return _secondPath;
|
|
}
|
|
|
|
void ownCloudFolder::startSync()
|
|
{
|
|
startSync( QStringList() );
|
|
}
|
|
|
|
void ownCloudFolder::startSync(const QStringList &pathList)
|
|
{
|
|
if (_csync && _csync->isRunning()) {
|
|
qCritical() << "* ERROR csync is still running and new sync requested.";
|
|
return;
|
|
}
|
|
delete _csync;
|
|
_errors.clear();
|
|
_csyncError = false;
|
|
|
|
MirallConfigFile cfgFile;
|
|
|
|
QUrl url( _secondPath );
|
|
url.setScheme( "owncloud" );
|
|
qDebug() << "*** Start syncing to ownCloud, onlyLocal: " << _localCheckOnly;
|
|
|
|
_csync = new CSyncThread(path(), url.toEncoded(), _localCheckOnly );
|
|
_csync->setUserPwd( cfgFile.ownCloudUser(), cfgFile.ownCloudPasswd() );
|
|
QObject::connect(_csync, SIGNAL(started()), SLOT(slotCSyncStarted()));
|
|
QObject::connect(_csync, SIGNAL(finished()), SLOT(slotCSyncFinished()));
|
|
QObject::connect(_csync, SIGNAL(terminated()), SLOT(slotCSyncTerminated()));
|
|
connect(_csync, SIGNAL(csyncError(const QString)), SLOT(slotCSyncError(const QString)));
|
|
|
|
connect( _csync, SIGNAL(treeWalkResult(WalkStats*)),
|
|
this, SLOT(slotThreadTreeWalkResult(WalkStats*)));
|
|
_csync->start();
|
|
}
|
|
|
|
void ownCloudFolder::slotCSyncStarted()
|
|
{
|
|
qDebug() << " * csync thread started";
|
|
emit syncStarted();
|
|
}
|
|
|
|
void ownCloudFolder::slotThreadTreeWalkResult( WalkStats *wStats )
|
|
{
|
|
qDebug() << "Seen files: " << wStats->seenFiles;
|
|
|
|
/* check if there are happend changes in the file system */
|
|
qDebug() << "New files: " << wStats->newFiles;
|
|
qDebug() << "Updated files: " << wStats->eval;
|
|
qDebug() << "Walked files: " << wStats->seenFiles;
|
|
qDebug() << "Eval files: " << wStats->eval;
|
|
qDebug() << "Removed files: " << wStats->removed;
|
|
qDebug() << "Renamed files: " << wStats->renamed;
|
|
|
|
#ifndef USE_WATCHER
|
|
if( (wStats->newFiles + wStats->eval + wStats->removed + wStats->renamed) > 0 ) {
|
|
qDebug() << "*** Local changes, lets do a full sync!" ;
|
|
_localCheckOnly = false; // next time it will be a non local check.
|
|
_pollTimerCnt = 0;
|
|
// QTimer::singleShot( 0, this, SLOT(startSync( QStringList() )));
|
|
} else {
|
|
qDebug() << " *** No local changes, finalize, pollTimerCounter is "<< _pollTimerCnt ;
|
|
}
|
|
#endif
|
|
/*
|
|
* Attention: This is deleted here, outside of the thread, because the thread can
|
|
* faster die than this routine has read out the memory.
|
|
*/
|
|
delete wStats->sourcePath;
|
|
delete wStats;
|
|
}
|
|
|
|
void ownCloudFolder::slotCSyncError(const QString& err)
|
|
{
|
|
_errors.append( err );
|
|
_csyncError = true;
|
|
}
|
|
|
|
void ownCloudFolder::slotCSyncTerminated()
|
|
{
|
|
// do not ask csync here for reasons.
|
|
emit syncFinished( SyncResult(SyncResult::Error));
|
|
}
|
|
|
|
void ownCloudFolder::slotCSyncFinished()
|
|
{
|
|
SyncResult res( SyncResult::Success );
|
|
|
|
if (_csyncError) {
|
|
res.setStatus(SyncResult::Error);
|
|
|
|
qDebug() << " ** error Strings: " << _errors;
|
|
res.setErrorStrings( _errors );
|
|
qDebug() << " * owncloud csync thread finished with error";
|
|
} else {
|
|
qDebug() << " * owncloud csync thread finished successfully";
|
|
}
|
|
|
|
emit syncFinished( res );
|
|
}
|
|
|
|
} // ns
|
|
|