OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_DOWNLOAD_DOWNLOAD_QUERY_H_ | 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_QUERY_H_ |
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_QUERY_H_ | 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_QUERY_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
13 #include "content/public/browser/download_item.h" | 13 #include "content/public/browser/download_item.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class Value; | 16 class Value; |
17 } | 17 } |
18 | 18 |
19 // Filter and sort a vector of DownloadItem*s. | 19 // Filter and sort a vector of DownloadItem*s. |
20 // | 20 // |
21 // The following example copies from |all_items| to |results| those | 21 // The following example copies from |all_items| to |results| those |
22 // DownloadItem*s whose start time is 0 and whose id is odd, sorts primarily by | 22 // DownloadItem*s whose start time is 0 and whose id is odd, sorts primarily by |
23 // bytes received ascending and secondarily by url descending, and limits the | 23 // bytes received ascending and secondarily by url descending, and limits the |
24 // results to 20 items. Any number of filters or sorters is allowed. If all | 24 // results to 20 items. Any number of filters or sorters is allowed. If all |
25 // sorters compare two DownloadItems equivalently, then they are sorted by their | 25 // sorters compare two DownloadItems equivalently, then they are sorted by their |
26 // id ascending. | 26 // id ascending. |
27 // | 27 // |
28 // DownloadQuery query; | 28 // DownloadQuery query; |
29 // scoped_ptr<base::Value> start_time(base::Balue::CreateIntegerValue(0)); | 29 // base::FundamentalValue start_time(0); |
30 // CHECK(query.AddFilter(FILTER_START_TIME, *start_time.get())); | 30 // CHECK(query.AddFilter(FILTER_START_TIME, start_time)); |
31 // bool FilterOutOddDownloads(const DownloadItem& item) { | 31 // bool FilterOutOddDownloads(const DownloadItem& item) { |
32 // return 0 == (item.GetId() % 2); | 32 // return 0 == (item.GetId() % 2); |
33 // } | 33 // } |
34 // CHECK(query.AddFilter(base::Bind(&FilterOutOddDownloads))); | 34 // CHECK(query.AddFilter(base::Bind(&FilterOutOddDownloads))); |
35 // query.AddSorter(SORT_BYTES_RECEIVED, ASCENDING); | 35 // query.AddSorter(SORT_BYTES_RECEIVED, ASCENDING); |
36 // query.AddSorter(SORT_URL, DESCENDING); | 36 // query.AddSorter(SORT_URL, DESCENDING); |
37 // query.Limit(20); | 37 // query.Limit(20); |
38 // DownloadVector all_items, results; | 38 // DownloadVector all_items, results; |
39 // query.Search(all_items.begin(), all_items.end(), &results); | 39 // query.Search(all_items.begin(), all_items.end(), &results); |
40 class DownloadQuery { | 40 class DownloadQuery { |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 void FinishSearch(DownloadVector* results) const; | 145 void FinishSearch(DownloadVector* results) const; |
146 | 146 |
147 FilterCallbackVector filters_; | 147 FilterCallbackVector filters_; |
148 SorterVector sorters_; | 148 SorterVector sorters_; |
149 size_t limit_; | 149 size_t limit_; |
150 | 150 |
151 DISALLOW_COPY_AND_ASSIGN(DownloadQuery); | 151 DISALLOW_COPY_AND_ASSIGN(DownloadQuery); |
152 }; | 152 }; |
153 | 153 |
154 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_QUERY_H_ | 154 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_QUERY_H_ |
OLD | NEW |