File: ctr_aggregator.cc

package info (click to toggle)
chromium-browser 57.0.2987.98-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,637,852 kB
  • ctags: 2,544,394
  • sloc: cpp: 12,815,961; ansic: 3,676,222; python: 1,147,112; asm: 526,608; java: 523,212; xml: 286,794; perl: 92,654; sh: 86,408; objc: 73,271; makefile: 27,698; cs: 18,487; yacc: 13,031; tcl: 12,957; pascal: 4,875; ml: 4,716; lex: 3,904; sql: 3,862; ruby: 1,982; lisp: 1,508; php: 1,368; exp: 404; awk: 325; csh: 117; jsp: 39; sed: 37
file content (118 lines) | stat: -rw-r--r-- 3,376 bytes parent folder | download | duplicates (2)
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
// Copyright 2016 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 "components/contextual_search/browser/ctr_aggregator.h"

#include "base/numerics/safe_conversions.h"
#include "base/time/time.h"

namespace {

const double kSecondsPerWeek =
    base::Time::kMicrosecondsPerWeek / base::Time::kMicrosecondsPerSecond;
// Used for validation in debug build.  Week numbers are > 2300 as of year 2016.
const int kReasonableMinWeek = 2000;

}  // namespace

namespace contextual_search {

CtrAggregator::CtrAggregator(WeeklyActivityStorage& storage)
    : storage_(storage) {
  base::Time now = base::Time::NowFromSystemTime();
  double now_in_seconds = now.ToDoubleT();
  week_number_ = now_in_seconds / kSecondsPerWeek;
  DCHECK(week_number_ >= kReasonableMinWeek);
  // NOTE: This initialization may callback into the storage implementation so
  // that needs to be fully initialized when constructing this aggregator.
  storage_.AdvanceToWeek(week_number_);
}

// Testing only
CtrAggregator::CtrAggregator(WeeklyActivityStorage& storage, int week_number)
    : storage_(storage), week_number_(week_number) {
  storage_.AdvanceToWeek(week_number_);
}

CtrAggregator::~CtrAggregator() {}

void CtrAggregator::RecordImpression(bool did_click) {
  storage_.WriteImpressions(week_number_,
                            1 + storage_.ReadImpressions(week_number_));
  if (did_click)
    storage_.WriteClicks(week_number_, 1 + storage_.ReadClicks(week_number_));
}

int CtrAggregator::GetCurrentWeekNumber() {
  return week_number_;
}

bool CtrAggregator::HasPreviousWeekData() {
  return storage_.HasData(week_number_ - 1);
}

int CtrAggregator::GetPreviousWeekImpressions() {
  return storage_.ReadImpressions(week_number_ - 1);
}

float CtrAggregator::GetPreviousWeekCtr() {
  if (!HasPreviousWeekData())
    return NAN;

  int clicks = GetPreviousWeekClicks();
  int impressions = GetPreviousWeekImpressions();
  if (impressions == 0)
    return 0.0;
  return base::saturated_cast<float>(clicks) / impressions;
}

bool CtrAggregator::HasPrevious28DayData() {
  for (int previous = 1; previous <= kNumWeeksNeededFor28DayData; previous++) {
    if (!storage_.HasData(week_number_ - previous))
      return false;
  }
  return true;
}

float CtrAggregator::GetPrevious28DayCtr() {
  if (!HasPrevious28DayData())
    return NAN;

  int clicks = GetPrevious28DayClicks();
  int impressions = GetPrevious28DayImpressions();
  if (impressions == 0)
    return 0.0;
  return base::saturated_cast<float>(clicks) / impressions;
}

int CtrAggregator::GetPrevious28DayImpressions() {
  int impressions = 0;
  for (int previous = 1; previous <= kNumWeeksNeededFor28DayData; previous++) {
    impressions += storage_.ReadImpressions(week_number_ - previous);
  }
  return impressions;
}

// private

int CtrAggregator::GetPreviousWeekClicks() {
  return storage_.ReadClicks(week_number_ - 1);
}

int CtrAggregator::GetPrevious28DayClicks() {
  int clicks = 0;
  for (int previous = 1; previous <= kNumWeeksNeededFor28DayData; previous++) {
    clicks += storage_.ReadClicks(week_number_ - previous);
  }
  return clicks;
}

// Testing only

void CtrAggregator::IncrementWeek(int weeks) {
  week_number_ += weeks;
  storage_.AdvanceToWeek(week_number_);
}

}  // namespace contextual_search