| Alex Deymo | f7ead81 | 2015-10-23 17:37:27 -0700 | [diff] [blame] | 1 | // | 
|  | 2 | // Copyright (C) 2015 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 | // | 
|  | 16 |  | 
|  | 17 | #ifndef UPDATE_ENGINE_WEAVE_SERVICE_H_ | 
|  | 18 | #define UPDATE_ENGINE_WEAVE_SERVICE_H_ | 
|  | 19 |  | 
|  | 20 | #include <memory> | 
| Alex Deymo | fa78f14 | 2016-01-26 21:36:16 -0800 | [diff] [blame] | 21 | #include <string> | 
| Alex Deymo | f7ead81 | 2015-10-23 17:37:27 -0700 | [diff] [blame] | 22 |  | 
| Alex Vakulenko | e119e6a | 2016-01-06 17:13:11 -0800 | [diff] [blame] | 23 | #include <base/memory/weak_ptr.h> | 
| Alex Deymo | f7ead81 | 2015-10-23 17:37:27 -0700 | [diff] [blame] | 24 | #include <libweaved/command.h> | 
| Alex Vakulenko | e119e6a | 2016-01-06 17:13:11 -0800 | [diff] [blame] | 25 | #include <libweaved/service.h> | 
| Alex Deymo | f7ead81 | 2015-10-23 17:37:27 -0700 | [diff] [blame] | 26 |  | 
|  | 27 | #include "update_engine/weave_service_interface.h" | 
|  | 28 |  | 
|  | 29 | namespace chromeos_update_engine { | 
|  | 30 |  | 
|  | 31 | class WeaveService : public WeaveServiceInterface { | 
|  | 32 | public: | 
|  | 33 | WeaveService() = default; | 
|  | 34 | ~WeaveService() override = default; | 
|  | 35 |  | 
| Alex Vakulenko | e119e6a | 2016-01-06 17:13:11 -0800 | [diff] [blame] | 36 | bool Init(DelegateInterface* delegate); | 
| Alex Deymo | f7ead81 | 2015-10-23 17:37:27 -0700 | [diff] [blame] | 37 |  | 
| Alex Deymo | fa78f14 | 2016-01-26 21:36:16 -0800 | [diff] [blame] | 38 | // ServiceObserverInterface overrides. | 
|  | 39 | void SendStatusUpdate(int64_t last_checked_time, | 
|  | 40 | double progress, | 
|  | 41 | update_engine::UpdateStatus status, | 
|  | 42 | const std::string& new_version, | 
|  | 43 | int64_t new_size) override; | 
|  | 44 | void SendChannelChangeUpdate(const std::string& tracking_channel) override; | 
| Alex Deymo | f8bfcff | 2016-02-02 21:22:11 -0800 | [diff] [blame] | 45 | void SendPayloadApplicationComplete(ErrorCode error_code) override {} | 
| Alex Deymo | f7ead81 | 2015-10-23 17:37:27 -0700 | [diff] [blame] | 46 |  | 
|  | 47 | private: | 
| Alex Deymo | fa78f14 | 2016-01-26 21:36:16 -0800 | [diff] [blame] | 48 | // Force a weave update. | 
|  | 49 | void UpdateWeaveState(); | 
|  | 50 |  | 
| Alex Vakulenko | e119e6a | 2016-01-06 17:13:11 -0800 | [diff] [blame] | 51 | void OnWeaveServiceConnected(const std::weak_ptr<weaved::Service>& service); | 
|  | 52 |  | 
| Alex Deymo | f7ead81 | 2015-10-23 17:37:27 -0700 | [diff] [blame] | 53 | // Weave command handlers. These are called from the message loop whenever a | 
|  | 54 | // command is received and dispatch the synchronous call to the |delegate_|. | 
| Alex Vakulenko | e119e6a | 2016-01-06 17:13:11 -0800 | [diff] [blame] | 55 | void OnCheckForUpdates(std::unique_ptr<weaved::Command> cmd); | 
|  | 56 | void OnTrackChannel(std::unique_ptr<weaved::Command> cmd); | 
| Alex Deymo | f7ead81 | 2015-10-23 17:37:27 -0700 | [diff] [blame] | 57 |  | 
|  | 58 | WeaveServiceInterface::DelegateInterface* delegate_{nullptr}; | 
|  | 59 |  | 
| Alex Vakulenko | e119e6a | 2016-01-06 17:13:11 -0800 | [diff] [blame] | 60 | std::unique_ptr<weaved::Service::Subscription> weave_service_subscription_; | 
|  | 61 | std::weak_ptr<weaved::Service> weave_service_; | 
| Alex Deymo | f7ead81 | 2015-10-23 17:37:27 -0700 | [diff] [blame] | 62 | }; | 
|  | 63 |  | 
|  | 64 | }  // namespace chromeos_update_engine | 
|  | 65 |  | 
|  | 66 | #endif  // UPDATE_ENGINE_WEAVE_SERVICE_H_ |