• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 //  Copyright 2016 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 #pragma once
17 
18 #include <base/threading/thread.h>
19 #include "service/ipc/ipc_handler.h"
20 #include "service/ipc/ipc_manager.h"
21 
22 namespace base {
23 class SingleThreadTaskRunner;
24 }  // namespace base
25 
26 namespace ipc {
27 
28 // Implements a DBus based IPCHandler
29 class IPCHandlerDBus : public IPCHandler {
30  public:
31   IPCHandlerDBus(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
32 
33   IPCHandlerDBus(const IPCHandlerDBus&) = delete;
34   IPCHandlerDBus& operator=(const IPCHandlerDBus&) = delete;
35 
36   ~IPCHandlerDBus() override;
37 
38   void InitDbus();
39 
40   // IPCHandler overrides:
41   bool Run() override;
42   void Stop() override;
43 
44  private:
45   base::Thread* dbus_thread_;
46 
47   IPCHandlerDBus() = default;
48 };
49 
50 }  // namespace ipc
51