Welcome to mirror list, hosted at ThFree Co, Russian Federation.

syncfilestatus.cpp « mirall « src - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c8770ae39b83750b3095ec1a875b929938f2a61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * 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; version 2 of the License.
 *
 * 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/syncfilestatus.h"

#include <QDebug>

namespace Mirall {
SyncFileStatus::SyncFileStatus()
    :_tag(STATUS_NONE), _sharedWithMe(false)
{
}

SyncFileStatus::SyncFileStatus(SyncFileStatusTag tag)
    :_tag(tag), _sharedWithMe(false)
{

}

void SyncFileStatus::set(SyncFileStatusTag tag)
{
    _tag = tag;
}

SyncFileStatus::SyncFileStatusTag SyncFileStatus::tag()
{
    return _tag;
}

void SyncFileStatus::setSharedWithMe(bool isShared)
{
    _sharedWithMe = isShared;
}

bool SyncFileStatus::sharedWithMe()
{
    return _sharedWithMe;
}

QString SyncFileStatus::toSocketAPIString() const
{
    QString statusString;

    switch(_tag)
    {
    case STATUS_NONE:
        statusString = QLatin1String("NONE");
        break;
    case STATUS_EVAL:
        statusString = QLatin1String("SYNC");
        break;
    case STATUS_NEW:
        statusString = QLatin1String("NEW");
        break;
    case STATUS_IGNORE:
        statusString = QLatin1String("IGNORE");
        break;
    case STATUS_SYNC:
    case STATUS_UPDATED:
        statusString = QLatin1String("OK");
        break;
    case STATUS_STAT_ERROR:
    case STATUS_ERROR:
        statusString = QLatin1String("ERROR");
        break;
    default:
        qWarning() << "This status should not be here:" << _tag;
        Q_ASSERT(false);
        statusString = QLatin1String("NONE");
    }
    if(_sharedWithMe) {
        statusString += QLatin1String("+SWM");
    }

    return statusString;
}
}