Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1053)

Side by Side Diff: components/sync/api_impl/attachments/attachment_service_impl.h

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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 COMPONENTS_SYNC_API_IMPL_ATTACHMENTS_ATTACHMENT_SERVICE_IMPL_H_
6 #define COMPONENTS_SYNC_API_IMPL_ATTACHMENTS_ATTACHMENT_SERVICE_IMPL_H_
7
8 #include <deque>
9 #include <memory>
10
11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/weak_ptr.h"
14 #include "base/threading/non_thread_safe.h"
15 #include "components/sync/api/attachments/attachment_service.h"
16 #include "components/sync/api/attachments/attachment_service_proxy.h"
17 #include "components/sync/api/attachments/attachment_store.h"
18 #include "components/sync/api_impl/attachments/task_queue.h"
19 #include "components/sync/engine/attachments/attachment_downloader.h"
20 #include "components/sync/engine/attachments/attachment_uploader.h"
21 #include "net/base/network_change_notifier.h"
22
23 namespace syncer {
24
25 // Implementation of AttachmentService.
26 class AttachmentServiceImpl
27 : public AttachmentService,
28 public net::NetworkChangeNotifier::NetworkChangeObserver,
29 public base::NonThreadSafe {
30 public:
31 // |attachment_store| is required. UploadAttachments reads attachment data
32 // from it. Downloaded attachments will be written into it.
33 //
34 // |attachment_uploader| is optional. If null, attachments will never be
35 // uploaded to the sync server and |delegate|'s OnAttachmentUploaded will
36 // never be invoked.
37 //
38 // |attachment_downloader| is optional. If null, attachments will never be
39 // downloaded. Only attachments in |attachment_store| will be returned from
40 // GetOrDownloadAttachments.
41 //
42 // |delegate| is optional delegate for AttachmentService to notify about
43 // asynchronous events (AttachmentUploaded). Pass NULL if delegate is not
44 // provided. AttachmentService doesn't take ownership of delegate, the pointer
45 // must be valid throughout AttachmentService lifetime.
46 //
47 // |initial_backoff_delay| the initial delay between upload attempts. This
48 // class automatically retries failed uploads. After the first failure, it
49 // will wait this amount of time until it tries again. After each failure,
50 // the delay is doubled until the |max_backoff_delay| is reached. A
51 // successful upload clears the delay.
52 //
53 // |max_backoff_delay| the maxmium delay between upload attempts when backed
54 // off.
55 AttachmentServiceImpl(
56 std::unique_ptr<AttachmentStoreForSync> attachment_store,
57 std::unique_ptr<AttachmentUploader> attachment_uploader,
58 std::unique_ptr<AttachmentDownloader> attachment_downloader,
59 Delegate* delegate,
60 const base::TimeDelta& initial_backoff_delay,
61 const base::TimeDelta& max_backoff_delay);
62 ~AttachmentServiceImpl() override;
63
64 // AttachmentService implementation.
65 void GetOrDownloadAttachments(const AttachmentIdList& attachment_ids,
66 const GetOrDownloadCallback& callback) override;
67 void UploadAttachments(const AttachmentIdList& attachment_ids) override;
68
69 // NetworkChangeObserver implementation.
70 void OnNetworkChanged(
71 net::NetworkChangeNotifier::ConnectionType type) override;
72
73 // Use |timer| in the underlying TaskQueue.
74 //
75 // Used in tests. See also MockTimer.
76 void SetTimerForTest(std::unique_ptr<base::Timer> timer);
77
78 private:
79 class GetOrDownloadState;
80
81 void ReadDone(const scoped_refptr<GetOrDownloadState>& state,
82 const AttachmentStore::Result& result,
83 std::unique_ptr<AttachmentMap> attachments,
84 std::unique_ptr<AttachmentIdList> unavailable_attachment_ids);
85 void WriteDone(const scoped_refptr<GetOrDownloadState>& state,
86 const Attachment& attachment,
87 const AttachmentStore::Result& result);
88 void UploadDone(const AttachmentUploader::UploadResult& result,
89 const AttachmentId& attachment_id);
90 void DownloadDone(const scoped_refptr<GetOrDownloadState>& state,
91 const AttachmentId& attachment_id,
92 const AttachmentDownloader::DownloadResult& result,
93 std::unique_ptr<Attachment> attachment);
94 void BeginUpload(const AttachmentId& attachment_id);
95 void ReadDoneNowUpload(
96 const AttachmentStore::Result& result,
97 std::unique_ptr<AttachmentMap> attachments,
98 std::unique_ptr<AttachmentIdList> unavailable_attachment_ids);
99
100 std::unique_ptr<AttachmentStoreForSync> attachment_store_;
101
102 // May be null.
103 const std::unique_ptr<AttachmentUploader> attachment_uploader_;
104
105 // May be null.
106 const std::unique_ptr<AttachmentDownloader> attachment_downloader_;
107
108 // May be null.
109 Delegate* delegate_;
110
111 std::unique_ptr<TaskQueue<AttachmentId>> upload_task_queue_;
112
113 // Must be last data member.
114 base::WeakPtrFactory<AttachmentServiceImpl> weak_ptr_factory_;
115
116 DISALLOW_COPY_AND_ASSIGN(AttachmentServiceImpl);
117 };
118
119 } // namespace syncer
120
121 #endif // COMPONENTS_SYNC_API_IMPL_ATTACHMENTS_ATTACHMENT_SERVICE_IMPL_H_
OLDNEW
« no previous file with comments | « components/sync/api_impl/attachments/DEPS ('k') | components/sync/api_impl/attachments/attachment_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698