blob: 64da5b797dcbe11d1c38f62d9ab26ce5aaa8ba17 (
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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "sync/api/sync_change.h"
#include <ostream>
namespace syncer {
SyncChange::SyncChange() : change_type_(ACTION_INVALID) {
}
SyncChange::SyncChange(SyncChangeType change_type, const SyncData& sync_data)
: change_type_(change_type),
sync_data_(sync_data) {
DCHECK(IsValid());
}
SyncChange::~SyncChange() {}
bool SyncChange::IsValid() const {
if (change_type_ == ACTION_INVALID || !sync_data_.IsValid())
return false;
// Data from the syncer must always have valid specifics.
if (!sync_data_.IsLocal())
return syncer::IsRealDataType(sync_data_.GetDataType());
// Local changes must always have a tag and specify a valid datatype.
if (sync_data_.GetTag().empty() ||
!syncer::IsRealDataType(sync_data_.GetDataType())) {
return false;
}
// Adds and updates must have a non-unique-title.
if (change_type_ == ACTION_ADD || change_type_ == ACTION_UPDATE)
return (!sync_data_.GetTitle().empty());
return true;
}
SyncChange::SyncChangeType SyncChange::change_type() const {
return change_type_;
}
SyncData SyncChange::sync_data() const {
return sync_data_;
}
// static
std::string SyncChange::ChangeTypeToString(SyncChangeType change_type) {
switch (change_type) {
case ACTION_INVALID:
return "ACTION_INVALID";
case ACTION_ADD:
return "ACTION_ADD";
case ACTION_UPDATE:
return "ACTION_UPDATE";
case ACTION_DELETE:
return "ACTION_DELETE";
default:
NOTREACHED();
}
return std::string();
}
std::string SyncChange::ToString() const {
return "{ changeType: " + ChangeTypeToString(change_type_) +
", syncData: " + sync_data_.ToString() + "}";
}
void PrintTo(const SyncChange& sync_change, std::ostream* os) {
*os << sync_change.ToString();
}
} // namespace syncer
|