os/mm/devsoundextensions/drmaudioplayer/DRMPlayServer/src/DRMCustomCommandAsyncAO.cpp
First public contribution.
2 * Copyright (c) 2006 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: DRM Play Session
20 #include "DRMCustomCommandAsyncAO.h"
21 #include "DRMPlaySession.h"
26 #define TRACEPRNFNIN RDebug::Printf( "%s @ %d, %s>ENTER", __FILE__, __LINE__, __PRETTY_FUNCTION__ );
27 #define TRACEPRNFNOUT RDebug::Printf( "%s @ %d, %s>EXIT", __FILE__, __LINE__, __PRETTY_FUNCTION__ );
28 #define DEBPRN2(s, v1) RDebug::Print(s, v1);
29 #define DEBPRN3(s, v1, v2) RDebug::Print(s, v1, v2);
33 #define DEBPRN2(s, v1)
34 #define DEBPRN3(s, v1, v2)
38 CDRMCustomCommandAsyncAO::CDRMCustomCommandAsyncAO( TCustomCommandType aType, CDRMPlayServerSession& aParent )
39 : CActive(CActive::EPriorityStandard),
40 iCustomCommandType(aType),
43 iData1FromClient(NULL),
44 iData2FromClient(NULL),
48 CActiveScheduler::Add(this);
52 CDRMCustomCommandAsyncAO::~CDRMCustomCommandAsyncAO()
56 if ( !iAmCompleted && iMessage)
58 iMessage->Complete( KErrCancel );
61 // Delete the descriptors created on heap
62 delete iData1FromClient;
63 delete iData2FromClient;
71 CDRMCustomCommandAsyncAO* CDRMCustomCommandAsyncAO::NewL( const RMessage2& aMessage,
72 TCustomCommandType aType,
73 CDRMPlayServerSession& aParent )
76 CDRMCustomCommandAsyncAO* self = new ( ELeave )CDRMCustomCommandAsyncAO( aType, aParent );
77 CleanupStack::PushL( self );
78 self->ConstructL(aMessage);
79 CleanupStack::Pop( self );
84 void CDRMCustomCommandAsyncAO::ConstructL( const RMessage2& aMessage )
88 //Read mmf message destination information
89 TPckgCustomCommand thePckg;
90 User::LeaveIfError( aMessage.Read(0, thePckg) );
92 iMMFMessageDestinationPckg = thePckg().iDestination;
93 iMMFMessageFunction = thePckg().iFunction;
96 RDebug::Print(_L("CDRMCustomCommandAsyncAO::ConstructL:InterfaceId[%x]DestinationHandle[%d]"), \
97 iMMFMessageDestinationPckg().InterfaceId(),
98 iMMFMessageDestinationPckg().DestinationHandle() );
101 // Create descriptors to hold data1, data2
103 // Get Data 1 from client
104 TInt dataLen = aMessage.GetDesLengthL( 1 );
105 iData1FromClient = HBufC8::NewL( dataLen );
106 TPtr8 data1Ptr = iData1FromClient->Des();
107 aMessage.ReadL( 1, data1Ptr );
109 // Get Data 2 from client
110 dataLen = aMessage.GetDesLengthL( 2 );
111 iData2FromClient = HBufC8::NewL( dataLen );
112 TPtr8 data2Ptr = iData2FromClient->Des();
113 aMessage.ReadL( 2, data2Ptr );
118 TMMFMessageDestinationPckg& CDRMCustomCommandAsyncAO::GetMMFMessageDestinationPckg()
120 return iMMFMessageDestinationPckg;
123 TInt CDRMCustomCommandAsyncAO::GetMMFMessageFunction()
125 return iMMFMessageFunction;
128 HBufC8* CDRMCustomCommandAsyncAO::GetData1FromClient()
130 return iData1FromClient;
133 HBufC8* CDRMCustomCommandAsyncAO::GetData2FromClient()
135 return iData2FromClient;
138 HBufC8* CDRMCustomCommandAsyncAO::GetDataToClient()
140 return iDataToClient;
143 TInt CDRMCustomCommandAsyncAO::SetActive()
146 TInt status(KErrNotReady);
147 if ( !IsActive() && iMessage )
149 CActive::SetActive();
156 void CDRMCustomCommandAsyncAO::TransferOwnershipL( const RMessage2& aMessage )
158 // If this is a async custom command with result back to client
159 // Descriptor place holder is passed in the async message 'aMessage'.
160 if ( iCustomCommandType == ECustomCommandWithResult )
162 // Create buffer to hold the result back
163 TInt dataLen = aMessage.GetDesMaxLengthL( 0 );
164 iDataToClient = HBufC8::NewL( dataLen );
167 iMessage = new (ELeave) RMessage2(aMessage);
170 void CDRMCustomCommandAsyncAO::RunL()
173 TInt status(KErrNone);
174 // Write the result back if client is expecting one
175 TPtr8 dataPtr = iDataToClient->Des();
176 if ( ( iCustomCommandType == ECustomCommandWithResult ) &&
177 (dataPtr.Length() > 0 ) )
179 status = iMessage->Write( 0, dataPtr );
181 if ( status != KErrNone )
183 RDebug::Print(_L("CDRMCustomCommandAsyncAO::RunL:iMessage.Write()->Len[%d]MaxLen[%d]Status[%d]"),
190 // Complete the message
191 status = iStatus.Int();
192 DEBPRN2(_L("CDRMCustomCommandAsyncAO::RunL[%d]"), status );
193 iMessage->Complete( status );
194 iAmCompleted = ETrue;
197 iParent.AsyncCustomCommandCompleted( this );
202 void CDRMCustomCommandAsyncAO::DoCancel()
205 iMessage->Complete( KErrCancel );
206 iAmCompleted = ETrue;
210 TInt CDRMCustomCommandAsyncAO::RunError( TInt /*aError*/ )
213 // There was some error completing message....