Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / sync / sessions / model_type_registry.h
1 // Copyright 2014 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.
4
5 #ifndef SYNC_ENGINE_MODEL_TYPE_REGISTRY_H_
6 #define SYNC_ENGINE_MODEL_TYPE_REGISTRY_H_
7
8 #include <map>
9
10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/scoped_vector.h"
13 #include "base/memory/weak_ptr.h"
14 #include "sync/base/sync_export.h"
15 #include "sync/engine/nudge_handler.h"
16 #include "sync/internal_api/public/base/model_type.h"
17 #include "sync/internal_api/public/engine/model_safe_worker.h"
18 #include "sync/internal_api/public/non_blocking_sync_common.h"
19 #include "sync/internal_api/public/sessions/type_debug_info_observer.h"
20 #include "sync/internal_api/public/sync_context.h"
21 #include "sync/internal_api/public/sync_encryption_handler.h"
22
23 namespace syncer {
24
25 namespace syncable {
26 class Directory;
27 }  // namespace syncable
28
29 class CommitContributor;
30 class DirectoryCommitContributor;
31 class DirectoryUpdateHandler;
32 class DirectoryTypeDebugInfoEmitter;
33 class ModelTypeSyncWorkerImpl;
34 class ModelTypeSyncProxyImpl;
35 class UpdateHandler;
36
37 typedef std::map<ModelType, UpdateHandler*> UpdateHandlerMap;
38 typedef std::map<ModelType, CommitContributor*> CommitContributorMap;
39 typedef std::map<ModelType, DirectoryTypeDebugInfoEmitter*>
40     DirectoryTypeDebugInfoEmitterMap;
41
42 // Keeps track of the sets of active update handlers and commit contributors.
43 class SYNC_EXPORT_PRIVATE ModelTypeRegistry
44     : public SyncContext,
45       public SyncEncryptionHandler::Observer {
46  public:
47   // Constructs a ModelTypeRegistry that supports directory types.
48   ModelTypeRegistry(const std::vector<scoped_refptr<ModelSafeWorker> >& workers,
49                     syncable::Directory* directory,
50                     NudgeHandler* nudge_handler);
51   ~ModelTypeRegistry() override;
52
53   // Sets the set of enabled types.
54   void SetEnabledDirectoryTypes(const ModelSafeRoutingInfo& routing_info);
55
56   // Enables an off-thread type for syncing.  Connects the given proxy
57   // and its task_runner to the newly created worker.
58   //
59   // Expects that the proxy's ModelType is not currently enabled.
60   void ConnectSyncTypeToWorker(
61       syncer::ModelType type,
62       const DataTypeState& data_type_state,
63       const syncer::UpdateResponseDataList& saved_pending_updates,
64       const scoped_refptr<base::SequencedTaskRunner>& type_task_runner,
65       const base::WeakPtr<ModelTypeSyncProxyImpl>& proxy) override;
66
67   // Disables the syncing of an off-thread type.
68   //
69   // Expects that the type is currently enabled.
70   // Deletes the worker associated with the type.
71   void DisconnectSyncWorker(syncer::ModelType type) override;
72
73   // Implementation of SyncEncryptionHandler::Observer.
74   void OnPassphraseRequired(
75       PassphraseRequiredReason reason,
76       const sync_pb::EncryptedData& pending_keys) override;
77   void OnPassphraseAccepted() override;
78   void OnBootstrapTokenUpdated(const std::string& bootstrap_token,
79                                BootstrapTokenType type) override;
80   void OnEncryptedTypesChanged(ModelTypeSet encrypted_types,
81                                bool encrypt_everything) override;
82   void OnEncryptionComplete() override;
83   void OnCryptographerStateChanged(Cryptographer* cryptographer) override;
84   void OnPassphraseTypeChanged(PassphraseType type,
85                                base::Time passphrase_time) override;
86
87   // Gets the set of enabled types.
88   ModelTypeSet GetEnabledTypes() const;
89
90   // Simple getters.
91   UpdateHandlerMap* update_handler_map();
92   CommitContributorMap* commit_contributor_map();
93   DirectoryTypeDebugInfoEmitterMap* directory_type_debug_info_emitter_map();
94
95   void RegisterDirectoryTypeDebugInfoObserver(
96       syncer::TypeDebugInfoObserver* observer);
97   void UnregisterDirectoryTypeDebugInfoObserver(
98       syncer::TypeDebugInfoObserver* observer);
99   bool HasDirectoryTypeDebugInfoObserver(
100       syncer::TypeDebugInfoObserver* observer);
101   void RequestEmitDebugInfo();
102
103   base::WeakPtr<SyncContext> AsWeakPtr();
104
105  private:
106   void OnEncryptionStateChanged();
107
108   ModelTypeSet GetEnabledNonBlockingTypes() const;
109   ModelTypeSet GetEnabledDirectoryTypes() const;
110
111   // Sets of handlers and contributors.
112   ScopedVector<DirectoryCommitContributor> directory_commit_contributors_;
113   ScopedVector<DirectoryUpdateHandler> directory_update_handlers_;
114   ScopedVector<DirectoryTypeDebugInfoEmitter>
115       directory_type_debug_info_emitters_;
116
117   ScopedVector<ModelTypeSyncWorkerImpl> model_type_sync_workers_;
118
119   // Maps of UpdateHandlers and CommitContributors.
120   // They do not own any of the objects they point to.
121   UpdateHandlerMap update_handler_map_;
122   CommitContributorMap commit_contributor_map_;
123
124   // Map of DebugInfoEmitters for directory types.
125   // Non-blocking types handle debug info differently.
126   // Does not own its contents.
127   DirectoryTypeDebugInfoEmitterMap directory_type_debug_info_emitter_map_;
128
129   // The known ModelSafeWorkers.
130   std::map<ModelSafeGroup, scoped_refptr<ModelSafeWorker> > workers_map_;
131
132   // The directory.  Not owned.
133   syncable::Directory* directory_;
134
135   // A copy of the directory's most recent cryptographer.
136   scoped_ptr<Cryptographer> cryptographer_;
137
138   // The set of encrypted types.
139   ModelTypeSet encrypted_types_;
140
141   // A helper that manages cryptography state and preferences.
142   SyncEncryptionHandler* encryption_handler_;
143
144   // The NudgeHandler.  Not owned.
145   NudgeHandler* nudge_handler_;
146
147   // The set of enabled directory types.
148   ModelTypeSet enabled_directory_types_;
149
150   // The set of observers of per-type debug info.
151   //
152   // Each of the DirectoryTypeDebugInfoEmitters needs such a list.  There's
153   // a lot of them, and their lifetimes are unpredictable, so it makes the
154   // book-keeping easier if we just store the list here.  That way it's
155   // guaranteed to live as long as this sync backend.
156   ObserverList<TypeDebugInfoObserver> type_debug_info_observers_;
157
158   base::WeakPtrFactory<ModelTypeRegistry> weak_ptr_factory_;
159
160   DISALLOW_COPY_AND_ASSIGN(ModelTypeRegistry);
161 };
162
163 }  // namespace syncer
164
165 #endif // SYNC_ENGINE_MODEL_TYPE_REGISTRY_H_