multimediacommsengine/tsrc/MMCTestDriver/MCETester/src/TCmdSetSinkActivity.cpp
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2005 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:    Implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include "MCEConstants.h"
       
    21 #include "TCmdSetSinkActivity.h"
       
    22 #include "CTcMCEContext.h"
       
    23 
       
    24 #include <MceMediaSink.h>
       
    25 
       
    26 void TCmdSetSinkActivity::ExecuteL()
       
    27 	{	
       
    28 	// ---------- Setup --------------------------------------------------------
       
    29 
       
    30 	// Get sink
       
    31 	CMceMediaSink* sink = reinterpret_cast<CMceMediaSink*>
       
    32 		(GetObjectForIdL(KSinkId, ETrue));	
       
    33 
       
    34 	TBool enable = ExtractBooleanL( KParamActivity, ETrue );
       
    35 	
       
    36 	// ---------- Execution ----------------------------------------------------
       
    37 
       
    38 	if ( enable )
       
    39 		{
       
    40 		if ( !sink->IsEnabled() )
       
    41 			{
       
    42 			sink->EnableL();
       
    43 			}
       
    44 		}
       
    45 	else
       
    46 		{
       
    47 		if ( sink->IsEnabled() )
       
    48 			{
       
    49 			sink->DisableL();
       
    50 			} 	
       
    51 		}   
       
    52 
       
    53 	// ---------- Response creation --------------------------------------------
       
    54  
       
    55     AddIdResponseL( KSinkId, *sink );
       
    56     AddBooleanResponseL( KResponseActivity, sink->IsEnabled() );
       
    57     
       
    58 	}
       
    59 	
       
    60 TBool TCmdSetSinkActivity::Match( const TTcIdentifier& aId )
       
    61 	{
       
    62 	return TTcMceCommandBase::Match( aId, _L8("SetSinkActivity") );
       
    63 	}
       
    64 
       
    65 TTcCommandBase* TCmdSetSinkActivity::CreateL( MTcTestContext& aContext )
       
    66 	{
       
    67 	return new( ELeave ) TCmdSetSinkActivity( aContext );
       
    68 	}