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 | #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_H__ |
| 6 | #define CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_H__ |
| 7 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 8 | #include <time.h> |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 9 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 10 | #include <tr1/memory> |
| 11 | #include <string> |
| 12 | #include <vector> |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 13 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 14 | #include <glib.h> |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 15 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 16 | #include "update_engine/action_processor.h" |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 17 | #include "update_engine/download_action.h" |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 18 | #include "update_engine/omaha_request_params.h" |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 19 | #include "update_engine/omaha_response_handler_action.h" |
| 20 | |
Darin Petkov | 9d65b7b | 2010-07-20 09:13:01 -0700 | [diff] [blame] | 21 | class MetricsLibraryInterface; |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 22 | struct UpdateEngineService; |
| 23 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 24 | namespace chromeos_update_engine { |
| 25 | |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 26 | namespace utils { |
| 27 | enum ProcessPriority; |
| 28 | }; |
| 29 | |
Andrew de los Reyes | 6b78e29 | 2010-05-10 15:54:39 -0700 | [diff] [blame] | 30 | extern const char* kUpdateCompletedMarker; |
| 31 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 32 | enum UpdateStatus { |
| 33 | UPDATE_STATUS_IDLE = 0, |
| 34 | UPDATE_STATUS_CHECKING_FOR_UPDATE, |
| 35 | UPDATE_STATUS_UPDATE_AVAILABLE, |
| 36 | UPDATE_STATUS_DOWNLOADING, |
| 37 | UPDATE_STATUS_VERIFYING, |
| 38 | UPDATE_STATUS_FINALIZING, |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 39 | UPDATE_STATUS_UPDATED_NEED_REBOOT, |
| 40 | UPDATE_STATUS_REPORTING_ERROR_EVENT, |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | const char* UpdateStatusToString(UpdateStatus status); |
| 44 | |
| 45 | class UpdateAttempter : public ActionProcessorDelegate, |
| 46 | public DownloadActionDelegate { |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 47 | public: |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 48 | UpdateAttempter(PrefsInterface* prefs, MetricsLibraryInterface* metrics_lib); |
| 49 | ~UpdateAttempter(); |
| 50 | |
Darin Petkov | 5a7f565 | 2010-07-22 21:40:09 -0700 | [diff] [blame] | 51 | // Checks for update and, if a newer version is available, attempts |
| 52 | // to update the system. Non-empty |in_app_version| or |
| 53 | // |in_update_url| prevents automatic detection of the parameter. |
| 54 | void Update(const std::string& app_version, const std::string& omaha_url); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 55 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 56 | // ActionProcessorDelegate methods: |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 57 | void ProcessingDone(const ActionProcessor* processor, ActionExitCode code); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 58 | void ProcessingStopped(const ActionProcessor* processor); |
| 59 | void ActionCompleted(ActionProcessor* processor, |
| 60 | AbstractAction* action, |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 61 | ActionExitCode code); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 62 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 63 | // Stop updating. An attempt will be made to record status to the disk |
| 64 | // so that updates can be resumed later. |
| 65 | void Terminate(); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 66 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 67 | // Try to resume from a previously Terminate()d update. |
| 68 | void ResumeUpdating(); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 69 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 70 | // Returns the current status in the out params. Returns true on success. |
| 71 | bool GetStatus(int64_t* last_checked_time, |
| 72 | double* progress, |
| 73 | std::string* current_operation, |
| 74 | std::string* new_version, |
| 75 | int64_t* new_size); |
| 76 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 77 | void set_dbus_service(struct UpdateEngineService* dbus_service) { |
| 78 | dbus_service_ = dbus_service; |
| 79 | } |
| 80 | |
Darin Petkov | 5a7f565 | 2010-07-22 21:40:09 -0700 | [diff] [blame] | 81 | // This is the D-Bus service entry point for going through an |
| 82 | // update. If the current status is idle invokes Update. |
| 83 | void CheckForUpdate(const std::string& app_version, |
| 84 | const std::string& omaha_url); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 85 | |
Darin Petkov | 296889c | 2010-07-23 16:20:54 -0700 | [diff] [blame] | 86 | // Initiates a reboot if the current state is |
| 87 | // UPDATED_NEED_REBOOT. Returns true on sucess, false otherwise. |
| 88 | bool RebootIfNeeded(); |
| 89 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 90 | // DownloadActionDelegate method |
| 91 | void BytesReceived(uint64_t bytes_received, uint64_t total); |
| 92 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 93 | private: |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 94 | // Sets the status to the given status and notifies a status update |
| 95 | // over dbus. |
| 96 | void SetStatusAndNotify(UpdateStatus status); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 97 | |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 98 | // Creates an error event object in |error_event_| to be included in |
| 99 | // an OmahaRequestAction once the current action processor is done. |
Darin Petkov | 777dbfa | 2010-07-20 15:03:37 -0700 | [diff] [blame] | 100 | void CreatePendingErrorEvent(AbstractAction* action, ActionExitCode code); |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 101 | |
| 102 | // If there's a pending error event allocated in |error_event_|, |
| 103 | // schedules an OmahaRequestAction with that event in the current |
| 104 | // processor, clears the pending event, updates the status and |
| 105 | // returns true. Returns false otherwise. |
| 106 | bool ScheduleErrorEventAction(); |
| 107 | |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 108 | // Sets the process priority to |priority| and updates |priority_| |
| 109 | // if the new |priority| is different than the current |priority_|, |
| 110 | // otherwise simply returns. |
| 111 | void SetPriority(utils::ProcessPriority priority); |
| 112 | |
| 113 | // Set the process priority to low and sets up timeout events to |
| 114 | // increase the priority gradually to high. |
| 115 | void SetupPriorityManagement(); |
| 116 | |
| 117 | // Resets the process priority to normal and destroys any scheduled |
| 118 | // timeout sources. |
| 119 | void CleanupPriorityManagement(); |
| 120 | |
| 121 | // The process priority timeout source callback increases the |
| 122 | // current priority by one step (low goes to normal, normal goes to |
| 123 | // high). Returns true if the callback must be invoked again after a |
| 124 | // timeout, or false if GLib can destroy this timeout source. |
| 125 | static gboolean StaticManagePriorityCallback(gpointer data); |
| 126 | bool ManagePriorityCallback(); |
| 127 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 128 | struct timespec last_notify_time_; |
| 129 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 130 | std::vector<std::tr1::shared_ptr<AbstractAction> > actions_; |
| 131 | ActionProcessor processor_; |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 132 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 133 | // If non-null, this UpdateAttempter will send status updates over this |
| 134 | // dbus service. |
| 135 | UpdateEngineService* dbus_service_; |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 136 | |
| 137 | // pointer to the OmahaResponseHandlerAction in the actions_ vector; |
| 138 | std::tr1::shared_ptr<OmahaResponseHandlerAction> response_handler_action_; |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 139 | |
Darin Petkov | 1cbd78f | 2010-07-29 12:38:34 -0700 | [diff] [blame] | 140 | // Pointer to the preferences store interface. |
| 141 | PrefsInterface* prefs_; |
| 142 | |
Darin Petkov | 9d65b7b | 2010-07-20 09:13:01 -0700 | [diff] [blame] | 143 | // Pointer to the UMA metrics collection library. |
| 144 | MetricsLibraryInterface* metrics_lib_; |
| 145 | |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 146 | // Pending error event, if any. |
| 147 | scoped_ptr<OmahaEvent> error_event_; |
| 148 | |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 149 | // Current process priority. |
| 150 | utils::ProcessPriority priority_; |
| 151 | |
| 152 | // The process priority management timeout source. |
| 153 | GSource* manage_priority_source_; |
| 154 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 155 | // For status: |
| 156 | UpdateStatus status_; |
| 157 | double download_progress_; |
| 158 | int64_t last_checked_time_; |
| 159 | std::string new_version_; |
| 160 | int64_t new_size_; |
| 161 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 162 | // Device paramaters common to all Omaha requests. |
| 163 | OmahaRequestDeviceParams omaha_request_params_; |
| 164 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 165 | DISALLOW_COPY_AND_ASSIGN(UpdateAttempter); |
| 166 | }; |
| 167 | |
| 168 | } // namespace chromeos_update_engine |
| 169 | |
| 170 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_H__ |