Chromium Code Reviews| Index: components/metrics/metrics_log_store.h |
| diff --git a/components/metrics/metrics_log_store.h b/components/metrics/metrics_log_store.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a42443fcabe6e3334984291d6c49e5fd78d29fdc |
| --- /dev/null |
| +++ b/components/metrics/metrics_log_store.h |
| @@ -0,0 +1,64 @@ |
| +// Copyright 2017 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 COMPONENTS_METRICS_METRICS_LOG_STORE_H_ |
| +#define COMPONENTS_METRICS_METRICS_LOG_STORE_H_ |
| + |
| +#include <string> |
| + |
| +#include "base/macros.h" |
| +#include "components/metrics/log_store.h" |
| +#include "components/metrics/metrics_log.h" |
| +#include "components/metrics/persisted_logs.h" |
| + |
| +class PrefService; |
| +class PrefRegistrySimple; |
| + |
| +namespace metrics { |
| + |
| +// A LogStore implementation for storing UMA logs. |
| +// This implementation keeps track of two types of logs, initial and ongoing, |
| +// each stored in PersistedLogs. It prioritizes staging initial logs over |
| +// ongoing logs. |
| +class MetricsLogStore : public LogStore { |
| + public: |
| + MetricsLogStore(PrefService* local_state, size_t max_retransmit_size); |
|
Alexei Svitkine (slow)
2017/02/22 20:43:46
Nit: Document the param?
Steven Holte
2017/02/22 22:15:54
Done.
|
| + ~MetricsLogStore(); |
| + |
| + // Registers local state prefs used by this class. |
| + static void RegisterPrefs(PrefRegistrySimple* registry); |
| + |
| + // Saves |log_data| as the given type. |
| + void StoreLog(const std::string& log_data, MetricsLog::LogType log_type); |
| + |
| + // metrics::LogStore: |
|
Alexei Svitkine (slow)
2017/02/22 20:43:46
Nit: Remove metrics::
Steven Holte
2017/02/22 22:15:54
Done, also removed the one I added in persisted_lo
|
| + bool has_unsent_logs() const override; |
| + bool has_staged_log() const override; |
| + const std::string& staged_log() const override; |
| + const std::string& staged_log_hash() const override; |
| + void StageNextLog() override; |
| + void DiscardStagedLog() override; |
| + void PersistUnsentLogs() const override; |
| + void LoadPersistedUnsentLogs() override; |
| + |
| + // Inspection methods for tests. |
| + size_t ongoing_log_count() const { return ongoing_log_queue_.size(); } |
| + size_t initial_log_count() const { return initial_log_queue_.size(); } |
| + |
| + private: |
| + // Tracks whether unsent logs (if any) have been loaded from the serializer. |
| + bool unsent_logs_loaded_; |
| + |
| + // Logs stored with the INITIAL_STABILITY_LOG type that haven't been sent yet. |
| + // These logs will be staged first when staging new logs. |
| + PersistedLogs initial_log_queue_; |
| + // Logs stored with the ONGOING_LOG type that haven't been sent yet. |
| + PersistedLogs ongoing_log_queue_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(MetricsLogStore); |
| +}; |
| + |
| +} // namespace metrics |
| + |
| +#endif // COMPONENTS_METRICS_METRICS_LOG_STORE_H_ |