mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-23 06:00:27 +03:00
79 lines
1.9 KiB
C++
79 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
*
|
|
* 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 "syncfilestatus.h"
|
|
|
|
namespace OCC {
|
|
SyncFileStatus::SyncFileStatus() = default;
|
|
|
|
SyncFileStatus::SyncFileStatus(SyncFileStatusTag tag)
|
|
: _tag(tag)
|
|
{
|
|
}
|
|
|
|
void SyncFileStatus::set(SyncFileStatusTag tag)
|
|
{
|
|
_tag = tag;
|
|
}
|
|
|
|
SyncFileStatus::SyncFileStatusTag SyncFileStatus::tag() const
|
|
{
|
|
return _tag;
|
|
}
|
|
|
|
void SyncFileStatus::setShared(bool isShared)
|
|
{
|
|
_shared = isShared;
|
|
}
|
|
|
|
bool SyncFileStatus::shared() const
|
|
{
|
|
return _shared;
|
|
}
|
|
|
|
QString SyncFileStatus::toSocketAPIString() const
|
|
{
|
|
QString statusString;
|
|
bool canBeShared = true;
|
|
|
|
switch (_tag) {
|
|
case StatusNone:
|
|
statusString = QStringLiteral("NOP");
|
|
canBeShared = false;
|
|
break;
|
|
case StatusSync:
|
|
statusString = QStringLiteral("SYNC");
|
|
break;
|
|
case StatusWarning:
|
|
// The protocol says IGNORE, but all implementations show a yellow warning sign.
|
|
statusString = QStringLiteral("IGNORE");
|
|
break;
|
|
case StatusUpToDate:
|
|
statusString = QStringLiteral("OK");
|
|
break;
|
|
case StatusError:
|
|
statusString = QStringLiteral("ERROR");
|
|
break;
|
|
case StatusExcluded:
|
|
// The protocol says IGNORE, but all implementations show a yellow warning sign.
|
|
statusString = QStringLiteral("IGNORE");
|
|
break;
|
|
}
|
|
if (canBeShared && _shared) {
|
|
statusString += QLatin1String("+SWM");
|
|
}
|
|
|
|
return statusString;
|
|
}
|
|
}
|