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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
// Copyright 2014 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 "components/sync/engine_impl/loopback_server/persistent_permanent_entity.h"
#include <memory>
#include <string>
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "components/sync/base/model_type.h"
#include "components/sync/engine_impl/loopback_server/loopback_server_entity.h"
#include "components/sync/protocol/sync.pb.h"
using std::string;
using syncer::ModelType;
namespace {
// The parent tag for children of the root entity. Entities with this parent are
// referred to as top level enities.
static const char kRootParentTag[] = "0";
} // namespace
namespace syncer {
PersistentPermanentEntity::~PersistentPermanentEntity() {}
// static
std::unique_ptr<LoopbackServerEntity> PersistentPermanentEntity::Create(
const ModelType& model_type,
const string& server_tag,
const string& name,
const string& parent_server_tag) {
CHECK(model_type != syncer::UNSPECIFIED) << "The entity's ModelType is "
<< "invalid.";
CHECK(!server_tag.empty())
<< "A PersistentPermanentEntity must have a server tag.";
CHECK(!name.empty()) << "The entity must have a non-empty name.";
CHECK(!parent_server_tag.empty())
<< "A PersistentPermanentEntity must have a parent "
<< "server tag.";
CHECK(parent_server_tag != kRootParentTag) << "Top-level entities should not "
<< "be created with this factory.";
string id = LoopbackServerEntity::CreateId(model_type, server_tag);
string parent_id =
LoopbackServerEntity::CreateId(model_type, parent_server_tag);
sync_pb::EntitySpecifics entity_specifics;
AddDefaultFieldValue(model_type, &entity_specifics);
return std::unique_ptr<LoopbackServerEntity>(new PersistentPermanentEntity(
id, 0, model_type, name, parent_id, server_tag, entity_specifics));
}
// static
std::unique_ptr<LoopbackServerEntity> PersistentPermanentEntity::CreateTopLevel(
const ModelType& model_type) {
CHECK(model_type != syncer::UNSPECIFIED) << "The entity's ModelType is "
<< "invalid.";
string server_tag = syncer::ModelTypeToRootTag(model_type);
string name = syncer::ModelTypeToString(model_type);
string id = LoopbackServerEntity::GetTopLevelId(model_type);
sync_pb::EntitySpecifics entity_specifics;
AddDefaultFieldValue(model_type, &entity_specifics);
return std::unique_ptr<LoopbackServerEntity>(new PersistentPermanentEntity(
id, 0, model_type, name, kRootParentTag, server_tag, entity_specifics));
}
// static
std::unique_ptr<LoopbackServerEntity>
PersistentPermanentEntity::CreateUpdatedNigoriEntity(
const sync_pb::SyncEntity& client_entity,
const LoopbackServerEntity& current_server_entity) {
ModelType model_type = current_server_entity.GetModelType();
CHECK(model_type == syncer::NIGORI) << "This factory only supports NIGORI "
<< "entities.";
return base::WrapUnique<LoopbackServerEntity>(new PersistentPermanentEntity(
current_server_entity.GetId(), current_server_entity.GetVersion(),
model_type, current_server_entity.GetName(),
current_server_entity.GetParentId(),
syncer::ModelTypeToRootTag(model_type), client_entity.specifics()));
}
PersistentPermanentEntity::PersistentPermanentEntity(
const string& id,
int64_t version,
const ModelType& model_type,
const string& name,
const string& parent_id,
const string& server_defined_unique_tag,
const sync_pb::EntitySpecifics& specifics)
: LoopbackServerEntity(id, model_type, version, name),
server_defined_unique_tag_(server_defined_unique_tag),
parent_id_(parent_id) {
SetSpecifics(specifics);
}
bool PersistentPermanentEntity::RequiresParentId() const {
return true;
}
string PersistentPermanentEntity::GetParentId() const {
return parent_id_;
}
void PersistentPermanentEntity::SerializeAsProto(
sync_pb::SyncEntity* proto) const {
LoopbackServerEntity::SerializeBaseProtoFields(proto);
proto->set_server_defined_unique_tag(server_defined_unique_tag_);
}
bool PersistentPermanentEntity::IsFolder() const {
return true;
}
bool PersistentPermanentEntity::IsPermanent() const {
return true;
}
sync_pb::LoopbackServerEntity_Type
PersistentPermanentEntity::GetLoopbackServerEntityType() const {
return sync_pb::LoopbackServerEntity_Type_PERMANENT;
}
} // namespace syncer
|