Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_NTP_SNIPPETS_USER_CLASSIFIER_H_ | 5 #ifndef COMPONENTS_NTP_SNIPPETS_USER_CLASSIFIER_H_ |
| 6 #define COMPONENTS_NTP_SNIPPETS_USER_CLASSIFIER_H_ | 6 #define COMPONENTS_NTP_SNIPPETS_USER_CLASSIFIER_H_ |
| 7 | 7 |
| 8 #include <string> | |
| 9 | |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/time/time.h" | |
| 9 | 12 |
| 10 class PrefRegistrySimple; | 13 class PrefRegistrySimple; |
| 11 class PrefService; | 14 class PrefService; |
| 12 | 15 |
| 13 namespace ntp_snippets { | 16 namespace ntp_snippets { |
| 14 | 17 |
| 15 // Collects data about user usage patterns of content suggestions, computes | 18 // Collects data about user usage patterns of content suggestions, computes |
| 16 // long-term user metrics locally using pref, and reports the metrics to UMA. | 19 // long-term user metrics locally using pref, and reports the metrics to UMA. |
| 17 // TODO(jkrcal): Add classification of users based on the metrics and getters | 20 // Based on these lon-term user metrics, it classifies the user in a UserClass. |
| 18 // for the classification as well as for the metrics. | |
| 19 class UserClassifier { | 21 class UserClassifier { |
| 20 public: | 22 public: |
| 23 // Enumeration listing user classes | |
| 24 enum class UserClass { | |
| 25 RARE_NTP_USER, | |
| 26 ORDINARY_NTP_USER, | |
| 27 FREQUENT_NTP_USER, | |
| 28 }; | |
| 29 | |
| 30 // For estimating the average length of the intervals between two successive | |
| 31 // events, we keep a simple frequency model, a single value that we call | |
| 32 // "metric" below. | |
| 33 // We track exponentially-discounted rate of the given event per hour where | |
| 34 // the continuous utility function between two successive events (e.g. opening | |
| 35 // a NTP) at times t1 < t2 is 1 / (t2-t1), i.e. intuitively the rate of this | |
| 36 // event in this time interval. | |
| 37 // See https://en.wikipedia.org/wiki/Exponential_discounting for more details. | |
| 38 // We keep track of the following events. | |
| 39 // NOTE: if you add any element, add it also in the static arrays in .cc and | |
| 40 // create another histogram. | |
| 41 enum Metric { | |
| 42 NTP_OPENED = 0, // When the user opens a new NTP - this indicates potential | |
|
Marc Treib
2016/09/20 13:26:52
Any particular reason for the "= 0"? It's the defa
jkrcal
2016/09/20 13:46:39
Done.
| |
| 43 // use of content suggestions. | |
| 44 SUGGESTIONS_SHOWN, // When the content suggestions are shown to the user - | |
| 45 // in the current implementation when the user scrolls | |
| 46 // below the fold. | |
| 47 SUGGESTIONS_USED, // When the user clicks on some suggestions or on some | |
| 48 // "More" button. | |
| 49 COUNT // Keep this as the last element. | |
| 50 }; | |
| 51 | |
| 21 // The provided |pref_service| may be nullptr in unit-tests. | 52 // The provided |pref_service| may be nullptr in unit-tests. |
| 22 explicit UserClassifier(PrefService* pref_service); | 53 explicit UserClassifier(PrefService* pref_service); |
| 23 ~UserClassifier(); | 54 ~UserClassifier(); |
| 24 | 55 |
| 25 // Registers profile prefs for all metrics. Called from browser_prefs.cc. | 56 // Registers profile prefs for all metrics. Called from browser_prefs.cc. |
| 26 static void RegisterProfilePrefs(PrefRegistrySimple* registry); | 57 static void RegisterProfilePrefs(PrefRegistrySimple* registry); |
| 27 | 58 |
| 28 // When the user opens a new NTP - this indicates potential use of content | 59 void OnEvent(Metric metric); |
|
Marc Treib
2016/09/20 13:26:52
Add a comment?
jkrcal
2016/09/20 13:46:39
Done.
| |
| 29 // suggestions. | |
| 30 void OnNTPOpened(); | |
| 31 | 60 |
| 32 // When the content suggestions are shown to the user - in the current | 61 // Get the estimate average length of the interval between two successive |
| 33 // implementation when the user scrolls below the fold. | 62 // events of the given type. |
| 34 void OnSuggestionsShown(); | 63 double GetEstimatedAvgTime(Metric metric) const; |
| 35 | 64 |
| 36 // When the user clicks on some suggestions or on some "More" button. | 65 // Return the classification of the current user. |
| 37 void OnSuggestionsUsed(); | 66 UserClass GetUserClass() const; |
| 67 std::string GetUserClassDescriptionForDebugging() const; | |
| 68 | |
| 69 // Resets the classification (emulates a fresh upgrade / install). | |
| 70 void ClearClassificationForDebugging(); | |
| 38 | 71 |
| 39 private: | 72 private: |
| 40 // The event has happened, recompute and store the metric accordingly. | 73 // The event has happened, recompute the metric accordingly. Then store |
| 41 void UpdateMetricOnEvent(const char* metric_pref_name, | 74 // and |
| 42 const char* last_time_pref_name); | 75 // return the new value. |
|
Marc Treib
2016/09/20 13:26:52
Remove the extra line break
jkrcal
2016/09/20 13:46:39
Done.
| |
| 76 double UpdateMetricOnEvent(Metric metric); | |
| 77 // No event has happened but we need to get up-to-date metric, recompute and | |
| 78 // return the new value. This function does not store the recomputed metric. | |
| 79 double GetUpToDateMetricValue(Metric metric) const; | |
| 43 | 80 |
| 44 // Compute the number of hours between two events for the given metric value | 81 // Returns the number of hours since the last event of the same type. |
| 45 // assuming the events were equally distributed. | 82 // If there is no last event of that type, assume it happened just now and |
| 46 double GetEstimateHoursBetweenEvents(const char* metric_pref_name); | 83 // return 0. |
| 84 double GetHoursSinceLastTime(Metric metric) const; | |
| 85 bool HasLastTime(Metric metric) const; | |
| 86 void SetLastTimeToNow(Metric metric); | |
| 47 | 87 |
| 48 // Returns the number of hours since the last event of the same type or | 88 double GetMetricValue(Metric metric) const; |
| 49 // DBL_MAX if there is no last event of that type. | 89 void SetMetricValue(Metric metric, double metric_value); |
| 50 double GetHoursSinceLastTime(const char* last_time_pref_name); | 90 void ClearMetricValue(Metric metric); |
| 51 void SetLastTimeToNow(const char* last_time_pref_name); | |
| 52 | 91 |
| 53 PrefService* pref_service_; | 92 PrefService* pref_service_; |
| 54 double const discount_rate_per_hour_; | 93 double discount_rate_per_hour_; |
|
Marc Treib
2016/09/20 13:26:53
You could make this const.
jkrcal
2016/09/20 13:46:39
Done.
| |
| 55 | 94 |
| 56 DISALLOW_COPY_AND_ASSIGN(UserClassifier); | 95 DISALLOW_COPY_AND_ASSIGN(UserClassifier); |
| 57 }; | 96 }; |
| 58 | 97 |
| 59 } // namespace ntp_snippets | 98 } // namespace ntp_snippets |
| 60 | 99 |
| 61 #endif // COMPONENTS_NTP_SNIPPETS_USER_CLASSIFIER_H_ | 100 #endif // COMPONENTS_NTP_SNIPPETS_USER_CLASSIFIER_H_ |
| OLD | NEW |