os/mm/devsoundextensions/effects/EnvReverb/EnvironmentalReverbProxy/Src/EnvironmentalReverbProxy.cpp
Update contrib.
2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Implementation of the Environmental Reverb proxy class
27 #include "EnvironmentalReverbProxy.h"
28 #include "EnvironmentalReverbEventObserver.h"
29 #include "RoomLevelProxy.h"
30 #include <CustomInterfaceUtility.h>
34 // ============================ MEMBER FUNCTIONS ===============================
36 // -----------------------------------------------------------------------------
37 // CEnvironmentalReverbProxy::CEnvironmentalReverbProxy
38 // C++ default constructor can NOT contain any code, that
40 // -----------------------------------------------------------------------------
42 CEnvironmentalReverbProxy::CEnvironmentalReverbProxy(
43 TMMFMessageDestinationPckg aMessageHandler,
44 MCustomCommand& aCustomCommand,
45 CCustomInterfaceUtility* aCustomInterfaceUtility )
46 : iCustomCommand(&aCustomCommand),
47 iMessageHandler(aMessageHandler),
48 iCustomInterfaceUtility(aCustomInterfaceUtility)
54 CEnvironmentalReverbProxy::~CEnvironmentalReverbProxy()
56 // Remove the custom interface message handler before we destroy the proxy.
58 TInt numOfRoomLevel = iCRoomLevelProxyList.Count();
59 if (numOfRoomLevel > 0)
61 for (TInt i = 0; i < numOfRoomLevel; ++i)
63 iCRoomLevelProxyList[i]->DettachReverb(*this);
66 iCRoomLevelProxyList.Close();
67 if(iCustomInterfaceUtility)
68 iCustomInterfaceUtility->RemoveCustomInterface(iMessageHandler);
69 delete iEnvironmentalReverbEventObserver;
70 delete iCustomInterfaceUtility;
73 // -----------------------------------------------------------------------------
74 // CEnvironmentalReverbProxy::NewL
75 // Static function for creating an instance of the Environmental Reverb object.
76 // -----------------------------------------------------------------------------
78 EXPORT_C CEnvironmentalReverbProxy* CEnvironmentalReverbProxy::NewL(
79 TMMFMessageDestinationPckg aMessageHandler,
80 MCustomCommand& aCustomCommand,
81 CCustomInterfaceUtility* aCustomInterfaceUtility )
83 CEnvironmentalReverbProxy* self = new (ELeave) CEnvironmentalReverbProxy(aMessageHandler, aCustomCommand, aCustomInterfaceUtility);
84 CleanupStack::PushL(self);
86 CleanupStack::Pop(self);
90 // -----------------------------------------------------------------------------
91 // CEnvironmentalReverbProxy::ConstructL
92 // -----------------------------------------------------------------------------
94 void CEnvironmentalReverbProxy::ConstructL()
97 RDebug::Print(_L("CEnvironmentalReverbProxy::ConstructL"));
99 iEnvironmentalReverbEventObserver = CEnvironmentalReverbEventObserver::NewL(iMessageHandler, *iCustomCommand, *this);
101 // sends a message to fetch initial data.
102 TEfEnvReverbDataPckg dataPckgFrom;
103 iCustomCommand->CustomCommandSync(iMessageHandler, (TInt)EErfInitialize, KNullDesC8, KNullDesC8, dataPckgFrom);
104 SetEffectData(dataPckgFrom);
109 // -----------------------------------------------------------------------------
110 // CEnvironmentalReverbProxy::GetUniqueId
111 // return a TInt 32 integer
112 // -----------------------------------------------------------------------------
114 TUint32 CEnvironmentalReverbProxy::GetUniqueId() const
116 return iReverbData.iEnvironmentalReverbId;
120 // -----------------------------------------------------------------------------
121 // CEnvironmentalReverbProxy::AttachRoomLevel
122 // Add the reference of aProxy to array
123 // -----------------------------------------------------------------------------
125 TInt CEnvironmentalReverbProxy::RoomLevelAttached(CRoomLevelProxy& aProxy)
128 TInt error = iCRoomLevelProxyList.Find(&aProxy);
129 if (error == KErrNotFound)
131 error = iCRoomLevelProxyList.Append(&aProxy);
140 // -----------------------------------------------------------------------------
141 // CEnvironmentalReverbImpl::DetachRoomLevel
142 // Remove the reference of aProxy from array
143 // -----------------------------------------------------------------------------
145 TInt CEnvironmentalReverbProxy::RoomLevelDetached(CRoomLevelProxy& aProxy)
147 TInt found = iCRoomLevelProxyList.Find(&aProxy);
148 if (found != KErrNotFound)
150 iCRoomLevelProxyList.Remove(found);
157 // -----------------------------------------------------------------------------
158 // CEnvironmentalReverbProxy::ApplyL
159 // Apply the Environmental Reverb settings.
160 // -----------------------------------------------------------------------------
162 EXPORT_C void CEnvironmentalReverbProxy::ApplyL()
165 RDebug::Print(_L("CEnvironmentalReverbProxy::Apply"));
168 if ( !iHaveUpdateRights )
170 User::Leave(KErrAccessDenied);
173 iReverbData.iEnabled = iEnabled;
174 iReverbData.iEnforced = iEnforced;
175 iReverbData.iHaveUpdateRights = iHaveUpdateRights;
176 iCustomCommand->CustomCommandSync(iMessageHandler, (TInt)EErfApply, DoEffectData(), KNullDesC8);
181 // -----------------------------------------------------------------------------
182 // CEnvironmentalReverbProxy::StartObserver
183 // Starts the event observer. The event observer monitors asynchronous events
184 // from the message handler.
185 // -----------------------------------------------------------------------------
187 void CEnvironmentalReverbProxy::StartObserver()
190 RDebug::Print(_L("CEnvironmentalReverbProxy::StartObserver"));
193 iEnvironmentalReverbEventObserver->Start();
196 // -----------------------------------------------------------------------------
197 // CEnvironmentalReverbProxy::EnvironmentalReverbEvent
198 // Checks which data member has changed and notify the observers.
199 // -----------------------------------------------------------------------------
201 void CEnvironmentalReverbProxy::EnvironmentalReverbEvent(
202 const TDesC8& aBuffer )
205 RDebug::Print(_L("CEnvironmentalReverbProxy::EnvironmentalReverbEvent"));
208 TEfEnvReverbDataPckg dataPckgFrom;
209 dataPckgFrom.Copy(aBuffer);
210 TEfEnvironmentalReverb newReverbData = dataPckgFrom();
214 if ( newReverbData.iEnabled != iReverbData.iEnabled )
216 iReverbData.iEnabled = newReverbData.iEnabled;
217 iEnabled = newReverbData.iEnabled;
218 if ( iReverbData.iEnabled )
220 event = MAudioEffectObserver::KEnabled;
224 event = MAudioEffectObserver::KDisabled;
227 else if ( newReverbData.iEnforced != iReverbData.iEnforced )
229 iReverbData.iEnforced = newReverbData.iEnforced;
230 iEnforced = newReverbData.iEnforced;
231 if ( iReverbData.iEnforced )
233 event = MAudioEffectObserver::KEnforced;
237 event = MAudioEffectObserver::KNotEnforced;
240 else if ( newReverbData.iHaveUpdateRights != iReverbData.iHaveUpdateRights )
242 iReverbData.iHaveUpdateRights = newReverbData.iHaveUpdateRights;
243 iHaveUpdateRights = newReverbData.iHaveUpdateRights;
244 if ( iReverbData.iHaveUpdateRights )
246 event = MAudioEffectObserver::KGainedUpdateRights;
250 event = MAudioEffectObserver::KLostUpdateRights;
253 else if ( newReverbData.iDecayTime != iReverbData.iDecayTime )
255 iReverbData.iDecayTime = newReverbData.iDecayTime;
256 event = MEnvironmentalReverbObserver::KDecayTimeChanged;
258 else if ( newReverbData.iDecayHFRatio != iReverbData.iDecayHFRatio )
260 iReverbData.iDecayHFRatio = newReverbData.iDecayHFRatio;
261 event = MEnvironmentalReverbObserver::KDecayHFRatioChanged;
263 else if ( newReverbData.iDensity != iReverbData.iDensity )
265 iReverbData.iDensity = newReverbData.iDensity;
266 event = MEnvironmentalReverbObserver::KDensityChanged;
268 else if ( newReverbData.iDiffusion != iReverbData.iDiffusion )
270 iReverbData.iDiffusion = newReverbData.iDiffusion;
271 event = MEnvironmentalReverbObserver::KDiffusionChanged;
273 else if ( newReverbData.iReflectionsDelay != iReverbData.iReflectionsDelay )
275 iReverbData.iReflectionsDelay = newReverbData.iReflectionsDelay;
276 event = MEnvironmentalReverbObserver::KReflectionsDelayChanged;
278 else if ( newReverbData.iReflectionsLevel != iReverbData.iReflectionsLevel )
280 iReverbData.iReflectionsLevel = newReverbData.iReflectionsLevel;
281 event = MEnvironmentalReverbObserver::KReflectionsLevelChanged;
283 else if ( newReverbData.iReverbDelay != iReverbData.iReverbDelay )
285 iReverbData.iReverbDelay = newReverbData.iReverbDelay;
286 event = MEnvironmentalReverbObserver::KReverbDelayChanged;
288 else if ( newReverbData.iReverbLevel != iReverbData.iReverbLevel )
290 iReverbData.iReverbLevel = newReverbData.iReverbLevel;
291 event = MEnvironmentalReverbObserver::KReverbLevelChanged;
293 else if ( newReverbData.iRoomLevel != iReverbData.iRoomLevel )
295 iReverbData.iRoomLevel = newReverbData.iRoomLevel;
296 event = MEnvironmentalReverbObserver::KRoomLevelChanged;
298 else if ( newReverbData.iRoomHFLevel != iReverbData.iRoomHFLevel )
300 iReverbData.iRoomHFLevel = newReverbData.iRoomHFLevel;
301 event = MEnvironmentalReverbObserver::KRoomHFLevelChanged;
303 else if ( newReverbData.iEnvironmentalReverbId != iReverbData.iEnvironmentalReverbId )
305 iReverbData.iEnvironmentalReverbId = newReverbData.iEnvironmentalReverbId;
306 // event = MEnvironmentalReverbObserver::KRoomHFLevelChanged;
314 for ( TInt i = 0; i < iObservers.Count(); i++ )
316 iObservers[i]->EffectChanged(this, event);
321 // ========================== OTHER EXPORTED FUNCTIONS =========================