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