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

Unified Diff: storage/browser/blob/blob_data_builder.h

Issue 810403004: [Storage] Blob Storage Refactoring pt 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed copyright Created 5 years, 11 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: storage/browser/blob/blob_data_builder.h
diff --git a/storage/browser/blob/blob_data_builder.h b/storage/browser/blob/blob_data_builder.h
new file mode 100644
index 0000000000000000000000000000000000000000..3c426406c5e129cc641983ceba0b57bd26a2e9b6
--- /dev/null
+++ b/storage/browser/blob/blob_data_builder.h
@@ -0,0 +1,118 @@
+// Copyright 2015 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 STORAGE_BROWSER_BLOB_BLOB_DATA_BUILDER_H_
+#define STORAGE_BROWSER_BLOB_BLOB_DATA_BUILDER_H_
+
+#include <string>
+#include <vector>
+
+#include "base/basictypes.h"
+#include "base/files/file_path.h"
+#include "storage/browser/blob/blob_data_item.h"
+#include "storage/browser/blob/blob_data_snapshot.h"
+#include "storage/browser/storage_browser_export.h"
+
+namespace storage {
+class BlobStorageContext;
+
+class STORAGE_EXPORT BlobDataBuilder {
+ public:
+ explicit BlobDataBuilder(const std::string& uuid);
+ virtual ~BlobDataBuilder();
+
+ const std::string& uuid() const { return uuid_; }
+
+ void AppendData(const std::string& data) {
+ AppendData(data.c_str(), data.size());
+ }
+
+ void AppendData(const char* data, size_t length);
+
+ void AppendFile(const base::FilePath& file_path,
+ uint64 offset,
+ uint64 length,
+ const base::Time& expected_modification_time);
+
+ void AppendFile(const base::FilePath& file_path,
+ uint64 offset,
+ uint64 length,
+ const base::Time& expected_modification_time,
+ scoped_refptr<ShareableFileReference> shareable_file);
+
+ void AppendBlob(const std::string& uuid, uint64 offset, uint64 length);
+ void AppendFileSystemFile(const GURL& url,
+ uint64 offset,
+ uint64 length,
+ const base::Time& expected_modification_time);
+
+ void set_content_type(const std::string& content_type) {
+ content_type_ = content_type;
+ }
+
+ void set_content_disposition(const std::string& content_disposition) {
+ content_disposition_ = content_disposition;
+ }
+
+ size_t GetMemoryUsage() const;
+
+ scoped_ptr<BlobDataSnapshot> BuildSnapshot();
+
+ private:
+ friend class BlobStorageContext;
+ friend bool operator==(const BlobDataBuilder& a, const BlobDataBuilder& b);
+ friend bool operator==(const BlobDataSnapshot& a, const BlobDataBuilder& b);
+
+ std::string uuid_;
+ std::string content_type_;
+ std::string content_disposition_;
+ std::vector<scoped_refptr<BlobDataItem>> items_;
+
+ DISALLOW_COPY_AND_ASSIGN(BlobDataBuilder);
+};
+
+#if defined(UNIT_TEST)
+inline bool operator==(const BlobDataBuilder& a, const BlobDataBuilder& b) {
+ if (a.content_type_ != b.content_type_)
+ return false;
+ if (a.content_disposition_ != b.content_disposition_)
+ return false;
+ if (a.items_.size() != b.items_.size())
+ return false;
+ for (size_t i = 0; i < a.items_.size(); ++i) {
+ if (a.items_[i] != b.items_[i])
+ return false;
+ }
+ return true;
+}
+
+inline bool operator==(const BlobDataSnapshot& a, const BlobDataBuilder& b) {
+ if (a.content_type() != b.content_type_) {
+ return false;
+ }
+ if (a.content_disposition() != b.content_disposition_) {
+ return false;
+ }
+ if (a.items().size() != b.items_.size()) {
+ return false;
+ }
+ for (size_t i = 0; i < a.items().size(); ++i) {
+ if (*(a.items()[i]) != *(b.items_[i])) {
+ return false;
+ }
+ }
+ return true;
+}
+
+inline bool operator!=(const BlobDataSnapshot& a, const BlobDataBuilder& b) {
+ return !(a == b);
+}
+
+inline bool operator!=(const BlobDataBuilder& a, const BlobDataBuilder& b) {
+ return !(a == b);
+}
+#endif // defined(UNIT_TEST)
+
+} // namespace storage
+#endif // STORAGE_BROWSER_BLOB_BLOB_DATA_BUILDER_H_

Powered by Google App Engine
This is Rietveld 408576698