blob: 1b8d8ac94b37f34f4d0830e67fed0e88309c426b [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
20#include "update_engine/connection_manager.h"
21#include "update_engine/metrics.h"
22
23namespace chromeos_update_engine {
24namespace metrics_utils {
25
26// Transforms a ErrorCode value into a metrics::DownloadErrorCode.
27// This obviously only works for errors related to downloading so if |code|
28// is e.g. |ErrorCode::kFilesystemCopierError| then
29// |kDownloadErrorCodeInputMalformed| is returned.
30metrics::DownloadErrorCode GetDownloadErrorCode(ErrorCode code);
31
32// Transforms a ErrorCode value into a metrics::AttemptResult.
33//
34// If metrics::AttemptResult::kPayloadDownloadError is returned, you
35// can use utils::GetDownloadError() to get more detail.
36metrics::AttemptResult GetAttemptResult(ErrorCode code);
37
38// Calculates the internet connection type given |type| and |tethering|.
39metrics::ConnectionType GetConnectionType(NetworkConnectionType type,
40 NetworkTethering tethering);
41
42} // namespace metrics_utils
43} // namespace chromeos_update_engine
44
45#endif // UPDATE_ENGINE_METRICS_UTILS_H_