blob: 0190ee273f8c91eac5fcce76202268e067fba5a3 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2012 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//
Jay Srinivasan43488792012-06-19 00:25:31 -070016
Gilad Arnoldcf175a02014-07-10 16:48:47 -070017#ifndef UPDATE_ENGINE_SYSTEM_STATE_H_
18#define UPDATE_ENGINE_SYSTEM_STATE_H_
Jay Srinivasan43488792012-06-19 00:25:31 -070019
Alex Deymob8803bb2015-08-19 23:14:49 -070020#include "power_manager/dbus-proxies.h"
Alex Deymo30534502015-07-20 15:06:33 -070021
Gilad Arnold1f847232014-04-07 12:07:49 -070022class MetricsLibraryInterface;
Gilad Arnoldf3815bb2013-01-14 11:58:24 -080023
Alex Deymo63784a52014-05-28 10:46:14 -070024namespace chromeos_update_manager {
Alex Deymo94c06162014-03-21 20:34:46 -070025
Alex Deymo63784a52014-05-28 10:46:14 -070026class UpdateManager;
Alex Deymo94c06162014-03-21 20:34:46 -070027
Alex Deymo63784a52014-05-28 10:46:14 -070028} // namespace chromeos_update_manager
Alex Deymo94c06162014-03-21 20:34:46 -070029
Gilad Arnold1f847232014-04-07 12:07:49 -070030namespace policy {
31
32class DevicePolicy;
33
34} // namespace policy
35
Jay Srinivasan43488792012-06-19 00:25:31 -070036namespace chromeos_update_engine {
37
Jay Srinivasan55f50c22013-01-10 19:24:35 -080038// SystemState is the root class within the update engine. So we should avoid
39// any circular references in header file inclusion. Hence forward-declaring
40// the required classes.
Alex Deymo763e7db2015-08-27 21:08:08 -070041class BootControlInterface;
David Zeuthenf413fe52013-04-22 14:04:39 -070042class ClockInterface;
Alex Deymof6ee0162015-07-31 12:35:22 -070043class ConnectionManagerInterface;
Alex Deymo94c06162014-03-21 20:34:46 -070044class HardwareInterface;
Gilad Arnold1f847232014-04-07 12:07:49 -070045class OmahaRequestParams;
David Zeuthen526cb582013-08-06 12:26:18 -070046class P2PManager;
Alex Deymo94c06162014-03-21 20:34:46 -070047class PayloadStateInterface;
48class PrefsInterface;
49class UpdateAttempter;
Jay Srinivasan55f50c22013-01-10 19:24:35 -080050
Jay Srinivasan43488792012-06-19 00:25:31 -070051// An interface to global system context, including platform resources,
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080052// the current state of the system, high-level objects whose lifetime is same
53// as main, system interfaces, etc.
Jay Srinivasan43488792012-06-19 00:25:31 -070054// Carved out separately so it can be mocked for unit tests.
55// Currently it has only one method, but we should start migrating other
56// methods to use this as and when needed to unit test them.
Alex Deymo94c06162014-03-21 20:34:46 -070057// TODO(jaysri): Consider renaming this to something like GlobalContext.
Jay Srinivasan43488792012-06-19 00:25:31 -070058class SystemState {
59 public:
60 // Destructs this object.
61 virtual ~SystemState() {}
62
Jay Srinivasan43488792012-06-19 00:25:31 -070063 // Sets or gets the latest device policy.
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080064 virtual void set_device_policy(const policy::DevicePolicy* device_policy) = 0;
Gilad Arnold1f847232014-04-07 12:07:49 -070065 virtual const policy::DevicePolicy* device_policy() = 0;
Jay Srinivasan43488792012-06-19 00:25:31 -070066
Alex Deymo763e7db2015-08-27 21:08:08 -070067 // Gets the interface object for the bootloader control interface.
68 virtual BootControlInterface* boot_control() = 0;
69
David Zeuthenf413fe52013-04-22 14:04:39 -070070 // Gets the interface object for the clock.
71 virtual ClockInterface* clock() = 0;
72
Jay Srinivasan43488792012-06-19 00:25:31 -070073 // Gets the connection manager object.
Alex Deymof6ee0162015-07-31 12:35:22 -070074 virtual ConnectionManagerInterface* connection_manager() = 0;
Jay Srinivasanf0572052012-10-23 18:12:56 -070075
Alex Deymo42432912013-07-12 20:21:15 -070076 // Gets the hardware interface object.
77 virtual HardwareInterface* hardware() = 0;
78
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080079 // Gets the Metrics Library interface for reporting UMA stats.
Jay Srinivasanf0572052012-10-23 18:12:56 -070080 virtual MetricsLibraryInterface* metrics_lib() = 0;
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080081
82 // Gets the interface object for persisted store.
83 virtual PrefsInterface* prefs() = 0;
84
Chris Sosaaa18e162013-06-20 13:20:30 -070085 // Gets the interface object for the persisted store that persists across
86 // powerwashes. Please note that this should be used very seldomly and must
87 // be forwards and backwards compatible as powerwash is used to go back and
88 // forth in system versions.
89 virtual PrefsInterface* powerwash_safe_prefs() = 0;
90
Jay Srinivasan2b5a0f02012-12-19 17:25:56 -080091 // Gets the interface for the payload state object.
92 virtual PayloadStateInterface* payload_state() = 0;
Gilad Arnoldbf7919b2013-01-08 13:07:37 -080093
Jay Srinivasan55f50c22013-01-10 19:24:35 -080094 // Returns a pointer to the update attempter object.
Gilad Arnold1f847232014-04-07 12:07:49 -070095 virtual UpdateAttempter* update_attempter() = 0;
Jay Srinivasanae4697c2013-03-18 17:08:08 -070096
97 // Returns a pointer to the object that stores the parameters that are
98 // common to all Omaha requests.
99 virtual OmahaRequestParams* request_params() = 0;
Chris Sosabe45bef2013-04-09 18:25:12 -0700100
David Zeuthen526cb582013-08-06 12:26:18 -0700101 // Returns a pointer to the P2PManager singleton.
102 virtual P2PManager* p2p_manager() = 0;
103
Alex Deymo63784a52014-05-28 10:46:14 -0700104 // Returns a pointer to the UpdateManager singleton.
105 virtual chromeos_update_manager::UpdateManager* update_manager() = 0;
Alex Deymo94c06162014-03-21 20:34:46 -0700106
Alex Deymo30534502015-07-20 15:06:33 -0700107 // DBus proxies. Mocked during test.
108 virtual org::chromium::PowerManagerProxyInterface* power_manager_proxy() = 0;
109
Chris Sosabe45bef2013-04-09 18:25:12 -0700110 // If true, this is the first instance of the update engine since the system
111 // restarted. Important for tracking whether you are running instance of the
112 // update engine on first boot or due to a crash/restart.
113 virtual bool system_rebooted() = 0;
Jay Srinivasan43488792012-06-19 00:25:31 -0700114};
115
116} // namespace chromeos_update_engine
117
Gilad Arnoldcf175a02014-07-10 16:48:47 -0700118#endif // UPDATE_ENGINE_SYSTEM_STATE_H_