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
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/browsing_data/core/counters/autofill_counter.h"
#include <algorithm>
#include <utility>
#include <vector>
#include "components/autofill/core/browser/autofill_profile.h"
#include "components/autofill/core/browser/credit_card.h"
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
#include "components/browsing_data/core/pref_names.h"
namespace browsing_data {
AutofillCounter::AutofillCounter(
scoped_refptr<autofill::AutofillWebDataService> web_data_service)
: web_data_service_(web_data_service),
suggestions_query_(0),
credit_cards_query_(0),
addresses_query_(0),
num_suggestions_(0),
num_credit_cards_(0),
num_addresses_(0) {}
AutofillCounter::~AutofillCounter() {
CancelAllRequests();
}
void AutofillCounter::OnInitialized() {
DCHECK(web_data_service_);
}
const char* AutofillCounter::GetPrefName() const {
return browsing_data::prefs::kDeleteFormData;
}
void AutofillCounter::SetPeriodStartForTesting(
const base::Time& period_start_for_testing) {
period_start_for_testing_ = period_start_for_testing;
}
void AutofillCounter::Count() {
const base::Time start = period_start_for_testing_.is_null()
? GetPeriodStart()
: period_start_for_testing_;
CancelAllRequests();
// Count the autocomplete suggestions (also called form elements in Autofill).
// Note that |AutofillTable::RemoveFormElementsAddedBetween| only deletes
// those whose entire existence (i.e. the interval between creation time
// and last modified time) lies within the deletion time range. Otherwise,
// it only decreases the count property, but always to a nonzero value,
// and the suggestion is retained. Therefore here as well, we must only count
// the entries that are entirely contained in [start, base::Time::Max()).
// Further, many of these entries may contain the same values, as they are
// simply the same data point entered on different forms. For example,
// [name, value] pairs such as:
// ["mail", "example@example.com"]
// ["email", "example@example.com"]
// ["e-mail", "example@example.com"]
// are stored as three separate entries, but from the user's perspective,
// they constitute the same suggestion - "my email". Therefore, for the final
// output, we will consider all entries with the same value as one suggestion,
// and increment the counter only if all entries with the given value are
// contained in the interval [start, base::Time::Max()).
suggestions_query_ = web_data_service_->GetCountOfValuesContainedBetween(
start, base::Time::Max(), this);
// Count the credit cards.
credit_cards_query_ = web_data_service_->GetCreditCards(this);
// Count the addresses.
addresses_query_ = web_data_service_->GetAutofillProfiles(this);
}
void AutofillCounter::OnWebDataServiceRequestDone(
WebDataServiceBase::Handle handle,
std::unique_ptr<WDTypedResult> result) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!result) {
// CancelAllRequests will cancel all queries that are active; the query that
// just failed is complete and cannot be canceled so zero it out.
if (handle == suggestions_query_) {
suggestions_query_ = 0;
} else if (handle == credit_cards_query_) {
credit_cards_query_ = 0;
} else if (handle == addresses_query_) {
addresses_query_ = 0;
} else {
NOTREACHED();
}
CancelAllRequests();
return;
}
const base::Time start = period_start_for_testing_.is_null()
? GetPeriodStart()
: period_start_for_testing_;
if (handle == suggestions_query_) {
// Autocomplete suggestions.
DCHECK_EQ(AUTOFILL_VALUE_RESULT, result->GetType());
num_suggestions_ =
static_cast<const WDResult<int>*>(result.get())->GetValue();
suggestions_query_ = 0;
} else if (handle == credit_cards_query_) {
// Credit cards.
DCHECK_EQ(AUTOFILL_CREDITCARDS_RESULT, result->GetType());
auto credit_cards =
static_cast<
WDResult<std::vector<std::unique_ptr<autofill::CreditCard>>>*>(
result.get())
->GetValue();
num_credit_cards_ = std::count_if(
credit_cards.begin(), credit_cards.end(),
[start](const std::unique_ptr<autofill::CreditCard>& card) {
return card->modification_date() >= start;
});
credit_cards_query_ = 0;
} else if (handle == addresses_query_) {
// Addresses.
DCHECK_EQ(AUTOFILL_PROFILES_RESULT, result->GetType());
auto addresses =
static_cast<
WDResult<std::vector<std::unique_ptr<autofill::AutofillProfile>>>*>(
result.get())
->GetValue();
num_addresses_ = std::count_if(
addresses.begin(), addresses.end(),
[start](const std::unique_ptr<autofill::AutofillProfile>& address) {
return address->modification_date() >= start;
});
addresses_query_ = 0;
} else {
NOTREACHED() << "No such query: " << handle;
}
// If we still have pending queries, do not report data yet.
if (suggestions_query_ || credit_cards_query_ || addresses_query_)
return;
std::unique_ptr<Result> reported_result(new AutofillResult(
this, num_suggestions_, num_credit_cards_, num_addresses_));
ReportResult(std::move(reported_result));
}
void AutofillCounter::CancelAllRequests() {
if (suggestions_query_)
web_data_service_->CancelRequest(suggestions_query_);
if (credit_cards_query_)
web_data_service_->CancelRequest(credit_cards_query_);
if (addresses_query_)
web_data_service_->CancelRequest(addresses_query_);
}
// AutofillCounter::AutofillResult ---------------------------------------------
AutofillCounter::AutofillResult::AutofillResult(const AutofillCounter* source,
ResultInt num_suggestions,
ResultInt num_credit_cards,
ResultInt num_addresses)
: FinishedResult(source, num_suggestions),
num_credit_cards_(num_credit_cards),
num_addresses_(num_addresses) {}
AutofillCounter::AutofillResult::~AutofillResult() {}
} // namespace browsing_data
|