drive: Trigger "fast fetch" if remote update came during full loading.
[chromium-blink-merge.git] / sync / syncable / entry.h
blob184377a3766333d5121a700481d06c78c6863b3e
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
3 // found in the LICENSE file.
5 #ifndef SYNC_SYNCABLE_ENTRY_H_
6 #define SYNC_SYNCABLE_ENTRY_H_
8 #include "sync/base/sync_export.h"
9 #include "sync/syncable/entry_kernel.h"
11 namespace syncer {
12 class Cryptographer;
13 class ReadNode;
15 namespace syncable {
17 class Directory;
18 class BaseTransaction;
20 // A read-only meta entry
21 // Instead of:
22 // Entry e = transaction.GetById(id);
23 // use:
24 // Entry e(transaction, GET_BY_ID, id);
26 // Why? The former would require a copy constructor, and it would be difficult
27 // to enforce that an entry never outlived its transaction if there were a copy
28 // constructor.
29 enum GetById {
30 GET_BY_ID
33 enum GetByClientTag {
34 GET_BY_CLIENT_TAG
37 enum GetByServerTag {
38 // Server tagged items are deprecated for all types but bookmarks.
39 GET_BY_SERVER_TAG
42 enum GetTypeRoot {
43 GET_TYPE_ROOT
46 enum GetByHandle {
47 GET_BY_HANDLE
50 class SYNC_EXPORT Entry {
51 public:
52 // After constructing, you must check good() to test whether the Get
53 // succeeded.
54 Entry(BaseTransaction* trans, GetByHandle, int64 handle);
55 Entry(BaseTransaction* trans, GetById, const Id& id);
56 Entry(BaseTransaction* trans, GetTypeRoot, ModelType type);
57 Entry(BaseTransaction* trans, GetByClientTag, const std::string& tag);
59 // This lookup function is deprecated. All types except bookmarks can use
60 // the GetTypeRoot variant instead.
61 Entry(BaseTransaction* trans, GetByServerTag, const std::string& tag);
63 bool good() const { return 0 != kernel_; }
65 BaseTransaction* trans() const { return basetrans_; }
67 // Field accessors.
68 int64 GetMetahandle() const {
69 DCHECK(kernel_);
70 return kernel_->ref(META_HANDLE);
73 int64 GetBaseVersion() const {
74 DCHECK(kernel_);
75 return kernel_->ref(BASE_VERSION);
78 int64 GetServerVersion() const {
79 DCHECK(kernel_);
80 return kernel_->ref(SERVER_VERSION);
83 int64 GetLocalExternalId() const {
84 DCHECK(kernel_);
85 return kernel_->ref(LOCAL_EXTERNAL_ID);
88 int64 GetTransactionVersion() const {
89 DCHECK(kernel_);
90 return kernel_->ref(TRANSACTION_VERSION);
93 const base::Time& GetMtime() const {
94 DCHECK(kernel_);
95 return kernel_->ref(MTIME);
98 const base::Time& GetServerMtime() const {
99 DCHECK(kernel_);
100 return kernel_->ref(SERVER_MTIME);
103 const base::Time& GetCtime() const {
104 DCHECK(kernel_);
105 return kernel_->ref(CTIME);
108 const base::Time& GetServerCtime() const {
109 DCHECK(kernel_);
110 return kernel_->ref(SERVER_CTIME);
113 Id GetId() const {
114 DCHECK(kernel_);
115 return kernel_->ref(ID);
118 Id GetParentId() const {
119 DCHECK(kernel_);
120 return kernel_->ref(PARENT_ID);
123 Id GetServerParentId() const {
124 DCHECK(kernel_);
125 return kernel_->ref(SERVER_PARENT_ID);
128 bool GetIsUnsynced() const {
129 DCHECK(kernel_);
130 return kernel_->ref(IS_UNSYNCED);
133 bool GetIsUnappliedUpdate() const {
134 DCHECK(kernel_);
135 return kernel_->ref(IS_UNAPPLIED_UPDATE);
138 bool GetIsDel() const {
139 DCHECK(kernel_);
140 return kernel_->ref(IS_DEL);
143 bool GetIsDir() const {
144 DCHECK(kernel_);
145 return kernel_->ref(IS_DIR);
148 bool GetServerIsDir() const {
149 DCHECK(kernel_);
150 return kernel_->ref(SERVER_IS_DIR);
153 bool GetServerIsDel() const {
154 DCHECK(kernel_);
155 return kernel_->ref(SERVER_IS_DEL);
158 const std::string& GetNonUniqueName() const {
159 DCHECK(kernel_);
160 return kernel_->ref(NON_UNIQUE_NAME);
163 const std::string& GetServerNonUniqueName() const {
164 DCHECK(kernel_);
165 return kernel_->ref(SERVER_NON_UNIQUE_NAME);
168 const std::string& GetUniqueServerTag() const {
169 DCHECK(kernel_);
170 return kernel_->ref(UNIQUE_SERVER_TAG);
173 const std::string& GetUniqueClientTag() const {
174 DCHECK(kernel_);
175 return kernel_->ref(UNIQUE_CLIENT_TAG);
178 const std::string& GetUniqueBookmarkTag() const {
179 DCHECK(kernel_);
180 return kernel_->ref(UNIQUE_BOOKMARK_TAG);
183 const sync_pb::EntitySpecifics& GetSpecifics() const {
184 DCHECK(kernel_);
185 return kernel_->ref(SPECIFICS);
188 const sync_pb::EntitySpecifics& GetServerSpecifics() const {
189 DCHECK(kernel_);
190 return kernel_->ref(SERVER_SPECIFICS);
193 const sync_pb::EntitySpecifics& GetBaseServerSpecifics() const {
194 DCHECK(kernel_);
195 return kernel_->ref(BASE_SERVER_SPECIFICS);
198 const UniquePosition& GetServerUniquePosition() const {
199 DCHECK(kernel_);
200 return kernel_->ref(SERVER_UNIQUE_POSITION);
203 const UniquePosition& GetUniquePosition() const {
204 DCHECK(kernel_);
205 return kernel_->ref(UNIQUE_POSITION);
208 const sync_pb::AttachmentMetadata& GetAttachmentMetadata() const {
209 DCHECK(kernel_);
210 return kernel_->ref(ATTACHMENT_METADATA);
213 const sync_pb::AttachmentMetadata& GetServerAttachmentMetadata() const {
214 DCHECK(kernel_);
215 return kernel_->ref(SERVER_ATTACHMENT_METADATA);
218 bool GetSyncing() const {
219 DCHECK(kernel_);
220 return kernel_->ref(SYNCING);
223 ModelType GetServerModelType() const;
224 ModelType GetModelType() const;
226 Id GetPredecessorId() const;
227 Id GetSuccessorId() const;
228 Id GetFirstChildId() const;
229 int GetTotalNodeCount() const;
231 int GetPositionIndex() const;
233 // Returns a vector of this node's children's handles.
234 // Clears |result| if there are no children. If this node is of a type that
235 // supports user-defined ordering then the resulting vector will be in the
236 // proper order.
237 void GetChildHandles(std::vector<int64>* result) const;
239 inline bool ExistsOnClientBecauseNameIsNonEmpty() const {
240 DCHECK(kernel_);
241 return !kernel_->ref(NON_UNIQUE_NAME).empty();
244 inline bool IsRoot() const {
245 DCHECK(kernel_);
246 return kernel_->ref(ID).IsRoot();
249 // Returns true if this is an entry that is expected to maintain a certain
250 // sort ordering relative to its siblings under the same parent.
251 bool ShouldMaintainPosition() const;
253 // Returns true if this is an entry that is expected to maintain hierarchy.
254 // ie. Whether or not the PARENT_ID field contains useful information.
255 bool ShouldMaintainHierarchy() const;
257 Directory* dir() const;
259 const EntryKernel GetKernelCopy() const {
260 return *kernel_;
263 // Dumps all entry info into a DictionaryValue and returns it.
264 // Transfers ownership of the DictionaryValue to the caller.
265 base::DictionaryValue* ToValue(Cryptographer* cryptographer) const;
267 protected: // Don't allow creation on heap, except by sync API wrappers.
268 void* operator new(size_t size) { return (::operator new)(size); }
270 inline explicit Entry(BaseTransaction* trans)
271 : basetrans_(trans),
272 kernel_(NULL) { }
274 protected:
275 BaseTransaction* const basetrans_;
277 EntryKernel* kernel_;
279 private:
280 friend class Directory;
281 friend class syncer::ReadNode;
282 friend std::ostream& operator << (std::ostream& s, const Entry& e);
284 DISALLOW_COPY_AND_ASSIGN(Entry);
287 std::ostream& operator<<(std::ostream& os, const Entry& entry);
289 } // namespace syncable
290 } // namespace syncer
292 #endif // SYNC_SYNCABLE_ENTRY_H_