sl@0: /* sl@0: * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: This file contains implementation of Audio Clients List Manager. sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: #include "AudioClientsListManagerAO.h" sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::CAudioClientsListManagerAO sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CAudioClientsListManagerAO::CAudioClientsListManagerAO( sl@0: CGlobalAudioSettings& aGlobalAudioSettings, sl@0: RPointerArray& aArray, sl@0: TUint32 aKey ) sl@0: :CActive(CActive::EPriorityStandard), sl@0: iGlobalAudioSettings(aGlobalAudioSettings), sl@0: iAudioClientsListObserverArray(aArray), sl@0: iKey(aKey) sl@0: { sl@0: CActiveScheduler::Add(this); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::~CAudioClientsListManagerAO sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CAudioClientsListManagerAO::~CAudioClientsListManagerAO() sl@0: { sl@0: Cancel(); sl@0: iActiveAudioClients.Close(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::NewL sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CAudioClientsListManagerAO* CAudioClientsListManagerAO::NewL( sl@0: CGlobalAudioSettings& aGlobalAudioSettings, sl@0: RPointerArray& aArray, sl@0: TUint32 aKey ) sl@0: { sl@0: CAudioClientsListManagerAO* self = new (ELeave) CAudioClientsListManagerAO(aGlobalAudioSettings,aArray,aKey); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::ConstructL sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CAudioClientsListManagerAO::ConstructL() sl@0: { sl@0: User::LeaveIfError( iActiveAudioClients.Attach( sl@0: KPSUidMMFAudioServer, sl@0: iKey, sl@0: EOwnerThread ) ); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::MonitorStart sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CAudioClientsListManagerAO::MonitorStart() sl@0: { sl@0: TInt status(KErrAlreadyExists); sl@0: if ( !IsActive() ) sl@0: { sl@0: SetActive(); sl@0: iActiveAudioClients.Subscribe(iStatus); sl@0: status = KErrNone; sl@0: } sl@0: sl@0: return status; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::MonitorStop sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CAudioClientsListManagerAO::MonitorStop() sl@0: { sl@0: TInt status(KErrNone); sl@0: if ( IsActive() ) sl@0: { sl@0: Cancel(); sl@0: } sl@0: return status; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::GetAudioClientsList sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CAudioClientsListManagerAO::GetAudioClientsList( sl@0: CGlobalAudioSettings::TAudioClientListType aType, sl@0: RArray& aList ) sl@0: { sl@0: TInt status(KErrNone); sl@0: aList.Reset(); sl@0: switch ( aType ) sl@0: { sl@0: case CGlobalAudioSettings::EActiveAudioClients: sl@0: { sl@0: TAudioClientList audioClientListPckg; sl@0: status = iActiveAudioClients.Get( KPSUidMMFAudioServer, sl@0: KAudioPolicyAudioClients, sl@0: audioClientListPckg ); sl@0: if ( status == KErrNone ) sl@0: { sl@0: for ( TInt index = 0; index < audioClientListPckg().iNumOfProcesses; index++ ) sl@0: { sl@0: status = aList.Append((audioClientListPckg().iProcessList)[index]); sl@0: if ( status != KErrNone ) sl@0: { sl@0: aList.Reset(); sl@0: break; sl@0: } sl@0: } sl@0: } sl@0: } sl@0: break; sl@0: sl@0: case CGlobalAudioSettings::EPausedAudioClients: sl@0: { sl@0: TAudioPolicyProcessIdList audioClientListPckg; sl@0: status = iActiveAudioClients.Get(KPSUidMMFAudioServer, sl@0: KAudioPolicyApplicationAudioStatePaused, sl@0: audioClientListPckg ); sl@0: if ( status == KErrNone ) sl@0: { sl@0: for ( TInt index = 0; index < audioClientListPckg().iNumOfProcesses; index++ ) sl@0: { sl@0: status = aList.Append((audioClientListPckg().iProcessList)[index]); sl@0: if ( status != KErrNone ) sl@0: { sl@0: aList.Reset(); sl@0: break; sl@0: } sl@0: } sl@0: } sl@0: } sl@0: break; sl@0: sl@0: default: sl@0: status = KErrNotFound; sl@0: break; sl@0: }; sl@0: return status; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::RunL sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CAudioClientsListManagerAO::RunL() sl@0: { sl@0: TInt status(iStatus.Int()); sl@0: #ifdef PRINT_MESSAGE sl@0: RDebug::Print(_L(" CAudioClientsListManagerAO::RunL:iStatus[%d]"), status); sl@0: #endif // PRINT_MESSAGE sl@0: if ( status == KErrNone ) sl@0: { sl@0: MonitorStart(); sl@0: // Go through the array and notify every observer sl@0: switch(iKey) sl@0: { sl@0: case KAudioPolicyAudioClients: sl@0: { sl@0: for (TInt index = 0; index < iAudioClientsListObserverArray.Count(); index++) sl@0: { sl@0: iAudioClientsListObserverArray[index]->Event( iGlobalAudioSettings, sl@0: MAudioClientsListObserver::KActiveAudioClientsListChanged); sl@0: } sl@0: } sl@0: break; sl@0: case KAudioPolicyApplicationAudioStatePaused: sl@0: { sl@0: for (TInt index = 0; index < iAudioClientsListObserverArray.Count(); index++) sl@0: { sl@0: iAudioClientsListObserverArray[index]->Event( iGlobalAudioSettings, sl@0: MAudioClientsListObserver::KPausedAudioClientsListChanged); sl@0: } sl@0: } sl@0: break; sl@0: default: sl@0: break; sl@0: sl@0: } //end swith(iKey) sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::DoCancel sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CAudioClientsListManagerAO::DoCancel() sl@0: { sl@0: iActiveAudioClients.Cancel(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CAudioClientsListManagerAO::RunError sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CAudioClientsListManagerAO::RunError(TInt /*aError*/) sl@0: { sl@0: // Observer callback has leaving code!!!. Ignore it. sl@0: return KErrNone; sl@0: } sl@0: sl@0: // End of file