* wrapping DLT calls in a new Class because of performance, codesize and lazyness...
[profile/ivi/audiomanager.git] / AudioManagerDaemon / src / CommandReceiver.cpp
1 /**
2  * Copyright (C) 2011, BMW AG
3  *
4  * GeniviAudioMananger AudioManagerDaemon
5  *
6  * \file CommandReveiver.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 "CommandReceiver.h"
26 #include "DatabaseHandler.h"
27 #include "ControlSender.h"
28 #include "DLTWrapper.h"
29 #include <SocketHandler.h>
30 #include <config.h>
31 #include <assert.h>
32
33 using namespace am;
34
35 CommandReceiver::CommandReceiver(DatabaseHandler *iDatabaseHandler, ControlSender *iControlSender, DBusWrapper *iDBusWrapper) :
36         mDatabaseHandler(iDatabaseHandler), //
37         mControlSender(iControlSender), //
38         mDBusWrapper(iDBusWrapper)
39 {
40     assert(mDatabaseHandler!=NULL);
41     assert(mDBusWrapper!=NULL);
42     assert(mControlSender!=NULL);
43 }
44
45 CommandReceiver::CommandReceiver(DatabaseHandler *iDatabaseHandler, ControlSender *iControlSender, SocketHandler *iSocketHandler) :
46         mDatabaseHandler(iDatabaseHandler), //
47         mControlSender(iControlSender), //
48         mSocketHandler(iSocketHandler)
49 {
50     assert(mDatabaseHandler!=NULL);
51     assert(mSocketHandler!=NULL);
52     assert(mControlSender!=NULL);
53 }
54
55 CommandReceiver::CommandReceiver(DatabaseHandler *iDatabaseHandler, ControlSender *iControlSender, SocketHandler *iSocketHandler, DBusWrapper *iDBusWrapper) :
56         mDatabaseHandler(iDatabaseHandler), //
57         mControlSender(iControlSender), //
58         mDBusWrapper(iDBusWrapper), //
59         mSocketHandler(iSocketHandler)
60 {
61     assert(mDatabaseHandler!=NULL);
62     assert(mSocketHandler!=NULL);
63     assert(mControlSender!=NULL);
64     assert(mDBusWrapper!=NULL);
65 }
66
67 CommandReceiver::~CommandReceiver()
68 {
69 }
70
71 am_Error_e CommandReceiver::connect(const am_sourceID_t sourceID, const am_sinkID_t sinkID, am_mainConnectionID_t & mainConnectionID)
72 {
73     logInfo("CommandReceiver::connect got called, sourceID=", sourceID, "sinkID=", sinkID);
74     return mControlSender->hookUserConnectionRequest(sourceID, sinkID, mainConnectionID);
75 }
76
77 am_Error_e CommandReceiver::disconnect(const am_mainConnectionID_t mainConnectionID)
78 {
79     logInfo("CommandReceiver::disconnect got called, mainConnectionID=", mainConnectionID);
80     return mControlSender->hookUserDisconnectionRequest(mainConnectionID);
81 }
82
83 am_Error_e CommandReceiver::setVolume(const am_sinkID_t sinkID, const am_mainVolume_t volume)
84 {
85     logInfo("CommandReceiver::setVolume got called, sinkID=", sinkID, "volume=", volume);
86     return mControlSender->hookUserVolumeChange(sinkID, volume);
87 }
88
89 am_Error_e CommandReceiver::volumeStep(const am_sinkID_t sinkID, const int16_t volumeStep)
90 {
91     logInfo("CommandReceiver::volumeStep got called, sinkID=", sinkID, "volumeStep=", volumeStep);
92     return mControlSender->hookUserVolumeStep(sinkID, volumeStep);
93 }
94
95 am_Error_e CommandReceiver::setSinkMuteState(const am_sinkID_t sinkID, const am_MuteState_e muteState)
96 {
97     logInfo("CommandReceiver::setSinkMuteState got called, sinkID=", sinkID, "muteState=", muteState);
98     return mControlSender->hookUserSetSinkMuteState(sinkID, muteState);
99 }
100
101 am_Error_e CommandReceiver::setMainSinkSoundProperty(const am_MainSoundProperty_s & soundProperty, const am_sinkID_t sinkID)
102 {
103     logInfo("CommandReceiver::setMainSinkSoundProperty got called, sinkID=", sinkID, "soundPropertyType=", soundProperty.type, "soundPropertyValue=", soundProperty.value);
104     return mControlSender->hookUserSetMainSinkSoundProperty(sinkID, soundProperty);
105 }
106
107 am_Error_e CommandReceiver::setMainSourceSoundProperty(const am_MainSoundProperty_s & soundProperty, const am_sourceID_t sourceID)
108 {
109     logInfo("CommandReceiver::setMainSourceSoundProperty got called, sourceID=", sourceID, "soundPropertyType=", soundProperty.type, "soundPropertyValue=", soundProperty.value);
110     return mControlSender->hookUserSetMainSourceSoundProperty(sourceID, soundProperty);
111 }
112
113 am_Error_e CommandReceiver::setSystemProperty(const am_SystemProperty_s & property)
114 {
115     logInfo("CommandReceiver::setSystemProperty got called", "type=", property.type, "soundPropertyValue=", property.value);
116     return mControlSender->hookUserSetSystemProperty(property);
117 }
118
119 am_Error_e CommandReceiver::getListMainConnections(std::vector<am_MainConnectionType_s> & listConnections) const
120 {
121     return mDatabaseHandler->getListVisibleMainConnections(listConnections);
122
123 }
124
125 am_Error_e CommandReceiver::getListMainSinks(std::vector<am_SinkType_s>& listMainSinks) const
126 {
127     return mDatabaseHandler->getListMainSinks(listMainSinks);
128 }
129
130 am_Error_e CommandReceiver::getListMainSources(std::vector<am_SourceType_s>& listMainSources) const
131 {
132     return mDatabaseHandler->getListMainSources(listMainSources);
133 }
134
135 am_Error_e CommandReceiver::getListMainSinkSoundProperties(const am_sinkID_t sinkID, std::vector<am_MainSoundProperty_s> & listSoundProperties) const
136 {
137     return mDatabaseHandler->getListMainSinkSoundProperties(sinkID, listSoundProperties);
138 }
139
140 am_Error_e CommandReceiver::getListMainSourceSoundProperties(const am_sourceID_t sourceID, std::vector<am_MainSoundProperty_s> & listSourceProperties) const
141 {
142     return mDatabaseHandler->getListMainSourceSoundProperties(sourceID, listSourceProperties);
143 }
144
145 am_Error_e CommandReceiver::getListSourceClasses(std::vector<am_SourceClass_s> & listSourceClasses) const
146 {
147     return mDatabaseHandler->getListSourceClasses(listSourceClasses);
148 }
149
150 am_Error_e CommandReceiver::getListSinkClasses(std::vector<am_SinkClass_s> & listSinkClasses) const
151 {
152     return mDatabaseHandler->getListSinkClasses(listSinkClasses);
153 }
154
155 am_Error_e CommandReceiver::getListSystemProperties(std::vector<am_SystemProperty_s> & listSystemProperties) const
156 {
157     return mDatabaseHandler->getListSystemProperties(listSystemProperties);
158 }
159
160 am_Error_e CommandReceiver::getTimingInformation(const am_mainConnectionID_t mainConnectionID, am_timeSync_t & delay) const
161 {
162     return mDatabaseHandler->getTimingInformation(mainConnectionID, delay);
163 }
164
165 am_Error_e CommandReceiver::getDBusConnectionWrapper(DBusWrapper*& dbusConnectionWrapper) const
166 {
167 #ifdef WITH_DBUS_WRAPPER
168     dbusConnectionWrapper = mDBusWrapper;
169     return E_OK;
170 #else
171     return E_UNKNOWN;
172 #endif /*WITH_DBUS_WRAPPER*/
173 }
174
175 am_Error_e CommandReceiver::getSocketHandler(SocketHandler *& socketHandler) const
176 {
177 #ifdef WITH_SOCKETHANDLER_LOOP
178     socketHandler = mSocketHandler;
179     return E_OK;
180 #else
181     return E_UNKNOWN;
182 #endif /*WITH_SOCKETHANDLER_LOOP*/
183 }
184
185 uint16_t CommandReceiver::getInterfaceVersion() const
186 {
187     return CommandReceiveVersion;
188 }
189