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_DBUS_SERVICE_H__ |
| 6 | #define CHROMEOS_PLATFORM_UPDATE_ENGINE_DBUS_SERVICE_H__ |
| 7 | |
| 8 | #include <inttypes.h> |
| 9 | #include <dbus/dbus-glib.h> |
| 10 | #include <dbus/dbus-glib-bindings.h> |
| 11 | #include <dbus/dbus-glib-lowlevel.h> |
| 12 | #include <glib-object.h> |
| 13 | |
| 14 | #include "update_engine/update_attempter.h" |
| 15 | |
| 16 | // Type macros: |
| 17 | #define UPDATE_ENGINE_TYPE_SERVICE (update_engine_service_get_type()) |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 18 | #define UPDATE_ENGINE_SERVICE(obj) \ |
| 19 | (G_TYPE_CHECK_INSTANCE_CAST((obj), UPDATE_ENGINE_TYPE_SERVICE, \ |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 20 | UpdateEngineService)) |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 21 | #define UPDATE_ENGINE_IS_SERVICE(obj) \ |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 22 | (G_TYPE_CHECK_INSTANCE_TYPE((obj), UPDATE_ENGINE_TYPE_SERVICE)) |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 23 | #define UPDATE_ENGINE_SERVICE_CLASS(klass) \ |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 24 | (G_TYPE_CHECK_CLASS_CAST((klass), UPDATE_ENGINE_TYPE_SERVICE, \ |
| 25 | UpdateEngineService)) |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 26 | #define UPDATE_ENGINE_IS_SERVICE_CLASS(klass) \ |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 27 | (G_TYPE_CHECK_CLASS_TYPE((klass), UPDATE_ENGINE_TYPE_SERVICE)) |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 28 | #define UPDATE_ENGINE_SERVICE_GET_CLASS(obj) \ |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 29 | (G_TYPE_INSTANCE_GET_CLASS((obj), UPDATE_ENGINE_TYPE_SERVICE, \ |
| 30 | UpdateEngineService)) |
| 31 | |
| 32 | G_BEGIN_DECLS |
| 33 | |
| 34 | struct UpdateEngineService { |
| 35 | GObject parent_instance; |
| 36 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 37 | chromeos_update_engine::SystemState* system_state_; |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | struct UpdateEngineServiceClass { |
| 41 | GObjectClass parent_class; |
| 42 | }; |
| 43 | |
| 44 | UpdateEngineService* update_engine_service_new(void); |
| 45 | GType update_engine_service_get_type(void); |
| 46 | |
| 47 | // Methods |
| 48 | |
Darin Petkov | 296889c | 2010-07-23 16:20:54 -0700 | [diff] [blame] | 49 | gboolean update_engine_service_attempt_update(UpdateEngineService* self, |
| 50 | gchar* app_version, |
| 51 | gchar* omaha_url, |
| 52 | GError **error); |
| 53 | |
David Zeuthen | 75a4c3e | 2013-09-06 11:36:59 -0700 | [diff] [blame] | 54 | gboolean update_engine_service_attempt_update_with_flags( |
| 55 | UpdateEngineService* self, |
| 56 | gchar* app_version, |
| 57 | gchar* omaha_url, |
| 58 | gint flags_as_int, |
| 59 | GError **error); |
| 60 | |
Chris Sosa | d317e40 | 2013-06-12 13:47:09 -0700 | [diff] [blame] | 61 | gboolean update_engine_service_attempt_rollback(UpdateEngineService* self, |
Alex Deymo | ad92373 | 2013-08-29 16:13:49 -0700 | [diff] [blame] | 62 | gboolean powerwash, |
Chris Sosa | d317e40 | 2013-06-12 13:47:09 -0700 | [diff] [blame] | 63 | GError **error); |
| 64 | |
Alex Vakulenko | 59e253e | 2014-02-24 10:40:21 -0800 | [diff] [blame] | 65 | // Checks if the system rollback is available by verifying if the secondary |
| 66 | // system partition is valid and bootable. |
| 67 | gboolean update_engine_service_can_rollback( |
| 68 | UpdateEngineService* self, |
| 69 | gboolean* out_can_rollback, |
| 70 | GError **error); |
| 71 | |
Jay Srinivasan | c1ba09a | 2012-08-14 14:15:57 -0700 | [diff] [blame] | 72 | gboolean update_engine_service_reset_status(UpdateEngineService* self, |
| 73 | GError **error); |
| 74 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 75 | gboolean update_engine_service_get_status(UpdateEngineService* self, |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 76 | int64_t* last_checked_time, |
| 77 | double* progress, |
| 78 | gchar** current_operation, |
| 79 | gchar** new_version, |
| 80 | int64_t* new_size, |
| 81 | GError **error); |
| 82 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 83 | gboolean update_engine_service_reboot_if_needed(UpdateEngineService* self, |
| 84 | GError **error); |
| 85 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 86 | // Changes the current channel of the device to the target channel. If the |
| 87 | // target channel is a less stable channel than the current channel, then the |
| 88 | // channel change happens immediately (at the next update check). If the |
| 89 | // target channel is a more stable channel, then if is_powerwash_allowed is set |
| 90 | // to true, then also the change happens immediately but with a powerwash if |
| 91 | // required. Otherwise, the change takes effect eventually (when the version on |
| 92 | // the target channel goes above the version number of what the device |
| 93 | // currently has). |
| 94 | gboolean update_engine_service_set_channel(UpdateEngineService* self, |
| 95 | gchar* target_channel, |
Alex Deymo | ad92373 | 2013-08-29 16:13:49 -0700 | [diff] [blame] | 96 | gboolean is_powerwash_allowed, |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 97 | GError **error); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 98 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 99 | // If get_current_channel is set to true, populates |channel| with the name of |
| 100 | // the channel that the device is currently on. Otherwise, it populates it with |
| 101 | // the name of the channel the device is supposed to be (in case of a pending |
| 102 | // channel change). |
| 103 | gboolean update_engine_service_get_channel(UpdateEngineService* self, |
Alex Deymo | ad92373 | 2013-08-29 16:13:49 -0700 | [diff] [blame] | 104 | gboolean get_current_channel, |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 105 | gchar** channel, |
| 106 | GError **error); |
Darin Petkov | 8daa324 | 2010-10-25 13:28:47 -0700 | [diff] [blame] | 107 | |
Alex Deymo | 5fdf776 | 2013-07-17 20:01:40 -0700 | [diff] [blame] | 108 | // Enables or disables the sharing and consuming updates over P2P feature |
| 109 | // according to the |enabled| argument passed. |
| 110 | gboolean update_engine_service_set_p2p_update_permission( |
| 111 | UpdateEngineService* self, |
| 112 | gboolean enabled, |
| 113 | GError **error); |
| 114 | |
| 115 | // Returns in |enabled| the current value for the P2P enabled setting. This |
| 116 | // involves both sharing and consuming updates over P2P. |
| 117 | gboolean update_engine_service_get_p2p_update_permission( |
| 118 | UpdateEngineService* self, |
| 119 | gboolean* enabled, |
| 120 | GError **error); |
| 121 | |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 122 | // If there's no device policy installed, sets the update over cellular networks |
| 123 | // permission to the |allowed| value. Otherwise, this method returns with an |
| 124 | // error since this setting is overridden by the applied policy. |
| 125 | gboolean update_engine_service_set_update_over_cellular_permission( |
| 126 | UpdateEngineService* self, |
Alex Deymo | ad92373 | 2013-08-29 16:13:49 -0700 | [diff] [blame] | 127 | gboolean allowed, |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 128 | GError **error); |
| 129 | |
| 130 | // Returns the current value of the update over cellular network setting, either |
| 131 | // forced by the device policy if the device is enrolled or the current user |
| 132 | // preference otherwise. |
| 133 | gboolean update_engine_service_get_update_over_cellular_permission( |
| 134 | UpdateEngineService* self, |
Alex Deymo | ad92373 | 2013-08-29 16:13:49 -0700 | [diff] [blame] | 135 | gboolean* allowed, |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 136 | GError **error); |
| 137 | |
David Zeuthen | 3c55abd | 2013-10-14 12:48:03 -0700 | [diff] [blame] | 138 | // Returns the duration since the last successful update, as the |
| 139 | // duration on the wallclock. Returns an error if the device has not |
| 140 | // updated. |
| 141 | gboolean update_engine_service_get_duration_since_update( |
| 142 | UpdateEngineService* self, |
| 143 | gint64* out_usec_wallclock, |
| 144 | GError **error); |
| 145 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 146 | gboolean update_engine_service_emit_status_update( |
| 147 | UpdateEngineService* self, |
| 148 | gint64 last_checked_time, |
| 149 | gdouble progress, |
| 150 | const gchar* current_operation, |
| 151 | const gchar* new_version, |
| 152 | gint64 new_size); |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 153 | |
| 154 | G_END_DECLS |
| 155 | |
| 156 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_DBUS_SERVICE_H__ |