OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef CHROME_BROWSER_SYNC_INTERNAL_API_READ_NODE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_INTERNAL_API_READ_NODE_H_ |
6 #define CHROME_BROWSER_SYNC_INTERNAL_API_READ_NODE_H_ | 6 #define CHROME_BROWSER_SYNC_INTERNAL_API_READ_NODE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 public: | 21 public: |
22 // Create an unpopulated ReadNode on the given transaction. Call some flavor | 22 // Create an unpopulated ReadNode on the given transaction. Call some flavor |
23 // of Init to populate the ReadNode with a database entry. | 23 // of Init to populate the ReadNode with a database entry. |
24 explicit ReadNode(const BaseTransaction* transaction); | 24 explicit ReadNode(const BaseTransaction* transaction); |
25 virtual ~ReadNode(); | 25 virtual ~ReadNode(); |
26 | 26 |
27 // A client must use one (and only one) of the following Init variants to | 27 // A client must use one (and only one) of the following Init variants to |
28 // populate the node. | 28 // populate the node. |
29 | 29 |
30 // BaseNode implementation. | 30 // BaseNode implementation. |
31 virtual bool InitByIdLookup(int64 id) OVERRIDE; | 31 virtual InitByLookupResult InitByIdLookup(int64 id) OVERRIDE; |
32 virtual bool InitByClientTagLookup(syncable::ModelType model_type, | 32 virtual InitByLookupResult InitByClientTagLookup( |
33 const std::string& tag) OVERRIDE; | 33 syncable::ModelType model_type, |
| 34 const std::string& tag) OVERRIDE; |
34 | 35 |
35 // There is always a root node, so this can't fail. The root node is | 36 // There is always a root node, so this can't fail. The root node is |
36 // never mutable, so root lookup is only possible on a ReadNode. | 37 // never mutable, so root lookup is only possible on a ReadNode. |
37 void InitByRootLookup(); | 38 void InitByRootLookup(); |
38 | 39 |
39 // Each server-created permanent node is tagged with a unique string. | 40 // Each server-created permanent node is tagged with a unique string. |
40 // Look up the node with the particular tag. If it does not exist, | 41 // Look up the node with the particular tag. If it does not exist, |
41 // return false. | 42 // return false. |
42 bool InitByTagLookup(const std::string& tag); | 43 InitByLookupResult InitByTagLookup(const std::string& tag); |
43 | 44 |
44 // Implementation of BaseNode's abstract virtual accessors. | 45 // Implementation of BaseNode's abstract virtual accessors. |
45 virtual const syncable::Entry* GetEntry() const OVERRIDE; | 46 virtual const syncable::Entry* GetEntry() const OVERRIDE; |
46 virtual const BaseTransaction* GetTransaction() const OVERRIDE; | 47 virtual const BaseTransaction* GetTransaction() const OVERRIDE; |
47 | 48 |
48 protected: | 49 protected: |
49 ReadNode(); | 50 ReadNode(); |
50 | 51 |
51 private: | 52 private: |
52 void* operator new(size_t size); // Node is meant for stack use only. | 53 void* operator new(size_t size); // Node is meant for stack use only. |
53 | 54 |
54 // The underlying syncable object which this class wraps. | 55 // The underlying syncable object which this class wraps. |
55 syncable::Entry* entry_; | 56 syncable::Entry* entry_; |
56 | 57 |
57 // The sync API transaction that is the parent of this node. | 58 // The sync API transaction that is the parent of this node. |
58 const BaseTransaction* transaction_; | 59 const BaseTransaction* transaction_; |
59 | 60 |
60 DISALLOW_COPY_AND_ASSIGN(ReadNode); | 61 DISALLOW_COPY_AND_ASSIGN(ReadNode); |
61 }; | 62 }; |
62 | 63 |
63 } // namespace sync_api | 64 } // namespace sync_api |
64 | 65 |
65 #endif // CHROME_BROWSER_SYNC_INTERNAL_API_READ_NODE_H_ | 66 #endif // CHROME_BROWSER_SYNC_INTERNAL_API_READ_NODE_H_ |
OLD | NEW |