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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_MESSAGE_CENTER_MESSAGE_CENTER_STATS_COLLECTOR_H_
#define UI_MESSAGE_CENTER_MESSAGE_CENTER_STATS_COLLECTOR_H_
#include <array>
#include <set>
#include <string>
#include "base/memory/raw_ptr.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/message_center_observer.h"
#include "ui/message_center/message_center_types.h"
#include "ui/message_center/public/cpp/notifier_id.h"
namespace message_center {
class MessageCenter;
// MessageCenterStatsCollector sends both raw and per-notification statistics
// to the UMA servers, if the user has opted in. It observes the message center
// to gather its data.
class MessageCenterStatsCollector : public MessageCenterObserver {
public:
enum NotificationActionType {
NOTIFICATION_ACTION_UNKNOWN,
NOTIFICATION_ACTION_ADD,
NOTIFICATION_ACTION_UPDATE,
NOTIFICATION_ACTION_CLICK,
NOTIFICATION_ACTION_BUTTON_CLICK,
NOTIFICATION_ACTION_DISPLAY,
NOTIFICATION_ACTION_CLOSE_BY_USER,
NOTIFICATION_ACTION_CLOSE_BY_SYSTEM,
// NOTE: Add new action types only immediately above this line. Also,
// make sure the enum list in tools/histogram/histograms.xml is
// updated with any change in here.
NOTIFICATION_ACTION_COUNT
};
explicit MessageCenterStatsCollector(MessageCenter* message_center);
MessageCenterStatsCollector(const MessageCenterStatsCollector&) = delete;
MessageCenterStatsCollector& operator=(const MessageCenterStatsCollector&) =
delete;
~MessageCenterStatsCollector() override;
private:
// Represents the aggregate stats for each notification.
class NotificationStats {
public:
// Default constructor for map.
NotificationStats();
explicit NotificationStats(const std::string& id);
virtual ~NotificationStats();
// Called when we get an action from the message center.
void CollectAction(NotificationActionType type);
// Sends aggregate data to UMA.
void RecordAggregateStats();
private:
std::string id_;
std::array<bool, NOTIFICATION_ACTION_COUNT> actions_;
};
// Sends notifier type to UMA. Called when a notification is added.
void RecordNotifierType(NotifierType type);
// MessageCenterObserver
void OnNotificationAdded(const std::string& notification_id) override;
void OnNotificationRemoved(const std::string& notification_id,
bool by_user) override;
void OnNotificationUpdated(const std::string& notification_id) override;
void OnNotificationClicked(
const std::string& notification_id,
const std::optional<int>& button_index,
const std::optional<std::u16string>& reply) override;
void OnNotificationSettingsClicked(bool handled) override;
void OnNotificationDisplayed(const std::string& notification_id,
const DisplaySource source) override;
void OnCenterVisibilityChanged(Visibility visibility) override;
void OnQuietModeChanged(bool in_quiet_mode) override;
// Weak, global.
raw_ptr<MessageCenter> message_center_;
typedef std::map<std::string, NotificationStats> StatsCollection;
StatsCollection stats_;
};
} // namespace message_center
#endif // UI_MESSAGE_CENTER_MESSAGE_CENTER_STATS_COLLECTOR_H_
|