1 /* 2 * Copyright (c) 2022 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 18 #pragma once 19 20 #include "le_audio_types.h" 21 22 namespace bluetooth::le_audio { 23 24 /* Audio set configurations provider interface. */ 25 class AudioSetConfigurationProvider { 26 public: 27 AudioSetConfigurationProvider(); 28 virtual ~AudioSetConfigurationProvider() = default; 29 static AudioSetConfigurationProvider* Get(); 30 static void Initialize(types::CodecLocation location); 31 static void DebugDump(int fd); 32 static void Cleanup(); 33 virtual const set_configurations::AudioSetConfigurations* GetConfigurations( 34 ::bluetooth::le_audio::types::LeAudioContextType content_type) const; 35 virtual bool CheckConfigurationIsBiDirSwb( 36 const set_configurations::AudioSetConfiguration& set_configuration) const; 37 virtual bool CheckConfigurationIsDualBiDirSwb( 38 const set_configurations::AudioSetConfiguration& set_configuration) const; 39 40 private: 41 struct impl; 42 std::unique_ptr<impl> pimpl_; 43 }; 44 45 } // namespace bluetooth::le_audio 46