blob: 6d449df64abd302c2697010f36df8bf5fbcf6816 [file] [log] [blame]
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001// 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 Reyes63b96d72010-05-10 13:08:54 -070018#define UPDATE_ENGINE_SERVICE(obj) \
19 (G_TYPE_CHECK_INSTANCE_CAST((obj), UPDATE_ENGINE_TYPE_SERVICE, \
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070020 UpdateEngineService))
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070021#define UPDATE_ENGINE_IS_SERVICE(obj) \
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070022 (G_TYPE_CHECK_INSTANCE_TYPE((obj), UPDATE_ENGINE_TYPE_SERVICE))
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070023#define UPDATE_ENGINE_SERVICE_CLASS(klass) \
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070024 (G_TYPE_CHECK_CLASS_CAST((klass), UPDATE_ENGINE_TYPE_SERVICE, \
25 UpdateEngineService))
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070026#define UPDATE_ENGINE_IS_SERVICE_CLASS(klass) \
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070027 (G_TYPE_CHECK_CLASS_TYPE((klass), UPDATE_ENGINE_TYPE_SERVICE))
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070028#define UPDATE_ENGINE_SERVICE_GET_CLASS(obj) \
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070029 (G_TYPE_INSTANCE_GET_CLASS((obj), UPDATE_ENGINE_TYPE_SERVICE, \
30 UpdateEngineService))
31
32G_BEGIN_DECLS
33
34struct UpdateEngineService {
35 GObject parent_instance;
36
Jay Srinivasanae4697c2013-03-18 17:08:08 -070037 chromeos_update_engine::SystemState* system_state_;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070038};
39
40struct UpdateEngineServiceClass {
41 GObjectClass parent_class;
42};
43
44UpdateEngineService* update_engine_service_new(void);
45GType update_engine_service_get_type(void);
46
47// Methods
48
Darin Petkov296889c2010-07-23 16:20:54 -070049gboolean update_engine_service_attempt_update(UpdateEngineService* self,
50 gchar* app_version,
51 gchar* omaha_url,
52 GError **error);
53
David Zeuthen75a4c3e2013-09-06 11:36:59 -070054gboolean 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 Sosad317e402013-06-12 13:47:09 -070061gboolean update_engine_service_attempt_rollback(UpdateEngineService* self,
Alex Deymoad923732013-08-29 16:13:49 -070062 gboolean powerwash,
Chris Sosad317e402013-06-12 13:47:09 -070063 GError **error);
64
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -070065gboolean update_engine_service_reset_status(UpdateEngineService* self,
66 GError **error);
67
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070068gboolean update_engine_service_get_status(UpdateEngineService* self,
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070069 int64_t* last_checked_time,
70 double* progress,
71 gchar** current_operation,
72 gchar** new_version,
73 int64_t* new_size,
74 GError **error);
75
Jay Srinivasanae4697c2013-03-18 17:08:08 -070076gboolean update_engine_service_reboot_if_needed(UpdateEngineService* self,
77 GError **error);
78
Jay Srinivasanae4697c2013-03-18 17:08:08 -070079// Changes the current channel of the device to the target channel. If the
80// target channel is a less stable channel than the current channel, then the
81// channel change happens immediately (at the next update check). If the
82// target channel is a more stable channel, then if is_powerwash_allowed is set
83// to true, then also the change happens immediately but with a powerwash if
84// required. Otherwise, the change takes effect eventually (when the version on
85// the target channel goes above the version number of what the device
86// currently has).
87gboolean update_engine_service_set_channel(UpdateEngineService* self,
88 gchar* target_channel,
Alex Deymoad923732013-08-29 16:13:49 -070089 gboolean is_powerwash_allowed,
Jay Srinivasanae4697c2013-03-18 17:08:08 -070090 GError **error);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070091
Jay Srinivasanae4697c2013-03-18 17:08:08 -070092// If get_current_channel is set to true, populates |channel| with the name of
93// the channel that the device is currently on. Otherwise, it populates it with
94// the name of the channel the device is supposed to be (in case of a pending
95// channel change).
96gboolean update_engine_service_get_channel(UpdateEngineService* self,
Alex Deymoad923732013-08-29 16:13:49 -070097 gboolean get_current_channel,
Jay Srinivasanae4697c2013-03-18 17:08:08 -070098 gchar** channel,
99 GError **error);
Darin Petkov8daa3242010-10-25 13:28:47 -0700100
Alex Deymo5fdf7762013-07-17 20:01:40 -0700101// Enables or disables the sharing and consuming updates over P2P feature
102// according to the |enabled| argument passed.
103gboolean update_engine_service_set_p2p_update_permission(
104 UpdateEngineService* self,
105 gboolean enabled,
106 GError **error);
107
108// Returns in |enabled| the current value for the P2P enabled setting. This
109// involves both sharing and consuming updates over P2P.
110gboolean update_engine_service_get_p2p_update_permission(
111 UpdateEngineService* self,
112 gboolean* enabled,
113 GError **error);
114
Alex Deymof4867c42013-06-28 14:41:39 -0700115// If there's no device policy installed, sets the update over cellular networks
116// permission to the |allowed| value. Otherwise, this method returns with an
117// error since this setting is overridden by the applied policy.
118gboolean update_engine_service_set_update_over_cellular_permission(
119 UpdateEngineService* self,
Alex Deymoad923732013-08-29 16:13:49 -0700120 gboolean allowed,
Alex Deymof4867c42013-06-28 14:41:39 -0700121 GError **error);
122
123// Returns the current value of the update over cellular network setting, either
124// forced by the device policy if the device is enrolled or the current user
125// preference otherwise.
126gboolean update_engine_service_get_update_over_cellular_permission(
127 UpdateEngineService* self,
Alex Deymoad923732013-08-29 16:13:49 -0700128 gboolean* allowed,
Alex Deymof4867c42013-06-28 14:41:39 -0700129 GError **error);
130
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700131gboolean update_engine_service_emit_status_update(
132 UpdateEngineService* self,
133 gint64 last_checked_time,
134 gdouble progress,
135 const gchar* current_operation,
136 const gchar* new_version,
137 gint64 new_size);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700138
139G_END_DECLS
140
141#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_DBUS_SERVICE_H__