OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "sync/syncable/mutable_entry.h" | 5 #include "sync/syncable/mutable_entry.h" |
6 | 6 |
7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
8 #include "sync/internal_api/public/base/unique_position.h" | 8 #include "sync/internal_api/public/base/unique_position.h" |
9 #include "sync/syncable/directory.h" | 9 #include "sync/syncable/directory.h" |
10 #include "sync/syncable/scoped_kernel_lock.h" | 10 #include "sync/syncable/scoped_kernel_lock.h" |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 } | 226 } |
227 | 227 |
228 bool MutableEntry::PutPredecessor(const Id& predecessor_id) { | 228 bool MutableEntry::PutPredecessor(const Id& predecessor_id) { |
229 MutableEntry predecessor(write_transaction(), GET_BY_ID, predecessor_id); | 229 MutableEntry predecessor(write_transaction(), GET_BY_ID, predecessor_id); |
230 if (!predecessor.good()) | 230 if (!predecessor.good()) |
231 return false; | 231 return false; |
232 dir()->PutPredecessor(kernel_, predecessor.kernel_); | 232 dir()->PutPredecessor(kernel_, predecessor.kernel_); |
233 return true; | 233 return true; |
234 } | 234 } |
235 | 235 |
| 236 void MutableEntry::PutAttachmentMetadata( |
| 237 const sync_pb::AttachmentMetadata& attachment_metadata) { |
| 238 DCHECK(kernel_); |
| 239 write_transaction()->TrackChangesTo(kernel_); |
| 240 if (kernel_->ref(ATTACHMENT_METADATA).SerializeAsString() != |
| 241 attachment_metadata.SerializeAsString()) { |
| 242 dir()->UpdateAttachmentIndex(GetMetahandle(), |
| 243 kernel_->ref(ATTACHMENT_METADATA), |
| 244 attachment_metadata); |
| 245 kernel_->put(ATTACHMENT_METADATA, attachment_metadata); |
| 246 kernel_->mark_dirty(&dir()->kernel_->dirty_metahandles); |
| 247 } |
| 248 } |
| 249 |
236 // This function sets only the flags needed to get this entry to sync. | 250 // This function sets only the flags needed to get this entry to sync. |
237 bool MarkForSyncing(MutableEntry* e) { | 251 bool MarkForSyncing(MutableEntry* e) { |
238 DCHECK_NE(static_cast<MutableEntry*>(NULL), e); | 252 DCHECK_NE(static_cast<MutableEntry*>(NULL), e); |
239 DCHECK(!e->IsRoot()) << "We shouldn't mark a permanent object for syncing."; | 253 DCHECK(!e->IsRoot()) << "We shouldn't mark a permanent object for syncing."; |
240 if (!(e->PutIsUnsynced(true))) | 254 if (!(e->PutIsUnsynced(true))) |
241 return false; | 255 return false; |
242 e->PutSyncing(false); | 256 e->PutSyncing(false); |
243 return true; | 257 return true; |
244 } | 258 } |
245 | 259 |
246 } // namespace syncable | 260 } // namespace syncable |
247 } // namespace syncer | 261 } // namespace syncer |
OLD | NEW |