os/mm/devsoundextensions/telephonyaudiorouting/Session/src/TelephonyAudioRoutingPolicyRequest.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). 
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:   Active object for each asynchronous request in RTelephonyAudioRoutingSession.
sl@0
    15
*				 Notifies MTelephonyAudioRoutingPolicyObserver upon request completion.
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
sl@0
    21
sl@0
    22
// INCLUDE FILES
sl@0
    23
#include "TelephonyAudioRoutingPolicyRequest.h"
sl@0
    24
#include "MTelephonyAudioRoutingPolicyObserver.h"
sl@0
    25
#include "TelephonyAudioRoutingClientServer.h"
sl@0
    26
sl@0
    27
sl@0
    28
// ============================ MEMBER FUNCTIONS ===============================
sl@0
    29
sl@0
    30
// -----------------------------------------------------------------------------
sl@0
    31
// CTelephonyAudioRoutingPolicyRequest::CTelephonyAudioRoutingPolicyRequest
sl@0
    32
// C++ default constructor can NOT contain any code, that
sl@0
    33
// might leave.
sl@0
    34
// -----------------------------------------------------------------------------
sl@0
    35
//
sl@0
    36
    
sl@0
    37
CTelephonyAudioRoutingPolicyRequest::CTelephonyAudioRoutingPolicyRequest( 
sl@0
    38
	RTelephonyAudioRoutingManagerSession& aManagerSession, 
sl@0
    39
	MTelephonyAudioRoutingPolicyObserver& aObserver, 
sl@0
    40
	CTelephonyAudioRoutingManager& aAudioRouting, 
sl@0
    41
	TTelAudRtngServRqst aRequest )
sl@0
    42
	:	CActive(EPriorityStandard),
sl@0
    43
		iManagerSession(aManagerSession),
sl@0
    44
		iPolicyObserver(aObserver),
sl@0
    45
		iAudioRoutingManager(aAudioRouting),
sl@0
    46
		iRequest(aRequest)
sl@0
    47
	{
sl@0
    48
	  
sl@0
    49
	}
sl@0
    50
sl@0
    51
// -----------------------------------------------------------------------------
sl@0
    52
// CTelephonyAudioRoutingPolicyRequest::ConstructL
sl@0
    53
// Symbian 2nd phase constructor can leave.
sl@0
    54
// -----------------------------------------------------------------------------
sl@0
    55
//
sl@0
    56
void CTelephonyAudioRoutingPolicyRequest::ConstructL()
sl@0
    57
    {
sl@0
    58
	TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingPolicyRequest::ConstructL"));    
sl@0
    59
	CActiveScheduler::Add(this);
sl@0
    60
    }
sl@0
    61
sl@0
    62
// -----------------------------------------------------------------------------
sl@0
    63
// CTelephonyAudioRoutingPolicyRequest::NewL
sl@0
    64
// Two-phased constructor.
sl@0
    65
// -----------------------------------------------------------------------------
sl@0
    66
//
sl@0
    67
   
sl@0
    68
CTelephonyAudioRoutingPolicyRequest* CTelephonyAudioRoutingPolicyRequest::NewL(
sl@0
    69
	RTelephonyAudioRoutingManagerSession& aManagerSession,
sl@0
    70
	MTelephonyAudioRoutingPolicyObserver& aObserver,
sl@0
    71
	CTelephonyAudioRoutingManager& aAudioRouting,
sl@0
    72
	TTelAudRtngServRqst aRequest )
sl@0
    73
    {
sl@0
    74
	CTelephonyAudioRoutingPolicyRequest* self = new( ELeave ) CTelephonyAudioRoutingPolicyRequest(aManagerSession, aObserver, aAudioRouting, aRequest);
sl@0
    75
	CleanupStack::PushL( self );
sl@0
    76
	self->ConstructL();
sl@0
    77
	CleanupStack::Pop();
sl@0
    78
	return self;
sl@0
    79
    }
sl@0
    80
sl@0
    81
// Destructor
sl@0
    82
CTelephonyAudioRoutingPolicyRequest::~CTelephonyAudioRoutingPolicyRequest()
sl@0
    83
    {
sl@0
    84
	TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingPolicyRequest::~CTelephonyAudioRoutingPolicyRequest"));    
sl@0
    85
	Cancel();
sl@0
    86
sl@0
    87
    }
sl@0
    88
sl@0
    89
// -----------------------------------------------------------------------------
sl@0
    90
// CTelephonyAudioRoutingPolicyRequest::CompleteRequest
sl@0
    91
// This method completes the request status and sets the object active
sl@0
    92
// to provide asynchronous behavior.
sl@0
    93
// -----------------------------------------------------------------------------
sl@0
    94
//
sl@0
    95
void CTelephonyAudioRoutingPolicyRequest::CompleteRequest(
sl@0
    96
	TTelAudRtngServRqst aRequest,
sl@0
    97
	TInt aError )
sl@0
    98
    {
sl@0
    99
	iRequest = aRequest;
sl@0
   100
	TRequestStatus* stat = &iStatus;
sl@0
   101
	User::RequestComplete(stat, aError);
sl@0
   102
	SetActive();
sl@0
   103
    }
sl@0
   104
sl@0
   105
// -----------------------------------------------------------------------------
sl@0
   106
// CTelephonyAudioRoutingPolicyRequest::DoCancel
sl@0
   107
// -----------------------------------------------------------------------------
sl@0
   108
//
sl@0
   109
void CTelephonyAudioRoutingPolicyRequest::DoCancel()
sl@0
   110
    {
sl@0
   111
	iManagerSession.CancelRequest(iRequest);
sl@0
   112
    }
sl@0
   113
sl@0
   114
// -----------------------------------------------------------------------------
sl@0
   115
// CTelephonyAudioRoutingPolicyRequest::RunL
sl@0
   116
// -----------------------------------------------------------------------------
sl@0
   117
//
sl@0
   118
void CTelephonyAudioRoutingPolicyRequest::RunL()
sl@0
   119
    {
sl@0
   120
    TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingPolicyRequest::RunL with %d "), iStatus.Int());
sl@0
   121
	CTelephonyAudioRouting::TAudioOutput aResponse;
sl@0
   122
	
sl@0
   123
	switch( iStatus.Int() )
sl@0
   124
	{
sl@0
   125
	case ETelAudRtngServOutputChangeRequested:
sl@0
   126
		{
sl@0
   127
sl@0
   128
		aResponse = (iManagerSession.AudioOutputPkg())(); 
sl@0
   129
sl@0
   130
sl@0
   131
		TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingPolicyRequest::RunL, Calling OutputChangeRequested With: %d "), aResponse);		         
sl@0
   132
        iPolicyObserver.OutputChangeRequested(iAudioRoutingManager, aResponse);
sl@0
   133
        iManagerSession.MonitorOutputChangeRequest();
sl@0
   134
		}
sl@0
   135
		break;
sl@0
   136
						
sl@0
   137
	default:
sl@0
   138
		{
sl@0
   139
		User::Panic(_L("TelephonyAudioRouting"), KErrGeneral );
sl@0
   140
		break;
sl@0
   141
		}
sl@0
   142
	}
sl@0
   143
    }
sl@0
   144
sl@0
   145
//  End of File
sl@0
   146