blob: f46cbcf52984bbf5f81cba43ee6caf0d1439f033 [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 Deymo63784a52014-05-28 10:46:14 -070020namespace chromeos_update_manager {
Alex Deymo94c06162014-03-21 20:34:46 -070021
Alex Deymo63784a52014-05-28 10:46:14 -070022class UpdateManager;
Alex Deymo94c06162014-03-21 20:34:46 -070023
Alex Deymo63784a52014-05-28 10:46:14 -070024} // namespace chromeos_update_manager
Alex Deymo94c06162014-03-21 20:34:46 -070025
Gilad Arnold1f847232014-04-07 12:07:49 -070026namespace policy {
27
28class DevicePolicy;
29
30} // namespace policy
31
Jay Srinivasan43488792012-06-19 00:25:31 -070032namespace chromeos_update_engine {
33
Jay Srinivasan55f50c22013-01-10 19:24:35 -080034// SystemState is the root class within the update engine. So we should avoid
35// any circular references in header file inclusion. Hence forward-declaring
36// the required classes.
Alex Deymo763e7db2015-08-27 21:08:08 -070037class BootControlInterface;
David Zeuthenf413fe52013-04-22 14:04:39 -070038class ClockInterface;
Alex Deymof6ee0162015-07-31 12:35:22 -070039class ConnectionManagerInterface;
Xiaochu Liu8ba486f2018-11-06 11:14:10 -080040class DlcServiceInterface;
Alex Deymo94c06162014-03-21 20:34:46 -070041class HardwareInterface;
Tianjie Xu282aa1f2017-09-05 13:42:45 -070042class MetricsReporterInterface;
Gilad Arnold1f847232014-04-07 12:07:49 -070043class OmahaRequestParams;
David Zeuthen526cb582013-08-06 12:26:18 -070044class P2PManager;
Alex Deymo94c06162014-03-21 20:34:46 -070045class PayloadStateInterface;
Sen Jiangb8c6a8f2016-06-07 17:33:17 -070046class PowerManagerInterface;
Alex Deymo94c06162014-03-21 20:34:46 -070047class PrefsInterface;
48class UpdateAttempter;
Jay Srinivasan55f50c22013-01-10 19:24:35 -080049
Jay Srinivasan43488792012-06-19 00:25:31 -070050// An interface to global system context, including platform resources,
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080051// the current state of the system, high-level objects whose lifetime is same
52// as main, system interfaces, etc.
Jay Srinivasan43488792012-06-19 00:25:31 -070053// Carved out separately so it can be mocked for unit tests.
54// Currently it has only one method, but we should start migrating other
55// methods to use this as and when needed to unit test them.
Alex Deymo94c06162014-03-21 20:34:46 -070056// TODO(jaysri): Consider renaming this to something like GlobalContext.
Jay Srinivasan43488792012-06-19 00:25:31 -070057class SystemState {
58 public:
59 // Destructs this object.
60 virtual ~SystemState() {}
61
Jay Srinivasan43488792012-06-19 00:25:31 -070062 // Sets or gets the latest device policy.
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080063 virtual void set_device_policy(const policy::DevicePolicy* device_policy) = 0;
Gilad Arnold1f847232014-04-07 12:07:49 -070064 virtual const policy::DevicePolicy* device_policy() = 0;
Jay Srinivasan43488792012-06-19 00:25:31 -070065
Alex Deymo763e7db2015-08-27 21:08:08 -070066 // Gets the interface object for the bootloader control interface.
67 virtual BootControlInterface* boot_control() = 0;
68
David Zeuthenf413fe52013-04-22 14:04:39 -070069 // Gets the interface object for the clock.
70 virtual ClockInterface* clock() = 0;
71
Jay Srinivasan43488792012-06-19 00:25:31 -070072 // Gets the connection manager object.
Alex Deymof6ee0162015-07-31 12:35:22 -070073 virtual ConnectionManagerInterface* connection_manager() = 0;
Jay Srinivasanf0572052012-10-23 18:12:56 -070074
Alex Deymo42432912013-07-12 20:21:15 -070075 // Gets the hardware interface object.
76 virtual HardwareInterface* hardware() = 0;
77
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080078 // Gets the Metrics Library interface for reporting UMA stats.
Tianjie Xu282aa1f2017-09-05 13:42:45 -070079 virtual MetricsReporterInterface* metrics_reporter() = 0;
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080080
81 // Gets the interface object for persisted store.
82 virtual PrefsInterface* prefs() = 0;
83
Chris Sosaaa18e162013-06-20 13:20:30 -070084 // Gets the interface object for the persisted store that persists across
85 // powerwashes. Please note that this should be used very seldomly and must
86 // be forwards and backwards compatible as powerwash is used to go back and
87 // forth in system versions.
88 virtual PrefsInterface* powerwash_safe_prefs() = 0;
89
Jay Srinivasan2b5a0f02012-12-19 17:25:56 -080090 // Gets the interface for the payload state object.
91 virtual PayloadStateInterface* payload_state() = 0;
Gilad Arnoldbf7919b2013-01-08 13:07:37 -080092
Jay Srinivasan55f50c22013-01-10 19:24:35 -080093 // Returns a pointer to the update attempter object.
Gilad Arnold1f847232014-04-07 12:07:49 -070094 virtual UpdateAttempter* update_attempter() = 0;
Jay Srinivasanae4697c2013-03-18 17:08:08 -070095
96 // Returns a pointer to the object that stores the parameters that are
97 // common to all Omaha requests.
98 virtual OmahaRequestParams* request_params() = 0;
Chris Sosabe45bef2013-04-09 18:25:12 -070099
David Zeuthen526cb582013-08-06 12:26:18 -0700100 // Returns a pointer to the P2PManager singleton.
101 virtual P2PManager* p2p_manager() = 0;
102
Alex Deymo63784a52014-05-28 10:46:14 -0700103 // Returns a pointer to the UpdateManager singleton.
104 virtual chromeos_update_manager::UpdateManager* update_manager() = 0;
Alex Deymo94c06162014-03-21 20:34:46 -0700105
Sen Jiangb8c6a8f2016-06-07 17:33:17 -0700106 // Gets the power manager object. Mocked during test.
107 virtual PowerManagerInterface* power_manager() = 0;
Alex Deymo30534502015-07-20 15:06:33 -0700108
Chris Sosabe45bef2013-04-09 18:25:12 -0700109 // If true, this is the first instance of the update engine since the system
110 // restarted. Important for tracking whether you are running instance of the
111 // update engine on first boot or due to a crash/restart.
112 virtual bool system_rebooted() = 0;
Xiaochu Liu8ba486f2018-11-06 11:14:10 -0800113
114 // Returns a pointer to the DlcServiceInterface singleton.
115 virtual DlcServiceInterface* dlcservice() = 0;
Jay Srinivasan43488792012-06-19 00:25:31 -0700116};
117
118} // namespace chromeos_update_engine
119
Gilad Arnoldcf175a02014-07-10 16:48:47 -0700120#endif // UPDATE_ENGINE_SYSTEM_STATE_H_