blob: 914777e1f90be17ea3a8a354f9e9072fb981cea9 [file] [log] [blame]
Alex Deymof7ead812015-10-23 17:37:27 -07001//
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>
21
Alex Vakulenkoe119e6a2016-01-06 17:13:11 -080022#include <base/memory/weak_ptr.h>
Alex Deymof7ead812015-10-23 17:37:27 -070023#include <libweaved/command.h>
Alex Vakulenkoe119e6a2016-01-06 17:13:11 -080024#include <libweaved/service.h>
Alex Deymof7ead812015-10-23 17:37:27 -070025
26#include "update_engine/weave_service_interface.h"
27
28namespace chromeos_update_engine {
29
30class WeaveService : public WeaveServiceInterface {
31 public:
32 WeaveService() = default;
33 ~WeaveService() override = default;
34
Alex Vakulenkoe119e6a2016-01-06 17:13:11 -080035 bool Init(DelegateInterface* delegate);
Alex Deymof7ead812015-10-23 17:37:27 -070036
37 // WeaveServiceInterface override.
38 void UpdateWeaveState() override;
39
40 private:
Alex Vakulenkoe119e6a2016-01-06 17:13:11 -080041 void OnWeaveServiceConnected(const std::weak_ptr<weaved::Service>& service);
42
Alex Deymof7ead812015-10-23 17:37:27 -070043 // Weave command handlers. These are called from the message loop whenever a
44 // command is received and dispatch the synchronous call to the |delegate_|.
Alex Vakulenkoe119e6a2016-01-06 17:13:11 -080045 void OnCheckForUpdates(std::unique_ptr<weaved::Command> cmd);
46 void OnTrackChannel(std::unique_ptr<weaved::Command> cmd);
Alex Deymof7ead812015-10-23 17:37:27 -070047
48 WeaveServiceInterface::DelegateInterface* delegate_{nullptr};
49
Alex Vakulenkoe119e6a2016-01-06 17:13:11 -080050 std::unique_ptr<weaved::Service::Subscription> weave_service_subscription_;
51 std::weak_ptr<weaved::Service> weave_service_;
Alex Deymof7ead812015-10-23 17:37:27 -070052};
53
54} // namespace chromeos_update_engine
55
56#endif // UPDATE_ENGINE_WEAVE_SERVICE_H_