Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 1 | // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "update_engine/update_attempter.h" |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 6 | |
| 7 | // From 'man clock_gettime': feature test macro: _POSIX_C_SOURCE >= 199309L |
| 8 | #ifndef _POSIX_C_SOURCE |
| 9 | #define _POSIX_C_SOURCE 199309L |
| 10 | #endif // _POSIX_C_SOURCE |
| 11 | #include <time.h> |
| 12 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 13 | #include <tr1/memory> |
| 14 | #include <string> |
| 15 | #include <vector> |
Darin Petkov | 9d65b7b | 2010-07-20 09:13:01 -0700 | [diff] [blame] | 16 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 17 | #include <glib.h> |
Darin Petkov | 9d65b7b | 2010-07-20 09:13:01 -0700 | [diff] [blame] | 18 | |
| 19 | #include "metrics/metrics_library.h" |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 20 | #include "update_engine/dbus_service.h" |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 21 | #include "update_engine/download_action.h" |
| 22 | #include "update_engine/filesystem_copier_action.h" |
| 23 | #include "update_engine/libcurl_http_fetcher.h" |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 24 | #include "update_engine/omaha_request_action.h" |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 25 | #include "update_engine/omaha_request_params.h" |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 26 | #include "update_engine/omaha_response_handler_action.h" |
| 27 | #include "update_engine/postinstall_runner_action.h" |
| 28 | #include "update_engine/set_bootable_flag_action.h" |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 29 | |
| 30 | using std::tr1::shared_ptr; |
| 31 | using std::string; |
| 32 | using std::vector; |
| 33 | |
| 34 | namespace chromeos_update_engine { |
| 35 | |
Andrew de los Reyes | 6b78e29 | 2010-05-10 15:54:39 -0700 | [diff] [blame] | 36 | const char* kUpdateCompletedMarker = "/tmp/update_engine_autoupdate_completed"; |
| 37 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 38 | namespace { |
| 39 | // Returns true on success. |
| 40 | bool GetCPUClockTime(struct timespec* out) { |
| 41 | return clock_gettime(CLOCK_REALTIME, out) == 0; |
| 42 | } |
| 43 | // Returns stop - start. |
| 44 | struct timespec CPUClockTimeElapsed(const struct timespec& start, |
| 45 | const struct timespec& stop) { |
| 46 | CHECK(start.tv_sec >= 0); |
| 47 | CHECK(stop.tv_sec >= 0); |
| 48 | CHECK(start.tv_nsec >= 0); |
| 49 | CHECK(stop.tv_nsec >= 0); |
| 50 | |
| 51 | const int64_t kOneBillion = 1000000000L; |
| 52 | const int64_t start64 = start.tv_sec * kOneBillion + start.tv_nsec; |
| 53 | const int64_t stop64 = stop.tv_sec * kOneBillion + stop.tv_nsec; |
| 54 | |
| 55 | const int64_t result64 = stop64 - start64; |
| 56 | |
| 57 | struct timespec ret; |
| 58 | ret.tv_sec = result64 / kOneBillion; |
| 59 | ret.tv_nsec = result64 % kOneBillion; |
| 60 | |
| 61 | return ret; |
| 62 | } |
| 63 | bool CPUClockTimeGreaterThanHalfSecond(const struct timespec& spec) { |
| 64 | if (spec.tv_sec >= 1) |
| 65 | return true; |
| 66 | return (spec.tv_nsec > 500000000); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | const char* UpdateStatusToString(UpdateStatus status) { |
| 71 | switch (status) { |
| 72 | case UPDATE_STATUS_IDLE: |
| 73 | return "UPDATE_STATUS_IDLE"; |
| 74 | case UPDATE_STATUS_CHECKING_FOR_UPDATE: |
| 75 | return "UPDATE_STATUS_CHECKING_FOR_UPDATE"; |
| 76 | case UPDATE_STATUS_UPDATE_AVAILABLE: |
| 77 | return "UPDATE_STATUS_UPDATE_AVAILABLE"; |
| 78 | case UPDATE_STATUS_DOWNLOADING: |
| 79 | return "UPDATE_STATUS_DOWNLOADING"; |
| 80 | case UPDATE_STATUS_VERIFYING: |
| 81 | return "UPDATE_STATUS_VERIFYING"; |
| 82 | case UPDATE_STATUS_FINALIZING: |
| 83 | return "UPDATE_STATUS_FINALIZING"; |
| 84 | case UPDATE_STATUS_UPDATED_NEED_REBOOT: |
| 85 | return "UPDATE_STATUS_UPDATED_NEED_REBOOT"; |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 86 | case UPDATE_STATUS_REPORTING_ERROR_EVENT: |
| 87 | return "UPDATE_STATUS_REPORTING_ERROR_EVENT"; |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 88 | default: |
| 89 | return "unknown status"; |
| 90 | } |
| 91 | } |
| 92 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 93 | void UpdateAttempter::Update() { |
Andrew de los Reyes | 6b78e29 | 2010-05-10 15:54:39 -0700 | [diff] [blame] | 94 | if (status_ == UPDATE_STATUS_UPDATED_NEED_REBOOT) { |
| 95 | LOG(INFO) << "Not updating b/c we already updated and we're waiting for " |
| 96 | << "reboot"; |
| 97 | return; |
| 98 | } |
| 99 | if (status_ != UPDATE_STATUS_IDLE) { |
| 100 | // Update in progress. Do nothing |
| 101 | return; |
| 102 | } |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 103 | if (!omaha_request_params_.Init()) { |
| 104 | LOG(ERROR) << "Unable to initialize Omaha request device params."; |
| 105 | return; |
| 106 | } |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 107 | CHECK(!processor_.IsRunning()); |
| 108 | processor_.set_delegate(this); |
| 109 | |
| 110 | // Actions: |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 111 | shared_ptr<OmahaRequestAction> update_check_action( |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 112 | new OmahaRequestAction(omaha_request_params_, |
| 113 | NULL, |
| 114 | new LibcurlHttpFetcher)); |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 115 | shared_ptr<OmahaResponseHandlerAction> response_handler_action( |
| 116 | new OmahaResponseHandlerAction); |
| 117 | shared_ptr<FilesystemCopierAction> filesystem_copier_action( |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 118 | new FilesystemCopierAction(false)); |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 119 | shared_ptr<FilesystemCopierAction> kernel_filesystem_copier_action( |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 120 | new FilesystemCopierAction(true)); |
Darin Petkov | 8c2980e | 2010-07-16 15:16:49 -0700 | [diff] [blame] | 121 | shared_ptr<OmahaRequestAction> download_started_action( |
| 122 | new OmahaRequestAction(omaha_request_params_, |
| 123 | new OmahaEvent( |
Darin Petkov | e17f86b | 2010-07-20 09:12:01 -0700 | [diff] [blame] | 124 | OmahaEvent::kTypeUpdateDownloadStarted), |
Darin Petkov | 8c2980e | 2010-07-16 15:16:49 -0700 | [diff] [blame] | 125 | new LibcurlHttpFetcher)); |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 126 | shared_ptr<DownloadAction> download_action( |
| 127 | new DownloadAction(new LibcurlHttpFetcher)); |
Darin Petkov | 8c2980e | 2010-07-16 15:16:49 -0700 | [diff] [blame] | 128 | shared_ptr<OmahaRequestAction> download_finished_action( |
| 129 | new OmahaRequestAction(omaha_request_params_, |
| 130 | new OmahaEvent( |
Darin Petkov | e17f86b | 2010-07-20 09:12:01 -0700 | [diff] [blame] | 131 | OmahaEvent::kTypeUpdateDownloadFinished), |
Darin Petkov | 8c2980e | 2010-07-16 15:16:49 -0700 | [diff] [blame] | 132 | new LibcurlHttpFetcher)); |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 133 | shared_ptr<PostinstallRunnerAction> postinstall_runner_action_precommit( |
| 134 | new PostinstallRunnerAction(true)); |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 135 | shared_ptr<SetBootableFlagAction> set_bootable_flag_action( |
| 136 | new SetBootableFlagAction); |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 137 | shared_ptr<PostinstallRunnerAction> postinstall_runner_action_postcommit( |
| 138 | new PostinstallRunnerAction(false)); |
Darin Petkov | 8c2980e | 2010-07-16 15:16:49 -0700 | [diff] [blame] | 139 | shared_ptr<OmahaRequestAction> update_complete_action( |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 140 | new OmahaRequestAction(omaha_request_params_, |
Darin Petkov | e17f86b | 2010-07-20 09:12:01 -0700 | [diff] [blame] | 141 | new OmahaEvent(OmahaEvent::kTypeUpdateComplete), |
Darin Petkov | 0dc8e9a | 2010-07-14 14:51:57 -0700 | [diff] [blame] | 142 | new LibcurlHttpFetcher)); |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 143 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 144 | download_action->set_delegate(this); |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 145 | response_handler_action_ = response_handler_action; |
| 146 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 147 | actions_.push_back(shared_ptr<AbstractAction>(update_check_action)); |
| 148 | actions_.push_back(shared_ptr<AbstractAction>(response_handler_action)); |
| 149 | actions_.push_back(shared_ptr<AbstractAction>(filesystem_copier_action)); |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 150 | actions_.push_back(shared_ptr<AbstractAction>( |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 151 | kernel_filesystem_copier_action)); |
Darin Petkov | 8c2980e | 2010-07-16 15:16:49 -0700 | [diff] [blame] | 152 | actions_.push_back(shared_ptr<AbstractAction>(download_started_action)); |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 153 | actions_.push_back(shared_ptr<AbstractAction>(download_action)); |
Darin Petkov | 8c2980e | 2010-07-16 15:16:49 -0700 | [diff] [blame] | 154 | actions_.push_back(shared_ptr<AbstractAction>(download_finished_action)); |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 155 | actions_.push_back(shared_ptr<AbstractAction>( |
| 156 | postinstall_runner_action_precommit)); |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 157 | actions_.push_back(shared_ptr<AbstractAction>(set_bootable_flag_action)); |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 158 | actions_.push_back(shared_ptr<AbstractAction>( |
| 159 | postinstall_runner_action_postcommit)); |
Darin Petkov | 8c2980e | 2010-07-16 15:16:49 -0700 | [diff] [blame] | 160 | actions_.push_back(shared_ptr<AbstractAction>(update_complete_action)); |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 161 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 162 | // Enqueue the actions |
| 163 | for (vector<shared_ptr<AbstractAction> >::iterator it = actions_.begin(); |
| 164 | it != actions_.end(); ++it) { |
| 165 | processor_.EnqueueAction(it->get()); |
| 166 | } |
| 167 | |
| 168 | // Bond them together. We have to use the leaf-types when calling |
| 169 | // BondActions(). |
Andrew de los Reyes | f98bff8 | 2010-05-06 13:33:25 -0700 | [diff] [blame] | 170 | BondActions(update_check_action.get(), |
| 171 | response_handler_action.get()); |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 172 | BondActions(response_handler_action.get(), |
Andrew de los Reyes | f98bff8 | 2010-05-06 13:33:25 -0700 | [diff] [blame] | 173 | filesystem_copier_action.get()); |
| 174 | BondActions(filesystem_copier_action.get(), |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 175 | kernel_filesystem_copier_action.get()); |
| 176 | BondActions(kernel_filesystem_copier_action.get(), |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 177 | download_action.get()); |
Andrew de los Reyes | f98bff8 | 2010-05-06 13:33:25 -0700 | [diff] [blame] | 178 | BondActions(download_action.get(), |
| 179 | postinstall_runner_action_precommit.get()); |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 180 | BondActions(postinstall_runner_action_precommit.get(), |
| 181 | set_bootable_flag_action.get()); |
| 182 | BondActions(set_bootable_flag_action.get(), |
| 183 | postinstall_runner_action_postcommit.get()); |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 184 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 185 | SetStatusAndNotify(UPDATE_STATUS_CHECKING_FOR_UPDATE); |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 186 | processor_.StartProcessing(); |
| 187 | } |
| 188 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 189 | void UpdateAttempter::CheckForUpdate() { |
| 190 | if (status_ != UPDATE_STATUS_IDLE) { |
| 191 | LOG(INFO) << "Check for update requested, but status is " |
| 192 | << UpdateStatusToString(status_) << ", so not checking."; |
| 193 | return; |
| 194 | } |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 195 | Update(); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | // Delegate methods: |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 199 | void UpdateAttempter::ProcessingDone(const ActionProcessor* processor, |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 200 | ActionExitCode code) { |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 201 | CHECK(response_handler_action_); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 202 | LOG(INFO) << "Processing Done."; |
Andrew de los Reyes | 6b78e29 | 2010-05-10 15:54:39 -0700 | [diff] [blame] | 203 | actions_.clear(); |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 204 | |
| 205 | if (status_ == UPDATE_STATUS_REPORTING_ERROR_EVENT) { |
| 206 | LOG(INFO) << "Error event sent."; |
| 207 | SetStatusAndNotify(UPDATE_STATUS_IDLE); |
| 208 | return; |
| 209 | } |
| 210 | |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 211 | if (code == kActionCodeSuccess) { |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 212 | SetStatusAndNotify(UPDATE_STATUS_UPDATED_NEED_REBOOT); |
Andrew de los Reyes | 6b78e29 | 2010-05-10 15:54:39 -0700 | [diff] [blame] | 213 | utils::WriteFile(kUpdateCompletedMarker, "", 0); |
Darin Petkov | 9d65b7b | 2010-07-20 09:13:01 -0700 | [diff] [blame] | 214 | |
| 215 | // Report the time it took to update the system. |
| 216 | int64_t update_time = time(NULL) - last_checked_time_; |
| 217 | metrics_lib_->SendToUMA("Installer.UpdateTime", |
| 218 | static_cast<int>(update_time), // sample |
| 219 | 1, // min = 1 second |
| 220 | 20 * 60, // max = 20 minutes |
| 221 | 50); // buckets |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 222 | return; |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 223 | } |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 224 | |
| 225 | LOG(INFO) << "Update failed."; |
| 226 | if (ScheduleErrorEventAction()) |
| 227 | return; |
| 228 | SetStatusAndNotify(UPDATE_STATUS_IDLE); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | void UpdateAttempter::ProcessingStopped(const ActionProcessor* processor) { |
| 232 | download_progress_ = 0.0; |
| 233 | SetStatusAndNotify(UPDATE_STATUS_IDLE); |
Andrew de los Reyes | 6b78e29 | 2010-05-10 15:54:39 -0700 | [diff] [blame] | 234 | actions_.clear(); |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 235 | error_event_.reset(NULL); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | // Called whenever an action has finished processing, either successfully |
| 239 | // or otherwise. |
| 240 | void UpdateAttempter::ActionCompleted(ActionProcessor* processor, |
| 241 | AbstractAction* action, |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 242 | ActionExitCode code) { |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 243 | // Reset download progress regardless of whether or not the download action |
| 244 | // succeeded. |
| 245 | const string type = action->Type(); |
| 246 | if (type == DownloadAction::StaticType()) |
| 247 | download_progress_ = 0.0; |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 248 | if (code != kActionCodeSuccess) { |
| 249 | // On failure, schedule an error event to be sent to Omaha. For |
| 250 | // now assume that Omaha response action failure means that |
| 251 | // there's no update so don't send an event. Also, double check |
| 252 | // that the failure has not occurred while sending an error event |
| 253 | // -- in which case don't schedule another. This shouldn't really |
| 254 | // happen but just in case... |
| 255 | if (type != OmahaResponseHandlerAction::StaticType() && |
| 256 | status_ != UPDATE_STATUS_REPORTING_ERROR_EVENT) { |
| 257 | CreatePendingErrorEvent(code); |
| 258 | } |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 259 | return; |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 260 | } |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 261 | // Find out which action completed. |
| 262 | if (type == OmahaResponseHandlerAction::StaticType()) { |
| 263 | SetStatusAndNotify(UPDATE_STATUS_DOWNLOADING); |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 264 | OmahaResponseHandlerAction* omaha_response_handler_action = |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 265 | dynamic_cast<OmahaResponseHandlerAction*>(action); |
| 266 | CHECK(omaha_response_handler_action); |
| 267 | const InstallPlan& plan = omaha_response_handler_action->install_plan(); |
| 268 | last_checked_time_ = time(NULL); |
| 269 | // TODO(adlr): put version in InstallPlan |
| 270 | new_version_ = "0.0.0.0"; |
| 271 | new_size_ = plan.size; |
| 272 | } else if (type == DownloadAction::StaticType()) { |
| 273 | SetStatusAndNotify(UPDATE_STATUS_FINALIZING); |
| 274 | } |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | // Stop updating. An attempt will be made to record status to the disk |
| 278 | // so that updates can be resumed later. |
| 279 | void UpdateAttempter::Terminate() { |
| 280 | // TODO(adlr): implement this method. |
| 281 | NOTIMPLEMENTED(); |
| 282 | } |
| 283 | |
| 284 | // Try to resume from a previously Terminate()d update. |
| 285 | void UpdateAttempter::ResumeUpdating() { |
| 286 | // TODO(adlr): implement this method. |
| 287 | NOTIMPLEMENTED(); |
| 288 | } |
| 289 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 290 | void UpdateAttempter::BytesReceived(uint64_t bytes_received, uint64_t total) { |
| 291 | if (status_ != UPDATE_STATUS_DOWNLOADING) { |
| 292 | LOG(ERROR) << "BytesReceived called while not downloading."; |
| 293 | return; |
| 294 | } |
| 295 | download_progress_ = static_cast<double>(bytes_received) / |
| 296 | static_cast<double>(total); |
| 297 | // We self throttle here |
| 298 | timespec now; |
| 299 | now.tv_sec = 0; |
| 300 | now.tv_nsec = 0; |
| 301 | if (GetCPUClockTime(&now) && |
| 302 | CPUClockTimeGreaterThanHalfSecond( |
| 303 | CPUClockTimeElapsed(last_notify_time_, now))) { |
| 304 | SetStatusAndNotify(UPDATE_STATUS_DOWNLOADING); |
| 305 | } |
| 306 | } |
| 307 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 308 | bool UpdateAttempter::GetStatus(int64_t* last_checked_time, |
| 309 | double* progress, |
| 310 | std::string* current_operation, |
| 311 | std::string* new_version, |
| 312 | int64_t* new_size) { |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 313 | *last_checked_time = last_checked_time_; |
| 314 | *progress = download_progress_; |
| 315 | *current_operation = UpdateStatusToString(status_); |
| 316 | *new_version = new_version_; |
| 317 | *new_size = new_size_; |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 318 | return true; |
| 319 | } |
| 320 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 321 | void UpdateAttempter::SetStatusAndNotify(UpdateStatus status) { |
| 322 | status_ = status; |
| 323 | if (!dbus_service_) |
| 324 | return; |
| 325 | GetCPUClockTime(&last_notify_time_); |
| 326 | update_engine_service_emit_status_update( |
| 327 | dbus_service_, |
| 328 | last_checked_time_, |
| 329 | download_progress_, |
| 330 | UpdateStatusToString(status_), |
| 331 | new_version_.c_str(), |
| 332 | new_size_); |
| 333 | } |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 334 | |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 335 | void UpdateAttempter::CreatePendingErrorEvent(ActionExitCode code) { |
| 336 | if (error_event_.get()) { |
| 337 | // This shouldn't really happen. |
| 338 | LOG(WARNING) << "There's already an existing pending error event."; |
| 339 | return; |
| 340 | } |
| 341 | error_event_.reset(new OmahaEvent(OmahaEvent::kTypeUpdateComplete, |
| 342 | OmahaEvent::kResultError, |
| 343 | code)); |
| 344 | } |
| 345 | |
| 346 | bool UpdateAttempter::ScheduleErrorEventAction() { |
| 347 | if (error_event_.get() == NULL) |
| 348 | return false; |
| 349 | |
| 350 | shared_ptr<OmahaRequestAction> error_event_action( |
| 351 | new OmahaRequestAction(omaha_request_params_, |
| 352 | error_event_.release(), // Pass ownership. |
| 353 | new LibcurlHttpFetcher)); |
| 354 | actions_.push_back(shared_ptr<AbstractAction>(error_event_action)); |
| 355 | processor_.EnqueueAction(error_event_action.get()); |
| 356 | SetStatusAndNotify(UPDATE_STATUS_REPORTING_ERROR_EVENT); |
| 357 | processor_.StartProcessing(); |
| 358 | return true; |
| 359 | } |
| 360 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 361 | } // namespace chromeos_update_engine |