blob: e985e38684afca07dd1c7ac8ecf109bdc45a33c8 [file] [log] [blame]
// 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.
#ifndef CHROME_BROWSER_CHROMEOS_EXTERNAL_METRICS_H_
#define CHROME_BROWSER_CHROMEOS_EXTERNAL_METRICS_H_
#include <string>
#include "base/compiler_specific.h"
#include "base/containers/hash_tables.h"
#include "base/gtest_prod_util.h"
#include "base/memory/ref_counted.h"
namespace metrics {
class MetricSample;
} // namespace metrics
namespace chromeos {
// ExternalMetrics is a service that Chrome offers to Chrome OS to upload
// metrics to the UMA server on its behalf. Chrome periodically reads the
// content of a well-know file, and parses it into name-value pairs, each
// representing a Chrome OS metrics event. The events are logged using the
// normal UMA mechanism. The file is then truncated to zero size. Chrome uses
// flock() to synchronize accesses to the file.
class ExternalMetrics : public base::RefCountedThreadSafe<ExternalMetrics> {
public:
ExternalMetrics();
// Begins the external data collection. This service is started and stopped
// by the chrome metrics service. Calls to RecordAction originate in the
// File thread but are executed in the UI thread.
void Start();
// Creates an ExternalMetrics instance reading from |filename| for testing
// purpose.
static scoped_refptr<ExternalMetrics> CreateForTesting(
const std::string& filename);
private:
friend class base::RefCountedThreadSafe<ExternalMetrics>;
friend class ExternalMetricsTest;
FRIEND_TEST_ALL_PREFIXES(ExternalMetricsTest, CanReceiveHistogram);
FRIEND_TEST_ALL_PREFIXES(ExternalMetricsTest, HandleMissingFile);
FRIEND_TEST_ALL_PREFIXES(ExternalMetricsTest,
IncorrectHistogramsAreDiscarded);
// The max length of a message (name-value pair, plus header)
static const int kMetricsMessageMaxLength = 1024; // be generous
~ExternalMetrics();
// Passes an action event to the UMA service on the UI thread.
void RecordActionUI(std::string action_string);
// Passes an action event to the UMA service.
void RecordAction(const std::string& action_name);
// Records an external crash of the given string description to
// UMA service on the UI thread.
void RecordCrashUI(const std::string& crash_kind);
// Records an external crash of the given string description.
void RecordCrash(const std::string& crash_kind);
// Records an histogram. |sample| is expected to be an histogram.
void RecordHistogram(const metrics::MetricSample& sample);
// Records a sparse histogram. |sample| is expected to be a sparse histogram.
void RecordSparseHistogram(const metrics::MetricSample& sample);
// Records a linear histogram. |sample| is expected to be a linear histogram.
void RecordLinearHistogram(const metrics::MetricSample& sample);
// Collects external events from metrics log file. This is run at periodic
// intervals.
//
// Returns the number of events collected.
int CollectEvents();
// Calls CollectEvents and reschedules a future collection.
void CollectEventsAndReschedule();
// Schedules a metrics event collection in the future.
void ScheduleCollector();
// Calls setup methods for Chrome OS field trials that need to be initialized
// based on data from the file system. They are setup here so that we can
// make absolutely sure that they are setup before we gather UMA statistics
// from ChromeOS.
void SetupFieldTrialsOnFileThread();
// Set containing known user actions.
base::hash_set<std::string> valid_user_actions_;
// File used by libmetrics to send metrics to Chrome.
std::string uma_events_file_;
DISALLOW_COPY_AND_ASSIGN(ExternalMetrics);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_EXTERNAL_METRICS_H_