blob: d08cc4a733aee8cdd73f4ff3909ec0249b0c7bd4 [file] [log] [blame]
Alex Deymo38429cf2015-11-11 18:27:22 -08001//
2// Copyright (C) 2015 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17#ifndef UPDATE_ENGINE_METRICS_UTILS_H_
18#define UPDATE_ENGINE_METRICS_UTILS_H_
19
Tianjie Xu90aaa102017-10-10 17:39:03 -070020#include <string>
21
Tianjie Xu282aa1f2017-09-05 13:42:45 -070022#include <base/time/time.h>
23
Tianjie Xu90aaa102017-10-10 17:39:03 -070024#include "update_engine/common/clock_interface.h"
Tianjie Xu282aa1f2017-09-05 13:42:45 -070025#include "update_engine/common/error_code.h"
Tianjie Xu90aaa102017-10-10 17:39:03 -070026#include "update_engine/common/prefs_interface.h"
Sen Jiang255e22b2016-05-20 16:15:29 -070027#include "update_engine/connection_utils.h"
Tianjie Xu282aa1f2017-09-05 13:42:45 -070028#include "update_engine/metrics_constants.h"
Tianjie Xu90aaa102017-10-10 17:39:03 -070029#include "update_engine/metrics_reporter_interface.h"
Alex Deymo38429cf2015-11-11 18:27:22 -080030
31namespace chromeos_update_engine {
Alex Deymoa2591792015-11-17 00:39:40 -030032
33class SystemState;
34
Alex Deymo38429cf2015-11-11 18:27:22 -080035namespace metrics_utils {
36
37// Transforms a ErrorCode value into a metrics::DownloadErrorCode.
38// This obviously only works for errors related to downloading so if |code|
39// is e.g. |ErrorCode::kFilesystemCopierError| then
40// |kDownloadErrorCodeInputMalformed| is returned.
41metrics::DownloadErrorCode GetDownloadErrorCode(ErrorCode code);
42
43// Transforms a ErrorCode value into a metrics::AttemptResult.
44//
45// If metrics::AttemptResult::kPayloadDownloadError is returned, you
46// can use utils::GetDownloadError() to get more detail.
47metrics::AttemptResult GetAttemptResult(ErrorCode code);
48
49// Calculates the internet connection type given |type| and |tethering|.
Sen Jiang255e22b2016-05-20 16:15:29 -070050metrics::ConnectionType GetConnectionType(ConnectionType type,
51 ConnectionTethering tethering);
Alex Deymo38429cf2015-11-11 18:27:22 -080052
Alex Deymoa2591792015-11-17 00:39:40 -030053// This function returns the duration on the wallclock since the last
54// time it was called for the same |state_variable_key| value.
55//
56// If the function returns |true|, the duration (always non-negative)
57// is returned in |out_duration|. If the function returns |false|
58// something went wrong or there was no previous measurement.
59bool WallclockDurationHelper(SystemState* system_state,
60 const std::string& state_variable_key,
61 base::TimeDelta* out_duration);
62
63// This function returns the duration on the monotonic clock since the
64// last time it was called for the same |storage| pointer.
65//
66// You should pass a pointer to a 64-bit integer in |storage| which
67// should be initialized to 0.
68//
69// If the function returns |true|, the duration (always non-negative)
70// is returned in |out_duration|. If the function returns |false|
71// something went wrong or there was no previous measurement.
72bool MonotonicDurationHelper(SystemState* system_state,
73 int64_t* storage,
74 base::TimeDelta* out_duration);
75
Tianjie Xu90aaa102017-10-10 17:39:03 -070076// Returns the persisted value from prefs for the given key. It also
77// validates that the value returned is non-negative.
78int64_t GetPersistedValue(const std::string& key, PrefsInterface* prefs);
79
80// Persists the reboot count of the update attempt to |kPrefsNumReboots|.
81void SetNumReboots(int64_t num_reboots, PrefsInterface* prefs);
82
83// Persists the payload attempt number to |kPrefsPayloadAttemptNumber|.
84void SetPayloadAttemptNumber(int64_t payload_attempt_number,
85 PrefsInterface* prefs);
86
87// Persists the finished time of an update to the |kPrefsSystemUpdatedMarker|.
88void SetSystemUpdatedMarker(ClockInterface* clock, PrefsInterface* prefs);
89
90// Persists the start time of an update to |kPrefsUpdateTimestampStart|.
91void SetUpdateTimestampStart(const base::Time& update_start_time,
92 PrefsInterface* prefs);
93
94// Called at program startup if the device booted into a new update.
95// The |time_to_reboot| parameter contains the (monotonic-clock) duration
96// from when the update successfully completed (the value in
97// |kPrefsSystemUpdatedMarker|) until the device was booted into the update
98// (current monotonic-clock time).
99bool LoadAndReportTimeToReboot(MetricsReporterInterface* metrics_reporter,
100 PrefsInterface* prefs,
101 ClockInterface* clock);
102
Alex Deymo38429cf2015-11-11 18:27:22 -0800103} // namespace metrics_utils
104} // namespace chromeos_update_engine
105
106#endif // UPDATE_ENGINE_METRICS_UTILS_H_