* more changes regarding test controller. Now a very basic connect is supported
[profile/ivi/audiomanager.git] / PluginControlInterface / src / ControlSender.cpp
1 /**
2  * Copyright (C) 2011, BMW AG
3  *
4  * GeniviAudioMananger DbusPlugin
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  * THIS CODE HAS BEEN GENERATED BY ENTERPRISE ARCHITECT GENIVI MODEL. PLEASE CHANGE ONLY IN ENTERPRISE ARCHITECT AND GENERATE AGAIN
24  */
25
26 #include "ControlSender.h"
27 #include "control/ControlReceiveInterface.h"
28 #include <cassert>
29
30 using namespace am;
31
32 extern "C" ControlSendInterface* PluginControlInterfaceFactory()
33 {
34     return (new ControlSenderPlugin());
35 }
36
37 extern "C" void destroyControlPluginInterface(ControlSendInterface* controlSendInterface)
38 {
39     delete controlSendInterface;
40 }
41
42 ControlSenderPlugin::ControlSenderPlugin() :
43         mControlReceiveInterface(NULL)
44 {
45 }
46
47 ControlSenderPlugin::~ControlSenderPlugin()
48 {
49 }
50
51 am_Error_e ControlSenderPlugin::startupController(ControlReceiveInterface *controlreceiveinterface)
52 {
53     assert(controlreceiveinterface);
54     mControlReceiveInterface = controlreceiveinterface;
55     //here is a good place to insert SystemProperties into the database...
56     return E_NOT_USED;
57 }
58
59 am_Error_e ControlSenderPlugin::stopController()
60 {
61     return E_NOT_USED;
62 }
63
64 void ControlSenderPlugin::hookAllPluginsLoaded()
65 {
66     //here is a good place to insert Source and SinkClasses into the database...
67     mControlReceiveInterface->setRoutingReady();
68     mControlReceiveInterface->setCommandReady();
69 }
70
71 am_Error_e ControlSenderPlugin::hookUserConnectionRequest(const am_sourceID_t sourceID, const am_sinkID_t sinkID, am_mainConnectionID_t & mainConnectionID)
72 {
73     std::vector<am_Route_s> listRoutes;
74     am_Handle_s handle;
75     am_connectionID_t connectionID;
76     mControlReceiveInterface->getRoute(true, sourceID, sinkID, listRoutes);
77     if (listRoutes.empty())
78         return E_NOT_POSSIBLE;
79     std::vector<am_RoutingElement_s>::iterator it(listRoutes[0].route.begin());
80     for (; it != listRoutes[0].route.end(); ++it)
81     {
82         mControlReceiveInterface->connect(handle, connectionID, it->connectionFormat, it->sourceID, it->sinkID);
83         //this is primitive and works only for one connect at a time... otherwise the handles get mixed up!
84         handleStack stack;
85         stack.handle=handle;
86         stack.ok=false;
87         mListOpenHandles.push_back(stack);
88     }
89     am_MainConnection_s mainConnectionData;
90     mainConnectionData.connectionID=0;
91     mainConnectionData.connectionState=CS_CONNECTING;
92     mainConnectionData.delay=0;
93     mainConnectionData.route=listRoutes[0];
94     mControlReceiveInterface->enterMainConnectionDB(mainConnectionData,mainConnectionID);
95     mCurrentID=mainConnectionID;
96     return E_OK;
97 }
98
99 am_Error_e ControlSenderPlugin::hookUserDisconnectionRequest(const am_mainConnectionID_t connectionID)
100 {
101     (void) connectionID;
102     return E_NOT_USED;
103 }
104
105 am_Error_e ControlSenderPlugin::hookUserSetMainSinkSoundProperty(const am_sinkID_t sinkID, const am_MainSoundProperty_s & soundProperty)
106 {
107     (void) sinkID;
108     (void) soundProperty;
109     return E_NOT_USED;
110 }
111
112 am_Error_e ControlSenderPlugin::hookUserSetMainSourceSoundProperty(const am_sourceID_t sourceID, const am_MainSoundProperty_s & soundProperty)
113 {
114     (void) sourceID;
115     (void) soundProperty;
116     return E_NOT_USED;
117 }
118
119 am_Error_e ControlSenderPlugin::hookUserSetSystemProperty(const am_SystemProperty_s & property)
120 {
121     (void) property;
122     return E_NOT_USED;
123 }
124
125 am_Error_e ControlSenderPlugin::hookUserVolumeChange(const am_sinkID_t SinkID, const am_mainVolume_t newVolume)
126 {
127     (void) SinkID;
128     (void) newVolume;
129     return E_NOT_USED;
130 }
131
132 am_Error_e ControlSenderPlugin::hookUserVolumeStep(const am_sinkID_t SinkID, const int16_t increment)
133 {
134     (void) SinkID;
135     (void) increment;
136     return E_NOT_USED;
137 }
138
139 am_Error_e ControlSenderPlugin::hookUserSetSinkMuteState(const am_sinkID_t sinkID, const am_MuteState_e muteState)
140 {
141     (void) sinkID;
142     (void) muteState;
143     return E_NOT_USED;
144 }
145
146 am_Error_e ControlSenderPlugin::hookSystemRegisterDomain(const am_Domain_s & domainData, am_domainID_t & domainID)
147 {
148     //this application does not do anything with it -> but some product might want to take influence here
149     return mControlReceiveInterface->enterDomainDB(domainData, domainID);
150 }
151
152 am_Error_e ControlSenderPlugin::hookSystemDeregisterDomain(const am_domainID_t domainID)
153 {
154     //this application does not do anything with it -> but some product might want to take influence here
155     return mControlReceiveInterface->removeDomainDB(domainID);
156 }
157
158 void ControlSenderPlugin::hookSystemDomainRegistrationComplete(const am_domainID_t domainID)
159 {
160     (void) domainID;
161 }
162
163 am_Error_e ControlSenderPlugin::hookSystemRegisterSink(const am_Sink_s & sinkData, am_sinkID_t & sinkID)
164 {
165     //this application does not do anything with it -> but some product might want to take influence here
166     return mControlReceiveInterface->enterSinkDB(sinkData, sinkID);
167 }
168
169 am_Error_e ControlSenderPlugin::hookSystemDeregisterSink(const am_sinkID_t sinkID)
170 {
171     //this application does not do anything with it -> but some product might want to take influence here
172     return mControlReceiveInterface->removeSinkDB(sinkID);
173 }
174
175 am_Error_e ControlSenderPlugin::hookSystemRegisterSource(const am_Source_s & sourceData, am_sourceID_t & sourceID)
176 {
177     //this application does not do anything with it -> but some product might want to take influence here
178     return mControlReceiveInterface->enterSourceDB(sourceData, sourceID);
179 }
180
181 am_Error_e ControlSenderPlugin::hookSystemDeregisterSource(const am_sourceID_t sourceID)
182 {
183     //this application does not do anything with it -> but some product might want to take influence here
184     return mControlReceiveInterface->removeSourceDB(sourceID);
185 }
186
187 am_Error_e ControlSenderPlugin::hookSystemRegisterGateway(const am_Gateway_s & gatewayData, am_gatewayID_t & gatewayID)
188 {
189     //this application does not do anything with it -> but some product might want to take influence here
190     return mControlReceiveInterface->enterGatewayDB(gatewayData, gatewayID);
191 }
192
193 am_Error_e ControlSenderPlugin::hookSystemDeregisterGateway(const am_gatewayID_t gatewayID)
194 {
195     //this application does not do anything with it -> but some product might want to take influence here
196     return mControlReceiveInterface->removeGatewayDB(gatewayID);
197 }
198
199 am_Error_e ControlSenderPlugin::hookSystemRegisterCrossfader(const am_Crossfader_s & crossfaderData, am_crossfaderID_t & crossfaderID)
200 {
201     //this application does not do anything with it -> but some product might want to take influence here
202     return mControlReceiveInterface->enterCrossfaderDB(crossfaderData, crossfaderID);
203 }
204
205 am_Error_e ControlSenderPlugin::hookSystemDeregisterCrossfader(const am_crossfaderID_t crossfaderID)
206 {
207     //this application does not do anything with it -> but some product might want to take influence here
208     return mControlReceiveInterface->removeCrossfaderDB(crossfaderID);
209 }
210
211 void ControlSenderPlugin::hookSystemSinkVolumeTick(const am_Handle_s handle, const am_sinkID_t sinkID, const am_volume_t volume)
212 {
213     (void) handle;
214     (void) sinkID;
215     (void) volume;
216 }
217
218 void ControlSenderPlugin::hookSystemSourceVolumeTick(const am_Handle_s handle, const am_sourceID_t sourceID, const am_volume_t volume)
219 {
220     (void) handle;
221     (void) sourceID;
222     (void) volume;
223 }
224
225 void ControlSenderPlugin::hookSystemInterruptStateChange(const am_sourceID_t sourceID, const am_InterruptState_e interruptState)
226 {
227     (void) sourceID;
228     (void) interruptState;
229 }
230
231 void ControlSenderPlugin::hookSystemSinkAvailablityStateChange(const am_sinkID_t sinkID, const am_Availability_s & availability)
232 {
233     (void) sinkID;
234     (void) availability;
235 }
236
237 void ControlSenderPlugin::hookSystemSourceAvailablityStateChange(const am_sourceID_t sourceID, const am_Availability_s & availability)
238 {
239     (void) sourceID;
240     (void) availability;
241 }
242
243 void ControlSenderPlugin::hookSystemDomainStateChange(const am_domainID_t domainID, const am_DomainState_e state)
244 {
245     (void) domainID;
246     (void) state;
247 }
248
249 void ControlSenderPlugin::hookSystemReceiveEarlyData(const std::vector<am_EarlyData_s> & data)
250 {
251     (void) data;
252 }
253
254 void ControlSenderPlugin::hookSystemSpeedChange(const am_speed_t speed)
255 {
256     (void) speed;
257 }
258
259 void ControlSenderPlugin::hookSystemTimingInformationChanged(const am_mainConnectionID_t mainConnectionID, const am_timeSync_t time)
260 {
261     (void) mainConnectionID;
262     (void) time;
263 }
264
265 void ControlSenderPlugin::cbAckConnect(const am_Handle_s handle, const am_Error_e errorID)
266 {
267     (void)errorID;
268     //here is no error check !!!!
269     //\todo: add error check here
270     //\todo: algorith can be much better written here
271     bool allOk = true;
272     std::list<handleStack>::iterator it(mListOpenHandles.begin());
273
274     for (; it != mListOpenHandles.end(); ++it)
275     {
276         if (it->handle.handle == handle.handle)
277             it->ok = true;
278         allOk = allOk && it->ok;
279     }
280
281     if (allOk)
282     {
283         mControlReceiveInterface->changeMainConnectionStateDB(mCurrentID,CS_CONNECTED);
284     }
285 }
286
287 void ControlSenderPlugin::cbAckDisconnect(const am_Handle_s handle, const am_Error_e errorID)
288 {
289     (void) handle;
290     (void) errorID;
291 }
292
293 void ControlSenderPlugin::cbAckCrossFade(const am_Handle_s handle, const am_HotSink_e hostsink, const am_Error_e error)
294 {
295     (void) handle;
296     (void) hostsink;
297     (void) error;
298 }
299
300 void ControlSenderPlugin::cbAckSetSinkVolumeChange(const am_Handle_s handle, const am_volume_t volume, const am_Error_e error)
301 {
302     (void) error;
303     (void) volume;
304     (void) handle;
305 }
306
307 void ControlSenderPlugin::cbAckSetSourceVolumeChange(const am_Handle_s handle, const am_volume_t voulme, const am_Error_e error)
308 {
309     (void) error;
310     (void) voulme;
311     (void) handle;
312 }
313
314 void ControlSenderPlugin::cbAckSetSourceState(const am_Handle_s handle, const am_Error_e error)
315 {
316     (void) error;
317     (void) handle;
318 }
319
320 void ControlSenderPlugin::cbAckSetSourceSoundProperty(const am_Handle_s handle, const am_Error_e error)
321 {
322     (void) error;
323     (void) handle;
324 }
325
326 void ControlSenderPlugin::cbAckSetSinkSoundProperty(const am_Handle_s handle, const am_Error_e error)
327 {
328     (void) error;
329     (void) handle;
330 }
331
332 void ControlSenderPlugin::cbAckSetSourceSoundProperties(const am_Handle_s handle, const am_Error_e error)
333 {
334     (void) error;
335     (void) handle;
336 }
337
338 void ControlSenderPlugin::cbAckSetSinkSoundProperties(const am_Handle_s handle, const am_Error_e error)
339 {
340     (void) error;
341     (void) handle;
342 }
343
344 am_Error_e ControlSenderPlugin::getConnectionFormatChoice(const am_sourceID_t sourceID, const am_sinkID_t sinkID, const std::vector<am_ConnectionFormat_e> listPossibleConnectionFormats, std::vector<am_ConnectionFormat_e>& listPrioConnectionFormats)
345 {
346     (void) sourceID;
347     (void) sinkID;
348     //ok, this is cheap. In a real product you have your preferences, right?
349     listPrioConnectionFormats = listPossibleConnectionFormats;
350     return (E_OK);
351 }
352
353 uint16_t ControlSenderPlugin::getInterfaceVersion() const
354 {
355     return (ControlSendVersion);
356 }
357