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
|
// 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/autofill/core/common/autofill_util.h"
#include <algorithm>
#include "base/command_line.h"
#include "base/i18n/case_conversion.h"
#include "base/metrics/field_trial.h"
#include "base/strings/string_piece.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "components/autofill/core/common/autofill_switches.h"
namespace autofill {
namespace {
const char kSplitCharacters[] = " .,-_@";
template <typename Char>
struct Compare : base::CaseInsensitiveCompareASCII<Char> {
explicit Compare(bool case_sensitive) : case_sensitive_(case_sensitive) {}
bool operator()(Char x, Char y) const {
return case_sensitive_ ? (x == y)
: base::CaseInsensitiveCompareASCII<Char>::
operator()(x, y);
}
private:
bool case_sensitive_;
};
} // namespace
bool IsFeatureSubstringMatchEnabled() {
return base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableSuggestionsWithSubstringMatch);
}
bool IsKeyboardAccessoryEnabled() {
#if defined(OS_ANDROID)
return base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableAccessorySuggestionView) ||
(base::FieldTrialList::FindFullName("AutofillKeyboardAccessory") ==
"Enabled" &&
!base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableAccessorySuggestionView));
#else // !defined(OS_ANDROID)
return false;
#endif
}
bool FieldIsSuggestionSubstringStartingOnTokenBoundary(
const base::string16& suggestion,
const base::string16& field_contents,
bool case_sensitive) {
if (!IsFeatureSubstringMatchEnabled()) {
return base::StartsWith(suggestion, field_contents,
case_sensitive
? base::CompareCase::SENSITIVE
: base::CompareCase::INSENSITIVE_ASCII);
}
return suggestion.length() >= field_contents.length() &&
GetTextSelectionStart(suggestion, field_contents, case_sensitive) !=
base::string16::npos;
}
size_t GetTextSelectionStart(const base::string16& suggestion,
const base::string16& field_contents,
bool case_sensitive) {
const base::string16 kSplitChars = base::ASCIIToUTF16(kSplitCharacters);
// Loop until we find either the |field_contents| is a prefix of |suggestion|
// or character right before the match is one of the splitting characters.
for (base::string16::const_iterator it = suggestion.begin();
(it = std::search(
it, suggestion.end(), field_contents.begin(), field_contents.end(),
Compare<base::string16::value_type>(case_sensitive))) !=
suggestion.end();
++it) {
if (it == suggestion.begin() ||
kSplitChars.find(*(it - 1)) != std::string::npos) {
// Returns the character position right after the |field_contents| within
// |suggestion| text as a caret position for text selection.
return it - suggestion.begin() + field_contents.size();
}
}
// Unable to find the |field_contents| in |suggestion| text.
return base::string16::npos;
}
bool IsDesktopPlatform() {
#if defined(OS_ANDROID) || defined(OS_IOS)
return false;
#else
return true;
#endif
}
bool ShouldSkipField(const FormFieldData& field) {
return IsCheckable(field.check_status);
}
bool IsCheckable(const FormFieldData::CheckStatus& check_status) {
return check_status != FormFieldData::CheckStatus::NOT_CHECKABLE;
}
bool IsChecked(const FormFieldData::CheckStatus& check_status) {
return check_status == FormFieldData::CheckStatus::CHECKED;
}
void SetCheckStatus(FormFieldData* form_field_data,
bool isCheckable,
bool isChecked) {
if (isChecked) {
form_field_data->check_status = FormFieldData::CheckStatus::CHECKED;
} else {
if (isCheckable) {
form_field_data->check_status =
FormFieldData::CheckStatus::CHECKABLE_BUT_UNCHECKED;
} else {
form_field_data->check_status = FormFieldData::CheckStatus::NOT_CHECKABLE;
}
}
}
std::vector<std::string> LowercaseAndTokenizeAttributeString(
const std::string& attribute) {
return base::SplitString(base::ToLowerASCII(attribute),
base::kWhitespaceASCII, base::TRIM_WHITESPACE,
base::SPLIT_WANT_NONEMPTY);
}
} // namespace autofill
|