File: hats_finch_helper.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (207 lines) | stat: -rw-r--r-- 8,173 bytes parent folder | download | duplicates (7)
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
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ash/hats/hats_finch_helper.h"

#include "base/metrics/field_trial_params.h"
#include "base/rand_util.h"
#include "base/strings/string_util.h"
#include "chrome/browser/ash/hats/hats_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/chrome_features.h"
#include "chrome/common/pref_names.h"
#include "components/prefs/pref_service.h"

namespace ash {

// These values should match the param key values in the finch config file.
// static
const char HatsFinchHelper::kEnabledForGooglersParam[] = "enabled_for_googlers";
// static
const char HatsFinchHelper::kCustomClientDataParam[] = "custom_client_data";
// static
const char HatsFinchHelper::kProbabilityParam[] = "prob";
// static
const char HatsFinchHelper::kResetAllParam[] = "reset_all";
// static
const char HatsFinchHelper::kResetSurveyCycleParam[] = "reset_survey_cycle";
// static
const char HatsFinchHelper::kSurveyCycleLengthParam[] = "survey_cycle_length";
// static
const char HatsFinchHelper::kSurveyStartDateMsParam[] = "survey_start_date_ms";
// static
const char HatsFinchHelper::kTriggerIdParam[] = "trigger_id";

const char HatsFinchHelper::kHistogramNameParam[] = "histogram_name";

std::string HatsFinchHelper::GetTriggerID(const HatsConfig& hats_config) {
  DCHECK(base::FeatureList::IsEnabled(hats_config.feature));
  return base::GetFieldTrialParamValueByFeature(hats_config.feature,
                                                kTriggerIdParam);
}

// To enable UMA collection for a specific survey, the Finch configuration
// file for this survey should be updated to include a `histogram_name`
// parameter along side the `trigger_id` parameter. Without this
// `histogram_name` parameter specified, no survey-specific UMA data will be
// collected.
std::string HatsFinchHelper::GetHistogramName(const HatsConfig& hats_config) {
  DCHECK(base::FeatureList::IsEnabled(hats_config.feature));
  // Fetch the histogram name from the feature parameters, if it is assigned.
  // An empty string will be returned if the parameter is not set in Finch.
  // This value should be a valid histogram that has been registered in the
  // histograms.xml file, otherwise it will not be ingested by UMA.
  std::string histogram_name = base::GetFieldTrialParamValueByFeature(
      hats_config.feature, kHistogramNameParam);

  // Valid histogram names for HaTS/UMA integration must start with the
  // prefix "ChromeOS.HaTS.". This corresponds to the histogram definition
  // in the histograms.xml file.
  if (!base::StartsWith(histogram_name, "ChromeOS.HaTS.")) {
    LOG(ERROR) << "Invalid HaTS histogram name: " << histogram_name;
    return std::string();
  }

  return histogram_name;
}

std::string HatsFinchHelper::GetCustomClientDataAsString(
    const HatsConfig& hats_config) {
  DCHECK(base::FeatureList::IsEnabled(hats_config.feature));
  return base::GetFieldTrialParamValueByFeature(hats_config.feature,
                                                kCustomClientDataParam);
}

bool HatsFinchHelper::IsEnabledForGooglers(const HatsConfig& hats_config) {
  DCHECK(base::FeatureList::IsEnabled(hats_config.feature));
  return base::GetFieldTrialParamByFeatureAsBool(
      hats_config.feature, kEnabledForGooglersParam, false);
}

HatsFinchHelper::HatsFinchHelper(Profile* profile,
                                 const HatsConfig& hats_config)
    : profile_(profile), hats_config_(hats_config) {
  LoadFinchParamValues(hats_config);

  // Reset prefs related to survey cycle if the finch seed has the reset param
  // set. Do no futher op until a new finch seed with the reset flags unset is
  // received.
  // Warning: |reset_hats_| applies to all surveys.
  if (reset_survey_cycle_ || reset_hats_) {
    profile_->GetPrefs()->ClearPref(hats_config.cycle_end_timestamp_pref_name);
    profile_->GetPrefs()->ClearPref(hats_config.is_selected_pref_name);
    if (reset_hats_)
      profile_->GetPrefs()->ClearPref(prefs::kHatsLastInteractionTimestamp);
    return;
  }

  CheckForDeviceSelection();
}

HatsFinchHelper::~HatsFinchHelper() = default;

void HatsFinchHelper::LoadFinchParamValues(const HatsConfig& hats_config) {
  if (!base::FeatureList::IsEnabled(hats_config.feature))
    return;

  probability_of_pick_ = base::GetFieldTrialParamByFeatureAsDouble(
      hats_config.feature, kProbabilityParam, -1.0);

  if (probability_of_pick_ < 0.0 || probability_of_pick_ > 1.0) {
    LOG(ERROR) << "Invalid value for probability: " << probability_of_pick_;
    probability_of_pick_ = 0;
  }

  survey_cycle_length_ = base::GetFieldTrialParamByFeatureAsInt(
      hats_config.feature, kSurveyCycleLengthParam, 0);

  if (survey_cycle_length_ <= 0) {
    LOG(ERROR) << "Invalid value for survey cycle length: "
               << survey_cycle_length_;
    survey_cycle_length_ = INT_MAX;
  }

  double first_survey_start_date_ms = base::GetFieldTrialParamByFeatureAsDouble(
      hats_config.feature, kSurveyStartDateMsParam, -1.0);
  if (first_survey_start_date_ms < 0) {
    LOG(ERROR) << "Invalid timestamp for survey start date: "
               << first_survey_start_date_ms;
    // Set a random date in the distant future so that the survey never starts
    // until a new finch seed is received with the correct start date.
    first_survey_start_date_ms =
        2 * base::Time::Now().InMillisecondsFSinceUnixEpoch();
  }
  first_survey_start_date_ =
      base::Time().FromMillisecondsSinceUnixEpoch(first_survey_start_date_ms);

  trigger_id_ = GetTriggerID(hats_config);

  reset_survey_cycle_ = base::GetFieldTrialParamByFeatureAsBool(
      hats_config.feature, kResetSurveyCycleParam, false);

  reset_hats_ = base::GetFieldTrialParamByFeatureAsBool(hats_config.feature,
                                                        kResetAllParam, false);

  // Set every property to no op values if this is a reset finch seed.
  if (reset_survey_cycle_ || reset_hats_) {
    probability_of_pick_ = 0;
    survey_cycle_length_ = INT_MAX;
    first_survey_start_date_ = base::Time().FromMillisecondsSinceUnixEpoch(
        2 * base::Time::Now().InMillisecondsFSinceUnixEpoch());
  }
}

bool HatsFinchHelper::HasPreviousCycleEnded() {
  int64_t serialized_timestamp = profile_->GetPrefs()->GetInt64(
      hats_config_->cycle_end_timestamp_pref_name);
  base::Time recent_survey_cycle_end_time =
      base::Time::FromInternalValue(serialized_timestamp);
  return recent_survey_cycle_end_time < base::Time::Now();
}

base::Time HatsFinchHelper::ComputeNextEndDate() {
  base::Time start_date = first_survey_start_date_;
  base::TimeDelta delta = base::Days(survey_cycle_length_);
  do {
    start_date += delta;
  } while (start_date < base::Time::Now());
  return start_date;
}

void HatsFinchHelper::CheckForDeviceSelection() {
  device_is_selected_for_cycle_ = false;

  // The dice is rolled only once per survey cycle. If it has already been done
  // for the current cycle, then return the stored value of the result.
  if (!HasPreviousCycleEnded()) {
    device_is_selected_for_cycle_ =
        profile_->GetPrefs()->GetBoolean(hats_config_->is_selected_pref_name);
    return;
  }

  // If the start date for the survey is in the future, do nothing.
  if (first_survey_start_date_ > base::Time::Now())
    return;

  // Start a new survey cycle and compute its end date.
  base::Time survey_cycle_end_date = ComputeNextEndDate();

  PrefService* pref_service = profile_->GetPrefs();
  pref_service->SetInt64(hats_config_->cycle_end_timestamp_pref_name,
                         survey_cycle_end_date.ToInternalValue());

  double rand_double = base::RandDouble();
  bool is_selected = false;
  if (rand_double < probability_of_pick_)
    is_selected = true;

  // Check if the trigger id is a valid string. Trigger IDs are a hash strings
  // of around 26 characters.
  is_selected = is_selected && (trigger_id_.length() > 15);

  pref_service->SetBoolean(hats_config_->is_selected_pref_name, is_selected);
  device_is_selected_for_cycle_ = is_selected;
}

}  // namespace ash