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

Unified Diff: sync/internal_api/public/attachments/on_disk_attachment_store.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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/public/attachments/on_disk_attachment_store.h
diff --git a/sync/internal_api/public/attachments/on_disk_attachment_store.h b/sync/internal_api/public/attachments/on_disk_attachment_store.h
deleted file mode 100644
index b1a5af81e3a44ba8ee3b5363786498c3b0eedbd7..0000000000000000000000000000000000000000
--- a/sync/internal_api/public/attachments/on_disk_attachment_store.h
+++ /dev/null
@@ -1,107 +0,0 @@
-// 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.
-
-#ifndef SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ON_DISK_ATTACHMENT_STORE_H_
-#define SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ON_DISK_ATTACHMENT_STORE_H_
-
-#include <string>
-
-#include "base/files/file_path.h"
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "base/threading/non_thread_safe.h"
-#include "sync/api/attachments/attachment.h"
-#include "sync/api/attachments/attachment_id.h"
-#include "sync/api/attachments/attachment_store.h"
-#include "sync/api/attachments/attachment_store_backend.h"
-#include "sync/base/sync_export.h"
-
-namespace attachment_store_pb {
-class RecordMetadata;
-} // namespace attachment_store_pb
-
-namespace base {
-class SequencedTaskRunner;
-} // namespace base
-
-namespace leveldb {
-class DB;
-} // namespace leveldb
-
-namespace syncer {
-
-// On-disk implementation of AttachmentStore. Stores attachments in leveldb
-// database in |path| directory.
-class SYNC_EXPORT OnDiskAttachmentStore : public AttachmentStoreBackend,
- public base::NonThreadSafe {
- public:
- // Constructs attachment store.
- OnDiskAttachmentStore(
- const scoped_refptr<base::SequencedTaskRunner>& callback_task_runner,
- const base::FilePath& path);
- ~OnDiskAttachmentStore() override;
-
- // AttachmentStoreBackend implementation.
- void Init(const AttachmentStore::InitCallback& callback) override;
- void Read(AttachmentStore::Component component,
- const AttachmentIdList& ids,
- const AttachmentStore::ReadCallback& callback) override;
- void Write(AttachmentStore::Component component,
- const AttachmentList& attachments,
- const AttachmentStore::WriteCallback& callback) override;
- void SetReference(AttachmentStore::Component component,
- const AttachmentIdList& ids) override;
- void DropReference(AttachmentStore::Component component,
- const AttachmentIdList& ids,
- const AttachmentStore::DropCallback& callback) override;
- void ReadMetadataById(
- AttachmentStore::Component component,
- const AttachmentIdList& ids,
- const AttachmentStore::ReadMetadataCallback& callback) override;
- void ReadMetadata(
- AttachmentStore::Component component,
- const AttachmentStore::ReadMetadataCallback& callback) override;
-
- private:
- friend class OnDiskAttachmentStoreSpecificTest;
-
- // Opens leveldb database at |path|, creating it if needed. In the future
- // upgrade code will be invoked from OpenOrCreate as well. If open fails
- // result is UNSPECIFIED_ERROR.
- AttachmentStore::Result OpenOrCreate(const base::FilePath& path);
- // Reads single attachment from store. Returns nullptr in case of errors.
- std::unique_ptr<Attachment> ReadSingleAttachment(
- const AttachmentId& attachment_id,
- AttachmentStore::Component component);
- // Writes single attachment to store. Returns false in case of errors.
- bool WriteSingleAttachment(const Attachment& attachment,
- AttachmentStore::Component component);
- // Reads single attachment_store_pb::RecordMetadata from levelDB into the
- // provided buffer. Returns false in case of an error.
- bool ReadSingleRecordMetadata(
- const AttachmentId& attachment_id,
- attachment_store_pb::RecordMetadata* record_metadata);
- // Writes single attachment_store_pb::RecordMetadata to levelDB. Returns false
- // in case of an error.
- bool WriteSingleRecordMetadata(
- const AttachmentId& attachment_id,
- const attachment_store_pb::RecordMetadata& record_metadata);
-
- static std::string MakeDataKeyFromAttachmentId(
- const AttachmentId& attachment_id);
- static std::string MakeMetadataKeyFromAttachmentId(
- const AttachmentId& attachment_id);
- static AttachmentMetadata MakeAttachmentMetadata(
- const AttachmentId& attachment_id,
- const attachment_store_pb::RecordMetadata& record_metadata);
-
- const base::FilePath path_;
- std::unique_ptr<leveldb::DB> db_;
-
- DISALLOW_COPY_AND_ASSIGN(OnDiskAttachmentStore);
-};
-
-} // namespace syncer
-
-#endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ON_DISK_ATTACHMENT_STORE_H_
« no previous file with comments | « sync/internal_api/public/attachments/in_memory_attachment_store.h ('k') | sync/internal_api/public/attachments/task_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698