| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 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_STORAGE_REGISTRY_H_ | 5 #ifndef STORAGE_BROWSER_BLOB_BLOB_STORAGE_REGISTRY_H_ |
| 6 #define STORAGE_BROWSER_BLOB_BLOB_STORAGE_REGISTRY_H_ | 6 #define STORAGE_BROWSER_BLOB_BLOB_STORAGE_REGISTRY_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/callback_forward.h" | 15 #include "base/callback_forward.h" |
| 16 #include "base/containers/scoped_ptr_hash_map.h" | 16 #include "base/containers/scoped_ptr_hash_map.h" |
| 17 #include "base/macros.h" | 17 #include "base/macros.h" |
| 18 #include "storage/browser/blob/blob_data_handle.h" |
| 19 #include "storage/browser/blob/blob_memory_controller.h" |
| 18 #include "storage/browser/blob/internal_blob_data.h" | 20 #include "storage/browser/blob/internal_blob_data.h" |
| 19 #include "storage/browser/storage_browser_export.h" | 21 #include "storage/browser/storage_browser_export.h" |
| 20 #include "storage/common/blob_storage/blob_storage_constants.h" | 22 #include "storage/common/blob_storage/blob_storage_constants.h" |
| 21 | 23 |
| 22 class GURL; | 24 class GURL; |
| 23 | 25 |
| 24 namespace storage { | 26 namespace storage { |
| 25 | 27 |
| 26 // This class stores the blob data in the various states of construction, as | 28 // This class stores the blob data in the various states of construction, as |
| 27 // well as URL mappings to blob uuids. | 29 // well as URL mappings to blob uuids. |
| 28 // Implementation notes: | 30 // Implementation notes: |
| 29 // * There is no implicit refcounting in this class, except for setting the | 31 // * There is no implicit refcounting in this class, except for setting the |
| 30 // refcount to 1 on registration. | 32 // refcount to 1 on registration. |
| 31 // * When removing a uuid registration, we do not check for URL mappings to that | 33 // * When removing a uuid registration, we do not check for URL mappings to that |
| 32 // uuid. The user must keep track of these. | 34 // uuid. The user must keep track of these. |
| 33 class STORAGE_EXPORT BlobStorageRegistry { | 35 class STORAGE_EXPORT BlobStorageRegistry { |
| 34 public: | 36 public: |
| 35 // True means the blob was constructed successfully, and false means that | 37 struct STORAGE_EXPORT ItemCopyEntry { |
| 36 // there was an error, which is reported in the second argument. | 38 ItemCopyEntry(scoped_refptr<ShareableBlobDataItem> source_item, |
| 37 using BlobConstructedCallback = | 39 size_t source_item_offset, |
| 38 base::Callback<void(bool, IPCBlobCreationCancelCode)>; | 40 scoped_refptr<ShareableBlobDataItem> dest_item); |
| 41 ~ItemCopyEntry(); |
| 42 ItemCopyEntry(const ItemCopyEntry&); |
| 39 | 43 |
| 40 enum class BlobState { | 44 scoped_refptr<ShareableBlobDataItem> source_item; |
| 41 // The blob is pending transportation from the renderer. This is the default | 45 size_t source_item_offset = 0; |
| 42 // state on entry construction. | 46 scoped_refptr<ShareableBlobDataItem> dest_item; |
| 43 PENDING, | |
| 44 // The blob is complete and can be read from. | |
| 45 COMPLETE, | |
| 46 // The blob is broken and no longer holds data. This happens when there was | |
| 47 // a problem constructing the blob, or we've run out of memory. | |
| 48 BROKEN | |
| 49 }; | 47 }; |
| 50 | 48 |
| 51 struct STORAGE_EXPORT Entry { | 49 struct STORAGE_EXPORT Entry { |
| 52 size_t refcount; | 50 size_t refcount = 1; |
| 53 BlobState state; | 51 BlobStatus status = BlobStatus::PENDING; |
| 54 std::vector<BlobConstructedCallback> build_completion_callbacks; | 52 std::vector<BlobStatusCallback> build_completion_callbacks; |
| 55 | 53 |
| 56 // Only applicable if the state == BROKEN. | 54 // Blob items. During construction these can be |
| 57 IPCBlobCreationCancelCode broken_reason = | 55 InternalBlobData data; |
| 58 IPCBlobCreationCancelCode::UNKNOWN; | 56 bool waiting_until_user_population = false; |
| 57 BlobStatusCallback ready_for_user_population_callback; |
| 59 | 58 |
| 60 // data and data_builder are mutually exclusive. | 59 // Metadata |
| 61 std::unique_ptr<InternalBlobData> data; | |
| 62 std::unique_ptr<InternalBlobData::Builder> data_builder; | |
| 63 | |
| 64 std::string content_type; | 60 std::string content_type; |
| 65 std::string content_disposition; | 61 std::string content_disposition; |
| 66 | 62 |
| 67 Entry() = delete; | 63 bool can_fit = true; |
| 68 Entry(int refcount, BlobState state); | 64 BlobMemoryController::PendingContructionEntry pending_copies_memory_entry; |
| 65 // These are copies from a referenced blob item to our blob items. Some of |
| 66 // these entries may have changed from bytes to files if they were paged. |
| 67 // We must handle this case. |
| 68 std::vector<ItemCopyEntry> copies; |
| 69 |
| 70 std::vector<std::unique_ptr<BlobDataHandle>> dependent_blobs; |
| 71 size_t dependent_blobs_building = 0; |
| 72 |
| 73 Entry(); |
| 69 ~Entry(); | 74 ~Entry(); |
| 70 | |
| 71 // Performs a test-and-set on the state of the given blob. If the state | |
| 72 // isn't as expected, we return false. Otherwise we set the new state and | |
| 73 // return true. | |
| 74 bool TestAndSetState(BlobState expected, BlobState set); | |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 BlobStorageRegistry(); | 77 BlobStorageRegistry(); |
| 78 ~BlobStorageRegistry(); | 78 ~BlobStorageRegistry(); |
| 79 | 79 |
| 80 // Creates the blob entry with a refcount of 1 and a state of PENDING. If | 80 // Creates the blob entry with a refcount of 1 and a state of PENDING. If |
| 81 // the blob is already in use, we return null. | 81 // the blob is already in use, we return null. |
| 82 Entry* CreateEntry(const std::string& uuid, | 82 Entry* CreateEntry(const std::string& uuid, |
| 83 const std::string& content_type, | 83 const std::string& content_type, |
| 84 const std::string& content_disposition); | 84 const std::string& content_disposition); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 using URLMap = std::map<GURL, std::string>; | 118 using URLMap = std::map<GURL, std::string>; |
| 119 | 119 |
| 120 BlobMap blob_map_; | 120 BlobMap blob_map_; |
| 121 URLMap url_to_uuid_; | 121 URLMap url_to_uuid_; |
| 122 | 122 |
| 123 DISALLOW_COPY_AND_ASSIGN(BlobStorageRegistry); | 123 DISALLOW_COPY_AND_ASSIGN(BlobStorageRegistry); |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 } // namespace storage | 126 } // namespace storage |
| 127 #endif // STORAGE_BROWSER_BLOB_BLOB_STORAGE_REGISTRY_H_ | 127 #endif // STORAGE_BROWSER_BLOB_BLOB_STORAGE_REGISTRY_H_ |
| OLD | NEW |