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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
// 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 BASE_METRICS_FIELD_TRIAL_PARAMS_H_
#define BASE_METRICS_FIELD_TRIAL_PARAMS_H_
#include <map>
#include <string>
#include "base/base_export.h"
#include "base/feature_list.h"
#include "base/logging.h"
#include "base/memory/raw_ptr_exclusion.h"
#include "base/notreached.h"
#include "base/time/time.h"
namespace base {
// Key-value mapping type for field trial parameters.
typedef std::map<std::string, std::string> FieldTrialParams;
// Param string decoding function for AssociateFieldTrialParamsFromString().
typedef std::string (*FieldTrialParamsDecodeStringFunc)(const std::string& str);
// Unescapes special characters from the given string. Used in
// AssociateFieldTrialParamsFromString() as one of the feature params decoding
// functions.
BASE_EXPORT std::string UnescapeValue(const std::string& value);
// Associates the specified set of key-value |params| with the field trial
// specified by |trial_name| and |group_name|. Fails and returns false if the
// specified field trial already has params associated with it or the trial
// is already active (group() has been called on it). Thread safe.
BASE_EXPORT bool AssociateFieldTrialParams(const std::string& trial_name,
const std::string& group_name,
const FieldTrialParams& params);
// Provides a mechanism to associate multiple set of params to multiple groups
// with a formatted string as returned by FieldTrialList::AllParamsToString().
// |decode_data_func| allows specifying a custom decoding function.
BASE_EXPORT bool AssociateFieldTrialParamsFromString(
const std::string& params_string,
FieldTrialParamsDecodeStringFunc decode_data_func);
// Retrieves the set of key-value |params| for the specified field trial, based
// on its selected group. If the field trial does not exist or its selected
// group does not have any parameters associated with it, returns false and
// does not modify |params|. Calling this function will result in the field
// trial being marked as active if found (i.e. group() will be called on it),
// if it wasn't already. Thread safe.
BASE_EXPORT bool GetFieldTrialParams(const std::string& trial_name,
FieldTrialParams* params);
// Retrieves the set of key-value |params| for the field trial associated with
// the specified |feature|. A feature is associated with at most one field
// trial and selected group. See base/feature_list.h for more information on
// features. If the feature is not enabled, or if there's no associated params,
// returns false and does not modify |params|. Calling this function will
// result in the associated field trial being marked as active if found (i.e.
// group() will be called on it), if it wasn't already. Thread safe.
BASE_EXPORT bool GetFieldTrialParamsByFeature(const base::Feature& feature,
FieldTrialParams* params);
// Retrieves a specific parameter value corresponding to |param_name| for the
// specified field trial, based on its selected group. If the field trial does
// not exist or the specified parameter does not exist, returns an empty
// string. Calling this function will result in the field trial being marked as
// active if found (i.e. group() will be called on it), if it wasn't already.
// Thread safe.
BASE_EXPORT std::string GetFieldTrialParamValue(const std::string& trial_name,
const std::string& param_name);
// Retrieves a specific parameter value corresponding to |param_name| for the
// field trial associated with the specified |feature|. A feature is associated
// with at most one field trial and selected group. See base/feature_list.h for
// more information on features. If the feature is not enabled, or the
// specified parameter does not exist, returns an empty string. Calling this
// function will result in the associated field trial being marked as active if
// found (i.e. group() will be called on it), if it wasn't already. Thread safe.
BASE_EXPORT std::string GetFieldTrialParamValueByFeature(
const base::Feature& feature,
const std::string& param_name);
// Same as GetFieldTrialParamValueByFeature(). On top of that, it converts the
// string value into an int using base::StringToInt() and returns it, if
// successful. Otherwise, it returns |default_value|. If the string value is not
// empty and the conversion does not succeed, it produces a warning to LOG.
BASE_EXPORT int GetFieldTrialParamByFeatureAsInt(const base::Feature& feature,
const std::string& param_name,
int default_value);
// Same as GetFieldTrialParamValueByFeature(). On top of that, it converts the
// string value into a double using base::StringToDouble() and returns it, if
// successful. Otherwise, it returns |default_value|. If the string value is not
// empty and the conversion does not succeed, it produces a warning to LOG.
BASE_EXPORT double GetFieldTrialParamByFeatureAsDouble(
const base::Feature& feature,
const std::string& param_name,
double default_value);
// Same as GetFieldTrialParamValueByFeature(). On top of that, it converts the
// string value into a boolean and returns it, if successful. Otherwise, it
// returns |default_value|. The only string representations accepted here are
// "true" and "false". If the string value is not empty and the conversion does
// not succeed, it produces a warning to LOG.
BASE_EXPORT bool GetFieldTrialParamByFeatureAsBool(
const base::Feature& feature,
const std::string& param_name,
bool default_value);
// Same as GetFieldTrialParamValueByFeature(). On top of that, it converts the
// string value into a base::TimeDelta and returns it, if successful. Otherwise,
// it returns `default_value`. If the string value is not empty and the
// conversion does not succeed, it produces a warning to LOG.
BASE_EXPORT base::TimeDelta GetFieldTrialParamByFeatureAsTimeDelta(
const Feature& feature,
const std::string& param_name,
base::TimeDelta default_value);
// Shared declaration for various FeatureParam<T> types.
//
// This template is defined for the following types T:
// bool
// int
// double
// std::string
// enum types
// base::TimeDelta
//
// See the individual definitions below for the appropriate interfaces.
// Attempting to use it with any other type is a compile error.
//
// Getting a param value from a FeatureParam<T> will have the same semantics as
// GetFieldTrialParamValueByFeature(), see that function's comments for details.
template <typename T, bool IsEnum = std::is_enum_v<T>>
struct FeatureParam {
// Prevent use of FeatureParam<> with unsupported types (e.g. void*). Uses T
// in its definition so that evaluation is deferred until the template is
// instantiated.
static_assert(!std::is_same_v<T, T>, "unsupported FeatureParam<> type");
};
// Declares a string-valued parameter. Example:
//
// constexpr FeatureParam<string> kAssistantName{
// &kAssistantFeature, "assistant_name", "HAL"};
//
// If the feature is not enabled, the parameter is not set, or set to the empty
// string, then Get() will return the default value.
template <>
struct FeatureParam<std::string> {
constexpr FeatureParam(const Feature* feature,
const char* name,
const char* default_value)
: feature(feature), name(name), default_value(default_value) {}
// Calling Get() will activate the field trial associated with |feature|. See
// GetFieldTrialParamValueByFeature() for more details.
BASE_EXPORT std::string Get() const;
// This field is not a raw_ptr<> because it was filtered by the rewriter for:
// #global-scope, #constexpr-ctor-field-initializer
RAW_PTR_EXCLUSION const Feature* const feature;
const char* const name;
const char* const default_value;
};
// Declares a double-valued parameter. Example:
//
// constexpr FeatureParam<double> kAssistantTriggerThreshold{
// &kAssistantFeature, "trigger_threshold", 0.10};
//
// If the feature is not enabled, the parameter is not set, or set to an invalid
// double value, then Get() will return the default value.
template <>
struct FeatureParam<double> {
constexpr FeatureParam(const Feature* feature,
const char* name,
double default_value)
: feature(feature), name(name), default_value(default_value) {}
// Calling Get() will activate the field trial associated with |feature|. See
// GetFieldTrialParamValueByFeature() for more details.
BASE_EXPORT double Get() const;
// This field is not a raw_ptr<> because it was filtered by the rewriter for:
// #global-scope, #constexpr-ctor-field-initializer
RAW_PTR_EXCLUSION const Feature* const feature;
const char* const name;
const double default_value;
};
// Declares an int-valued parameter. Example:
//
// constexpr FeatureParam<int> kAssistantParallelism{
// &kAssistantFeature, "parallelism", 4};
//
// If the feature is not enabled, the parameter is not set, or set to an invalid
// int value, then Get() will return the default value.
template <>
struct FeatureParam<int> {
constexpr FeatureParam(const Feature* feature,
const char* name,
int default_value)
: feature(feature), name(name), default_value(default_value) {}
// Calling Get() will activate the field trial associated with |feature|. See
// GetFieldTrialParamValueByFeature() for more details.
BASE_EXPORT int Get() const;
// This field is not a raw_ptr<> because it was filtered by the rewriter for:
// #global-scope, #constexpr-ctor-field-initializer
RAW_PTR_EXCLUSION const Feature* const feature;
const char* const name;
const int default_value;
};
// Declares a bool-valued parameter. Example:
//
// constexpr FeatureParam<int> kAssistantIsHelpful{
// &kAssistantFeature, "is_helpful", true};
//
// If the feature is not enabled, the parameter is not set, or set to value
// other than "true" or "false", then Get() will return the default value.
template <>
struct FeatureParam<bool> {
constexpr FeatureParam(const Feature* feature,
const char* name,
bool default_value)
: feature(feature), name(name), default_value(default_value) {}
// Calling Get() will activate the field trial associated with |feature|. See
// GetFieldTrialParamValueByFeature() for more details.
BASE_EXPORT bool Get() const;
// This field is not a raw_ptr<> because it was filtered by the rewriter for:
// #global-scope, #constexpr-ctor-field-initializer
RAW_PTR_EXCLUSION const Feature* const feature;
const char* const name;
const bool default_value;
};
// Declares an TimeDelta-valued parameter. Example:
//
// constexpr base::FeatureParam<base::TimeDelta> kPerAgentDelay{
// &kPerAgentSchedulingExperiments, "delay", base::TimeDelta()};
//
// If the feature is not enabled, the parameter is not set, or set to an
// invalid value (as defined by base::TimeDeltaFromString()), then Get() will
// return the default value.
template <>
struct FeatureParam<base::TimeDelta> {
constexpr FeatureParam(const Feature* feature,
const char* name,
base::TimeDelta default_value)
: feature(feature), name(name), default_value(default_value) {}
// Calling Get() will activate the field trial associated with |feature|. See
// GetFieldTrialParamValueByFeature() for more details.
BASE_EXPORT base::TimeDelta Get() const;
// This field is not a raw_ptr<> because it was filtered by the rewriter for:
// #global-scope, #constexpr-ctor-field-initializer
RAW_PTR_EXCLUSION const Feature* const feature;
const char* const name;
const base::TimeDelta default_value;
};
BASE_EXPORT void LogInvalidEnumValue(const Feature& feature,
const std::string& param_name,
const std::string& value_as_string,
int default_value_as_int);
// Feature param declaration for an enum, with associated options. Example:
//
// constexpr FeatureParam<ShapeEnum>::Option kShapeParamOptions[] = {
// {SHAPE_CIRCLE, "circle"},
// {SHAPE_CYLINDER, "cylinder"},
// {SHAPE_PAPERCLIP, "paperclip"}};
// constexpr FeatureParam<ShapeEnum> kAssistantShapeParam{
// &kAssistantFeature, "shape", SHAPE_CIRCLE, &kShapeParamOptions};
//
// With this declaration, the parameter may be set to "circle", "cylinder", or
// "paperclip", and that will be translated to one of the three enum values. By
// default, or if the param is set to an unknown value, the parameter will be
// assumed to be SHAPE_CIRCLE.
template <typename Enum>
struct FeatureParam<Enum, true> {
struct Option {
constexpr Option(Enum value, const char* name) : value(value), name(name) {}
const Enum value;
const char* const name;
};
template <size_t option_count>
constexpr FeatureParam(const Feature* feature,
const char* name,
const Enum default_value,
const Option (*options)[option_count])
: feature(feature),
name(name),
default_value(default_value),
options(*options),
option_count(option_count) {
static_assert(option_count >= 1, "FeatureParam<enum> has no options");
}
// Calling Get() will activate the field trial associated with |feature|. See
// GetFieldTrialParamValueByFeature() for more details.
Enum Get() const {
std::string value = GetFieldTrialParamValueByFeature(*feature, name);
if (value.empty())
return default_value;
for (size_t i = 0; i < option_count; ++i) {
if (value == options[i].name)
return options[i].value;
}
LogInvalidEnumValue(*feature, name, value, static_cast<int>(default_value));
return default_value;
}
// Returns the param-string for the given enum value.
std::string GetName(Enum value) const {
for (size_t i = 0; i < option_count; ++i) {
if (value == options[i].value)
return options[i].name;
}
NOTREACHED();
return "";
}
// This field is not a raw_ptr<> because it was filtered by the rewriter for:
// #global-scope, #constexpr-ctor-field-initializer
RAW_PTR_EXCLUSION const base::Feature* const feature;
const char* const name;
const Enum default_value;
// This field is not a raw_ptr<> because it was filtered by the rewriter for:
// #global-scope, #constexpr-ctor-field-initializer
RAW_PTR_EXCLUSION const Option* const options;
const size_t option_count;
};
} // namespace base
#endif // BASE_METRICS_FIELD_TRIAL_PARAMS_H_
|