1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/download/download_query.h"
#include <stdint.h>
#include <algorithm>
#include <limits>
#include <memory>
#include <string>
#include <vector>
#include "base/check_op.h"
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/i18n/case_conversion.h"
#include "base/i18n/string_search.h"
#include "base/i18n/time_formatting.h"
#include "base/memory/raw_ref.h"
#include "base/notreached.h"
#include "base/strings/string_split.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "base/values.h"
#include "components/download/public/common/download_item.h"
#include "components/url_formatter/url_formatter.h"
#include "content/public/browser/content_browser_client.h"
#include "third_party/re2/src/re2/re2.h"
#include "url/gurl.h"
using download::DownloadDangerType;
using download::DownloadItem;
namespace {
// Templatized base::Value::GetAs*().
template <typename T> bool GetAs(const base::Value& in, T* out);
template<> bool GetAs(const base::Value& in, bool* out) {
if (out && in.is_bool()) {
*out = in.GetBool();
return true;
}
return in.is_bool();
}
template <>
bool GetAs(const base::Value& in, double* out) {
// `GetIfDouble()` incapsulates type verification logic.
const std::optional<double> maybe_value = in.GetIfDouble();
if (maybe_value.has_value()) {
*out = maybe_value.value();
return true;
}
return false;
}
template<> bool GetAs(const base::Value& in, std::string* out) {
auto is_string = in.is_string();
if (is_string)
*out = in.GetString();
return is_string;
}
template <>
bool GetAs(const base::Value& in, std::u16string* out) {
auto is_string = in.is_string();
if (is_string)
*out = base::UTF8ToUTF16(in.GetString());
return is_string;
}
template <>
bool GetAs(const base::Value& in, std::vector<std::u16string>* out) {
out->clear();
if (!in.is_list())
return false;
for (const auto& value : in.GetList()) {
if (!value.is_string()) {
out->clear();
return false;
}
out->push_back(base::UTF8ToUTF16(value.GetString()));
}
return true;
}
// The next several functions are helpers for making Callbacks that access
// DownloadItem fields.
int64_t GetStartTimeMsEpoch(const DownloadItem& item) {
return (item.GetStartTime() - base::Time::UnixEpoch()).InMilliseconds();
}
int64_t GetEndTimeMsEpoch(const DownloadItem& item) {
return (item.GetEndTime() - base::Time::UnixEpoch()).InMilliseconds();
}
std::string GetStartTime(const DownloadItem& item) {
return base::TimeFormatAsIso8601(item.GetStartTime());
}
std::string GetEndTime(const DownloadItem& item) {
return base::TimeFormatAsIso8601(item.GetEndTime());
}
bool GetDangerAccepted(const DownloadItem& item) {
return (item.GetDangerType() ==
download::DOWNLOAD_DANGER_TYPE_USER_VALIDATED);
}
bool GetExists(const DownloadItem& item) {
return !item.GetFileExternallyRemoved();
}
std::u16string GetFilename(const DownloadItem& item) {
// This filename will be compared with strings that could be passed in by the
// user, who only sees LossyDisplayNames.
return item.GetTargetFilePath().LossyDisplayName();
}
std::string GetFilenameUTF8(const DownloadItem& item) {
return base::UTF16ToUTF8(GetFilename(item));
}
std::string GetOriginalUrl(const DownloadItem& item) {
return item.GetOriginalUrl().spec();
}
std::string GetUrl(const DownloadItem& item) {
return item.GetURL().spec();
}
DownloadItem::DownloadState GetState(const DownloadItem& item) {
return item.GetState();
}
DownloadDangerType GetDangerType(const DownloadItem& item) {
return item.GetDangerType();
}
double GetReceivedBytes(const DownloadItem& item) {
return item.GetReceivedBytes();
}
double GetTotalBytes(const DownloadItem& item) {
return item.GetTotalBytes();
}
std::string GetMimeType(const DownloadItem& item) {
return item.GetMimeType();
}
bool IsPaused(const DownloadItem& item) {
return item.IsPaused();
}
enum ComparisonType {LT, EQ, GT};
// Returns true if |item| matches the filter specified by |value|, |cmptype|,
// and |accessor|. |accessor| is conceptually a function that takes a
// DownloadItem and returns one of its fields, which is then compared to
// |value|.
template <typename ValueType>
bool FieldMatches(
const ValueType& value,
ComparisonType cmptype,
const base::RepeatingCallback<ValueType(const DownloadItem&)>& accessor,
const DownloadItem& item) {
switch (cmptype) {
case LT: return accessor.Run(item) < value;
case EQ: return accessor.Run(item) == value;
case GT: return accessor.Run(item) > value;
}
NOTREACHED();
}
// Helper for building a Callback to FieldMatches<>().
template <typename ValueType> DownloadQuery::FilterCallback BuildFilter(
const base::Value& value, ComparisonType cmptype,
ValueType (*accessor)(const DownloadItem&)) {
ValueType cpp_value;
if (!GetAs(value, &cpp_value)) return DownloadQuery::FilterCallback();
return base::BindRepeating(&FieldMatches<ValueType>, cpp_value, cmptype,
base::BindRepeating(accessor));
}
// Returns true if |accessor.Run(item)| matches |pattern|.
bool FindRegex(
RE2* pattern,
const base::RepeatingCallback<std::string(const DownloadItem&)>& accessor,
const DownloadItem& item) {
return RE2::PartialMatch(accessor.Run(item), *pattern);
}
// Helper for building a Callback to FindRegex().
DownloadQuery::FilterCallback BuildRegexFilter(
const base::Value& regex_value,
std::string (*accessor)(const DownloadItem&)) {
std::string regex_str;
if (!GetAs(regex_value, ®ex_str)) return DownloadQuery::FilterCallback();
std::unique_ptr<RE2> pattern(new RE2(regex_str));
if (!pattern->ok()) return DownloadQuery::FilterCallback();
return base::BindRepeating(&FindRegex, base::Owned(pattern.release()),
base::BindRepeating(accessor));
}
// Returns a ComparisonType to indicate whether a field in |left| is less than,
// greater than or equal to the same field in |right|.
template <typename ValueType>
ComparisonType Compare(
const base::RepeatingCallback<ValueType(const DownloadItem&)>& accessor,
const DownloadItem& left,
const DownloadItem& right) {
ValueType left_value = accessor.Run(left);
ValueType right_value = accessor.Run(right);
if (left_value > right_value) return GT;
if (left_value < right_value) return LT;
DCHECK_EQ(left_value, right_value);
return EQ;
}
} // anonymous namespace
// AddSorter() creates a Sorter and pushes it onto sorters_. A Sorter is a
// direction and a Callback to Compare<>(). After filtering, Search() makes a
// DownloadComparator functor from the sorters_ and passes the
// DownloadComparator to std::partial_sort. std::partial_sort calls the
// DownloadComparator with different pairs of DownloadItems. DownloadComparator
// iterates over the sorters until a callback returns ComparisonType LT or GT.
// DownloadComparator returns true or false depending on that ComparisonType and
// the sorter's direction in order to indicate to std::partial_sort whether the
// left item is after or before the right item. If all sorters return EQ, then
// DownloadComparator compares GetId. A DownloadQuery may have zero or more
// Sorters, but there is one DownloadComparator per call to Search().
struct DownloadQuery::Sorter {
using SortType = base::RepeatingCallback<ComparisonType(const DownloadItem&,
const DownloadItem&)>;
template <typename ValueType>
static Sorter Build(DownloadQuery::SortDirection adirection,
ValueType (*accessor)(const DownloadItem&)) {
return Sorter(adirection,
base::BindRepeating(&Compare<ValueType>,
base::BindRepeating(accessor)));
}
Sorter(DownloadQuery::SortDirection adirection, const SortType& asorter)
: direction(adirection), sorter(asorter) {}
~Sorter() = default;
DownloadQuery::SortDirection direction;
SortType sorter;
};
class DownloadQuery::DownloadComparator {
public:
explicit DownloadComparator(const DownloadQuery::SorterVector& terms)
: terms_(terms) {}
// Returns true if |left| sorts before |right|.
bool operator()(const DownloadItem* left, const DownloadItem* right);
private:
const raw_ref<const DownloadQuery::SorterVector> terms_;
// std::sort requires this class to be copyable.
};
bool DownloadQuery::DownloadComparator::operator()(const DownloadItem* left,
const DownloadItem* right) {
for (auto term = terms_->begin(); term != terms_->end(); ++term) {
switch (term->sorter.Run(*left, *right)) {
case LT:
return term->direction == DownloadQuery::ASCENDING;
case GT:
return term->direction == DownloadQuery::DESCENDING;
case EQ:
break; // break the switch but not the loop
}
}
CHECK(left == right || left->GetId() != right->GetId());
return left->GetId() < right->GetId();
}
// static
bool DownloadQuery::MatchesQuery(const std::vector<std::u16string>& query_terms,
const DownloadItem& item) {
if (query_terms.empty())
return true;
std::u16string original_url_raw(
base::UTF8ToUTF16(item.GetOriginalUrl().spec()));
std::u16string url_raw(base::UTF8ToUTF16(item.GetURL().spec()));
// Try to also match query with above URLs formatted in user display friendly
// way. This will unescape characters (including spaces) and trim all extra
// data (like username and password) from raw url so that for example raw url
// "http://some.server.org/example%20download/file.zip" will be matched with
// search term "example download".
std::u16string original_url_formatted(
url_formatter::FormatUrl(item.GetOriginalUrl()));
std::u16string url_formatted(url_formatter::FormatUrl(item.GetURL()));
std::u16string path(item.GetTargetFilePath().LossyDisplayName());
for (auto it = query_terms.begin(); it != query_terms.end(); ++it) {
std::u16string term = base::i18n::ToLower(*it);
if (!base::i18n::StringSearchIgnoringCaseAndAccents(term, original_url_raw,
nullptr, nullptr) &&
!base::i18n::StringSearchIgnoringCaseAndAccents(
term, original_url_formatted, nullptr, nullptr) &&
!base::i18n::StringSearchIgnoringCaseAndAccents(term, url_raw, nullptr,
nullptr) &&
!base::i18n::StringSearchIgnoringCaseAndAccents(term, url_formatted,
nullptr, nullptr) &&
!base::i18n::StringSearchIgnoringCaseAndAccents(term, path, nullptr,
nullptr)) {
return false;
}
}
return true;
}
DownloadQuery::DownloadQuery() : limit_(std::numeric_limits<uint32_t>::max()) {}
DownloadQuery::~DownloadQuery() = default;
// AddFilter() pushes a new FilterCallback to filters_. Most FilterCallbacks are
// Callbacks to FieldMatches<>(). Search() iterates over given DownloadItems,
// discarding items for which any filter returns false. A DownloadQuery may have
// zero or more FilterCallbacks.
bool DownloadQuery::AddFilter(const DownloadQuery::FilterCallback& value) {
if (value.is_null()) return false;
filters_.push_back(value);
return true;
}
void DownloadQuery::AddFilter(DownloadItem::DownloadState state) {
AddFilter(base::BindRepeating(&FieldMatches<DownloadItem::DownloadState>,
state, EQ, base::BindRepeating(&GetState)));
}
void DownloadQuery::AddFilter(DownloadDangerType danger) {
AddFilter(base::BindRepeating(&FieldMatches<DownloadDangerType>, danger, EQ,
base::BindRepeating(&GetDangerType)));
}
bool DownloadQuery::AddFilter(DownloadQuery::FilterType type,
const base::Value& value) {
switch (type) {
case FILTER_BYTES_RECEIVED:
return AddFilter(BuildFilter<double>(value, EQ, &GetReceivedBytes));
case FILTER_DANGER_ACCEPTED:
return AddFilter(BuildFilter<bool>(value, EQ, &GetDangerAccepted));
case FILTER_EXISTS:
return AddFilter(BuildFilter<bool>(value, EQ, &GetExists));
case FILTER_FILENAME:
return AddFilter(BuildFilter<std::u16string>(value, EQ, &GetFilename));
case FILTER_FILENAME_REGEX:
return AddFilter(BuildRegexFilter(value, &GetFilenameUTF8));
case FILTER_MIME:
return AddFilter(BuildFilter<std::string>(value, EQ, &GetMimeType));
case FILTER_PAUSED:
return AddFilter(BuildFilter<bool>(value, EQ, &IsPaused));
case FILTER_QUERY: {
std::vector<std::u16string> query_terms;
return GetAs(value, &query_terms) &&
(query_terms.empty() ||
AddFilter(
base::BindRepeating(&MatchesQuery, std::move(query_terms))));
}
case FILTER_ENDED_AFTER:
return AddFilter(BuildFilter<std::string>(value, GT, &GetEndTime));
case FILTER_ENDED_BEFORE:
return AddFilter(BuildFilter<std::string>(value, LT, &GetEndTime));
case FILTER_END_TIME:
return AddFilter(BuildFilter<std::string>(value, EQ, &GetEndTime));
case FILTER_STARTED_AFTER:
return AddFilter(BuildFilter<std::string>(value, GT, &GetStartTime));
case FILTER_STARTED_BEFORE:
return AddFilter(BuildFilter<std::string>(value, LT, &GetStartTime));
case FILTER_START_TIME:
return AddFilter(BuildFilter<std::string>(value, EQ, &GetStartTime));
case FILTER_TOTAL_BYTES:
return AddFilter(BuildFilter<double>(value, EQ, &GetTotalBytes));
case FILTER_TOTAL_BYTES_GREATER:
return AddFilter(BuildFilter<double>(value, GT, &GetTotalBytes));
case FILTER_TOTAL_BYTES_LESS:
return AddFilter(BuildFilter<double>(value, LT, &GetTotalBytes));
case FILTER_ORIGINAL_URL:
return AddFilter(BuildFilter<std::string>(value, EQ, &GetOriginalUrl));
case FILTER_ORIGINAL_URL_REGEX:
return AddFilter(BuildRegexFilter(value, &GetOriginalUrl));
case FILTER_URL:
return AddFilter(BuildFilter<std::string>(value, EQ, &GetUrl));
case FILTER_URL_REGEX:
return AddFilter(BuildRegexFilter(value, &GetUrl));
}
return false;
}
bool DownloadQuery::Matches(const DownloadItem& item) const {
for (auto filter = filters_.begin(); filter != filters_.end(); ++filter) {
if (!filter->Run(item))
return false;
}
return true;
}
void DownloadQuery::AddSorter(DownloadQuery::SortType type,
DownloadQuery::SortDirection direction) {
switch (type) {
case SORT_END_TIME:
sorters_.push_back(Sorter::Build<int64_t>(direction, &GetEndTimeMsEpoch));
break;
case SORT_START_TIME:
sorters_.push_back(
Sorter::Build<int64_t>(direction, &GetStartTimeMsEpoch));
break;
case SORT_ORIGINAL_URL:
sorters_.push_back(
Sorter::Build<std::string>(direction, &GetOriginalUrl));
break;
case SORT_URL:
sorters_.push_back(Sorter::Build<std::string>(direction, &GetUrl));
break;
case SORT_FILENAME:
sorters_.push_back(
Sorter::Build<std::u16string>(direction, &GetFilename));
break;
case SORT_DANGER:
sorters_.push_back(Sorter::Build<DownloadDangerType>(
direction, &GetDangerType));
break;
case SORT_DANGER_ACCEPTED:
sorters_.push_back(Sorter::Build<bool>(direction, &GetDangerAccepted));
break;
case SORT_EXISTS:
sorters_.push_back(Sorter::Build<bool>(direction, &GetExists));
break;
case SORT_STATE:
sorters_.push_back(Sorter::Build<DownloadItem::DownloadState>(
direction, &GetState));
break;
case SORT_PAUSED:
sorters_.push_back(Sorter::Build<bool>(direction, &IsPaused));
break;
case SORT_MIME:
sorters_.push_back(Sorter::Build<std::string>(direction, &GetMimeType));
break;
case SORT_BYTES_RECEIVED:
sorters_.push_back(Sorter::Build<double>(direction, &GetReceivedBytes));
break;
case SORT_TOTAL_BYTES:
sorters_.push_back(Sorter::Build<double>(direction, &GetTotalBytes));
break;
}
}
void DownloadQuery::FinishSearch(DownloadQuery::DownloadVector* results) const {
if (!sorters_.empty()) {
std::partial_sort(results->begin(),
results->begin() + std::min(limit_, results->size()),
results->end(),
DownloadComparator(sorters_));
}
if (results->size() > limit_)
results->resize(limit_);
}
|