| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 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). | |
| 7 // All code is called exclusively on the UI thread currently. | |
| 8 // | |
| 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 | |
| 11 // data is uploaded to aggregate the test results, and this FieldTrial class | |
| 12 // manages the state of each such experiment (state == which option was | |
| 13 // pseudo-randomly selected). | |
| 14 // | |
| 15 // States are typically generated randomly, either based on a one time | |
| 16 // randomization (which will yield the same results, in terms of selecting | |
| 17 // the client for a field trial or not, for every run of the program on a | |
| 18 // given machine), or by a session randomization (generated each time the | |
| 19 // application starts up, but held constant during the duration of the | |
| 20 // process). | |
| 21 | |
| 22 //------------------------------------------------------------------------------ | |
| 23 // Example: Suppose we have an experiment involving memory, such as determining | |
| 24 // the impact of some pruning algorithm. | |
| 25 // We assume that we already have a histogram of memory usage, such as: | |
| 26 | |
| 27 // UMA_HISTOGRAM_COUNTS("Memory.RendererTotal", count); | |
| 28 | |
| 29 // Somewhere in main thread initialization code, we'd probably define an | |
| 30 // instance of a FieldTrial, with code such as: | |
| 31 | |
| 32 // // FieldTrials are reference counted, and persist automagically until | |
| 33 // // process teardown, courtesy of their automatic registration in | |
| 34 // // FieldTrialList. | |
| 35 // // Note: This field trial will run in Chrome instances compiled through | |
| 36 // // 8 July, 2015, and after that all instances will be in "StandardMem". | |
| 37 // scoped_refptr<base::FieldTrial> trial( | |
| 38 // base::FieldTrialList::FactoryGetFieldTrial( | |
| 39 // "MemoryExperiment", 1000, "StandardMem", 2015, 7, 8, | |
| 40 // base::FieldTrial::ONE_TIME_RANDOMIZED, NULL)); | |
| 41 // | |
| 42 // const int high_mem_group = | |
| 43 // trial->AppendGroup("HighMem", 20); // 2% in HighMem group. | |
| 44 // const int low_mem_group = | |
| 45 // trial->AppendGroup("LowMem", 20); // 2% in LowMem group. | |
| 46 // // Take action depending of which group we randomly land in. | |
| 47 // if (trial->group() == high_mem_group) | |
| 48 // SetPruningAlgorithm(kType1); // Sample setting of browser state. | |
| 49 // else if (trial->group() == low_mem_group) | |
| 50 // SetPruningAlgorithm(kType2); // Sample alternate setting. | |
| 51 | |
| 52 //------------------------------------------------------------------------------ | |
| 53 | |
| 54 #ifndef BASE_METRICS_FIELD_TRIAL_H_ | |
| 55 #define BASE_METRICS_FIELD_TRIAL_H_ | |
| 56 | |
| 57 #include <map> | |
| 58 #include <set> | |
| 59 #include <string> | |
| 60 #include <vector> | |
| 61 | |
| 62 #include "base/base_export.h" | |
| 63 #include "base/gtest_prod_util.h" | |
| 64 #include "base/memory/ref_counted.h" | |
| 65 #include "base/observer_list_threadsafe.h" | |
| 66 #include "base/synchronization/lock.h" | |
| 67 #include "base/time/time.h" | |
| 68 | |
| 69 namespace base { | |
| 70 | |
| 71 class FieldTrialList; | |
| 72 | |
| 73 class BASE_EXPORT FieldTrial : public RefCounted<FieldTrial> { | |
| 74 public: | |
| 75 typedef int Probability; // Probability type for being selected in a trial. | |
| 76 | |
| 77 // Specifies the persistence of the field trial group choice. | |
| 78 enum RandomizationType { | |
| 79 // One time randomized trials will persist the group choice between | |
| 80 // restarts, which is recommended for most trials, especially those that | |
| 81 // change user visible behavior. | |
| 82 ONE_TIME_RANDOMIZED, | |
| 83 // Session randomized trials will roll the dice to select a group on every | |
| 84 // process restart. | |
| 85 SESSION_RANDOMIZED, | |
| 86 }; | |
| 87 | |
| 88 // EntropyProvider is an interface for providing entropy for one-time | |
| 89 // randomized (persistent) field trials. | |
| 90 class BASE_EXPORT EntropyProvider { | |
| 91 public: | |
| 92 virtual ~EntropyProvider(); | |
| 93 | |
| 94 // Returns a double in the range of [0, 1) to be used for the dice roll for | |
| 95 // the specified field trial. If |randomization_seed| is not 0, it will be | |
| 96 // used in preference to |trial_name| for generating the entropy by entropy | |
| 97 // providers that support it. A given instance should always return the same | |
| 98 // value given the same input |trial_name| and |randomization_seed| values. | |
| 99 virtual double GetEntropyForTrial(const std::string& trial_name, | |
| 100 uint32 randomization_seed) const = 0; | |
| 101 }; | |
| 102 | |
| 103 // A pair representing a Field Trial and its selected group. | |
| 104 struct ActiveGroup { | |
| 105 std::string trial_name; | |
| 106 std::string group_name; | |
| 107 }; | |
| 108 | |
| 109 // A triplet representing a FieldTrial, its selected group and whether it's | |
| 110 // active. | |
| 111 struct FieldTrialState { | |
| 112 std::string trial_name; | |
| 113 std::string group_name; | |
| 114 bool activated; | |
| 115 }; | |
| 116 | |
| 117 typedef std::vector<ActiveGroup> ActiveGroups; | |
| 118 | |
| 119 // A return value to indicate that a given instance has not yet had a group | |
| 120 // assignment (and hence is not yet participating in the trial). | |
| 121 static const int kNotFinalized; | |
| 122 | |
| 123 // Disables this trial, meaning it always determines the default group | |
| 124 // has been selected. May be called immediately after construction, or | |
| 125 // at any time after initialization (should not be interleaved with | |
| 126 // AppendGroup calls). Once disabled, there is no way to re-enable a | |
| 127 // trial. | |
| 128 // TODO(mad): http://code.google.com/p/chromium/issues/detail?id=121446 | |
| 129 // This doesn't properly reset to Default when a group was forced. | |
| 130 void Disable(); | |
| 131 | |
| 132 // Establish the name and probability of the next group in this trial. | |
| 133 // Sometimes, based on construction randomization, this call may cause the | |
| 134 // provided group to be *THE* group selected for use in this instance. | |
| 135 // The return value is the group number of the new group. | |
| 136 int AppendGroup(const std::string& name, Probability group_probability); | |
| 137 | |
| 138 // Return the name of the FieldTrial (excluding the group name). | |
| 139 const std::string& trial_name() const { return trial_name_; } | |
| 140 | |
| 141 // Return the randomly selected group number that was assigned, and notify | |
| 142 // any/all observers that this finalized group number has presumably been used | |
| 143 // (queried), and will never change. Note that this will force an instance to | |
| 144 // participate, and make it illegal to attempt to probabilistically add any | |
| 145 // other groups to the trial. | |
| 146 int group(); | |
| 147 | |
| 148 // If the group's name is empty, a string version containing the group number | |
| 149 // is used as the group name. This causes a winner to be chosen if none was. | |
| 150 const std::string& group_name(); | |
| 151 | |
| 152 // Set the field trial as forced, meaning that it was setup earlier than | |
| 153 // the hard coded registration of the field trial to override it. | |
| 154 // This allows the code that was hard coded to register the field trial to | |
| 155 // still succeed even though the field trial has already been registered. | |
| 156 // This must be called after appending all the groups, since we will make | |
| 157 // the group choice here. Note that this is a NOOP for already forced trials. | |
| 158 // And, as the rest of the FieldTrial code, this is not thread safe and must | |
| 159 // be done from the UI thread. | |
| 160 void SetForced(); | |
| 161 | |
| 162 // Enable benchmarking sets field trials to a common setting. | |
| 163 static void EnableBenchmarking(); | |
| 164 | |
| 165 // Creates a FieldTrial object with the specified parameters, to be used for | |
| 166 // simulation of group assignment without actually affecting global field | |
| 167 // trial state in the running process. Group assignment will be done based on | |
| 168 // |entropy_value|, which must have a range of [0, 1). | |
| 169 // | |
| 170 // Note: Using this function will not register the field trial globally in the | |
| 171 // running process - for that, use FieldTrialList::FactoryGetFieldTrial(). | |
| 172 // | |
| 173 // The ownership of the returned FieldTrial is transfered to the caller which | |
| 174 // is responsible for deref'ing it (e.g. by using scoped_refptr<FieldTrial>). | |
| 175 static FieldTrial* CreateSimulatedFieldTrial( | |
| 176 const std::string& trial_name, | |
| 177 Probability total_probability, | |
| 178 const std::string& default_group_name, | |
| 179 double entropy_value); | |
| 180 | |
| 181 private: | |
| 182 // Allow tests to access our innards for testing purposes. | |
| 183 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, Registration); | |
| 184 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, AbsoluteProbabilities); | |
| 185 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, RemainingProbability); | |
| 186 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, FiftyFiftyProbability); | |
| 187 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, MiddleProbabilities); | |
| 188 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, OneWinner); | |
| 189 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, DisableProbability); | |
| 190 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, ActiveGroups); | |
| 191 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, AllGroups); | |
| 192 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, ActiveGroupsNotFinalized); | |
| 193 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, Save); | |
| 194 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, SaveAll); | |
| 195 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, DuplicateRestore); | |
| 196 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, SetForcedTurnFeatureOff); | |
| 197 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, SetForcedTurnFeatureOn); | |
| 198 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, SetForcedChangeDefault_Default); | |
| 199 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, SetForcedChangeDefault_NonDefault); | |
| 200 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, FloatBoundariesGiveEqualGroupSizes); | |
| 201 FRIEND_TEST_ALL_PREFIXES(FieldTrialTest, DoesNotSurpassTotalProbability); | |
| 202 | |
| 203 friend class base::FieldTrialList; | |
| 204 | |
| 205 friend class RefCounted<FieldTrial>; | |
| 206 | |
| 207 // This is the group number of the 'default' group when a choice wasn't forced | |
| 208 // by a call to FieldTrialList::CreateFieldTrial. It is kept private so that | |
| 209 // consumers don't use it by mistake in cases where the group was forced. | |
| 210 static const int kDefaultGroupNumber; | |
| 211 | |
| 212 // Creates a field trial with the specified parameters. Group assignment will | |
| 213 // be done based on |entropy_value|, which must have a range of [0, 1). | |
| 214 FieldTrial(const std::string& trial_name, | |
| 215 Probability total_probability, | |
| 216 const std::string& default_group_name, | |
| 217 double entropy_value); | |
| 218 virtual ~FieldTrial(); | |
| 219 | |
| 220 // Return the default group name of the FieldTrial. | |
| 221 std::string default_group_name() const { return default_group_name_; } | |
| 222 | |
| 223 // Marks this trial as having been registered with the FieldTrialList. Must be | |
| 224 // called no more than once and before any |group()| calls have occurred. | |
| 225 void SetTrialRegistered(); | |
| 226 | |
| 227 // Sets the chosen group name and number. | |
| 228 void SetGroupChoice(const std::string& group_name, int number); | |
| 229 | |
| 230 // Ensures that a group is chosen, if it hasn't yet been. The field trial | |
| 231 // might yet be disabled, so this call will *not* notify observers of the | |
| 232 // status. | |
| 233 void FinalizeGroupChoice(); | |
| 234 | |
| 235 // Returns the trial name and selected group name for this field trial via | |
| 236 // the output parameter |active_group|, but only if the group has already | |
| 237 // been chosen and has been externally observed via |group()| and the trial | |
| 238 // has not been disabled. In that case, true is returned and |active_group| | |
| 239 // is filled in; otherwise, the result is false and |active_group| is left | |
| 240 // untouched. | |
| 241 bool GetActiveGroup(ActiveGroup* active_group) const; | |
| 242 | |
| 243 // Returns the trial name and selected group name for this field trial via | |
| 244 // the output parameter |field_trial_state|, but only if the trial has not | |
| 245 // been disabled. In that case, true is returned and |field_trial_state| is | |
| 246 // filled in; otherwise, the result is false and |field_trial_state| is left | |
| 247 // untouched. | |
| 248 bool GetState(FieldTrialState* field_trial_state) const; | |
| 249 | |
| 250 // Returns the group_name. A winner need not have been chosen. | |
| 251 std::string group_name_internal() const { return group_name_; } | |
| 252 | |
| 253 // The name of the field trial, as can be found via the FieldTrialList. | |
| 254 const std::string trial_name_; | |
| 255 | |
| 256 // The maximum sum of all probabilities supplied, which corresponds to 100%. | |
| 257 // This is the scaling factor used to adjust supplied probabilities. | |
| 258 const Probability divisor_; | |
| 259 | |
| 260 // The name of the default group. | |
| 261 const std::string default_group_name_; | |
| 262 | |
| 263 // The randomly selected probability that is used to select a group (or have | |
| 264 // the instance not participate). It is the product of divisor_ and a random | |
| 265 // number between [0, 1). | |
| 266 Probability random_; | |
| 267 | |
| 268 // Sum of the probabilities of all appended groups. | |
| 269 Probability accumulated_group_probability_; | |
| 270 | |
| 271 // The number that will be returned by the next AppendGroup() call. | |
| 272 int next_group_number_; | |
| 273 | |
| 274 // The pseudo-randomly assigned group number. | |
| 275 // This is kNotFinalized if no group has been assigned. | |
| 276 int group_; | |
| 277 | |
| 278 // A textual name for the randomly selected group. Valid after |group()| | |
| 279 // has been called. | |
| 280 std::string group_name_; | |
| 281 | |
| 282 // When enable_field_trial_ is false, field trial reverts to the 'default' | |
| 283 // group. | |
| 284 bool enable_field_trial_; | |
| 285 | |
| 286 // When forced_ is true, we return the chosen group from AppendGroup when | |
| 287 // appropriate. | |
| 288 bool forced_; | |
| 289 | |
| 290 // Specifies whether the group choice has been reported to observers. | |
| 291 bool group_reported_; | |
| 292 | |
| 293 // Whether this trial is registered with the global FieldTrialList and thus | |
| 294 // should notify it when its group is queried. | |
| 295 bool trial_registered_; | |
| 296 | |
| 297 // When benchmarking is enabled, field trials all revert to the 'default' | |
| 298 // group. | |
| 299 static bool enable_benchmarking_; | |
| 300 | |
| 301 DISALLOW_COPY_AND_ASSIGN(FieldTrial); | |
| 302 }; | |
| 303 | |
| 304 //------------------------------------------------------------------------------ | |
| 305 // Class with a list of all active field trials. A trial is active if it has | |
| 306 // been registered, which includes evaluating its state based on its probaility. | |
| 307 // Only one instance of this class exists. | |
| 308 class BASE_EXPORT FieldTrialList { | |
| 309 public: | |
| 310 // Specifies whether field trials should be activated (marked as "used"), when | |
| 311 // created using |CreateTrialsFromString()|. Has no effect on trials that are | |
| 312 // prefixed with |kActivationMarker|, which will always be activated." | |
| 313 enum FieldTrialActivationMode { | |
| 314 DONT_ACTIVATE_TRIALS, | |
| 315 ACTIVATE_TRIALS, | |
| 316 }; | |
| 317 | |
| 318 // Define a separator character to use when creating a persistent form of an | |
| 319 // instance. This is intended for use as a command line argument, passed to a | |
| 320 // second process to mimic our state (i.e., provide the same group name). | |
| 321 static const char kPersistentStringSeparator; // Currently a slash. | |
| 322 | |
| 323 // Define a marker character to be used as a prefix to a trial name on the | |
| 324 // command line which forces its activation. | |
| 325 static const char kActivationMarker; // Currently an asterisk. | |
| 326 | |
| 327 // Year that is guaranteed to not be expired when instantiating a field trial | |
| 328 // via |FactoryGetFieldTrial()|. Set to two years from the build date. | |
| 329 static int kNoExpirationYear; | |
| 330 | |
| 331 // Observer is notified when a FieldTrial's group is selected. | |
| 332 class BASE_EXPORT Observer { | |
| 333 public: | |
| 334 // Notify observers when FieldTrials's group is selected. | |
| 335 virtual void OnFieldTrialGroupFinalized(const std::string& trial_name, | |
| 336 const std::string& group_name) = 0; | |
| 337 | |
| 338 protected: | |
| 339 virtual ~Observer(); | |
| 340 }; | |
| 341 | |
| 342 // This singleton holds the global list of registered FieldTrials. | |
| 343 // | |
| 344 // To support one-time randomized field trials, specify a non-NULL | |
| 345 // |entropy_provider| which should be a source of uniformly distributed | |
| 346 // entropy values. Takes ownership of |entropy_provider|. If one time | |
| 347 // randomization is not desired, pass in NULL for |entropy_provider|. | |
| 348 explicit FieldTrialList(const FieldTrial::EntropyProvider* entropy_provider); | |
| 349 | |
| 350 // Destructor Release()'s references to all registered FieldTrial instances. | |
| 351 ~FieldTrialList(); | |
| 352 | |
| 353 // Get a FieldTrial instance from the factory. | |
| 354 // | |
| 355 // |name| is used to register the instance with the FieldTrialList class, | |
| 356 // and can be used to find the trial (only one trial can be present for each | |
| 357 // name). |default_group_name| is the name of the default group which will | |
| 358 // be chosen if none of the subsequent appended groups get to be chosen. | |
| 359 // |default_group_number| can receive the group number of the default group as | |
| 360 // AppendGroup returns the number of the subsequence groups. |trial_name| and | |
| 361 // |default_group_name| may not be empty but |default_group_number| can be | |
| 362 // NULL if the value is not needed. | |
| 363 // | |
| 364 // Group probabilities that are later supplied must sum to less than or equal | |
| 365 // to the |total_probability|. Arguments |year|, |month| and |day_of_month| | |
| 366 // specify the expiration time. If the build time is after the expiration time | |
| 367 // then the field trial reverts to the 'default' group. | |
| 368 // | |
| 369 // Use this static method to get a startup-randomized FieldTrial or a | |
| 370 // previously created forced FieldTrial. | |
| 371 static FieldTrial* FactoryGetFieldTrial( | |
| 372 const std::string& trial_name, | |
| 373 FieldTrial::Probability total_probability, | |
| 374 const std::string& default_group_name, | |
| 375 const int year, | |
| 376 const int month, | |
| 377 const int day_of_month, | |
| 378 FieldTrial::RandomizationType randomization_type, | |
| 379 int* default_group_number); | |
| 380 | |
| 381 // Same as FactoryGetFieldTrial(), but allows specifying a custom seed to be | |
| 382 // used on one-time randomized field trials (instead of a hash of the trial | |
| 383 // name, which is used otherwise or if |randomization_seed| has value 0). The | |
| 384 // |randomization_seed| value (other than 0) should never be the same for two | |
| 385 // trials, else this would result in correlated group assignments. | |
| 386 // Note: Using a custom randomization seed is only supported by the | |
| 387 // PermutedEntropyProvider (which is used when UMA is not enabled). | |
| 388 static FieldTrial* FactoryGetFieldTrialWithRandomizationSeed( | |
| 389 const std::string& trial_name, | |
| 390 FieldTrial::Probability total_probability, | |
| 391 const std::string& default_group_name, | |
| 392 const int year, | |
| 393 const int month, | |
| 394 const int day_of_month, | |
| 395 FieldTrial::RandomizationType randomization_type, | |
| 396 uint32 randomization_seed, | |
| 397 int* default_group_number); | |
| 398 | |
| 399 // The Find() method can be used to test to see if a named Trial was already | |
| 400 // registered, or to retrieve a pointer to it from the global map. | |
| 401 static FieldTrial* Find(const std::string& name); | |
| 402 | |
| 403 // Returns the group number chosen for the named trial, or | |
| 404 // FieldTrial::kNotFinalized if the trial does not exist. | |
| 405 static int FindValue(const std::string& name); | |
| 406 | |
| 407 // Returns the group name chosen for the named trial, or the | |
| 408 // empty string if the trial does not exist. | |
| 409 static std::string FindFullName(const std::string& name); | |
| 410 | |
| 411 // Returns true if the named trial has been registered. | |
| 412 static bool TrialExists(const std::string& name); | |
| 413 | |
| 414 // Creates a persistent representation of active FieldTrial instances for | |
| 415 // resurrection in another process. This allows randomization to be done in | |
| 416 // one process, and secondary processes can be synchronized on the result. | |
| 417 // The resulting string contains the name and group name pairs of all | |
| 418 // registered FieldTrials for which the group has been chosen and externally | |
| 419 // observed (via |group()|) and which have not been disabled, with "/" used | |
| 420 // to separate all names and to terminate the string. This string is parsed | |
| 421 // by |CreateTrialsFromString()|. | |
| 422 static void StatesToString(std::string* output); | |
| 423 | |
| 424 // Creates a persistent representation of all FieldTrial instances for | |
| 425 // resurrection in another process. This allows randomization to be done in | |
| 426 // one process, and secondary processes can be synchronized on the result. | |
| 427 // The resulting string contains the name and group name pairs of all | |
| 428 // registered FieldTrials which have not been disabled, with "/" used | |
| 429 // to separate all names and to terminate the string. All activated trials | |
| 430 // have their name prefixed with "*". This string is parsed by | |
| 431 // |CreateTrialsFromString()|. | |
| 432 static void AllStatesToString(std::string* output); | |
| 433 | |
| 434 // Fills in the supplied vector |active_groups| (which must be empty when | |
| 435 // called) with a snapshot of all registered FieldTrials for which the group | |
| 436 // has been chosen and externally observed (via |group()|) and which have | |
| 437 // not been disabled. | |
| 438 static void GetActiveFieldTrialGroups( | |
| 439 FieldTrial::ActiveGroups* active_groups); | |
| 440 | |
| 441 // Use a state string (re: StatesToString()) to augment the current list of | |
| 442 // field trials to include the supplied trials, and using a 100% probability | |
| 443 // for each trial, force them to have the same group string. This is commonly | |
| 444 // used in a non-browser process, to carry randomly selected state in a | |
| 445 // browser process into this non-browser process, but could also be invoked | |
| 446 // through a command line argument to the browser process. The created field | |
| 447 // trials are all marked as "used" for the purposes of active trial reporting | |
| 448 // if |mode| is ACTIVATE_TRIALS, otherwise each trial will be marked as "used" | |
| 449 // if it is prefixed with |kActivationMarker|. Trial names in | |
| 450 // |ignored_trial_names| are ignored when parsing |prior_trials|. | |
| 451 static bool CreateTrialsFromString( | |
| 452 const std::string& prior_trials, | |
| 453 FieldTrialActivationMode mode, | |
| 454 const std::set<std::string>& ignored_trial_names); | |
| 455 | |
| 456 // Create a FieldTrial with the given |name| and using 100% probability for | |
| 457 // the FieldTrial, force FieldTrial to have the same group string as | |
| 458 // |group_name|. This is commonly used in a non-browser process, to carry | |
| 459 // randomly selected state in a browser process into this non-browser process. | |
| 460 // It returns NULL if there is a FieldTrial that is already registered with | |
| 461 // the same |name| but has different finalized group string (|group_name|). | |
| 462 static FieldTrial* CreateFieldTrial(const std::string& name, | |
| 463 const std::string& group_name); | |
| 464 | |
| 465 // Add an observer to be notified when a field trial is irrevocably committed | |
| 466 // to being part of some specific field_group (and hence the group_name is | |
| 467 // also finalized for that field_trial). | |
| 468 static void AddObserver(Observer* observer); | |
| 469 | |
| 470 // Remove an observer. | |
| 471 static void RemoveObserver(Observer* observer); | |
| 472 | |
| 473 // Notify all observers that a group has been finalized for |field_trial|. | |
| 474 static void NotifyFieldTrialGroupSelection(FieldTrial* field_trial); | |
| 475 | |
| 476 // Return the number of active field trials. | |
| 477 static size_t GetFieldTrialCount(); | |
| 478 | |
| 479 private: | |
| 480 // A map from FieldTrial names to the actual instances. | |
| 481 typedef std::map<std::string, FieldTrial*> RegistrationMap; | |
| 482 | |
| 483 // If one-time randomization is enabled, returns a weak pointer to the | |
| 484 // corresponding EntropyProvider. Otherwise, returns NULL. | |
| 485 static const FieldTrial::EntropyProvider* | |
| 486 GetEntropyProviderForOneTimeRandomization(); | |
| 487 | |
| 488 // Helper function should be called only while holding lock_. | |
| 489 FieldTrial* PreLockedFind(const std::string& name); | |
| 490 | |
| 491 // Register() stores a pointer to the given trial in a global map. | |
| 492 // This method also AddRef's the indicated trial. | |
| 493 // This should always be called after creating a new FieldTrial instance. | |
| 494 static void Register(FieldTrial* trial); | |
| 495 | |
| 496 static FieldTrialList* global_; // The singleton of this class. | |
| 497 | |
| 498 // This will tell us if there is an attempt to register a field | |
| 499 // trial or check if one-time randomization is enabled without | |
| 500 // creating the FieldTrialList. This is not an error, unless a | |
| 501 // FieldTrialList is created after that. | |
| 502 static bool used_without_global_; | |
| 503 | |
| 504 // Lock for access to registered_. | |
| 505 base::Lock lock_; | |
| 506 RegistrationMap registered_; | |
| 507 | |
| 508 // Entropy provider to be used for one-time randomized field trials. If NULL, | |
| 509 // one-time randomization is not supported. | |
| 510 scoped_ptr<const FieldTrial::EntropyProvider> entropy_provider_; | |
| 511 | |
| 512 // List of observers to be notified when a group is selected for a FieldTrial. | |
| 513 scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_; | |
| 514 | |
| 515 DISALLOW_COPY_AND_ASSIGN(FieldTrialList); | |
| 516 }; | |
| 517 | |
| 518 } // namespace base | |
| 519 | |
| 520 #endif // BASE_METRICS_FIELD_TRIAL_H_ | |
| OLD | NEW |