| // Copyright 2017 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. |
| |
| #ifndef COMPONENTS_VARIATIONS_FIELD_TRIAL_CREATOR_H_ |
| #define COMPONENTS_VARIATIONS_FIELD_TRIAL_CREATOR_H_ |
| |
| #include <string> |
| |
| #include "base/compiler_specific.h" |
| #include "base/macros.h" |
| #include "base/metrics/field_trial.h" |
| #include "components/variations/client_filterable_state.h" |
| #include "components/variations/service/ui_string_overrider.h" |
| #include "components/variations/variations_seed_store.h" |
| |
| namespace variations { |
| |
| class VariationsServiceClient; |
| class PlatformFieldTrials; |
| |
| // Used to setup field trials based on stored variations seed data. |
| class VariationsFieldTrialCreator { |
| public: |
| // Caller is responsible for ensuring that objects passed to the constructor |
| // stay valid for the lifetime of this object. |
| VariationsFieldTrialCreator(PrefService* local_state, |
| VariationsServiceClient* client, |
| const UIStringOverrider& ui_string_overrider); |
| virtual ~VariationsFieldTrialCreator(); |
| |
| // Returns what variations will consider to be the latest country. Returns |
| // empty if it is not available. |
| std::string GetLatestCountry() const; |
| |
| // Creates field trials based on the variations seed loaded from local state. |
| // If there is a problem loading the seed data, all trials specified by the |
| // seed may not be created. Some field trials are configured to override or |
| // associate with (for reporting) specific features. These associations are |
| // registered with |feature_list|. |
| bool CreateTrialsFromSeed( |
| std::unique_ptr<const base::FieldTrial::EntropyProvider> |
| low_entropy_provider, |
| base::FeatureList* feature_list); |
| |
| VariationsSeedStore& seed_store() { return seed_store_; } |
| |
| const VariationsSeedStore& seed_store() const { return seed_store_; } |
| |
| bool create_trials_from_seed_called() const { |
| return create_trials_from_seed_called_; |
| } |
| |
| // Exposed for testing. |
| void SetCreateTrialsFromSeedCalledForTesting(bool called); |
| |
| // Sets up field trials based on stored variations seed data. |
| // |kEnableGpuBenchmarking|, |kEnableFeatures|, |kDisableFeatures| are |
| // feature controlling flags not directly accesible from variations. |
| // |unforcable_field_trials| contains the list of trials that can not be |
| // overridden. |
| // |low_entropy_provider| allows for field trial randomization. |
| // |feature_list| contains the list of all active features for this client. |
| // |variation_ids| allows for forcing ids selected in chrome://flags and/or |
| // specified using the command-line flag. |
| // |platform_field_trials| provides the platform specific field trial set up |
| // for Chrome. |
| bool SetupFieldTrials(const char* kEnableGpuBenchmarking, |
| const char* kEnableFeatures, |
| const char* kDisableFeatures, |
| const std::set<std::string>& unforceable_field_trials, |
| std::unique_ptr<const base::FieldTrial::EntropyProvider> |
| low_entropy_provider, |
| std::unique_ptr<base::FeatureList> feature_list, |
| std::vector<std::string>* variation_ids, |
| PlatformFieldTrials* platform_field_trials); |
| |
| // Returns all of the client state used for filtering studies. |
| // As a side-effect, may update the stored permanent consistency country. |
| std::unique_ptr<ClientFilterableState> GetClientFilterableStateForVersion( |
| const base::Version& version); |
| |
| // Loads the country code to use for filtering permanent consistency studies, |
| // updating the stored country code if the stored value was for a different |
| // Chrome version. The country used for permanent consistency studies is kept |
| // consistent between Chrome upgrades in order to avoid annoying the user due |
| // to experiment churn while traveling. |
| std::string LoadPermanentConsistencyCountry( |
| const base::Version& version, |
| const std::string& latest_country); |
| |
| // Sets the stored permanent country pref for this client. |
| void StorePermanentCountry(const base::Version& version, |
| const std::string& country); |
| |
| // Records the time of the most recent successful fetch. |
| void RecordLastFetchTime(); |
| |
| // Loads the seed from the variations store into |seed|. If successfull, |
| // |seed| will contain the loaded data and true is returned. Set as virtual |
| // so that it can be overridden by tests. |
| virtual bool LoadSeed(VariationsSeed* seed); |
| |
| // Allow the platform that is used to filter the set of active trials |
| // to be overridden. |
| void OverrideVariationsPlatform(Study::Platform platform_override); |
| |
| private: |
| PrefService* local_state() { return seed_store_.local_state(); } |
| |
| const PrefService* local_state() const { return seed_store_.local_state(); } |
| |
| // Set of different possible values to report for the |
| // Variations.LoadPermanentConsistencyCountryResult histogram. This enum must |
| // be kept consistent with its counterpart in histograms.xml. |
| enum LoadPermanentConsistencyCountryResult { |
| LOAD_COUNTRY_NO_PREF_NO_SEED = 0, |
| LOAD_COUNTRY_NO_PREF_HAS_SEED, |
| LOAD_COUNTRY_INVALID_PREF_NO_SEED, |
| LOAD_COUNTRY_INVALID_PREF_HAS_SEED, |
| LOAD_COUNTRY_HAS_PREF_NO_SEED_VERSION_EQ, |
| LOAD_COUNTRY_HAS_PREF_NO_SEED_VERSION_NEQ, |
| LOAD_COUNTRY_HAS_BOTH_VERSION_EQ_COUNTRY_EQ, |
| LOAD_COUNTRY_HAS_BOTH_VERSION_EQ_COUNTRY_NEQ, |
| LOAD_COUNTRY_HAS_BOTH_VERSION_NEQ_COUNTRY_EQ, |
| LOAD_COUNTRY_HAS_BOTH_VERSION_NEQ_COUNTRY_NEQ, |
| LOAD_COUNTRY_MAX, |
| }; |
| |
| VariationsServiceClient* client_; |
| |
| UIStringOverrider ui_string_overrider_; |
| |
| VariationsSeedStore seed_store_; |
| |
| // Tracks whether |CreateTrialsFromSeed| has been called, to ensure that |
| // it gets called prior to |StartRepeatedVariationsSeedFetch|. |
| bool create_trials_from_seed_called_; |
| |
| // Indiciate if OverrideVariationsPlatform has been used to set |
| // |platform_override_|. |
| bool has_platform_override_; |
| |
| // Platform to be used for variations filtering, overridding the current |
| // platform. |
| Study::Platform platform_override_; |
| |
| SEQUENCE_CHECKER(sequence_checker_); |
| |
| DISALLOW_COPY_AND_ASSIGN(VariationsFieldTrialCreator); |
| }; |
| |
| } // namespace variations |
| |
| #endif // COMPONENTS_VARIATIONS_FIELD_TRIAL_CREATOR_H_ |