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

Unified Diff: sync/internal_api/attachments/in_memory_attachment_store.cc

Issue 601553004: Refactor FakeAttachmentStore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Newline Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: sync/internal_api/attachments/in_memory_attachment_store.cc
diff --git a/sync/internal_api/attachments/in_memory_attachment_store.cc b/sync/internal_api/attachments/in_memory_attachment_store.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c1e366dc1acda9aed250527bbc7b9a1fa2ea2ce4
--- /dev/null
+++ b/sync/internal_api/attachments/in_memory_attachment_store.cc
@@ -0,0 +1,80 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "sync/internal_api/public/attachments/in_memory_attachment_store.h"
+
+#include "base/bind.h"
+#include "base/callback.h"
+#include "base/location.h"
+#include "base/memory/scoped_ptr.h"
+
+namespace syncer {
+
+InMemoryAttachmentStore::InMemoryAttachmentStore(
+ const scoped_refptr<base::SingleThreadTaskRunner>& callback_task_runner)
+ : callback_task_runner_(callback_task_runner) {
+ // Object is created on one thread but used on another.
+ DetachFromThread();
+}
+
+InMemoryAttachmentStore::~InMemoryAttachmentStore() {
+}
+
+void InMemoryAttachmentStore::Read(const AttachmentIdList& ids,
+ const ReadCallback& callback) {
+ DCHECK(CalledOnValidThread());
+ Result result_code = SUCCESS;
+ AttachmentIdList::const_iterator id_iter = ids.begin();
+ AttachmentIdList::const_iterator id_end = ids.end();
+ scoped_ptr<AttachmentMap> result_map(new AttachmentMap);
+ scoped_ptr<AttachmentIdList> unavailable_attachments(new AttachmentIdList);
+ for (; id_iter != id_end; ++id_iter) {
+ const AttachmentId& id = *id_iter;
+ syncer::AttachmentMap::iterator attachment_iter =
+ attachments_.find(*id_iter);
+ if (attachment_iter != attachments_.end()) {
+ const Attachment& attachment = attachment_iter->second;
+ result_map->insert(std::make_pair(id, attachment));
+ } else {
+ unavailable_attachments->push_back(id);
+ }
+ }
+ if (!unavailable_attachments->empty()) {
+ result_code = UNSPECIFIED_ERROR;
+ }
+ callback_task_runner_->PostTask(
+ FROM_HERE,
+ base::Bind(callback,
+ result_code,
+ base::Passed(&result_map),
+ base::Passed(&unavailable_attachments)));
+}
+
+void InMemoryAttachmentStore::Write(const AttachmentList& attachments,
+ const WriteCallback& callback) {
+ DCHECK(CalledOnValidThread());
+ AttachmentList::const_iterator iter = attachments.begin();
+ AttachmentList::const_iterator end = attachments.end();
+ for (; iter != end; ++iter) {
+ attachments_.insert(std::make_pair(iter->GetId(), *iter));
+ }
+ callback_task_runner_->PostTask(FROM_HERE, base::Bind(callback, SUCCESS));
+}
+
+void InMemoryAttachmentStore::Drop(const AttachmentIdList& ids,
+ const DropCallback& callback) {
+ DCHECK(CalledOnValidThread());
+ Result result = SUCCESS;
+ AttachmentIdList::const_iterator ids_iter = ids.begin();
+ AttachmentIdList::const_iterator ids_end = ids.end();
+ for (; ids_iter != ids_end; ++ids_iter) {
+ AttachmentMap::iterator attachments_iter = attachments_.find(*ids_iter);
+ if (attachments_iter != attachments_.end()) {
+ attachments_.erase(attachments_iter);
+ }
+ }
+ callback_task_runner_->PostTask(FROM_HERE, base::Bind(callback, result));
+}
+
+} // namespace syncer

Powered by Google App Engine
This is Rietveld 408576698