blob: 286d22f7ea0d61a2c97357074d1c171debb0661a [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/installer/gcapi/gcapi_omaha_experiment.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "chrome/installer/gcapi/gcapi.h"
#include "chrome/installer/gcapi/google_update_util.h"
#include "chrome/installer/util/google_update_constants.h"
#include "components/variations/variations_experiment_util.h"
namespace {
// Returns the number of weeks since 2/3/2003.
int GetCurrentRlzWeek(const base::Time& current_time) {
const base::Time::Exploded february_third_2003_exploded =
{2003, 2, 1, 3, 0, 0, 0, 0};
base::Time f;
bool conversion_success =
base::Time::FromUTCExploded(february_third_2003_exploded, &f);
DCHECK(conversion_success);
base::TimeDelta delta = current_time - f;
return delta.InDays() / 7;
}
bool SetExperimentLabel(const wchar_t* brand_code,
const base::string16& label,
int shell_mode) {
if (!brand_code) {
return false;
}
const bool system_level = shell_mode == GCAPI_INVOKED_UAC_ELEVATION;
base::string16 original_labels;
if (!gcapi_internals::ReadExperimentLabels(system_level, &original_labels))
return false;
// Split the original labels by the label separator.
std::vector<base::string16> entries = base::SplitString(
original_labels,
base::string16(1, variations::kExperimentLabelSeparator),
base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
// Keep all labels, but the one we want to add/replace.
base::string16 label_and_separator(label);
label_and_separator.push_back('=');
base::string16 new_labels;
for (const base::string16& entry : entries) {
if (!entry.empty() &&
!base::StartsWith(entry, label_and_separator,
base::CompareCase::SENSITIVE)) {
new_labels += entry;
new_labels += variations::kExperimentLabelSeparator;
}
}
new_labels.append(
gcapi_internals::GetGCAPIExperimentLabel(brand_code, label));
return gcapi_internals::SetExperimentLabels(system_level, new_labels);
}
} // namespace
namespace gcapi_internals {
const wchar_t kReactivationLabel[] = L"reacbrand";
const wchar_t kRelaunchLabel[] = L"relaunchbrand";
base::string16 GetGCAPIExperimentLabel(const wchar_t* brand_code,
const base::string16& label) {
// Keeps a fixed time state for this GCAPI instance; this makes tests reliable
// when crossing time boundaries on the system clock and doesn't otherwise
// affect results of this short lived binary.
static time_t instance_time_value = 0;
if (instance_time_value == 0)
instance_time_value = base::Time::Now().ToTimeT();
base::Time instance_time = base::Time::FromTimeT(instance_time_value);
base::string16 gcapi_experiment_label;
base::SStringPrintf(&gcapi_experiment_label,
L"%ls=%ls_%d|%ls",
label.c_str(),
brand_code,
GetCurrentRlzWeek(instance_time),
variations::BuildExperimentDateString(
instance_time).c_str());
return gcapi_experiment_label;
}
} // namespace gcapi_internals
bool SetReactivationExperimentLabels(const wchar_t* brand_code,
int shell_mode) {
return SetExperimentLabel(brand_code, gcapi_internals::kReactivationLabel,
shell_mode);
}
bool SetRelaunchExperimentLabels(const wchar_t* brand_code, int shell_mode) {
return SetExperimentLabel(brand_code, gcapi_internals::kRelaunchLabel,
shell_mode);
}