blob: 348a1a706ecabcd44fd1cbf4a74a974c661324a6 [file] [log] [blame]
[email protected]835d7c82010-10-14 04:38:381// Copyright (c) 2010 The Chromium Authors. All rights reserved.
[email protected]ac262c9f2008-10-19 17:45:212// 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//
[email protected]9660b972009-03-02 19:02:569// 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//
[email protected]ac262c9f2008-10-19 17:45:2115// States are typically generated randomly, either based on a one time
[email protected]510e854f2009-04-20 18:39:0816// randomization (generated randomly once, and then persistently reused in the
[email protected]9660b972009-03-02 19:02:5617// client during each future run of the program), or by a startup randomization
18// (generated each time the application starts up, but held constant during the
19// duration of the process), or by continuous randomization across a run (where
20// the state can be recalculated again and again, many times during a process).
21// Only startup randomization is implemented thus far.
22
23//------------------------------------------------------------------------------
24// Example: Suppose we have an experiment involving memory, such as determining
[email protected]57a336a2009-09-30 20:42:2725// the impact of some pruning algorithm.
[email protected]9660b972009-03-02 19:02:5626// We assume that we already have a histogram of memory usage, such as:
27
28// HISTOGRAM_COUNTS("Memory.RendererTotal", count);
29
30// Somewhere in main thread initialization code, we'd probably define an
31// instance of a FieldTrial, with code such as:
32
33// // Note, FieldTrials are reference counted, and persist automagically until
34// // process teardown, courtesy of their automatic registration in
35// // FieldTrialList.
[email protected]eab00b02009-03-02 22:50:0736// scoped_refptr<FieldTrial> trial = new FieldTrial("MemoryExperiment", 1000);
[email protected]58d2d2d2010-08-05 22:46:3337// int group1 = trial->AppendGroup("high_mem", 20); // 2% in high_mem group.
38// int group2 = trial->AppendGroup("low_mem", 20); // 2% in low_mem group.
[email protected]9660b972009-03-02 19:02:5639// // Take action depending of which group we randomly land in.
[email protected]eab00b02009-03-02 22:50:0740// if (trial->group() == group1)
[email protected]57a336a2009-09-30 20:42:2741// SetPruningAlgorithm(kType1); // Sample setting of browser state.
[email protected]eab00b02009-03-02 22:50:0742// else if (trial->group() == group2)
[email protected]57a336a2009-09-30 20:42:2743// SetPruningAlgorithm(kType2); // Sample alternate setting.
[email protected]9660b972009-03-02 19:02:5644
45// We then modify any histograms we wish to correlate with our experiment to
46// have slighly different names, depending on what group the trial instance
47// happened (randomly) to be assigned to:
48
49// HISTOGRAM_COUNTS(FieldTrial::MakeName("Memory.RendererTotal",
[email protected]0b48db42009-03-23 02:45:1150// "MemoryExperiment").data(), count);
[email protected]9660b972009-03-02 19:02:5651
52// The above code will create 3 distinct histograms, with each run of the
[email protected]b37fdaa2009-07-01 01:14:5653// application being assigned to of of the three groups, and for each group, the
[email protected]9660b972009-03-02 19:02:5654// correspondingly named histogram will be populated:
55
56// Memory.RendererTotal // 96% of users still fill this histogram.
57// Memory.RendererTotal_high_mem // 2% of users will fill this histogram.
58// Memory.RendererTotal_low_mem // 2% of users will fill this histogram.
59
60//------------------------------------------------------------------------------
[email protected]ac262c9f2008-10-19 17:45:2161
[email protected]835d7c82010-10-14 04:38:3862#ifndef BASE_METRICS_FIELD_TRIAL_H_
63#define BASE_METRICS_FIELD_TRIAL_H_
[email protected]32b76ef2010-07-26 23:08:2464#pragma once
[email protected]ac262c9f2008-10-19 17:45:2165
66#include <map>
67#include <string>
68
[email protected]0b48db42009-03-23 02:45:1169#include "base/lock.h"
[email protected]ac262c9f2008-10-19 17:45:2170#include "base/ref_counted.h"
71#include "base/time.h"
72
[email protected]835d7c82010-10-14 04:38:3873namespace base {
[email protected]9660b972009-03-02 19:02:5674
[email protected]835d7c82010-10-14 04:38:3875class FieldTrial : public RefCounted<FieldTrial> {
[email protected]ac262c9f2008-10-19 17:45:2176 public:
[email protected]e695fbd62009-06-30 16:31:5477 typedef int Probability; // Probability type for being selected in a trial.
78
79 // A return value to indicate that a given instance has not yet had a group
80 // assignment (and hence is not yet participating in the trial).
[email protected]e84387f2009-03-02 19:21:0781 static const int kNotParticipating;
[email protected]9660b972009-03-02 19:02:5682
[email protected]e695fbd62009-06-30 16:31:5483 // Provide an easy way to assign all remaining probability to a group. Note
84 // that this will force an instance to participate, and make it illegal to
[email protected]b37fdaa2009-07-01 01:14:5685 // attempt to probabalistically add any other groups to the trial. When doing
86 // A/B tests with timings, it is often best to define all groups, so that
87 // histograms will get unique names via the MakeName() methods.
[email protected]e695fbd62009-06-30 16:31:5488 static const Probability kAllRemainingProbability;
[email protected]9660b972009-03-02 19:02:5689
[email protected]ac262c9f2008-10-19 17:45:2190 // The name is used to register the instance with the FieldTrialList class,
91 // and can be used to find the trial (only one trial can be present for each
[email protected]9660b972009-03-02 19:02:5692 // name).
93 // Group probabilities that are later supplied must sum to less than or equal
94 // to the total_probability.
95 FieldTrial(const std::string& name, Probability total_probability);
[email protected]ac262c9f2008-10-19 17:45:2196
[email protected]9660b972009-03-02 19:02:5697 // Establish the name and probability of the next group in this trial.
98 // Sometimes, based on construction randomization, this call may causes the
99 // provided group to be *THE* group selected for use in this instance.
100 int AppendGroup(const std::string& name, Probability group_probability);
101
102 // Return the name of the FieldTrial (excluding the group name).
103 std::string name() const { return name_; }
104
105 // Return the randomly selected group number that was assigned.
106 // Return kNotParticipating if the instance is not participating in the
107 // experiment.
108 int group() const { return group_; }
109
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
112 // number is used as the group name.
113 std::string group_name() const { return group_name_; }
114
115 // 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.
117 static std::string MakeName(const std::string& name_prefix,
118 const std::string& trial_name);
[email protected]ac262c9f2008-10-19 17:45:21119
120 private:
[email protected]835d7c82010-10-14 04:38:38121 friend class RefCounted<FieldTrial>;
[email protected]877d55d2009-11-05 21:53:08122
[email protected]9b2331d92010-10-04 23:11:19123 virtual ~FieldTrial();
[email protected]877d55d2009-11-05 21:53:08124
[email protected]9660b972009-03-02 19:02:56125 // The name of the field trial, as can be found via the FieldTrialList.
126 // This is empty of the trial is not in the experiment.
127 const std::string name_;
128
[email protected]58d2d2d2010-08-05 22:46:33129 // The maximum sum of all probabilities supplied, which corresponds to 100%.
[email protected]9660b972009-03-02 19:02:56130 // This is the scaling factor used to adjust supplied probabilities.
131 Probability divisor_;
132
133 // The randomly selected probability that is used to select a group (or have
134 // the instance not participate). It is the product of divisor_ and a random
135 // number between [0, 1).
136 Probability random_;
137
138 // Sum of the probabilities of all appended groups.
139 Probability accumulated_group_probability_;
140
141 int next_group_number_;
142
143 // The pseudo-randomly assigned group number.
144 // This is kNotParticipating if no group has been assigned.
145 int group_;
146
147 // A textual name for the randomly selected group, including the Trial name.
148 // If this Trial is not a member of an group, this string is empty.
149 std::string group_name_;
[email protected]ac262c9f2008-10-19 17:45:21150
151 DISALLOW_COPY_AND_ASSIGN(FieldTrial);
152};
153
[email protected]9660b972009-03-02 19:02:56154//------------------------------------------------------------------------------
[email protected]ac262c9f2008-10-19 17:45:21155// Class with a list of all active field trials. A trial is active if it has
156// been registered, which includes evaluating its state based on its probaility.
157// Only one instance of this class exists.
[email protected]0b48db42009-03-23 02:45:11158class FieldTrialList {
[email protected]ac262c9f2008-10-19 17:45:21159 public:
[email protected]e695fbd62009-06-30 16:31:54160 // Define a separator charactor to use when creating a persistent form of an
161 // instance. This is intended for use as a command line argument, passed to a
162 // second process to mimic our state (i.e., provide the same group name).
163 static const char kPersistentStringSeparator; // Currently a slash.
164
[email protected]ac262c9f2008-10-19 17:45:21165 // This singleton holds the global list of registered FieldTrials.
166 FieldTrialList();
167 // Destructor Release()'s references to all registered FieldTrial instances.
168 ~FieldTrialList();
169
170 // Register() stores a pointer to the given trial in a global map.
171 // This method also AddRef's the indicated trial.
172 static void Register(FieldTrial* trial);
173
174 // The Find() method can be used to test to see if a named Trial was already
175 // registered, or to retrieve a pointer to it from the global map.
[email protected]9660b972009-03-02 19:02:56176 static FieldTrial* Find(const std::string& name);
177
178 static int FindValue(const std::string& name);
179
180 static std::string FindFullName(const std::string& name);
[email protected]ac262c9f2008-10-19 17:45:21181
[email protected]e695fbd62009-06-30 16:31:54182 // Create a persistent representation of all FieldTrial instances for
183 // resurrection in another process. This allows randomization to be done in
184 // one process, and secondary processes can by synchronized on the result.
185 // The resulting string contains only the names, the trial name, and a "/"
186 // separator.
187 static void StatesToString(std::string* output);
188
189 // Use a previously generated state string (re: StatesToString()) augment the
190 // current list of field tests to include the supplied tests, and using a 100%
191 // probability for each test, force them to have the same group string. This
192 // is commonly used in a sub-process, to carry randomly selected state in a
193 // parent process into this sub-process.
194 // Currently only the group_name_ and name_ are restored.
195 static bool StringAugmentsState(const std::string& prior_state);
196
[email protected]ac262c9f2008-10-19 17:45:21197 // The time of construction of the global map is recorded in a static variable
198 // and is commonly used by experiments to identify the time since the start
199 // of the application. In some experiments it may be useful to discount
[email protected]9660b972009-03-02 19:02:56200 // data that is gathered before the application has reached sufficient
[email protected]ac262c9f2008-10-19 17:45:21201 // stability (example: most DLL have loaded, etc.)
[email protected]835d7c82010-10-14 04:38:38202 static TimeTicks application_start_time() {
[email protected]423041b2008-10-27 17:39:28203 if (global_)
204 return global_->application_start_time_;
205 // For testing purposes only, or when we don't yet have a start time.
[email protected]835d7c82010-10-14 04:38:38206 return TimeTicks::Now();
[email protected]ac262c9f2008-10-19 17:45:21207 }
208
209 private:
[email protected]0b48db42009-03-23 02:45:11210 // Helper function should be called only while holding lock_.
211 FieldTrial* PreLockedFind(const std::string& name);
212
[email protected]e695fbd62009-06-30 16:31:54213 // A map from FieldTrial names to the actual instances.
[email protected]9660b972009-03-02 19:02:56214 typedef std::map<std::string, FieldTrial*> RegistrationList;
[email protected]ac262c9f2008-10-19 17:45:21215
[email protected]ac262c9f2008-10-19 17:45:21216 static FieldTrialList* global_; // The singleton of this class.
[email protected]ac262c9f2008-10-19 17:45:21217
[email protected]7e05f6c42009-07-11 01:50:48218 // This will tell us if there is an attempt to register a field trial without
219 // creating the FieldTrialList. This is not an error, unless a FieldTrialList
220 // is created after that.
221 static bool register_without_global_;
222
[email protected]e695fbd62009-06-30 16:31:54223 // A helper value made availabel to users, that shows when the FieldTrialList
224 // was initialized. Note that this is a singleton instance, and hence is a
225 // good approximation to the start of the process.
[email protected]835d7c82010-10-14 04:38:38226 TimeTicks application_start_time_;
[email protected]0b48db42009-03-23 02:45:11227
228 // Lock for access to registered_.
229 Lock lock_;
[email protected]ac262c9f2008-10-19 17:45:21230 RegistrationList registered_;
231
232 DISALLOW_COPY_AND_ASSIGN(FieldTrialList);
233};
234
[email protected]835d7c82010-10-14 04:38:38235} // namespace base
236
237#endif // BASE_METRICS_FIELD_TRIAL_H_
[email protected]e695fbd62009-06-30 16:31:54238