blob: df1280feb21703cc8c889c466dacb228e4657ee2 [file] [log] [blame]
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001// Copyright (c) 2013 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_REAL_SYSTEM_STATE_H_
6#define CHROMEOS_PLATFORM_UPDATE_ENGINE_REAL_SYSTEM_STATE_H_
7
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -08008#include "update_engine/system_state.h"
Jay Srinivasan55f50c22013-01-10 19:24:35 -08009
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -080010#include "update_engine/clock.h"
11#include "update_engine/connection_manager.h"
12#include "update_engine/gpio_handler.h"
13#include "update_engine/hardware.h"
Alex Deymo94c06162014-03-21 20:34:46 -070014#include "update_engine/p2p_manager.h"
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -080015#include "update_engine/payload_state.h"
Alex Deymo94c06162014-03-21 20:34:46 -070016#include "update_engine/policy_manager/policy_manager.h"
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -080017#include "update_engine/prefs.h"
18#include "update_engine/real_dbus_wrapper.h"
19#include "update_engine/update_attempter.h"
Jay Srinivasan55f50c22013-01-10 19:24:35 -080020
21namespace chromeos_update_engine {
22
23// A real implementation of the SystemStateInterface which is
24// used by the actual product code.
25class RealSystemState : public SystemState {
Alex Deymo94c06162014-03-21 20:34:46 -070026 public:
Jay Srinivasan55f50c22013-01-10 19:24:35 -080027 // Constructors and destructors.
28 RealSystemState();
29 virtual ~RealSystemState() {}
30
Jay Srinivasan55f50c22013-01-10 19:24:35 -080031 virtual inline void set_device_policy(
32 const policy::DevicePolicy* device_policy) {
33 device_policy_ = device_policy;
34 }
35
36 virtual inline const policy::DevicePolicy* device_policy() const {
37 return device_policy_;
38 }
39
David Zeuthenf413fe52013-04-22 14:04:39 -070040 virtual inline ClockInterface* clock() {
41 return &clock_;
42 }
43
Jay Srinivasan55f50c22013-01-10 19:24:35 -080044 virtual inline ConnectionManager* connection_manager() {
45 return &connection_manager_;
46 }
47
Alex Deymo42432912013-07-12 20:21:15 -070048 virtual inline HardwareInterface* hardware() {
49 return &hardware_;
50 }
51
Jay Srinivasan55f50c22013-01-10 19:24:35 -080052 virtual inline MetricsLibraryInterface* metrics_lib() {
53 return &metrics_lib_;
54 }
55
56 virtual inline PrefsInterface* prefs() {
57 return &prefs_;
58 }
59
Chris Sosaaa18e162013-06-20 13:20:30 -070060 virtual inline PrefsInterface* powerwash_safe_prefs() {
61 return &powerwash_safe_prefs_;
62 }
63
Jay Srinivasan55f50c22013-01-10 19:24:35 -080064 virtual inline PayloadStateInterface* payload_state() {
65 return &payload_state_;
66 }
67
68 virtual inline GpioHandler* gpio_handler() const {
69 return gpio_handler_.get();
70 }
71
Gilad Arnold76b2b482014-04-01 13:32:43 -070072 virtual inline UpdateAttempter* update_attempter() const override {
Jay Srinivasan55f50c22013-01-10 19:24:35 -080073 return update_attempter_.get();
74 }
75
Jay Srinivasanae4697c2013-03-18 17:08:08 -070076 // Returns a pointer to the object that stores the parameters that are
77 // common to all Omaha requests.
78 virtual inline OmahaRequestParams* request_params() {
79 return &request_params_;
80 }
81
David Zeuthen526cb582013-08-06 12:26:18 -070082 virtual inline P2PManager* p2p_manager() {
83 return p2p_manager_.get();
84 }
85
Alex Deymo94c06162014-03-21 20:34:46 -070086 virtual inline chromeos_policy_manager::PolicyManager* policy_manager() {
87 return &policy_manager_;
88 }
89
90 virtual inline bool system_rebooted() {
Chris Sosabe45bef2013-04-09 18:25:12 -070091 return system_rebooted_;
92 }
93
Jay Srinivasan55f50c22013-01-10 19:24:35 -080094 // Initializes this concrete object. Other methods should be invoked only
95 // if the object has been initialized successfully.
96 bool Initialize(bool enable_gpio);
97
Alex Deymo94c06162014-03-21 20:34:46 -070098 private:
David Zeuthenf413fe52013-04-22 14:04:39 -070099 // Interface for the clock.
100 Clock clock_;
101
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800102 // The latest device policy object from the policy provider.
103 const policy::DevicePolicy* device_policy_;
104
105 // The connection manager object that makes download
106 // decisions depending on the current type of connection.
107 ConnectionManager connection_manager_;
108
Alex Deymo42432912013-07-12 20:21:15 -0700109 // Interface for the hardware functions.
110 Hardware hardware_;
111
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800112 // The Metrics Library interface for reporting UMA stats.
113 MetricsLibrary metrics_lib_;
114
115 // Interface for persisted store.
116 Prefs prefs_;
117
Chris Sosaaa18e162013-06-20 13:20:30 -0700118 // Interface for persisted store that persists across powerwashes.
119 Prefs powerwash_safe_prefs_;
120
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800121 // All state pertaining to payload state such as
122 // response, URL, backoff states.
123 PayloadState payload_state_;
124
125 // Pointer to a GPIO handler and other needed modules (note that the order of
126 // declaration significant for destruction, as the latter depends on the
127 // former).
128 scoped_ptr<UdevInterface> udev_iface_;
129 scoped_ptr<FileDescriptor> file_descriptor_;
130 scoped_ptr<GpioHandler> gpio_handler_;
131
132 // The dbus object used to initialize the update attempter.
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -0800133 RealDBusWrapper dbus_;
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800134
135 // Pointer to the update attempter object.
136 scoped_ptr<UpdateAttempter> update_attempter_;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700137
138 // Common parameters for all Omaha requests.
139 OmahaRequestParams request_params_;
Chris Sosabe45bef2013-04-09 18:25:12 -0700140
David Zeuthen526cb582013-08-06 12:26:18 -0700141 scoped_ptr<P2PManager> p2p_manager_;
142
Alex Deymo94c06162014-03-21 20:34:46 -0700143 chromeos_policy_manager::PolicyManager policy_manager_;
144
Chris Sosabe45bef2013-04-09 18:25:12 -0700145 // If true, this is the first instance of the update engine since the system
146 // rebooted. Important for tracking whether you are running instance of the
147 // update engine on first boot or due to a crash/restart.
148 bool system_rebooted_;
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800149};
150
151} // namespace chromeos_update_engine
152
153#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_REAL_SYSTEM_STATE_H_