Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef STORAGE_BROWSER_BLOB_BLOB_DATA_ITEM_H_ | 5 #ifndef STORAGE_BROWSER_BLOB_BLOB_DATA_ITEM_H_ |
| 6 #define STORAGE_BROWSER_BLOB_BLOB_DATA_ITEM_H_ | 6 #define STORAGE_BROWSER_BLOB_BLOB_DATA_ITEM_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "storage/browser/blob/shareable_file_reference.h" | |
| 11 #include "storage/browser/storage_browser_export.h" | 10 #include "storage/browser/storage_browser_export.h" |
| 12 #include "storage/common/data_element.h" | 11 #include "storage/common/data_element.h" |
| 13 | 12 |
| 13 namespace disk_cache { | |
| 14 class Entry; | |
| 15 } | |
| 16 | |
| 14 namespace storage { | 17 namespace storage { |
| 15 class BlobDataBuilder; | 18 class BlobDataBuilder; |
| 16 class BlobStorageContext; | 19 class BlobStorageContext; |
| 17 | 20 |
| 18 // Ref counted blob item. This class owns the backing data of the blob item. | 21 // Ref counted blob item. This class owns the backing data of the blob item. The |
| 19 // The backing data is immutable, and cannot change after creation. | 22 // backing data is immutable, and cannot change after creation. The purpose of |
| 20 // The purpose of this class is to allow the resource to stick around in the | 23 // this class is to allow the resource to stick around in the snapshot even |
| 21 // snapshot even after the resource was swapped in the blob (either to disk or | 24 // after the resource was swapped in the blob (either to disk or to memory) by |
| 22 // to memory) by the BlobStorageContext. | 25 // the BlobStorageContext. |
| 23 class STORAGE_EXPORT BlobDataItem : public base::RefCounted<BlobDataItem> { | 26 class STORAGE_EXPORT BlobDataItem : public base::RefCounted<BlobDataItem> { |
| 24 public: | 27 public: |
| 28 // The DataHandle class is used to persist resources that are needed for | |
| 29 // reading this BlobDataItem. This object will stay around while any reads are | |
| 30 // pending. If all blobs with this item are deleted or the item is swapped for | |
| 31 // a different backend version (mem-to-disk or the reverse), then the item | |
| 32 // will be destructed after all pending reads are complete. | |
| 33 class DataHandle : public base::RefCounted<DataHandle> { | |
| 34 public: | |
| 35 virtual disk_cache::Entry* disk_cache_entry() const; | |
|
dmurph
2015/06/05 01:17:22
Sorry, why does this need to be here? To get the
gavinp
2015/06/05 15:10:34
BlobDataItem needs an implementation of disk_cache
| |
| 36 | |
| 37 protected: | |
| 38 virtual ~DataHandle(); | |
| 39 | |
| 40 private: | |
| 41 friend class base::RefCounted<DataHandle>; | |
| 42 }; | |
| 43 | |
| 25 DataElement::Type type() const { return item_->type(); } | 44 DataElement::Type type() const { return item_->type(); } |
| 26 const char* bytes() const { return item_->bytes(); } | 45 const char* bytes() const { return item_->bytes(); } |
| 27 const base::FilePath& path() const { return item_->path(); } | 46 const base::FilePath& path() const { return item_->path(); } |
| 28 const GURL& filesystem_url() const { return item_->filesystem_url(); } | 47 const GURL& filesystem_url() const { return item_->filesystem_url(); } |
| 29 const std::string& blob_uuid() const { return item_->blob_uuid(); } | 48 const std::string& blob_uuid() const { return item_->blob_uuid(); } |
| 30 uint64 offset() const { return item_->offset(); } | 49 uint64 offset() const { return item_->offset(); } |
| 31 uint64 length() const { return item_->length(); } | 50 uint64 length() const { return item_->length(); } |
| 32 const base::Time& expected_modification_time() const { | 51 const base::Time& expected_modification_time() const { |
| 33 return item_->expected_modification_time(); | 52 return item_->expected_modification_time(); |
| 34 } | 53 } |
| 35 const DataElement& data_element() const { return *item_; } | 54 const DataElement& data_element() const { return *item_; } |
| 36 const DataElement* data_element_ptr() const { return item_.get(); } | 55 const DataElement* data_element_ptr() const { return item_.get(); } |
| 37 | 56 |
| 57 disk_cache::Entry* disk_cache_entry() const { | |
| 58 return data_handle_ ? data_handle_->disk_cache_entry() : nullptr; | |
| 59 } | |
| 60 int disk_cache_stream_index() const { return disk_cache_stream_index_; } | |
| 61 | |
| 38 private: | 62 private: |
| 39 friend class BlobDataBuilder; | 63 friend class BlobDataBuilder; |
| 40 friend class BlobStorageContext; | 64 friend class BlobStorageContext; |
| 41 friend class base::RefCounted<BlobDataItem>; | 65 friend class base::RefCounted<BlobDataItem>; |
| 42 | 66 |
| 43 BlobDataItem(scoped_ptr<DataElement> item); | 67 BlobDataItem(scoped_ptr<DataElement> item); |
| 44 BlobDataItem(scoped_ptr<DataElement> item, | 68 BlobDataItem(scoped_ptr<DataElement> item, |
| 45 scoped_refptr<ShareableFileReference> file_handle); | 69 const scoped_refptr<DataHandle>& data_handle); |
| 70 BlobDataItem(scoped_ptr<DataElement> item, | |
| 71 const scoped_refptr<DataHandle>& data_handle, | |
| 72 int disk_cache_stream_index_); | |
| 46 virtual ~BlobDataItem(); | 73 virtual ~BlobDataItem(); |
| 47 | 74 |
| 48 scoped_ptr<DataElement> item_; | 75 scoped_ptr<DataElement> item_; |
| 49 scoped_refptr<ShareableFileReference> file_handle_; | 76 scoped_refptr<DataHandle> data_handle_; |
| 77 | |
| 78 int disk_cache_stream_index_; // For TYPE_DISK_CACHE_ENTRY. | |
| 50 }; | 79 }; |
| 51 | 80 |
| 52 #if defined(UNIT_TEST) | 81 #if defined(UNIT_TEST) |
| 53 inline bool operator==(const BlobDataItem& a, const BlobDataItem& b) { | 82 inline bool operator==(const BlobDataItem& a, const BlobDataItem& b) { |
| 54 return a.data_element() == b.data_element(); | 83 return a.disk_cache_entry() == b.disk_cache_entry() && |
| 84 a.data_element() == b.data_element(); | |
| 55 } | 85 } |
| 56 | 86 |
| 57 inline bool operator!=(const BlobDataItem& a, const BlobDataItem& b) { | 87 inline bool operator!=(const BlobDataItem& a, const BlobDataItem& b) { |
| 58 return !(a == b); | 88 return !(a == b); |
| 59 } | 89 } |
| 60 #endif // defined(UNIT_TEST) | 90 #endif // defined(UNIT_TEST) |
| 61 | 91 |
| 62 } // namespace storage | 92 } // namespace storage |
| 63 | 93 |
| 64 #endif // STORAGE_BROWSER_BLOB_BLOB_DATA_ITEM_H_ | 94 #endif // STORAGE_BROWSER_BLOB_BLOB_DATA_ITEM_H_ |
| OLD | NEW |