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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_PERFORMANCE_MONITOR_SYSTEM_MONITOR_H_
#define CHROME_BROWSER_PERFORMANCE_MONITOR_SYSTEM_MONITOR_H_
#include <array>
#include <memory>
#include <optional>
#include <vector>
#include "base/containers/flat_map.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/process/process_metrics.h"
#include "base/sequence_checker.h"
#include "base/task/sequenced_task_runner.h"
#include "base/timer/timer.h"
namespace performance_monitor {
class MetricEvaluatorsHelper;
// Monitors various various system metrics such as free memory, disk idle time,
// etc.
//
// Must be created and used from the UI thread.
//
// Users of this class need to subscribe as observers via the
// AddOrUpdateObserver method. They need to specify which metrics they're
// interested in and at which frequency they should be refreshed. This set of
// metrics and frequencies can then be updated at runtime.
//
// Platforms that want to use this class need to provide a platform specific
// implementation of the MetricEvaluatorHelper class.
class SystemMonitor {
public:
// The frequency at which a metric will be collected. Exact frequencies are
// implementation details determined by experimentation.
//
// NOTE: Frequencies must be listed in increasing order in this enum.
enum class SamplingFrequency : uint32_t {
kNoSampling,
kDefaultFrequency,
};
SystemMonitor(const SystemMonitor&) = delete;
SystemMonitor& operator=(const SystemMonitor&) = delete;
virtual ~SystemMonitor();
// Creates and returns the application-wide SystemMonitor. Can only be called
// if no SystemMonitor instance exists in the current process. The caller
// owns the created instance. The current process' instance can be retrieved
// with Get().
static std::unique_ptr<SystemMonitor> Create();
// Test fixture that allows creating a global SystemMonitor instance that uses
// a custom metric evaluator helper.
static std::unique_ptr<SystemMonitor> CreateForTesting(
std::unique_ptr<MetricEvaluatorsHelper> helper);
// Get the application-wide SystemMonitor (if not present, returns
// nullptr).
static SystemMonitor* Get();
// Observer that should be notified when new samples are available.
//
// When being registered, an observer should declare the metrics it want to
// track and their refresh frequency.
class SystemObserver : public base::CheckedObserver {
public:
// A struct that associates metrics with their refresh frequencies.
struct MetricRefreshFrequencies {
SamplingFrequency free_phys_memory_mb_frequency =
SamplingFrequency::kNoSampling;
SamplingFrequency system_metrics_sampling_frequency =
SamplingFrequency::kNoSampling;
// A builder used to create instances of this object.
class Builder;
};
~SystemObserver() override;
// Reports the amount of free physical memory, in MB.
virtual void OnFreePhysicalMemoryMbSample(int free_phys_memory_mb);
// Called when a new |base::SystemMetrics| sample is available.
virtual void OnSystemMetricsStruct(
const base::SystemMetrics& system_metrics);
};
using ObserverToFrequenciesMap =
base::flat_map<SystemObserver*, SystemObserver::MetricRefreshFrequencies>;
// Adds |observer| as an observer and updates the metrics to collect and their
// frequencies based on |metrics_frequencies|. If this observer is already
// in the list then this simply updates the list of metrics to collect or
// their frequency.
void AddOrUpdateObserver(
SystemObserver* observer,
SystemObserver::MetricRefreshFrequencies metrics_frequencies);
// Removes |observer| from the observer list. After this call, the observer
// will not receive notifications for any metric. This is a no-op if this
// observer isn't registred.
void RemoveObserver(SystemObserver* observer);
const base::OneShotTimer& refresh_timer_for_testing() {
return refresh_timer_;
}
protected:
friend class SystemMonitorTest;
friend class MetricEvaluatorsHelper;
// Represents a metric. Overridden for each metric tracked by this monitor.
class MetricEvaluator {
public:
enum class Type : size_t {
// The amount of free physical memory, in megabytes.
kFreeMemoryMb,
// A |base::SystemMetrics| instance.
// TODO(sebmarchand): Split this struct into some smaller ones.
kSystemMetricsStruct,
kMax,
};
explicit MetricEvaluator(Type type);
MetricEvaluator(const MetricEvaluator&) = delete;
MetricEvaluator& operator=(const MetricEvaluator&) = delete;
virtual ~MetricEvaluator();
// Called when the metric needs to be evaluated.
virtual void Evaluate() = 0;
// Notify |observer| that a value is available, should only be called after
// Evaluate().
virtual void NotifyObserver(SystemObserver* observer) = 0;
// Returns the metric type.
Type type() const { return type_; }
// Indicates if the metric has a valid value.
virtual bool has_value() const = 0;
private:
const Type type_;
};
// Templated implementation of the MetricEvaluator interface.
template <typename T>
class MetricEvaluatorImpl : public MetricEvaluator {
public:
using ObserverArgType =
typename std::conditional<std::is_scalar<T>::value, T, const T&>::type;
MetricEvaluatorImpl(
Type type,
base::OnceCallback<std::optional<T>()> evaluate_function,
void (SystemObserver::*notify_function)(ObserverArgType));
MetricEvaluatorImpl(const MetricEvaluatorImpl&) = delete;
MetricEvaluatorImpl& operator=(const MetricEvaluatorImpl&) = delete;
virtual ~MetricEvaluatorImpl();
// Called when the metrics needs to be refreshed.
void Evaluate() override;
bool has_value() const override { return value_.has_value(); }
std::optional<T> value() { return value_; }
void set_value_for_testing(T value) { value_ = value; }
private:
void NotifyObserver(SystemObserver* observer) override;
// The callback that should be run to evaluate the metric value.
base::OnceCallback<std::optional<T>()> evaluate_function_;
// A function pointer to the SystemObserver function that should be called
// to notify of a value refresh.
void (SystemObserver::*notify_function_)(ObserverArgType);
// The value, initialized in |Evaluate|.
std::optional<T> value_;
};
// Structure storing all the functions specific to a metric.
struct MetricMetadata {
MetricMetadata() = delete;
MetricMetadata(std::unique_ptr<MetricEvaluator> (*create_function)(
MetricEvaluatorsHelper* helper),
SamplingFrequency (*get_refresh_field_function)(
const SystemObserver::MetricRefreshFrequencies&));
// A pointer to the function that creates the appropriate |MetricEvaluator|
// instance for a given metric.
std::unique_ptr<MetricEvaluator> (*const create_metric_evaluator_function)(
MetricEvaluatorsHelper* helper);
// A pointer to the function that extract the sampling frequency for a given
// metric from a MetricRefreshFrequencies struct.
SamplingFrequency (*get_refresh_frequency_field_function)(
const SystemObserver::MetricRefreshFrequencies&);
};
using MetricVector = std::vector<std::unique_ptr<MetricEvaluator>>;
using MetricSamplingFrequencyArray =
std::array<SamplingFrequency,
static_cast<size_t>(MetricEvaluator::Type::kMax)>;
// Creates SystemMonitor. Only one SystemMonitor instance per application is
// allowed.
explicit SystemMonitor(std::unique_ptr<MetricEvaluatorsHelper> helper);
// Returns a vector with all the metrics that should be evaluated given the
// current list of observers.
SystemMonitor::MetricVector GetMetricsToEvaluate() const;
const MetricSamplingFrequencyArray&
GetMetricSamplingFrequencyArrayForTesting() {
return metrics_refresh_frequencies_;
}
private:
using MetricMetadataArray =
const std::array<const MetricMetadata,
static_cast<size_t>(MetricEvaluator::Type::kMax)>;
// Evaluate the metrics in |metric_vector|.
static SystemMonitor::MetricVector EvaluateMetrics(
MetricVector metric_vector);
// Create a |MetricEvaluatorsHelper| instance for the current platform.
static std::unique_ptr<MetricEvaluatorsHelper> CreateMetricEvaluatorsHelper();
// Create the array of MetricMetadata used to initialize
// |metric_evaluators_metadata_|.
static MetricMetadataArray CreateMetricMetadataArray();
// Updates |observed_metrics_| with the list of metrics that need to be
// tracked. Starts or stop |refresh_timer_| if needed.
void UpdateObservedMetrics();
// Function that gets called by every time the refresh callback triggers.
void RefreshCallback();
// Notify the observers with the refreshed metrics.
void NotifyObservers(SystemMonitor::MetricVector metrics);
// The list of observers.
base::ObserverList<SystemObserver> observers_;
// A map that associates an observer to the metrics it's interested in.
ObserverToFrequenciesMap observer_metrics_;
// The current metrics that are being observed and the corresponding refresh
// frequency.
MetricSamplingFrequencyArray metrics_refresh_frequencies_ = {};
// The timer responsible of refreshing the metrics and notifying the
// observers.
base::OneShotTimer refresh_timer_;
// The task runner used to run all the blocking operations.
const scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
// The MetricEvaluatorsHelper instance used by the MetricEvaluator to evaluate
// the metrics. This should only be used on |blocking_task_runner_|.
std::unique_ptr<MetricEvaluatorsHelper, base::OnTaskRunnerDeleter>
metric_evaluators_helper_;
// There should be one |MetricMetadata| for each value of
// |MetricEvaluator::Type|.
MetricMetadataArray metric_evaluators_metadata_;
SEQUENCE_CHECKER(sequence_checker_);
base::WeakPtrFactory<SystemMonitor> weak_factory_{this};
};
// A builder class used to easily create a MetricRefreshFrequencies object.
class SystemMonitor::SystemObserver::MetricRefreshFrequencies::Builder {
public:
Builder() = default;
Builder(const Builder&) = delete;
Builder& operator=(const Builder&) = delete;
~Builder() = default;
Builder& SetFreePhysMemoryMbFrequency(SamplingFrequency freq);
Builder& SetSystemMetricsSamplingFrequency(SamplingFrequency freq);
// Returns the initialized MetricRefreshFrequencies instance.
MetricRefreshFrequencies Build();
private:
MetricRefreshFrequencies metrics_and_frequencies_ = {};
};
// An helper class used by the MetricEvaluator object to retrieve the info
// they need.
class MetricEvaluatorsHelper {
public:
MetricEvaluatorsHelper() = default;
MetricEvaluatorsHelper(const MetricEvaluatorsHelper&) = delete;
MetricEvaluatorsHelper& operator=(const MetricEvaluatorsHelper&) = delete;
virtual ~MetricEvaluatorsHelper() = default;
// Returns the free physical memory, in megabytes.
virtual std::optional<int> GetFreePhysicalMemoryMb() = 0;
// Return a |base::SystemMetrics| snapshot.
//
// NOTE: This function doesn't have to be virtual, the base::SystemMetrics
// struct is an abstraction that already has a per-platform definition.
std::optional<base::SystemMetrics> GetSystemMetricsStruct();
};
} // namespace performance_monitor
#endif // CHROME_BROWSER_PERFORMANCE_MONITOR_SYSTEM_MONITOR_H_
|