blob: 92aa6b08150a4ac672f4713fddd776df90beb004 [file] [log] [blame]
andresp@webrtc.org60015d22014-05-16 09:39:51 +00001/*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#include "webrtc/test/field_trial.h"
12
13#include <algorithm>
14#include <cassert>
15#include <cstdio>
16#include <cstdlib>
17#include <map>
18#include <string>
19
20#include "webrtc/system_wrappers/interface/field_trial.h"
21
22namespace webrtc {
23namespace {
24// Clients of this library have show a clear intent to setup field trials by
25// linking with it. As so try to crash if they forget to call
26// InitFieldTrialsFromString before webrtc tries to access a field trial.
27bool field_trials_initiated_ = false;
28std::map<std::string, std::string> field_trials_;
29} // namespace
30
31namespace field_trial {
32std::string FindFullName(const std::string& trial_name) {
33 assert(field_trials_initiated_);
34 std::map<std::string, std::string>::const_iterator it =
35 field_trials_.find(trial_name);
36 if (it == field_trials_.end())
37 return std::string();
38 return it->second;
39}
40} // namespace field_trial
41
42namespace test {
43// Note: this code is copied from src/base/metrics/field_trial.cc since the aim
44// is to mimic chromium --force-fieldtrials.
45void InitFieldTrialsFromString(const std::string& trials_string) {
46 static const char kPersistentStringSeparator = '/';
47
pbos19492f12015-07-07 08:22:27 -070048 // Catch an error if this is called more than once.
49 assert(field_trials_initiated_ == false);
andresp@webrtc.org60015d22014-05-16 09:39:51 +000050 field_trials_initiated_ = true;
51
pbos19492f12015-07-07 08:22:27 -070052 if (trials_string == "")
stefanc62642c2015-07-07 04:20:34 -070053 return;
andresp@webrtc.org60015d22014-05-16 09:39:51 +000054
55 size_t next_item = 0;
56 while (next_item < trials_string.length()) {
57 size_t name_end = trials_string.find(kPersistentStringSeparator, next_item);
58 if (name_end == trials_string.npos || next_item == name_end)
59 break;
60 size_t group_name_end = trials_string.find(kPersistentStringSeparator,
61 name_end + 1);
62 if (group_name_end == trials_string.npos || name_end + 1 == group_name_end)
63 break;
64 std::string name(trials_string, next_item, name_end - next_item);
65 std::string group_name(trials_string, name_end + 1,
66 group_name_end - name_end - 1);
67 next_item = group_name_end + 1;
68
69 // Fail if duplicate with different group name.
70 if (field_trials_.find(name) != field_trials_.end() &&
71 field_trials_.find(name)->second != group_name)
72 break;
73
74 field_trials_[name] = group_name;
75
76 // Successfully parsed all field trials from the string.
77 if (next_item == trials_string.length())
78 return;
79 }
80 // LOG does not prints when this is called early on main.
81 fprintf(stderr, "Invalid field trials string.\n");
82
83 // Using abort so it crashs both in debug and release mode.
84 abort();
85}
pbos19492f12015-07-07 08:22:27 -070086
87ScopedFieldTrials::ScopedFieldTrials(const std::string& config)
88 : previous_field_trials_(field_trials_) {
89 assert(field_trials_initiated_);
90 field_trials_initiated_ = false;
91 field_trials_ = std::map<std::string, std::string>();
92 InitFieldTrialsFromString(config);
93}
94
95ScopedFieldTrials::~ScopedFieldTrials() {
96 field_trials_ = previous_field_trials_;
97}
98
andresp@webrtc.org60015d22014-05-16 09:39:51 +000099} // namespace test
100} // namespace webrtc