1 /* 2 * Copyright 2019 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 #pragma once 18 19 #include <memory> 20 21 #include "neighbor/connectability.h" 22 #include "neighbor/discoverability.h" 23 #include "neighbor/inquiry.h" 24 #include "neighbor/name.h" 25 #include "neighbor/page.h" 26 #include "security/security_module.h" 27 #include "shim/dumpsys.h" 28 #include "shim/l2cap.h" 29 #include "stack_manager.h" 30 #include "storage/legacy.h" 31 32 /** 33 * The shim layer implementation on the Gd stack side. 34 */ 35 namespace bluetooth { 36 namespace shim { 37 38 class Stack { 39 public: 40 Stack(); 41 ~Stack() = default; 42 43 void Start(); 44 void Stop(); 45 46 StackManager* GetStackManager(); 47 48 private: 49 struct impl; 50 std::unique_ptr<impl> pimpl_; 51 52 Stack(const Stack&) = delete; 53 void operator=(const Stack&) = delete; 54 }; 55 56 Stack* GetGabeldorscheStack(); 57 58 } // namespace shim 59 } // namespace bluetooth 60