* formatting all the source code with eclipse source code style
[profile/ivi/genivi/genivi-audio-manager.git] / AudioManagerDaemon / src / ControlSender.cpp
1 /**
2  * Copyright (C) 2011, BMW AG
3  *
4  * GeniviAudioMananger AudioManagerDaemon
5  *
6  * \file ControlSender.cpp
7  *
8  * \date 20-Oct-2011 3:42:04 PM
9  * \author Christian Mueller (christian.ei.mueller@bmw.de)
10  *
11  * \section License
12  * GNU Lesser General Public License, version 2.1, with special exception (GENIVI clause)
13  * Copyright (C) 2011, BMW AG Christian Mueller  Christian.ei.mueller@bmw.de
14  *
15  * This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License, version 2.1, as published by the Free Software Foundation.
16  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License, version 2.1, for more details.
17  * You should have received a copy of the GNU Lesser General Public License, version 2.1, along with this program; if not, see <http://www.gnu.org/licenses/lgpl-2.1.html>.
18  * Note that the copyright holders assume that the GNU Lesser General Public License, version 2.1, may also be applicable to programs even in cases in which the program is not a library in the technical sense.
19  * Linking AudioManager statically or dynamically with other modules is making a combined work based on AudioManager. You may license such other modules under the GNU Lesser General Public License, version 2.1. If you do not want to license your linked modules under the GNU Lesser General Public License, version 2.1, you may use the program under the following exception.
20  * As a special exception, the copyright holders of AudioManager give you permission to combine AudioManager with software programs or libraries that are released under any license unless such a combination is not permitted by the license of such a software program or library. You may copy and distribute such a system following the terms of the GNU Lesser General Public License, version 2.1, including this special exception, for AudioManager and the licenses of the other code concerned.
21  * Note that people who make modified versions of AudioManager are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. The GNU Lesser General Public License, version 2.1, gives permission to release a modified version without this exception; this exception also makes it possible to release a modified version which carries forward this exception.
22  *
23  */
24
25 #include "ControlSender.h"
26 #include <assert.h>
27 #include <dlt/dlt.h>
28 #include <fstream>
29 #include "PluginTemplate.h"
30
31 DLT_IMPORT_CONTEXT(AudioManager)
32
33 using namespace am;
34
35 #define REQUIRED_MIN_INTERFACE_VERSION 1
36
37 ControlSender::ControlSender(std::string controlPluginFile) :
38         mlibHandle(NULL), //
39         mController(NULL)
40 {
41     std::ifstream isfile(controlPluginFile.c_str());
42     if (!isfile)
43     {
44         DLT_LOG(AudioManager, DLT_LOG_ERROR, DLT_STRING("ControlSender::ControlSender: Controller plugin not found:"), DLT_STRING(controlPluginFile.c_str()));
45     }
46     else if (!controlPluginFile.empty())
47     {
48         ControlSendInterface* (*createFunc)();
49         createFunc = getCreateFunction<ControlSendInterface*()>(controlPluginFile, mlibHandle);
50         assert(createFunc!=NULL);
51         mController = createFunc();
52
53         //check libversion
54         assert(REQUIRED_MIN_INTERFACE_VERSION<=mController->getInterfaceVersion());
55     }
56     else
57     {
58         DLT_LOG(AudioManager, DLT_LOG_ERROR, DLT_STRING("ControlSender::ControlSender: No controller loaded !"));
59     }
60 }
61
62 ControlSender::~ControlSender()
63 {
64     if (mlibHandle) dlclose(mlibHandle);
65 }
66
67 void ControlSender::hookAllPluginsLoaded()
68 {
69     mController->hookAllPluginsLoaded();
70 }
71
72 am_Error_e ControlSender::hookUserConnectionRequest(const am_sourceID_t sourceID, const am_sinkID_t sinkID, am_mainConnectionID_t & mainConnectionID)
73 {
74     return mController->hookUserConnectionRequest(sourceID, sinkID, mainConnectionID);
75 }
76
77 am_Error_e ControlSender::hookUserDisconnectionRequest(const am_mainConnectionID_t connectionID)
78 {
79     return mController->hookUserDisconnectionRequest(connectionID);
80 }
81
82 am_Error_e ControlSender::hookUserSetMainSinkSoundProperty(const am_sinkID_t sinkID, const am_MainSoundProperty_s & soundProperty)
83 {
84     return mController->hookUserSetMainSinkSoundProperty(sinkID, soundProperty);
85 }
86
87 am_Error_e ControlSender::hookUserSetMainSourceSoundProperty(const am_sourceID_t sourceID, const am_MainSoundProperty_s & soundProperty)
88 {
89     return mController->hookUserSetMainSourceSoundProperty(sourceID, soundProperty);
90 }
91
92 am_Error_e ControlSender::hookUserSetSystemProperty(const am_SystemProperty_s & property)
93 {
94     return mController->hookUserSetSystemProperty(property);
95 }
96
97 am_Error_e ControlSender::hookUserVolumeChange(const am_sinkID_t sinkID, const am_mainVolume_t newVolume)
98 {
99     return mController->hookUserVolumeChange(sinkID, newVolume);
100 }
101
102 am_Error_e ControlSender::hookUserVolumeStep(const am_sinkID_t sinkID, const int16_t increment)
103 {
104     return mController->hookUserVolumeStep(sinkID, increment);
105 }
106
107 am_Error_e ControlSender::hookUserSetSinkMuteState(const am_sinkID_t sinkID, const am_MuteState_e muteState)
108 {
109     return mController->hookUserSetSinkMuteState(sinkID, muteState);
110 }
111
112 am_Error_e ControlSender::hookSystemRegisterDomain(const am_Domain_s & domainData, am_domainID_t & domainID)
113 {
114     return mController->hookSystemRegisterDomain(domainData, domainID);
115 }
116
117 am_Error_e ControlSender::hookSystemDeregisterDomain(const am_domainID_t domainID)
118 {
119     return mController->hookSystemDeregisterDomain(domainID);
120 }
121
122 void ControlSender::hookSystemDomainRegistrationComplete(const am_domainID_t domainID)
123 {
124     return mController->hookSystemDomainRegistrationComplete(domainID);
125 }
126
127 am_Error_e ControlSender::hookSystemRegisterSink(const am_Sink_s & sinkData, am_sinkID_t & sinkID)
128 {
129     return mController->hookSystemRegisterSink(sinkData, sinkID);
130 }
131
132 am_Error_e ControlSender::hookSystemDeregisterSink(const am_sinkID_t sinkID)
133 {
134     return mController->hookSystemDeregisterSink(sinkID);
135 }
136
137 am_Error_e ControlSender::hookSystemRegisterSource(const am_Source_s & sourceData, am_sourceID_t & sourceID)
138 {
139     return mController->hookSystemRegisterSource(sourceData, sourceID);
140 }
141
142 am_Error_e ControlSender::hookSystemDeregisterSource(const am_sourceID_t sourceID)
143 {
144     return mController->hookSystemDeregisterSource(sourceID);
145 }
146
147 am_Error_e ControlSender::hookSystemRegisterGateway(const am_Gateway_s & gatewayData, am_gatewayID_t & gatewayID)
148 {
149     return mController->hookSystemRegisterGateway(gatewayData, gatewayID);
150 }
151
152 am_Error_e ControlSender::hookSystemDeregisterGateway(const am_gatewayID_t gatewayID)
153 {
154     return mController->hookSystemDeregisterGateway(gatewayID);
155 }
156
157 am_Error_e ControlSender::hookSystemRegisterCrossfader(const am_Crossfader_s & crossfaderData, am_crossfaderID_t & crossfaderID)
158 {
159     return mController->hookSystemRegisterCrossfader(crossfaderData, crossfaderID);
160 }
161
162 am_Error_e ControlSender::hookSystemDeregisterCrossfader(const am_crossfaderID_t crossfaderID)
163 {
164     return mController->hookSystemDeregisterCrossfader(crossfaderID);
165 }
166
167 void ControlSender::hookSystemSinkVolumeTick(const am_Handle_s handle, const am_sinkID_t sinkID, const am_volume_t volume)
168 {
169     mController->hookSystemSinkVolumeTick(handle, sinkID, volume);
170 }
171
172 void ControlSender::hookSystemSourceVolumeTick(const am_Handle_s handle, const am_sourceID_t sourceID, const am_volume_t volume)
173 {
174     mController->hookSystemSourceVolumeTick(handle, sourceID, volume);
175 }
176
177 void ControlSender::hookSystemInterruptStateChange(const am_sourceID_t sourceID, const am_InterruptState_e interruptState)
178 {
179     mController->hookSystemInterruptStateChange(sourceID, interruptState);
180 }
181
182 void ControlSender::hookSystemSinkAvailablityStateChange(const am_sinkID_t sinkID, const am_Availability_s & availability)
183 {
184     mController->hookSystemSinkAvailablityStateChange(sinkID, availability);
185 }
186
187 void ControlSender::hookSystemSourceAvailablityStateChange(const am_sourceID_t sourceID, const am_Availability_s & availability)
188 {
189     mController->hookSystemSourceAvailablityStateChange(sourceID, availability);
190 }
191
192 void ControlSender::hookSystemDomainStateChange(const am_domainID_t domainID, const am_DomainState_e state)
193 {
194     mController->hookSystemDomainStateChange(domainID, state);
195 }
196
197 void ControlSender::hookSystemReceiveEarlyData(const std::vector<am_EarlyData_s> & data)
198 {
199     mController->hookSystemReceiveEarlyData(data);
200 }
201
202 void ControlSender::hookSystemSpeedChange(const am_speed_t speed)
203 {
204     mController->hookSystemSpeedChange(speed);
205 }
206
207 void ControlSender::hookSystemTimingInformationChanged(const am_mainConnectionID_t mainConnectionID, const am_timeSync_t time)
208 {
209     mController->hookSystemTimingInformationChanged(mainConnectionID, time);
210 }
211
212 void ControlSender::cbAckConnect(const am_Handle_s handle, const am_Error_e errorID)
213 {
214     mController->cbAckConnect(handle, errorID);
215 }
216
217 void ControlSender::cbAckDisconnect(const am_Handle_s handle, const am_Error_e errorID)
218 {
219     mController->cbAckDisconnect(handle, errorID);
220 }
221
222 void ControlSender::cbAckCrossFade(const am_Handle_s handle, const am_HotSink_e hostsink, const am_Error_e error)
223 {
224     mController->cbAckCrossFade(handle, hostsink, error);
225 }
226
227 void ControlSender::cbAckSetSinkVolumeChange(const am_Handle_s handle, const am_volume_t volume, const am_Error_e error)
228 {
229     mController->cbAckSetSinkVolumeChange(handle, volume, error);
230 }
231
232 void ControlSender::cbAckSetSourceVolumeChange(const am_Handle_s handle, const am_volume_t volume, const am_Error_e error)
233 {
234     mController->cbAckSetSourceVolumeChange(handle, volume, error);
235 }
236
237 void ControlSender::cbAckSetSourceState(const am_Handle_s handle, const am_Error_e error)
238 {
239     mController->cbAckSetSourceState(handle, error);
240 }
241
242 void ControlSender::cbAckSetSourceSoundProperty(const am_Handle_s handle, const am_Error_e error)
243 {
244     mController->cbAckSetSourceSoundProperty(handle, error);
245 }
246
247 am_Error_e ControlSender::startupController(ControlReceiveInterface *controlreceiveinterface)
248 {
249     return mController->startupController(controlreceiveinterface);
250 }
251
252 am_Error_e ControlSender::stopController()
253 {
254     return mController->stopController();
255 }
256
257 void ControlSender::cbAckSetSinkSoundProperty(const am_Handle_s handle, const am_Error_e error)
258 {
259     mController->cbAckSetSinkSoundProperty(handle, error);
260 }
261
262 void ControlSender::cbAckSetSinkSoundProperties(const am_Handle_s handle, const am_Error_e error)
263 {
264     mController->cbAckSetSinkSoundProperties(handle, error);
265 }
266
267 void ControlSender::cbAckSetSourceSoundProperties(const am_Handle_s handle, const am_Error_e error)
268 {
269     mController->cbAckSetSourceSoundProperties(handle, error);
270 }
271
272 am_Error_e ControlSender::getConnectionFormatChoice(const am_sourceID_t sourceID, const am_sinkID_t sinkID, const std::vector<am_ConnectionFormat_e> listPossibleConnectionFormats, std::vector<am_ConnectionFormat_e> & listPrioConnectionFormats)
273 {
274     return mController->getConnectionFormatChoice(sourceID, sinkID, listPossibleConnectionFormats, listPrioConnectionFormats);
275 }
276
277 uint16_t ControlSender::getInterfaceVersion() const
278 {
279     return ControlSendVersion;
280 }
281