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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
|
// Copyright 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 "components/sync/syncable/mutable_entry.h"
#include <memory>
#include "components/sync/base/hash_util.h"
#include "components/sync/base/unique_position.h"
#include "components/sync/syncable/directory.h"
#include "components/sync/syncable/scoped_kernel_lock.h"
#include "components/sync/syncable/scoped_parent_child_index_updater.h"
#include "components/sync/syncable/syncable_changes_version.h"
#include "components/sync/syncable/syncable_write_transaction.h"
using std::string;
namespace syncer {
namespace syncable {
void MutableEntry::Init(WriteTransaction* trans,
ModelType model_type,
const Id& parent_id,
const string& name) {
std::unique_ptr<EntryKernel> kernel(new EntryKernel);
kernel_ = nullptr;
kernel->put(ID, trans->directory_->NextId());
kernel->put(META_HANDLE, trans->directory_->NextMetahandle());
kernel->mark_dirty(&trans->directory_->kernel()->dirty_metahandles);
kernel->put(NON_UNIQUE_NAME, name);
const base::Time& now = base::Time::Now();
kernel->put(CTIME, now);
kernel->put(MTIME, now);
// We match the database defaults here
kernel->put(BASE_VERSION, CHANGES_VERSION);
if (!parent_id.IsNull()) {
kernel->put(PARENT_ID, parent_id);
}
// Normally the SPECIFICS setting code is wrapped in logic to deal with
// unknown fields and encryption. Since all we want to do here is ensure that
// GetModelType() returns a correct value from the very beginning, these
// few lines are sufficient.
sync_pb::EntitySpecifics specifics;
AddDefaultFieldValue(model_type, &specifics);
kernel->put(SPECIFICS, specifics);
// Because this entry is new, it was originally deleted.
kernel->put(IS_DEL, true);
trans->TrackChangesTo(kernel.get());
kernel->put(IS_DEL, false);
// Now swap the pointers.
kernel_ = kernel.release();
}
MutableEntry::MutableEntry(WriteTransaction* trans,
Create,
ModelType model_type,
const string& name)
: ModelNeutralMutableEntry(trans), write_transaction_(trans) {
Init(trans, model_type, Id(), name);
// We need to have a valid position ready before we can index the item.
DCHECK_NE(BOOKMARKS, model_type);
DCHECK(!ShouldMaintainPosition());
bool result = trans->directory()->InsertEntry(trans, kernel_);
DCHECK(result);
}
MutableEntry::MutableEntry(WriteTransaction* trans,
Create,
ModelType model_type,
const Id& parent_id,
const string& name)
: ModelNeutralMutableEntry(trans), write_transaction_(trans) {
Init(trans, model_type, parent_id, name);
// We need to have a valid position ready before we can index the item.
if (model_type == BOOKMARKS) {
// Base the tag off of our cache-guid and local "c-" style ID.
std::string unique_tag = GenerateSyncableBookmarkHash(
trans->directory()->cache_guid(), GetId().GetServerId());
kernel_->put(UNIQUE_BOOKMARK_TAG, unique_tag);
kernel_->put(UNIQUE_POSITION, UniquePosition::InitialPosition(unique_tag));
} else {
DCHECK(!ShouldMaintainPosition());
}
bool result = trans->directory()->InsertEntry(trans, kernel_);
DCHECK(result);
}
MutableEntry::MutableEntry(WriteTransaction* trans,
CreateNewUpdateItem,
const Id& id)
: ModelNeutralMutableEntry(trans, CREATE_NEW_UPDATE_ITEM, id),
write_transaction_(trans) {}
MutableEntry::MutableEntry(WriteTransaction* trans, GetById, const Id& id)
: ModelNeutralMutableEntry(trans, GET_BY_ID, id),
write_transaction_(trans) {}
MutableEntry::MutableEntry(WriteTransaction* trans,
GetByHandle,
int64_t metahandle)
: ModelNeutralMutableEntry(trans, GET_BY_HANDLE, metahandle),
write_transaction_(trans) {}
MutableEntry::MutableEntry(WriteTransaction* trans,
GetByClientTag,
const std::string& tag)
: ModelNeutralMutableEntry(trans, GET_BY_CLIENT_TAG, tag),
write_transaction_(trans) {}
MutableEntry::MutableEntry(WriteTransaction* trans, GetTypeRoot, ModelType type)
: ModelNeutralMutableEntry(trans, GET_TYPE_ROOT, type),
write_transaction_(trans) {}
void MutableEntry::PutLocalExternalId(int64_t value) {
DCHECK(kernel_);
if (kernel_->ref(LOCAL_EXTERNAL_ID) != value) {
write_transaction()->TrackChangesTo(kernel_);
ScopedKernelLock lock(dir());
kernel_->put(LOCAL_EXTERNAL_ID, value);
MarkDirty();
}
}
void MutableEntry::PutMtime(base::Time value) {
DCHECK(kernel_);
if (kernel_->ref(MTIME) != value) {
write_transaction()->TrackChangesTo(kernel_);
kernel_->put(MTIME, value);
MarkDirty();
}
}
void MutableEntry::PutCtime(base::Time value) {
DCHECK(kernel_);
if (kernel_->ref(CTIME) != value) {
write_transaction()->TrackChangesTo(kernel_);
kernel_->put(CTIME, value);
MarkDirty();
}
}
void MutableEntry::PutParentId(const Id& value) {
DCHECK(kernel_);
if (kernel_->ref(PARENT_ID) != value) {
write_transaction()->TrackChangesTo(kernel_);
PutParentIdPropertyOnly(value);
if (!GetIsDel()) {
if (!PutPredecessor(Id())) {
// TODO(lipalani) : Propagate the error to caller. crbug.com/100444.
NOTREACHED();
}
}
}
}
void MutableEntry::PutIsDir(bool value) {
DCHECK(kernel_);
if (kernel_->ref(IS_DIR) != value) {
write_transaction()->TrackChangesTo(kernel_);
kernel_->put(IS_DIR, value);
MarkDirty();
}
}
void MutableEntry::PutIsDel(bool value) {
DCHECK(kernel_);
if (value == kernel_->ref(IS_DEL)) {
return;
}
write_transaction()->TrackChangesTo(kernel_);
if (value) {
// If the server never knew about this item and it's deleted then we don't
// need to keep it around. Unsetting IS_UNSYNCED will:
// - Ensure that the item is never committed to the server.
// - Allow any items with the same UNIQUE_CLIENT_TAG created on other
// clients to override this entry.
// - Let us delete this entry permanently when we next restart sync - see
// DirectoryBackingStore::SafeToPurgeOnLoading.
// This will avoid crbug.com/125381.
// Note: do not unset IsUnsynced if the syncer has started but not yet
// finished committing this entity.
if (!GetId().ServerKnows() && !GetSyncing()) {
PutIsUnsynced(false);
}
}
{
ScopedKernelLock lock(dir());
// Some indices don't include deleted items and must be updated
// upon a value change.
ScopedParentChildIndexUpdater updater(lock, kernel_,
&dir()->kernel()->parent_child_index);
kernel_->put(IS_DEL, value);
MarkDirty();
}
}
void MutableEntry::PutNonUniqueName(const std::string& value) {
DCHECK(kernel_);
if (kernel_->ref(NON_UNIQUE_NAME) != value) {
write_transaction()->TrackChangesTo(kernel_);
kernel_->put(NON_UNIQUE_NAME, value);
MarkDirty();
}
}
void MutableEntry::PutSpecifics(const sync_pb::EntitySpecifics& value) {
DCHECK(kernel_);
CHECK(!value.password().has_client_only_encrypted_data());
// TODO(ncarter): This is unfortunately heavyweight. Can we do
// better?
const std::string& serialized_value = value.SerializeAsString();
if (serialized_value != kernel_->ref(SPECIFICS).SerializeAsString()) {
write_transaction()->TrackChangesTo(kernel_);
// Check for potential sharing - SPECIFICS is often
// copied from SERVER_SPECIFICS.
if (serialized_value ==
kernel_->ref(SERVER_SPECIFICS).SerializeAsString()) {
kernel_->copy(SERVER_SPECIFICS, SPECIFICS);
} else {
kernel_->put(SPECIFICS, value);
}
MarkDirty();
}
}
void MutableEntry::PutUniquePosition(const UniquePosition& value) {
DCHECK(kernel_);
if (!kernel_->ref(UNIQUE_POSITION).Equals(value)) {
write_transaction()->TrackChangesTo(kernel_);
// We should never overwrite a valid position with an invalid one.
DCHECK(value.IsValid());
ScopedKernelLock lock(dir());
ScopedParentChildIndexUpdater updater(lock, kernel_,
&dir()->kernel()->parent_child_index);
kernel_->put(UNIQUE_POSITION, value);
MarkDirty();
}
}
bool MutableEntry::PutPredecessor(const Id& predecessor_id) {
if (predecessor_id.IsNull()) {
dir()->PutPredecessor(kernel_, nullptr);
} else {
MutableEntry predecessor(write_transaction(), GET_BY_ID, predecessor_id);
if (!predecessor.good())
return false;
dir()->PutPredecessor(kernel_, predecessor.kernel_);
// No need to make the entry dirty here because setting the predecessor
// results in PutUniquePosition call (which might or might not make the
// entry dirty).
}
return true;
}
void MutableEntry::PutAttachmentMetadata(
const sync_pb::AttachmentMetadata& value) {
DCHECK(kernel_);
const std::string& serialized_value = value.SerializeAsString();
if (serialized_value !=
kernel_->ref(ATTACHMENT_METADATA).SerializeAsString()) {
write_transaction()->TrackChangesTo(kernel_);
dir()->UpdateAttachmentIndex(GetMetahandle(),
kernel_->ref(ATTACHMENT_METADATA), value);
// Check for potential sharing - ATTACHMENT_METADATA is often
// copied from SERVER_ATTACHMENT_METADATA.
if (serialized_value ==
kernel_->ref(SERVER_ATTACHMENT_METADATA).SerializeAsString()) {
kernel_->copy(SERVER_ATTACHMENT_METADATA, ATTACHMENT_METADATA);
} else {
kernel_->put(ATTACHMENT_METADATA, value);
}
MarkDirty();
}
}
void MutableEntry::MarkAttachmentAsOnServer(
const sync_pb::AttachmentIdProto& attachment_id) {
DCHECK(kernel_);
DCHECK(!attachment_id.unique_id().empty());
write_transaction()->TrackChangesTo(kernel_);
sync_pb::AttachmentMetadata attachment_metadata =
kernel_->ref(ATTACHMENT_METADATA);
for (int i = 0; i < attachment_metadata.record_size(); ++i) {
sync_pb::AttachmentMetadataRecord* record =
attachment_metadata.mutable_record(i);
if (record->id().unique_id() != attachment_id.unique_id())
continue;
record->set_is_on_server(true);
}
kernel_->put(ATTACHMENT_METADATA, attachment_metadata);
MarkDirty();
MarkForSyncing(this);
}
// This function sets only the flags needed to get this entry to sync.
bool MarkForSyncing(MutableEntry* e) {
DCHECK_NE(static_cast<MutableEntry*>(nullptr), e);
DCHECK(!e->IsRoot()) << "We shouldn't mark a permanent object for syncing.";
if (!(e->PutIsUnsynced(true)))
return false;
if (e->GetSyncing())
e->PutDirtySync(true);
return true;
}
} // namespace syncable
} // namespace syncer
|