-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSourceSinkManager.hpp
80 lines (61 loc) · 3.64 KB
/
SourceSinkManager.hpp
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
/*
Copyright (C) 2021 hidenorly
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.
*/
#ifndef __SOURCE_SINK_MANAGER_HPP__
#define __SOURCE_SINK_MANAGER_HPP__
#include "AndroidHalTypes.hpp"
#include <map>
#include "Sink.hpp"
#include "Source.hpp"
#include "DeviceAddressHelper.hpp"
class SourceSinkManager
{
protected:
static inline std::map<std::string, std::shared_ptr<ISourceSinkCommon>> mSourceSinksByDeviceAddr;
static inline std::map<AudioDevice, std::shared_ptr<ISourceSinkCommon>> mSourceSinksByAudioDevice;
static inline std::map<AudioPortHandle, std::shared_ptr<ISourceSinkCommon>> mSourceSinksByAudioPortHandle;
public:
static void initialize(void);
static void terminate(void);
static int getSourceSinkCount();
static void attachSink(DeviceAddress deviceAddr, std::shared_ptr<ISink> pSink);
static void attachSource(DeviceAddress deviceAddr, std::shared_ptr<ISource> pSource);
static void detachSourceSinkByDeviceAddr(DeviceAddress deviceAddr);
static void detachSourceSink(std::shared_ptr<ISourceSinkCommon> pSourceSink);
static std::shared_ptr<ISourceSinkCommon> getSourceSink(DeviceAddress deviceAddr);
static std::shared_ptr<ISink> getSink(DeviceAddress deviceAddr);
static std::shared_ptr<ISource> getSource(DeviceAddress deviceAddr);
static std::shared_ptr<ISourceSinkCommon> getSourceSink(AudioDevice device);
static std::shared_ptr<ISink> getSink(AudioDevice device);
static std::shared_ptr<ISource> getSource(AudioDevice device);
static AudioDevice getAudioDevice(std::shared_ptr<ISourceSinkCommon> pSourceSink);
static DeviceAddress getDeviceAddress(std::shared_ptr<ISourceSinkCommon> pSourceSink);
static AudioPortConfig getAudioPortConfig(std::shared_ptr<ISourceSinkCommon> pSourceSink, AudioModuleHandle hwModule = 0);
static AudioPort getAudioPort(std::shared_ptr<ISourceSinkCommon> pSourceSink, AudioModuleHandle hwModule = 0);
static std::vector<std::shared_ptr<ISink>> getSinkDevices(void);
static std::vector<std::shared_ptr<ISource>> getSourceDevices(void);
static AudioPortHandle getAudioPortHandle(const AudioPortConfig& audioPortConfig);
static AudioPortHandle getAudioPortHandle(const AudioPort& audioPort);
static AudioPortHandle getAudioPortHandle(std::shared_ptr<ISourceSinkCommon> pSourceSink);
static void associateByAudioPortConfig(const AudioPortConfig& audioPortConfig);
static void associateByAudioPort(const AudioPort& audioPort);
static std::shared_ptr<ISourceSinkCommon> getSourceSink(AudioPortHandle audioPortHandle);
static std::shared_ptr<ISink> getSink(AudioPortHandle audioPortHandle);
static std::shared_ptr<ISource> getSource(AudioPortHandle audioPortHandle);
static std::shared_ptr<ISourceSinkCommon> getSourceSink(const AudioPortConfig& audioPortConfig);
static std::shared_ptr<ISink> getSink(const AudioPortConfig& audioPortConfig);
static std::shared_ptr<ISource> getSource(const AudioPortConfig& audioPortConfig);
static std::shared_ptr<ISourceSinkCommon> getSourceSink(const AudioPort& audioPort);
static std::shared_ptr<ISink> getSink(const AudioPort& audioPort);
static std::shared_ptr<ISource> getSource(const AudioPort& audioPort);
};
#endif /* __SOURCE_SINK_MANAGER_HPP__ */