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
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_GEO_SUBKEY_REQUESTER_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_GEO_SUBKEY_REQUESTER_H_
#include "base/functional/callback.h"
#include "build/build_config.h"
#include "third_party/libaddressinput/chromium/chrome_address_validator.h"
#if BUILDFLAG(IS_ANDROID)
#include "base/android/scoped_java_ref.h"
#endif // BUILDFLAG(IS_ANDROID)
namespace autofill {
// This receives a region code and the device's language.
using SubKeyReceiverCallback =
base::OnceCallback<void(const std::vector<std::string>&,
const std::vector<std::string>&)>;
// SubKeyRequester Loads Rules from the server and extracts the subkeys.
// For a given key (region code for a country, such as US), the list of its
// corresponding subkeys is the list of that countries admin areas (states,
// provinces, ..).
class SubKeyRequester : public LoadRulesListener {
public:
// The interface for the subkey request.
class Request {
public:
virtual void OnRulesLoaded() = 0;
virtual ~Request() = default;
};
SubKeyRequester(std::unique_ptr<::i18n::addressinput::Source> source,
std::unique_ptr<::i18n::addressinput::Storage> storage,
const std::string& language);
SubKeyRequester(const SubKeyRequester&) = delete;
SubKeyRequester& operator=(const SubKeyRequester&) = delete;
~SubKeyRequester() override;
// If the rules for |region_code| are loaded, this gets the subkeys for the
// |region_code|, synchronously. If they are not loaded yet, it sets up a
// task to get the subkeys when the rules are loaded (asynchronous). If the
// loading has not yet started, it will also start loading the rules for the
// |region_code|. The received subkeys will be returned to the |requester|. If
// the subkeys are not received in |timeout_seconds|, then the requester will
// be informed and the request will be canceled. |requester| should never be
// null.
void StartRegionSubKeysRequest(const std::string& region_code,
int timeout_seconds,
SubKeyReceiverCallback cb);
// Returns whether the rules for the specified |region_code| have finished
// loading.
bool AreRulesLoadedForRegion(const std::string& region_code);
// Start loading the rules for the specified |region_code|.
virtual void LoadRulesForRegion(const std::string& region_code);
// Cancels the pending subkey request task.
void CancelPendingGetSubKeys();
#if BUILDFLAG(IS_ANDROID)
base::android::ScopedJavaLocalRef<jobject> GetJavaObject();
// Starts loading the rules for the specified |region_code| for the further
// subkey request.
void LoadRulesForSubKeys(
JNIEnv* env,
const base::android::JavaParamRef<jstring>& region_code);
// Gets the subkeys for the region with |jregion_code| code, if the
// |jregion_code| rules have finished loading. Otherwise, sets up a task to
// get the subkeys, when the rules are loaded.
void StartRegionSubKeysRequest(
JNIEnv* env,
const base::android::JavaParamRef<jstring>& jregion_code,
jint jtimeout_seconds,
const base::android::JavaParamRef<jobject>& jdelegate);
// Cancels the pending subkey request task.
void CancelPendingGetSubKeys(JNIEnv* env);
#endif // BUILDFLAG(IS_ANDROID)
private:
// Called when the address rules for the |region_code| have finished
// loading. Implementation of the LoadRulesListener interface.
void OnAddressValidationRulesLoaded(const std::string& region_code,
bool success) override;
// The region code and the request for the pending subkey request.
std::unique_ptr<Request> pending_subkey_request_;
std::string pending_subkey_region_code_;
// The address validator used to load subkeys.
AddressValidator address_validator_;
const std::string language_;
#if BUILDFLAG(IS_ANDROID)
// Java-side version of the SubKeyRequester.
base::android::ScopedJavaGlobalRef<jobject> java_ref_;
#endif // BUILDFLAG(IS_ANDROID)
};
} // namespace autofill
#endif // COMPONENTS_AUTOFILL_CORE_BROWSER_GEO_SUBKEY_REQUESTER_H_
|