summaryrefslogtreecommitdiff
path: root/bluetooth/audio/utils/session/BluetoothAudioSession_2_1.h
blob: e6340649d844391d0c9d87135174cfa32efdd64e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
 * Copyright 2018 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#pragma once

#include <android/hardware/bluetooth/audio/2.1/types.h>
#include "BluetoothAudioSession.h"

#include <mutex>
#include <unordered_map>

namespace android {
namespace bluetooth {
namespace audio {

class BluetoothAudioSession_2_1 {
 private:
  std::shared_ptr<BluetoothAudioSession> audio_session;

  ::android::hardware::bluetooth::audio::V2_1::SessionType session_type_2_1_;
  ::android::hardware::bluetooth::audio::V2_1::SessionType raw_session_type_;

  // audio data configuration for both software and offloading
  ::android::hardware::bluetooth::audio::V2_1::AudioConfiguration
      audio_config_2_1_;

  bool UpdateAudioConfig(
      const ::android::hardware::bluetooth::audio::V2_1::AudioConfiguration&
          audio_config);

  static ::android::hardware::bluetooth::audio::V2_1::AudioConfiguration
      invalidSoftwareAudioConfiguration;
  static ::android::hardware::bluetooth::audio::V2_1::AudioConfiguration
      invalidOffloadAudioConfiguration;

 public:
  BluetoothAudioSession_2_1(
      const ::android::hardware::bluetooth::audio::V2_1::SessionType&
          session_type);

  std::shared_ptr<BluetoothAudioSession> GetAudioSession();

  // The report function is used to report that the Bluetooth stack has started
  // this session without any failure, and will invoke session_changed_cb_ to
  // notify those registered bluetooth_audio outputs
  void OnSessionStarted(
      const sp<IBluetoothAudioPort> stack_iface,
      const DataMQ::Descriptor* dataMQ,
      const ::android::hardware::bluetooth::audio::V2_1::AudioConfiguration&
          audio_config);

  // The control function is for the bluetooth_audio module to get the current
  // AudioConfiguration
  const ::android::hardware::bluetooth::audio::V2_1::AudioConfiguration
  GetAudioConfig();

  static constexpr ::android::hardware::bluetooth::audio::V2_1::
      AudioConfiguration& kInvalidSoftwareAudioConfiguration =
          invalidSoftwareAudioConfiguration;
  static constexpr ::android::hardware::bluetooth::audio::V2_1::
      AudioConfiguration& kInvalidOffloadAudioConfiguration =
          invalidOffloadAudioConfiguration;
};

class BluetoothAudioSessionInstance_2_1 {
 public:
  // The API is to fetch the specified session of A2DP / Hearing Aid
  static std::shared_ptr<BluetoothAudioSession_2_1> GetSessionInstance(
      const ::android::hardware::bluetooth::audio::V2_1::SessionType&
          session_type);

 private:
  static std::unique_ptr<BluetoothAudioSessionInstance_2_1> instance_ptr;
  std::mutex mutex_;
  std::unordered_map<::android::hardware::bluetooth::audio::V2_1::SessionType,
                     std::shared_ptr<BluetoothAudioSession_2_1>>
      sessions_map_;
};

}  // namespace audio
}  // namespace bluetooth
}  // namespace android