| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // FieldTrial is a class for handling details of statistical experiments | 5 // FieldTrial is a class for handling details of statistical experiments |
| 6 // performed by actual users in the field (i.e., in a shipped or beta product). | 6 // performed by actual users in the field (i.e., in a shipped or beta product). |
| 7 // All code is called exclusively on the UI thread currently. | 7 // All code is called exclusively on the UI thread currently. |
| 8 // | 8 // |
| 9 // The simplest example is an experiment to see whether one of two options | 9 // The simplest example is an experiment to see whether one of two options |
| 10 // produces "better" results across our user population. In that scenario, UMA | 10 // produces "better" results across our user population. In that scenario, UMA |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 // Return the randomly selected group number that was assigned. | 105 // Return the randomly selected group number that was assigned. |
| 106 // Return kNotParticipating if the instance is not participating in the | 106 // Return kNotParticipating if the instance is not participating in the |
| 107 // experiment. | 107 // experiment. |
| 108 int group() const { return group_; } | 108 int group() const { return group_; } |
| 109 | 109 |
| 110 // If the field trial is not in an experiment, this returns the empty string. | 110 // If the field trial is not in an experiment, this returns the empty string. |
| 111 // if the group's name is empty, a name of "_" concatenated with the group | 111 // if the group's name is empty, a name of "_" concatenated with the group |
| 112 // number is used as the group name. | 112 // number is used as the group name. |
| 113 std::string group_name() const { return group_name_; } | 113 std::string group_name() const { return group_name_; } |
| 114 | 114 |
| 115 // Return true if there is a default group with kAllRemainingProbability. |
| 116 // all_remaining_probability_set_ is set to true when AppendGroup is called |
| 117 // with kAllRemainingProbability as group probability. When MakeName is called |
| 118 // we assert that all_remaining_probability_set_ is set to true. |
| 119 bool all_remaining_probability_set() const { |
| 120 return all_remaining_probability_set_; |
| 121 } |
| 122 |
| 123 // Set the usage_timeout from build time of the module to disable Field Trial. |
| 124 void SetUsageTimeout(const base::TimeDelta& usage_timeout); |
| 125 base::TimeDelta usage_timeout() const { return usage_timeout_; } |
| 126 |
| 115 // Helper function for the most common use: as an argument to specifiy the | 127 // Helper function for the most common use: as an argument to specifiy the |
| 116 // name of a HISTOGRAM. Use the original histogram name as the name_prefix. | 128 // name of a HISTOGRAM. Use the original histogram name as the name_prefix. |
| 117 static std::string MakeName(const std::string& name_prefix, | 129 static std::string MakeName(const std::string& name_prefix, |
| 118 const std::string& trial_name); | 130 const std::string& trial_name); |
| 119 | 131 |
| 120 // Enable benchmarking sets field trials to a common setting. | 132 // Enable benchmarking sets field trials to a common setting. |
| 121 static void EnableBenchmarking(); | 133 static void EnableBenchmarking(); |
| 122 | 134 |
| 123 private: | 135 private: |
| 124 friend class RefCounted<FieldTrial>; | 136 friend class RefCounted<FieldTrial>; |
| 125 | 137 |
| 126 virtual ~FieldTrial(); | 138 virtual ~FieldTrial(); |
| 127 | 139 |
| 140 // Determine if the field trial is to be disabled or not based on |
| 141 // usage_timeout_, build time of the module and Now(). This method sets |
| 142 // disable_field_trial_ to true, if the difference between build time of the |
| 143 // module and Now() is greater than usage_timeout_. If disable_field_trial_ is |
| 144 // true then the field trial reverts to the 'default' bucket. |
| 145 static bool ShouldFieldTrialBeDisabled( |
| 146 const base::TimeDelta& usage_timeout); |
| 147 |
| 148 // Get build time. |
| 149 static Time GetBuildTime(); |
| 150 |
| 128 // The name of the field trial, as can be found via the FieldTrialList. | 151 // The name of the field trial, as can be found via the FieldTrialList. |
| 129 // This is empty of the trial is not in the experiment. | 152 // This is empty of the trial is not in the experiment. |
| 130 const std::string name_; | 153 const std::string name_; |
| 131 | 154 |
| 132 // The maximum sum of all probabilities supplied, which corresponds to 100%. | 155 // The maximum sum of all probabilities supplied, which corresponds to 100%. |
| 133 // This is the scaling factor used to adjust supplied probabilities. | 156 // This is the scaling factor used to adjust supplied probabilities. |
| 134 Probability divisor_; | 157 Probability divisor_; |
| 135 | 158 |
| 136 // The randomly selected probability that is used to select a group (or have | 159 // The randomly selected probability that is used to select a group (or have |
| 137 // the instance not participate). It is the product of divisor_ and a random | 160 // the instance not participate). It is the product of divisor_ and a random |
| 138 // number between [0, 1). | 161 // number between [0, 1). |
| 139 Probability random_; | 162 Probability random_; |
| 140 | 163 |
| 141 // Sum of the probabilities of all appended groups. | 164 // Sum of the probabilities of all appended groups. |
| 142 Probability accumulated_group_probability_; | 165 Probability accumulated_group_probability_; |
| 143 | 166 |
| 144 int next_group_number_; | 167 int next_group_number_; |
| 145 | 168 |
| 146 // The pseudo-randomly assigned group number. | 169 // The pseudo-randomly assigned group number. |
| 147 // This is kNotParticipating if no group has been assigned. | 170 // This is kNotParticipating if no group has been assigned. |
| 148 int group_; | 171 int group_; |
| 149 | 172 |
| 150 // A textual name for the randomly selected group, including the Trial name. | 173 // A textual name for the randomly selected group, including the Trial name. |
| 151 // If this Trial is not a member of an group, this string is empty. | 174 // If this Trial is not a member of an group, this string is empty. |
| 152 std::string group_name_; | 175 std::string group_name_; |
| 153 | 176 |
| 177 // Set to true if there is a default group with kAllRemainingProbability. |
| 178 bool all_remaining_probability_set_; |
| 179 |
| 180 // The default value (all remaining probabilities) can be selected after the |
| 181 // usage_timeout, which is based on the build time of the module. |
| 182 base::TimeDelta usage_timeout_; |
| 183 |
| 184 // When disable_field_trial_ is true, field trial reverts to the 'default' |
| 185 // bucket. |
| 186 bool disable_field_trial_; |
| 187 |
| 154 // When benchmarking is enabled, field trials all revert to the 'default' | 188 // When benchmarking is enabled, field trials all revert to the 'default' |
| 155 // bucket. | 189 // bucket. |
| 156 static bool enable_benchmarking_; | 190 static bool enable_benchmarking_; |
| 157 | 191 |
| 158 DISALLOW_COPY_AND_ASSIGN(FieldTrial); | 192 DISALLOW_COPY_AND_ASSIGN(FieldTrial); |
| 159 }; | 193 }; |
| 160 | 194 |
| 161 //------------------------------------------------------------------------------ | 195 //------------------------------------------------------------------------------ |
| 162 // Class with a list of all active field trials. A trial is active if it has | 196 // Class with a list of all active field trials. A trial is active if it has |
| 163 // been registered, which includes evaluating its state based on its probaility. | 197 // been registered, which includes evaluating its state based on its probaility. |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 Lock lock_; | 273 Lock lock_; |
| 240 RegistrationList registered_; | 274 RegistrationList registered_; |
| 241 | 275 |
| 242 DISALLOW_COPY_AND_ASSIGN(FieldTrialList); | 276 DISALLOW_COPY_AND_ASSIGN(FieldTrialList); |
| 243 }; | 277 }; |
| 244 | 278 |
| 245 } // namespace base | 279 } // namespace base |
| 246 | 280 |
| 247 #endif // BASE_METRICS_FIELD_TRIAL_H_ | 281 #endif // BASE_METRICS_FIELD_TRIAL_H_ |
| 248 | 282 |
| OLD | NEW |