Index: base/prefs/json_pref_store.cc |
diff --git a/base/prefs/json_pref_store.cc b/base/prefs/json_pref_store.cc |
index 47cd424d9cc9dfa7e8051d13ce72316a6bbd78b9..b4bdb0b020fbed4dd36b7549d4b82ba5167873d6 100644 |
--- a/base/prefs/json_pref_store.cc |
+++ b/base/prefs/json_pref_store.cc |
@@ -16,6 +16,7 @@ |
#include "base/metrics/histogram.h" |
#include "base/prefs/pref_filter.h" |
#include "base/sequenced_task_runner.h" |
+#include "base/strings/string_number_conversions.h" |
#include "base/strings/string_util.h" |
#include "base/task_runner_util.h" |
#include "base/threading/sequenced_worker_pool.h" |
@@ -42,11 +43,69 @@ JsonPrefStore::ReadResult::ReadResult() |
JsonPrefStore::ReadResult::~ReadResult() { |
} |
+// Represents a histogram which records the number of writes of the pref file |
+// that occured in a given time period. |
+class JsonPrefStore::WriteCountHistogram { |
+ public: |
+ WriteCountHistogram( |
+ const base::TimeDelta& start_delay, |
+ const base::TimeDelta& stop_delay, |
+ const base::TimeDelta& commit_interval, |
+ const base::FilePath& path, |
+ const scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner); |
Mattias Nissler (ping if slow)
2015/04/14 11:58:27
Would be good to give this a name that makes it cl
|
+ ~WriteCountHistogram(); |
+ void RecordWriteOccured(); |
+ |
+ private: |
+ void SendMetric(); |
+ |
+ // The time at which this object was constructed |
+ base::Time creation_time_; |
+ |
+ // The delay (after creation) before starting to record writes. |
+ base::TimeDelta start_delay_; |
+ |
+ // The delay (after creation) at which to stop recording writes. |
+ base::TimeDelta stop_delay_; |
+ |
+ // The minimum delay between writes of the pref file. |
+ base::TimeDelta commit_interval_; |
+ |
+ // The path to the pref file. |
+ base::FilePath path_; |
+ |
+ scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_; |
+ |
+ // The total number of writes of the pref file in the interval recorded by |
+ // this object. |
+ uint32_t write_count_; |
Mattias Nissler (ping if slow)
2015/04/14 11:58:27
Why not a plain int?
|
+ |
+ base::WeakPtrFactory<JsonPrefStore::WriteCountHistogram> weak_factory_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(WriteCountHistogram); |
+}; |
+ |
namespace { |
// Some extensions we'll tack on to copies of the Preferences files. |
const base::FilePath::CharType kBadExtension[] = FILE_PATH_LITERAL("bad"); |
+struct WriteCountHistogramInfo { |
+ // The delay in minutes after startup at which to start recording write count |
+ // data for this particular histogram. |
+ int64_t start_delay; |
Mattias Nissler (ping if slow)
2015/04/14 11:58:27
might want to call this start_delay_minutes for cl
|
+ |
+ // The delay in minutes after startup at which to stop recording write count |
+ // data for this particular histogram. |
+ int64_t stop_delay; |
+}; |
Mattias Nissler (ping if slow)
2015/04/14 11:58:27
Could make this an unnamed struct. If you don't, p
|
+const WriteCountHistogramInfo kWriteCountHistograms[] = { |
+ { 0, 1 }, // The first minute of writes. |
+ { 1, 5 }, // The 2nd-5th minutes of writes. |
+ { 5, 15 }, // The 6th-15th minutes of writes. |
+ { 15, 60 }, // The 16th-60th minutes of writes. |
+}; |
+ |
PersistentPrefStore::PrefReadError HandleReadErrors( |
const base::Value* value, |
const base::FilePath& path, |
@@ -158,6 +217,15 @@ JsonPrefStore::JsonPrefStore( |
filtering_in_progress_(false), |
read_error_(PREF_READ_ERROR_NONE) { |
DCHECK(!path_.empty()); |
+ |
+ for (size_t i = 0; i < sizeof(kWriteCountHistograms); ++i) { |
+ write_count_histograms_.push_back(new WriteCountHistogram( |
+ base::TimeDelta::FromMinutes(kWriteCountHistograms[i].start_delay), |
+ base::TimeDelta::FromMinutes(kWriteCountHistograms[i].stop_delay), |
+ writer_.commit_interval(), |
+ path_, |
+ sequenced_task_runner.get())); |
+ } |
} |
JsonPrefStore::JsonPrefStore( |
@@ -394,6 +462,9 @@ JsonPrefStore::~JsonPrefStore() { |
bool JsonPrefStore::SerializeData(std::string* output) { |
DCHECK(CalledOnValidThread()); |
+ for (WriteCountHistogram* histogram : write_count_histograms_) |
+ histogram->RecordWriteOccured(); |
+ |
if (pref_filter_) |
pref_filter_->FilterSerializeData(prefs_.get()); |
@@ -435,3 +506,58 @@ void JsonPrefStore::FinalizeFileRead(bool initialization_successful, |
return; |
} |
+ |
+JsonPrefStore::WriteCountHistogram::WriteCountHistogram( |
+ const base::TimeDelta& start_delay, |
+ const base::TimeDelta& stop_delay, |
+ const base::TimeDelta& commit_interval, |
+ const base::FilePath& path, |
+ const scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner) |
+ : creation_time_(base::Time::Now()), |
+ start_delay_(start_delay), |
+ stop_delay_(stop_delay), |
+ commit_interval_(commit_interval), |
+ path_(path), |
+ sequenced_task_runner_(sequenced_task_runner), |
+ write_count_(0), |
+ weak_factory_(this) { |
+ sequenced_task_runner_->PostDelayedTask(FROM_HERE, base::Bind( |
+ &JsonPrefStore::WriteCountHistogram::SendMetric, |
+ weak_factory_.GetWeakPtr()), stop_delay_); |
+} |
+ |
+JsonPrefStore::WriteCountHistogram::~WriteCountHistogram() {} |
+ |
+void JsonPrefStore::WriteCountHistogram::RecordWriteOccured() { |
+ base::Time current_time = base::Time::Now(); |
+ base::Time time_to_start = creation_time_ + start_delay_; |
+ base::Time time_to_stop = creation_time_ + stop_delay_; |
+ if (current_time >= time_to_start && current_time < time_to_stop) |
+ ++write_count_; |
Alexei Svitkine (slow)
2015/04/15 16:41:23
Can you add a DCHECK to ensure this doesn't get hi
raymes
2015/04/21 07:22:38
The design changed so this isn't an issue now.
|
+} |
+ |
+void JsonPrefStore::WriteCountHistogram::SendMetric() { |
+ std::string spaceless_basename; |
+ base::ReplaceChars(path_.BaseName().MaybeAsASCII(), " ", "_", |
+ &spaceless_basename); |
+ |
+ std::string histogram_name = |
+ "Settings.JsonDataWriteCount." + spaceless_basename + "_" + |
Alexei Svitkine (slow)
2015/04/15 16:41:23
Please document these histograms in histograms.xml
raymes
2015/04/21 07:22:38
Done.
|
+ base::IntToString(start_delay_.InMinutes()) + "-" + |
+ base::IntToString(stop_delay_.InMinutes()); |
+ |
+ // The min value for a histogram is 1. The max value is the maximum number of |
+ // writes that can occur in the window being recorded. The max number of |
+ // buckets used is 30 (plus the underflow/overflow buckets). |
+ int32_t min_value = 1; |
+ int32_t max_value = (stop_delay_ - start_delay_) / commit_interval_; |
Mattias Nissler (ping if slow)
2015/04/14 11:58:27
This calculation doesn't work in the presence of P
|
+ int32_t num_buckets = std::min(max_value, 30) + 2; |
+ |
+ // The histogram below is an expansion of the UMA_HISTOGRAM_CUSTOM_COUNTS |
+ // macro adapted to allow for a dynamically suffixed histogram name. |
+ // Note: The factory creates and owns the histogram. |
+ base::HistogramBase* histogram = base::Histogram::FactoryGet( |
+ histogram_name, min_value, max_value, num_buckets, |
+ base::HistogramBase::kUmaTargetedHistogramFlag); |
+ histogram->Add(write_count_); |
+} |