mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-19 04:11:50 +03:00
120 lines
2.4 KiB
C++
120 lines
2.4 KiB
C++
/*
|
|
* Copyright (C) by Duncan Mac-Vicar P. <duncan@kde.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 "mirall/syncresult.h"
|
|
|
|
namespace Mirall
|
|
{
|
|
|
|
SyncResult::SyncResult()
|
|
: _status( Undefined )
|
|
, _localRunOnly(false)
|
|
{
|
|
}
|
|
|
|
SyncResult::SyncResult(SyncResult::Status status )
|
|
: _status(status)
|
|
, _localRunOnly(false)
|
|
{
|
|
}
|
|
|
|
SyncResult::Status SyncResult::status() const
|
|
{
|
|
return _status;
|
|
}
|
|
|
|
QString SyncResult::statusString() const
|
|
{
|
|
QString re;
|
|
Status stat = status();
|
|
|
|
switch( stat ){
|
|
case Undefined:
|
|
re = QLatin1String("Undefined");
|
|
break;
|
|
case NotYetStarted:
|
|
re = QLatin1String("Not yet Started");
|
|
break;
|
|
case SyncRunning:
|
|
re = QLatin1String("Sync Running");
|
|
break;
|
|
case Success:
|
|
re = QLatin1String("Success");
|
|
break;
|
|
case Error:
|
|
re = QLatin1String("Error");
|
|
break;
|
|
case SetupError:
|
|
re = QLatin1String("SetupError");
|
|
break;
|
|
}
|
|
return re;
|
|
}
|
|
|
|
void SyncResult::setStatus( Status stat )
|
|
{
|
|
_status = stat;
|
|
}
|
|
|
|
void SyncResult::setErrorStrings( const QStringList& list )
|
|
{
|
|
_errors = list;
|
|
}
|
|
|
|
QStringList SyncResult::errorStrings() const
|
|
{
|
|
return _errors;
|
|
}
|
|
|
|
void SyncResult::setErrorString( const QString& err )
|
|
{
|
|
_errors.append( err );
|
|
}
|
|
|
|
QString SyncResult::errorString() const
|
|
{
|
|
if( _errors.isEmpty() ) return QString::null;
|
|
return _errors.first();
|
|
}
|
|
|
|
void SyncResult::clearErrors()
|
|
{
|
|
_errors.clear();
|
|
}
|
|
|
|
void SyncResult::setSyncChanges(const QHash< QString, QStringList >& changes)
|
|
{
|
|
_syncChanges = changes;
|
|
}
|
|
|
|
QHash< QString, QStringList > SyncResult::syncChanges() const
|
|
{
|
|
return _syncChanges;
|
|
}
|
|
|
|
bool SyncResult::localRunOnly() const
|
|
{
|
|
return _localRunOnly;
|
|
}
|
|
|
|
void SyncResult::setLocalRunOnly( bool lor )
|
|
{
|
|
_localRunOnly = lor;
|
|
}
|
|
|
|
SyncResult::~SyncResult()
|
|
{
|
|
}
|
|
|
|
} // ns mirall
|