blob: 639dc8be818b57eceb55b7348c59db5fc04751dd [file] [log] [blame]
Christopher Wileycc8ce0e2015-10-01 16:48:47 -07001//
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#include "update_engine/update_status_utils.h"
17
18#include <base/logging.h>
Jae Hoon Kim2f78c1c2019-07-25 13:20:43 -070019#include <base/strings/string_number_conversions.h>
20#include <brillo/key_value_store.h>
Christopher Wileycc8ce0e2015-10-01 16:48:47 -070021#include <update_engine/dbus-constants.h>
22
Jae Hoon Kim2f78c1c2019-07-25 13:20:43 -070023using brillo::KeyValueStore;
24using std::string;
25using update_engine::UpdateEngineStatus;
Christopher Wileycc8ce0e2015-10-01 16:48:47 -070026using update_engine::UpdateStatus;
27
28namespace chromeos_update_engine {
29
Jae Hoon Kim916af852019-08-01 17:45:30 -070030namespace {
31
32// Note: Do not change these, autotest depends on these string variables being
33// exactly these matches.
34const char kCurrentOp[] = "CURRENT_OP";
35const char kIsInstall[] = "IS_INSTALL";
Amin Hassani9be122e2019-08-29 09:20:12 -070036const char kIsEnterpriseRollback[] = "IS_ENTERPRISE_ROLLBACK";
Jae Hoon Kim916af852019-08-01 17:45:30 -070037const char kLastCheckedTime[] = "LAST_CHECKED_TIME";
38const char kNewSize[] = "NEW_SIZE";
39const char kNewVersion[] = "NEW_VERSION";
40const char kProgress[] = "PROGRESS";
41
42} // namespace
43
Christopher Wileycc8ce0e2015-10-01 16:48:47 -070044const char* UpdateStatusToString(const UpdateStatus& status) {
45 switch (status) {
46 case UpdateStatus::IDLE:
47 return update_engine::kUpdateStatusIdle;
48 case UpdateStatus::CHECKING_FOR_UPDATE:
49 return update_engine::kUpdateStatusCheckingForUpdate;
50 case UpdateStatus::UPDATE_AVAILABLE:
51 return update_engine::kUpdateStatusUpdateAvailable;
Weidong Guo421ff332017-04-17 10:08:38 -070052 case UpdateStatus::NEED_PERMISSION_TO_UPDATE:
53 return update_engine::kUpdateStatusNeedPermissionToUpdate;
Christopher Wileycc8ce0e2015-10-01 16:48:47 -070054 case UpdateStatus::DOWNLOADING:
55 return update_engine::kUpdateStatusDownloading;
56 case UpdateStatus::VERIFYING:
57 return update_engine::kUpdateStatusVerifying;
58 case UpdateStatus::FINALIZING:
59 return update_engine::kUpdateStatusFinalizing;
60 case UpdateStatus::UPDATED_NEED_REBOOT:
61 return update_engine::kUpdateStatusUpdatedNeedReboot;
62 case UpdateStatus::REPORTING_ERROR_EVENT:
63 return update_engine::kUpdateStatusReportingErrorEvent;
64 case UpdateStatus::ATTEMPTING_ROLLBACK:
65 return update_engine::kUpdateStatusAttemptingRollback;
66 case UpdateStatus::DISABLED:
67 return update_engine::kUpdateStatusDisabled;
68 }
69
70 NOTREACHED();
71 return nullptr;
72}
73
Jae Hoon Kim2f78c1c2019-07-25 13:20:43 -070074string UpdateEngineStatusToString(const UpdateEngineStatus& status) {
75 KeyValueStore key_value_store;
76
77#if BASE_VER < 576279
Jae Hoon Kim916af852019-08-01 17:45:30 -070078 key_value_store.SetString(kLastCheckedTime,
Jae Hoon Kim2f78c1c2019-07-25 13:20:43 -070079 base::Int64ToString(status.last_checked_time));
Jae Hoon Kim916af852019-08-01 17:45:30 -070080 key_value_store.SetString(kProgress, base::DoubleToString(status.progress));
81 key_value_store.SetString(kNewSize,
Jae Hoon Kim2f78c1c2019-07-25 13:20:43 -070082 base::Uint64ToString(status.new_size_bytes));
83#else
Jae Hoon Kim916af852019-08-01 17:45:30 -070084 key_value_store.SetString(kLastCheckedTime,
Jae Hoon Kim2f78c1c2019-07-25 13:20:43 -070085 base::NumberToString(status.last_checked_time));
Jae Hoon Kim916af852019-08-01 17:45:30 -070086 key_value_store.SetString(kProgress, base::NumberToString(status.progress));
87 key_value_store.SetString(kNewSize,
Jae Hoon Kim2f78c1c2019-07-25 13:20:43 -070088 base::NumberToString(status.new_size_bytes));
89#endif
Jae Hoon Kim916af852019-08-01 17:45:30 -070090 key_value_store.SetString(kCurrentOp, UpdateStatusToString(status.status));
91 key_value_store.SetString(kNewVersion, status.new_version);
Amin Hassani9be122e2019-08-29 09:20:12 -070092 key_value_store.SetBoolean(kIsEnterpriseRollback,
93 status.is_enterprise_rollback);
Jae Hoon Kim916af852019-08-01 17:45:30 -070094 key_value_store.SetBoolean(kIsInstall, status.is_install);
Jae Hoon Kim2f78c1c2019-07-25 13:20:43 -070095
96 return key_value_store.SaveToString();
97}
98
Christopher Wileycc8ce0e2015-10-01 16:48:47 -070099} // namespace chromeos_update_engine