| 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_ASYNC_TRANSPORT_REQUEST_BUILDER_H_ | 5 #ifndef STORAGE_BROWSER_BLOB_BLOB_TRANSPORT_REQUEST_BUILDER_H_ |
| 6 #define STORAGE_BROWSER_BLOB_BLOB_ASYNC_TRANSPORT_REQUEST_BUILDER_H_ | 6 #define STORAGE_BROWSER_BLOB_BLOB_TRANSPORT_REQUEST_BUILDER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <memory> | 12 #include <memory> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "storage/browser/blob/blob_data_builder.h" | 16 #include "storage/browser/blob/blob_data_builder.h" |
| 17 #include "storage/browser/storage_browser_export.h" | 17 #include "storage/browser/storage_browser_export.h" |
| 18 #include "storage/common/blob_storage/blob_item_bytes_request.h" | 18 #include "storage/common/blob_storage/blob_item_bytes_request.h" |
| 19 #include "storage/common/data_element.h" | 19 #include "storage/common/data_element.h" |
| 20 | 20 |
| 21 namespace storage { | 21 namespace storage { |
| 22 | 22 |
| 23 // This class generates the requests needed to asynchronously transport the | 23 // This class generates the requests needed to asynchronously transport the |
| 24 // given blob items from the renderer to the browser. The main job of this class | 24 // given blob items from the renderer to the browser. The main job of this class |
| 25 // is to segment the memory being transfered to efficiently use shared memory, | 25 // is to segment the memory being transfered to efficiently use shared memory, |
| 26 // file, and IPC max sizes. | 26 // file, and IPC max sizes. |
| 27 // Note: This class does not compute requests by using the 'shortcut' method, | 27 // Note: This class does not compute requests by using the 'shortcut' method, |
| 28 // where the data is already present in the blob description, and will | 28 // where the data is already present in the blob description, and will |
| 29 // always give the caller requests for requesting all data from the | 29 // always give the caller requests for requesting all data from the |
| 30 // renderer. | 30 // renderer. |
| 31 class STORAGE_EXPORT BlobAsyncTransportRequestBuilder { | 31 class STORAGE_EXPORT BlobTransportRequestBuilder { |
| 32 public: | 32 public: |
| 33 struct RendererMemoryItemRequest { | 33 struct RendererMemoryItemRequest { |
| 34 RendererMemoryItemRequest(); | 34 RendererMemoryItemRequest(); |
| 35 // This is the index of the item in the builder on the browser side. | 35 // This is the index of the item in the builder on the browser side. |
| 36 size_t browser_item_index; | 36 size_t browser_item_index; |
| 37 // Note: For files this offset should always be 0, as the file offset in | 37 // Note: For files this offset should always be 0, as the file offset in |
| 38 // segmentation is handled by the handle_offset in the message. This | 38 // segmentation is handled by the handle_offset in the message. This |
| 39 // offset is used for populating a chunk when the data comes back to | 39 // offset is used for populating a chunk when the data comes back to |
| 40 // the browser. | 40 // the browser. |
| 41 size_t browser_item_offset; | 41 size_t browser_item_offset; |
| 42 BlobItemBytesRequest message; | 42 BlobItemBytesRequest message; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 BlobAsyncTransportRequestBuilder(); | 45 BlobTransportRequestBuilder(); |
| 46 virtual ~BlobAsyncTransportRequestBuilder(); | 46 virtual ~BlobTransportRequestBuilder(); |
| 47 | 47 |
| 48 // Initializes the request builder for file requests. One or more files are | 48 // Initializes the request builder for file requests. One or more files are |
| 49 // created to hold the given data. Each file can hold data from multiple | 49 // created to hold the given data. Each file can hold data from multiple |
| 50 // items, and the data from each item can be in multiple files. | 50 // items, and the data from each item can be in multiple files. |
| 51 // See file_handle_sizes() for the generated file sizes. | 51 // See file_handle_sizes() for the generated file sizes. |
| 52 // max_file_size: This is the maximum size for a file to back a blob. | 52 // max_file_size: This is the maximum size for a file to back a blob. |
| 53 // blob_total_size: This is the total in-memory size of the blob. | 53 // blob_total_size: This is the total in-memory size of the blob. |
| 54 // elements: These are the descriptions of the blob items being sent from the | 54 // elements: These are the descriptions of the blob items being sent from the |
| 55 // renderer. | 55 // renderer. |
| 56 // builder: This is the builder that is populated with the 'future' versions | 56 // builder: This is the builder that is populated with the 'future' versions |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 // The requests for memory, segmented as described above, along with their | 108 // The requests for memory, segmented as described above, along with their |
| 109 // destination browser indexes and offsets. | 109 // destination browser indexes and offsets. |
| 110 const std::vector<RendererMemoryItemRequest>& requests() const { | 110 const std::vector<RendererMemoryItemRequest>& requests() const { |
| 111 return requests_; | 111 return requests_; |
| 112 } | 112 } |
| 113 | 113 |
| 114 // The total bytes size of memory items in the blob. | 114 // The total bytes size of memory items in the blob. |
| 115 uint64_t total_bytes_size() const { return total_bytes_size_; } | 115 uint64_t total_bytes_size() const { return total_bytes_size_; } |
| 116 | 116 |
| 117 static bool ShouldBeShortcut(const std::vector<DataElement>& items, | |
| 118 size_t memory_available); | |
| 119 | |
| 120 private: | 117 private: |
| 121 static void ComputeHandleSizes(uint64_t total_memory_size, | 118 static void ComputeHandleSizes(uint64_t total_memory_size, |
| 122 size_t max_segment_size, | 119 size_t max_segment_size, |
| 123 std::vector<size_t>* segment_sizes); | 120 std::vector<size_t>* segment_sizes); |
| 124 | 121 |
| 125 std::vector<size_t> shared_memory_sizes_; | 122 std::vector<size_t> shared_memory_sizes_; |
| 126 // The size of the files is capped by the |max_file_size| argument in | 123 // The size of the files is capped by the |max_file_size| argument in |
| 127 // InitializeForFileRequests, so we can just use size_t. | 124 // InitializeForFileRequests, so we can just use size_t. |
| 128 std::vector<size_t> file_sizes_; | 125 std::vector<size_t> file_sizes_; |
| 129 | 126 |
| 130 uint64_t total_bytes_size_; | 127 uint64_t total_bytes_size_; |
| 131 std::vector<RendererMemoryItemRequest> requests_; | 128 std::vector<RendererMemoryItemRequest> requests_; |
| 132 | 129 |
| 133 DISALLOW_COPY_AND_ASSIGN(BlobAsyncTransportRequestBuilder); | 130 DISALLOW_COPY_AND_ASSIGN(BlobTransportRequestBuilder); |
| 134 }; | 131 }; |
| 135 | 132 |
| 136 } // namespace storage | 133 } // namespace storage |
| 137 | 134 |
| 138 #endif // STORAGE_BROWSER_BLOB_BLOB_ASYNC_TRANSPORT_REQUEST_BUILDER_H_ | 135 #endif // STORAGE_BROWSER_BLOB_BLOB_TRANSPORT_REQUEST_BUILDER_H_ |
| OLD | NEW |