nextcloud-desktop/src/libsync/syncfilestatus.cpp
Kevin Ottens e3e262e42e Use default member init when applicable
This also fixes a couple of warnings at places (out of order init for
instance) and a potential bug in the webflow credentials / qtkeychain
integration.

Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-06-03 16:10:39 +02:00

78 lines
1.8 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()
{
}
SyncFileStatus::SyncFileStatus(SyncFileStatusTag tag)
: _tag(tag)
, _shared(false)
{
}
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 = QLatin1String("NOP");
canBeShared = false;
break;
case StatusSync:
statusString = QLatin1String("SYNC");
break;
case StatusWarning:
// The protocol says IGNORE, but all implementations show a yellow warning sign.
statusString = QLatin1String("IGNORE");
break;
case StatusUpToDate:
statusString = QLatin1String("OK");
break;
case StatusError:
statusString = QLatin1String("ERROR");
break;
}
if (canBeShared && _shared) {
statusString += QLatin1String("+SWM");
}
return statusString;
}
}