blob: 8c26c51be40dc85620ecc1211c1b5ddaf6610050 [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 Deymo30534502015-07-20 15:06:33 -070020#include "update_engine/dbus_proxies.h"
21
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.
David Zeuthenf413fe52013-04-22 14:04:39 -070041class ClockInterface;
Alex Deymof6ee0162015-07-31 12:35:22 -070042class ConnectionManagerInterface;
Alex Deymo94c06162014-03-21 20:34:46 -070043class HardwareInterface;
Gilad Arnold1f847232014-04-07 12:07:49 -070044class OmahaRequestParams;
David Zeuthen526cb582013-08-06 12:26:18 -070045class P2PManager;
Alex Deymo94c06162014-03-21 20:34:46 -070046class PayloadStateInterface;
47class 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
David Zeuthenf413fe52013-04-22 14:04:39 -070066 // Gets the interface object for the clock.
67 virtual ClockInterface* clock() = 0;
68
Jay Srinivasan43488792012-06-19 00:25:31 -070069 // Gets the connection manager object.
Alex Deymof6ee0162015-07-31 12:35:22 -070070 virtual ConnectionManagerInterface* connection_manager() = 0;
Jay Srinivasanf0572052012-10-23 18:12:56 -070071
Alex Deymo42432912013-07-12 20:21:15 -070072 // Gets the hardware interface object.
73 virtual HardwareInterface* hardware() = 0;
74
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080075 // Gets the Metrics Library interface for reporting UMA stats.
Jay Srinivasanf0572052012-10-23 18:12:56 -070076 virtual MetricsLibraryInterface* metrics_lib() = 0;
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080077
78 // Gets the interface object for persisted store.
79 virtual PrefsInterface* prefs() = 0;
80
Chris Sosaaa18e162013-06-20 13:20:30 -070081 // Gets the interface object for the persisted store that persists across
82 // powerwashes. Please note that this should be used very seldomly and must
83 // be forwards and backwards compatible as powerwash is used to go back and
84 // forth in system versions.
85 virtual PrefsInterface* powerwash_safe_prefs() = 0;
86
Jay Srinivasan2b5a0f02012-12-19 17:25:56 -080087 // Gets the interface for the payload state object.
88 virtual PayloadStateInterface* payload_state() = 0;
Gilad Arnoldbf7919b2013-01-08 13:07:37 -080089
Jay Srinivasan55f50c22013-01-10 19:24:35 -080090 // Returns a pointer to the update attempter object.
Gilad Arnold1f847232014-04-07 12:07:49 -070091 virtual UpdateAttempter* update_attempter() = 0;
Jay Srinivasanae4697c2013-03-18 17:08:08 -070092
93 // Returns a pointer to the object that stores the parameters that are
94 // common to all Omaha requests.
95 virtual OmahaRequestParams* request_params() = 0;
Chris Sosabe45bef2013-04-09 18:25:12 -070096
David Zeuthen526cb582013-08-06 12:26:18 -070097 // Returns a pointer to the P2PManager singleton.
98 virtual P2PManager* p2p_manager() = 0;
99
Alex Deymo63784a52014-05-28 10:46:14 -0700100 // Returns a pointer to the UpdateManager singleton.
101 virtual chromeos_update_manager::UpdateManager* update_manager() = 0;
Alex Deymo94c06162014-03-21 20:34:46 -0700102
Alex Deymo30534502015-07-20 15:06:33 -0700103 // DBus proxies. Mocked during test.
104 virtual org::chromium::PowerManagerProxyInterface* power_manager_proxy() = 0;
105
Chris Sosabe45bef2013-04-09 18:25:12 -0700106 // If true, this is the first instance of the update engine since the system
107 // restarted. Important for tracking whether you are running instance of the
108 // update engine on first boot or due to a crash/restart.
109 virtual bool system_rebooted() = 0;
Jay Srinivasan43488792012-06-19 00:25:31 -0700110};
111
112} // namespace chromeos_update_engine
113
Gilad Arnoldcf175a02014-07-10 16:48:47 -0700114#endif // UPDATE_ENGINE_SYSTEM_STATE_H_