Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 1 | // Copyright 2014 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 BUFFET_MANAGER_H_ |
| 6 | #define BUFFET_MANAGER_H_ |
| 7 | |
Alex Vakulenko | f2784de | 2014-08-15 11:49:35 -0700 | [diff] [blame] | 8 | #include <map> |
Alex Vakulenko | 3379706 | 2014-05-12 15:55:25 -0700 | [diff] [blame] | 9 | #include <memory> |
| 10 | #include <string> |
| 11 | |
Alex Vakulenko | 132617a | 2014-09-04 08:59:43 -0700 | [diff] [blame] | 12 | #include <base/macros.h> |
Christopher Wiley | adb901d | 2014-05-07 09:58:45 -0700 | [diff] [blame] | 13 | #include <base/memory/weak_ptr.h> |
Alex Vakulenko | 3cb466c | 2014-04-15 11:36:32 -0700 | [diff] [blame] | 14 | #include <base/values.h> |
Alex Vakulenko | 07216fe | 2014-09-19 15:31:09 -0700 | [diff] [blame] | 15 | #include <chromeos/dbus/data_serialization.h> |
Alex Vakulenko | f2784de | 2014-08-15 11:49:35 -0700 | [diff] [blame] | 16 | #include <chromeos/dbus/dbus_object.h> |
Alex Vakulenko | a8b95bc | 2014-08-27 11:00:57 -0700 | [diff] [blame] | 17 | #include <chromeos/dbus/exported_property_set.h> |
| 18 | #include <chromeos/errors/error.h> |
Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 19 | |
Alex Vakulenko | 3cb466c | 2014-04-15 11:36:32 -0700 | [diff] [blame] | 20 | #include "buffet/device_registration_info.h" |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 21 | #include "buffet/org.chromium.Buffet.Manager.h" |
Christopher Wiley | aa3f29c | 2014-03-27 14:51:26 -0700 | [diff] [blame] | 22 | |
Christopher Wiley | b5dd5ea | 2014-08-11 10:51:20 -0700 | [diff] [blame] | 23 | namespace chromeos { |
Christopher Wiley | adb901d | 2014-05-07 09:58:45 -0700 | [diff] [blame] | 24 | namespace dbus_utils { |
| 25 | class ExportedObjectManager; |
| 26 | } // namespace dbus_utils |
Christopher Wiley | b5dd5ea | 2014-08-11 10:51:20 -0700 | [diff] [blame] | 27 | } // namespace chromeos |
| 28 | |
| 29 | namespace buffet { |
| 30 | |
| 31 | class CommandManager; |
Alex Vakulenko | 57123b2 | 2014-10-28 13:50:16 -0700 | [diff] [blame] | 32 | class StateChangeQueue; |
Alex Vakulenko | 07216fe | 2014-09-19 15:31:09 -0700 | [diff] [blame] | 33 | class StateManager; |
Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 34 | |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 35 | template<typename... Types> |
| 36 | using DBusMethodResponse = |
| 37 | scoped_ptr<chromeos::dbus_utils::DBusMethodResponse<Types...>>; |
| 38 | |
Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 39 | // The Manager is responsible for global state of Buffet. It exposes |
| 40 | // interfaces which affect the entire device such as device registration and |
| 41 | // device state. |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 42 | class Manager final : public org::chromium::Buffet::ManagerInterface { |
Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 43 | public: |
Alex Vakulenko | f2784de | 2014-08-15 11:49:35 -0700 | [diff] [blame] | 44 | explicit Manager( |
| 45 | const base::WeakPtr<chromeos::dbus_utils::ExportedObjectManager>& |
| 46 | object_manager); |
Alex Vakulenko | 57123b2 | 2014-10-28 13:50:16 -0700 | [diff] [blame] | 47 | ~Manager(); |
| 48 | |
Alex Vakulenko | be9c383 | 2014-08-24 15:05:06 -0700 | [diff] [blame] | 49 | void RegisterAsync( |
Alex Vakulenko | f2784de | 2014-08-15 11:49:35 -0700 | [diff] [blame] | 50 | const chromeos::dbus_utils::AsyncEventSequencer::CompletionAction& cb); |
Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 51 | |
| 52 | private: |
Alex Vakulenko | f2784de | 2014-08-15 11:49:35 -0700 | [diff] [blame] | 53 | // DBus methods: |
Anton Muhin | 86d67fe | 2014-10-01 18:06:54 +0400 | [diff] [blame] | 54 | // Handles calls to org.chromium.Buffet.Manager.StartDevice(). |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 55 | void StartDevice(DBusMethodResponse<> response) override; |
Alex Vakulenko | 3cb466c | 2014-04-15 11:36:32 -0700 | [diff] [blame] | 56 | // Handles calls to org.chromium.Buffet.Manager.CheckDeviceRegistered(). |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 57 | void CheckDeviceRegistered(DBusMethodResponse<std::string> response) override; |
Alex Vakulenko | 3cb466c | 2014-04-15 11:36:32 -0700 | [diff] [blame] | 58 | // Handles calls to org.chromium.Buffet.Manager.GetDeviceInfo(). |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 59 | void GetDeviceInfo(DBusMethodResponse<std::string> response) override; |
Anton Muhin | beb1c5b | 2014-10-16 18:59:57 +0400 | [diff] [blame] | 60 | // Handles calls to org.chromium.Buffet.Manager.RegisterDevice(). |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 61 | void RegisterDevice(DBusMethodResponse<std::string> response, |
| 62 | const chromeos::VariantDictionary& params) override; |
Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 63 | // Handles calls to org.chromium.Buffet.Manager.UpdateState(). |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 64 | void UpdateState(DBusMethodResponse<> response, |
| 65 | const chromeos::VariantDictionary& property_set) override; |
Alex Vakulenko | 665c885 | 2014-09-11 16:57:24 -0700 | [diff] [blame] | 66 | // Handles calls to org.chromium.Buffet.Manager.AddCommand(). |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 67 | void AddCommand(DBusMethodResponse<> response, |
| 68 | const std::string& json_command) override; |
Christopher Wiley | b76eb29 | 2014-05-05 16:09:16 -0700 | [diff] [blame] | 69 | // Handles calls to org.chromium.Buffet.Manager.Test() |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 70 | std::string TestMethod(const std::string& message) override; |
Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 71 | |
Alex Vakulenko | 2348e42 | 2014-11-21 08:57:57 -0800 | [diff] [blame] | 72 | org::chromium::Buffet::ManagerAdaptor dbus_adaptor_{this}; |
Alex Vakulenko | f2784de | 2014-08-15 11:49:35 -0700 | [diff] [blame] | 73 | chromeos::dbus_utils::DBusObject dbus_object_; |
Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 74 | |
Alex Vakulenko | c2bc9a4 | 2014-07-23 10:57:58 -0700 | [diff] [blame] | 75 | std::shared_ptr<CommandManager> command_manager_; |
Alex Vakulenko | 57123b2 | 2014-10-28 13:50:16 -0700 | [diff] [blame] | 76 | std::unique_ptr<StateChangeQueue> state_change_queue_; |
Alex Vakulenko | 07216fe | 2014-09-19 15:31:09 -0700 | [diff] [blame] | 77 | std::shared_ptr<StateManager> state_manager_; |
Alex Vakulenko | 1f30a62 | 2014-07-23 11:13:15 -0700 | [diff] [blame] | 78 | std::unique_ptr<DeviceRegistrationInfo> device_info_; |
Alex Vakulenko | 3cb466c | 2014-04-15 11:36:32 -0700 | [diff] [blame] | 79 | |
Christopher Wiley | a4915c4 | 2014-03-27 14:45:37 -0700 | [diff] [blame] | 80 | DISALLOW_COPY_AND_ASSIGN(Manager); |
| 81 | }; |
| 82 | |
| 83 | } // namespace buffet |
| 84 | |
| 85 | #endif // BUFFET_MANAGER_H_ |