| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_SYNC_CORE_MODEL_TYPE_STORE_BACKEND_H_ | 5 #ifndef COMPONENTS_SYNC_CORE_MODEL_TYPE_STORE_BACKEND_H_ |
| 6 #define COMPONENTS_SYNC_CORE_MODEL_TYPE_STORE_BACKEND_H_ | 6 #define COMPONENTS_SYNC_CORE_MODEL_TYPE_STORE_BACKEND_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <unordered_map> | 10 #include <unordered_map> |
| 11 | 11 |
| 12 #include "base/lazy_instance.h" | 12 #include "base/lazy_instance.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/threading/thread_collision_warner.h" | 14 #include "base/threading/thread_collision_warner.h" |
| 15 #include "components/sync/api/model_type_store.h" | 15 #include "components/sync/api/model_type_store.h" |
| 16 | 16 |
| 17 namespace leveldb { | 17 namespace leveldb { |
| 18 class DB; | 18 class DB; |
| 19 class Env; | 19 class Env; |
| 20 class WriteBatch; | 20 class WriteBatch; |
| 21 } // namespace leveldb | 21 } // namespace leveldb |
| 22 | 22 |
| 23 namespace syncer { | 23 namespace syncer_v2 { |
| 24 | 24 |
| 25 // ModelTypeStoreBackend handles operations with leveldb. It is oblivious of the | 25 // ModelTypeStoreBackend handles operations with leveldb. It is oblivious of the |
| 26 // fact that it is called from separate thread (with the exception of ctor), | 26 // fact that it is called from separate thread (with the exception of ctor), |
| 27 // meaning it shouldn't deal with callbacks and task_runners. | 27 // meaning it shouldn't deal with callbacks and task_runners. |
| 28 class ModelTypeStoreBackend | 28 class ModelTypeStoreBackend |
| 29 : public base::RefCountedThreadSafe<ModelTypeStoreBackend> { | 29 : public base::RefCountedThreadSafe<ModelTypeStoreBackend> { |
| 30 public: | 30 public: |
| 31 typedef std::unordered_map<std::string, ModelTypeStoreBackend*> BackendMap; | 31 typedef std::unordered_map<std::string, ModelTypeStoreBackend*> BackendMap; |
| 32 | 32 |
| 33 // Helper function to create in memory environment for leveldb. | 33 // Helper function to create in memory environment for leveldb. |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 // with in-memory or faulty environment. | 96 // with in-memory or faulty environment. |
| 97 ModelTypeStore::Result Init(const std::string& path, | 97 ModelTypeStore::Result Init(const std::string& path, |
| 98 std::unique_ptr<leveldb::Env> env); | 98 std::unique_ptr<leveldb::Env> env); |
| 99 | 99 |
| 100 // Macro wrapped mutex to guard against concurrent calls in debug builds. | 100 // Macro wrapped mutex to guard against concurrent calls in debug builds. |
| 101 DFAKE_MUTEX(push_pop_); | 101 DFAKE_MUTEX(push_pop_); |
| 102 | 102 |
| 103 DISALLOW_COPY_AND_ASSIGN(ModelTypeStoreBackend); | 103 DISALLOW_COPY_AND_ASSIGN(ModelTypeStoreBackend); |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace syncer | 106 } // namespace syncer_v2 |
| 107 | 107 |
| 108 #endif // COMPONENTS_SYNC_CORE_MODEL_TYPE_STORE_BACKEND_H_ | 108 #endif // COMPONENTS_SYNC_CORE_MODEL_TYPE_STORE_BACKEND_H_ |
| OLD | NEW |