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

Side by Side Diff: content/browser/download/parallel_download_utils.h

Issue 2737033002: Update the received slices vector when stream is written to disk (Closed)
Patch Set: merge a new slice with existing ones Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 CONTENT_BROWSER_DOWNLOAD_PARALLEL_DOWNLOAD_UTILS_H_ 5 #ifndef CONTENT_BROWSER_DOWNLOAD_PARALLEL_DOWNLOAD_UTILS_H_
6 #define CONTENT_BROWSER_DOWNLOAD_PARALLEL_DOWNLOAD_UTILS_H_ 6 #define CONTENT_BROWSER_DOWNLOAD_PARALLEL_DOWNLOAD_UTILS_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/public/browser/download_item.h" 11 #include "content/public/browser/download_item.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 // Given an array of slices that are received, returns an array of slices to 15 // Given an array of slices that are received, returns an array of slices to
16 // download. |received_slices| must be ordered by offsets. 16 // download. |received_slices| must be ordered by offsets.
17 CONTENT_EXPORT std::vector<DownloadItem::ReceivedSlice> FindSlicesToDownload( 17 CONTENT_EXPORT std::vector<DownloadItem::ReceivedSlice> FindSlicesToDownload(
18 const std::vector<DownloadItem::ReceivedSlice>& received_slices); 18 const std::vector<DownloadItem::ReceivedSlice>& received_slices);
19 19
20 // Adds or merges a new received slice into a vector of sorted slices. If the
21 // slice can be merged with the slice preceding it, merge the 2 slices.
22 // Otherwise, insert the slice and keep the vector sorted. Returns the index
23 // of the newly updated slice.
24 CONTENT_EXPORT size_t AddOrMergeReceivedSliceIntoSortedArray(
25 const DownloadItem::ReceivedSlice& new_slice,
26 std::vector<DownloadItem::ReceivedSlice>& received_slices);
27
20 // Finch configuration utilities. 28 // Finch configuration utilities.
21 // 29 //
22 // Get the minimum slice size to use parallel download from finch configuration. 30 // Get the minimum slice size to use parallel download from finch configuration.
23 // A slice won't be further chunked into smaller slices if the size is less 31 // A slice won't be further chunked into smaller slices if the size is less
24 // than the minimum size. 32 // than the minimum size.
25 CONTENT_EXPORT int64_t GetMinSliceSizeConfig(); 33 CONTENT_EXPORT int64_t GetMinSliceSizeConfig();
26 34
27 // Get the request count for parallel download from finch configuration. 35 // Get the request count for parallel download from finch configuration.
28 CONTENT_EXPORT int GetParallelRequestCountConfig(); 36 CONTENT_EXPORT int GetParallelRequestCountConfig();
29 37
30 } // namespace content 38 } // namespace content
31 39
32 #endif // CONTENT_BROWSER_DOWNLOAD_PARALLEL_DOWNLOAD_UTILS_H_ 40 #endif // CONTENT_BROWSER_DOWNLOAD_PARALLEL_DOWNLOAD_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698