summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/ppapi/ppb_uma_private_impl.cc
blob: fb30a06f59671acbba25afdeacba8f912689f29c (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
// Copyright (c) 2011 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 "webkit/plugins/ppapi/ppb_uma_private_impl.h"

#include "base/metrics/histogram.h"
#include "ppapi/c/pp_var.h"
#include "ppapi/c/private/ppb_uma_private.h"
#include "ppapi/shared_impl/var.h"
#include "webkit/glue/webkit_glue.h"

using ppapi::StringVar;

namespace webkit {
namespace ppapi {

namespace {

#define RETURN_IF_BAD_ARGS(_name, _sample, _min, _max, _bucket_count) \
  do { \
    if (_name.type != PP_VARTYPE_STRING || _name.value.as_id == 0) \
      return; \
    if (_min >= _max) \
      return; \
    if (_bucket_count <= 1) \
      return; \
  } while (0)

void HistogramCustomTimes(PP_Var name,
                          int64_t sample,
                          int64_t min, int64_t max,
                          uint32_t bucket_count) {
  RETURN_IF_BAD_ARGS(name, sample, min, max, bucket_count);

  StringVar* name_string = StringVar::FromPPVar(name);
  if (name_string == NULL)
    return;
  base::HistogramBase* counter =
      base::Histogram::FactoryTimeGet(
          name_string->value(),
          base::TimeDelta::FromMilliseconds(min),
          base::TimeDelta::FromMilliseconds(max),
          bucket_count,
          base::HistogramBase::kUmaTargetedHistogramFlag);
  counter->AddTime(base::TimeDelta::FromMilliseconds(sample));
}

void HistogramCustomCounts(PP_Var name,
                           int32_t sample,
                           int32_t min, int32_t max,
                           uint32_t bucket_count) {
  RETURN_IF_BAD_ARGS(name, sample, min, max, bucket_count);

  StringVar* name_string = StringVar::FromPPVar(name);
  if (name_string == NULL)
    return;
  base::HistogramBase* counter =
      base::Histogram::FactoryGet(
          name_string->value(),
          min,
          max,
          bucket_count,
          base::HistogramBase::kUmaTargetedHistogramFlag);
  counter->Add(sample);
}

void HistogramEnumeration(PP_Var name,
                          int32_t sample,
                          int32_t boundary_value) {
  RETURN_IF_BAD_ARGS(name, sample, 1, boundary_value, boundary_value + 1);

  StringVar* name_string = StringVar::FromPPVar(name);
  if (name_string == NULL)
    return;
  base::HistogramBase* counter =
      base::LinearHistogram::FactoryGet(
          name_string->value(),
          1,
          boundary_value,
          boundary_value + 1,
          base::HistogramBase::kUmaTargetedHistogramFlag);
  counter->Add(sample);
}

}  // namespace

const PPB_UMA_Private ppb_uma = {
  &HistogramCustomTimes,
  &HistogramCustomCounts,
  &HistogramEnumeration,
};

// static
const PPB_UMA_Private* PPB_UMA_Private_Impl::GetInterface() {
  return &ppb_uma;
}

}  // namespace ppapi
}  // namespace webkit