summaryrefslogtreecommitdiffstats
path: root/chrome/browser/instant/promo_counter.cc
blob: 91df78ed9b8f6a3c7dd6bcdb1bcf462b190e123a (plain)
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
// Copyright (c) 2010 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/browser/instant/promo_counter.h"

#include "base/metrics/histogram.h"
#include "base/values.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/profiles/profile.h"

// Pref keys. These are relative to pref_key_.
static const char* kShowKey = ".show";
static const char* kNumSessionsKey = ".num_sessions";
static const char* kInitialTimeKey = ".initial_time";

// Values used for histograms. These are relative to histogram_key_.
static const char* kHistogramHide = ".hide";
static const char* kHistogramMaxSessions = ".max_sessions";
static const char* kHistogramMaxTime = ".max_time";

PromoCounter::PromoCounter(Profile* profile,
                           const std::string& pref_key,
                           const std::string& histogram_key,
                           int max_sessions,
                           int max_days)
    : profile_(profile),
      pref_key_(pref_key),
      histogram_key_(histogram_key),
      max_sessions_(max_sessions),
      max_days_(max_days),
      did_init_(false),
      show_(false) {
}

PromoCounter::~PromoCounter() {
}

// static
void PromoCounter::RegisterUserPrefs(PrefService* prefs,
                                     const std::string& base_key) {
  prefs->RegisterBooleanPref((base_key + kShowKey).c_str(), true);
  prefs->RegisterIntegerPref((base_key + kNumSessionsKey).c_str(), 0);
  prefs->RegisterInt64Pref((base_key + kInitialTimeKey).c_str(), 0);
}

bool PromoCounter::ShouldShow(base::Time current_time) {
  if (!did_init_) {
    did_init_ = true;
    Init(current_time);
  }

  if (show_ && (current_time - initial_show_).InDays() >= max_days_)
    MaxTimeLapsed(current_time);

  return show_;
}

void PromoCounter::Hide() {
  show_ = false;
  did_init_ = true;
  UMA_HISTOGRAM_CUSTOM_COUNTS(histogram_key_ + kHistogramHide,
                              (base::Time::Now() - initial_show_).InHours(),
                              1, max_days_ * 24, 24);
  if (profile_->GetPrefs())
    profile_->GetPrefs()->SetBoolean((pref_key_ + kShowKey).c_str(), false);
}

void PromoCounter::Init(base::Time current_time) {
  PrefService* prefs = profile_->GetPrefs();
  if (!prefs)
    return;

  show_ = prefs->GetBoolean((pref_key_ + kShowKey).c_str());
  if (!show_)
    return;

  // The user hasn't chosen to opt in or out. Only show the opt-in if it's
  // less than max_days_ since we first showed the opt-in, or the user hasn't
  // launched the profile max_sessions_ times.
  int session_count = prefs->GetInteger((pref_key_ + kNumSessionsKey).c_str());
  int64 initial_show_int =
      prefs->GetInt64((pref_key_ + kInitialTimeKey).c_str());
  initial_show_ = base::Time(base::Time::FromInternalValue(initial_show_int));
  if (initial_show_int == 0 || initial_show_ > current_time) {
    initial_show_ = base::Time::Now();
    prefs->SetInt64((pref_key_ + kInitialTimeKey).c_str(),
                    initial_show_.ToInternalValue());
  }
  if (session_count >= max_sessions_) {
    // Time check is handled in ShouldShow.
    MaxSessionsEncountered(current_time);
  } else {
    // Up the session count.
    prefs->SetInteger((pref_key_ + kNumSessionsKey).c_str(), session_count + 1);
  }
}

void PromoCounter::MaxSessionsEncountered(base::Time current_time) {
  show_ = false;
  UMA_HISTOGRAM_CUSTOM_COUNTS(histogram_key_ + kHistogramMaxSessions,
                              (current_time - initial_show_).InHours(), 1,
                              max_days_ * 24, 24);
  if (profile_->GetPrefs())
    profile_->GetPrefs()->SetBoolean((pref_key_ + kShowKey).c_str(), false);
}

void PromoCounter::MaxTimeLapsed(base::Time current_time) {
  show_ = false;
  UMA_HISTOGRAM_CUSTOM_COUNTS(histogram_key_ + kHistogramMaxTime,
                              (current_time - initial_show_).InHours(),
                              1, max_days_ * 24, 24);
  if (profile_->GetPrefs())
    profile_->GetPrefs()->SetBoolean((pref_key_ + kShowKey).c_str(), false);
}