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