#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;
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,
NOTIFICATION_ACTION_OPEN_SETTINGS_BUTTON_CLICK,
NOTIFICATION_ACTION_COUNT
};
explicit MessageCenterStatsCollector(MessageCenter* message_center);
MessageCenterStatsCollector(const MessageCenterStatsCollector&) = delete;
MessageCenterStatsCollector& operator=(const MessageCenterStatsCollector&) =
delete;
~MessageCenterStatsCollector() override;
private:
class NotificationStats {
public:
NotificationStats();
explicit NotificationStats(const std::string& id);
virtual ~NotificationStats();
void CollectAction(NotificationActionType type);
void RecordAggregateStats();
private:
std::string id_;
std::array<bool, NOTIFICATION_ACTION_COUNT> actions_;
};
void RecordNotifierType(NotifierType type);
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;
raw_ptr<MessageCenter> message_center_;
typedef std::map<std::string, NotificationStats> StatsCollection;
StatsCollection stats_;
};
}
#endif