Update contrib.
3 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
4 // All rights reserved.
5 // This component and the accompanying materials are made available
6 // under the terms of "Eclipse Public License v1.0"
7 // which accompanies this distribution, and is available
8 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 // Initial Contributors:
11 // Nokia Corporation - initial contribution.
18 #include "mmrcclient.h"
19 #include "mmrcclientimplementation.h"
20 #include "audiocontext.h"
21 #include <a3f/a3f_trace_utils.h>
26 EXPORT_C RMMRCClient::RMMRCClient():
30 DP_CONTEXT(----> RMMRCClient::RMMRCClient *CD1*, CtxDevSound, DPLOCAL);
38 EXPORT_C RMMRCClient::~RMMRCClient()
40 DP_CONTEXT(----> RMMRCClient::~RMMRCClient *CD1*, CtxDevSound, DPLOCAL);
42 delete iImplementation;
43 iImplementation = NULL;
50 EXPORT_C TInt RMMRCClient::Open(MMultimediaResourceControlObserver& aCallback)
52 DP_CONTEXT(----> RMMRCClient::Open *CD1*, CtxDevSound, DPLOCAL);
59 RDebug::Print(_L("!!!!RMMRCClient::Open - iImplementation already created"));
61 DP0_RET(KErrCompletion, "error = %d");
64 TRAP( err, iImplementation = CMMRCClientImplementation::NewL(aCallback) );
69 DP0_RET(err, "error = %d");
75 EXPORT_C void RMMRCClient::Close()
77 DP_CONTEXT(----> RMMRCClient::Close *CD1*, CtxDevSound, DPLOCAL);
81 if( NULL == iImplementation )
83 RDebug::Print(_L("!!!!RMMRCClient::Close - iImplementation NULL"));
89 iImplementation->Close();
90 delete iImplementation;
91 iImplementation = NULL;
100 EXPORT_C TUint64 RMMRCClient::LogOn(TProcessId aProcessId)
102 DP_CONTEXT(----> RMMRCClient::LogOn *CD1*, CtxDevSound, DPLOCAL);
106 if( NULL == iImplementation )
108 RDebug::Print(_L("!!!!RMMRCClient::LogOn - iImplementation NULL"));
112 TUint64 contextId = 0;
115 contextId = iImplementation->LogOn(aProcessId);
118 DP0_RET(contextId, "contextId = %d");
124 EXPORT_C TInt RMMRCClient::SendResourceRequest(MLogicalChain* aLogicalChainLastCommited, MLogicalChain* aLogicalChainRequested, CAudioContext* aContext)
126 DP_CONTEXT(----> RMMRCClient::SendResourceRequest *CD1*, CtxDevSound, DPLOCAL);
129 if( NULL == iImplementation )
132 RDebug::Print(_L("!!!!RMMRCClient::SendResourceRequest - iImplementation NULL"));
134 DP0_RET(KErrCompletion, "error = %d");
137 TInt error = iImplementation->SendResourceRequest(aLogicalChainLastCommited, aLogicalChainRequested, aContext);
139 DP0_RET(error, "error = %d");
145 EXPORT_C TInt RMMRCClient::SendResourceConfirmation()
147 DP_CONTEXT(----> RMMRCClient::SendResourceConfirmation *CD1*, CtxDevSound, DPLOCAL);
149 TInt err = KErrNotSupported;
156 EXPORT_C TInt RMMRCClient::SendResourceUpdateResult()
158 DP_CONTEXT(----> RMMRCClient::SendResourceUpdateResult *CD1*, CtxDevSound, DPLOCAL);
160 TInt err = KErrNotSupported;
167 EXPORT_C TInt RMMRCClient::SendResourceErrorNotification()
169 DP_CONTEXT(----> RMMRCClient::SendResourceErrorNotification *CD1*, CtxDevSound, DPLOCAL);
172 TInt err = KErrNotSupported;
179 EXPORT_C TInt RMMRCClient::RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData)
181 DP_CONTEXT(RMMRCClient::RegisterAsClient *CD1*, CtxDevSound, DPLOCAL);
184 if( NULL == iImplementation )
187 RDebug::Print(_L("!!!!RMMRCClient::RegisterAsClient - iImplementation NULL"));
189 DP0_RET(KErrCompletion, "error = %d");
192 TInt err = iImplementation->RegisterAsClient(aEventType, aNotificationRegistrationData);
200 EXPORT_C TInt RMMRCClient::CancelRegisterAsClient(TUid aEventType)
202 DP_CONTEXT(RMMRCClient::CancelRegisterAsClient *CD1*, CtxDevSound, DPLOCAL);
205 if( NULL == iImplementation )
208 RDebug::Print(_L("!!!!RMMRCClient::CancelRegisterAsClient - iImplementation NULL"));
210 DP0_RET(KErrCompletion, "error = %d");
213 TInt err = iImplementation->CancelRegisterAsClient(aEventType);
221 EXPORT_C TInt RMMRCClient::WillResumePlay()
223 DP_CONTEXT(RMMRCClient::WillResumePlay *CD1*, CtxDevSound, DPLOCAL);
226 if( NULL == iImplementation )
229 RDebug::Print(_L("!!!!RMMRCClient::WillResumePlay - iImplementation NULL"));
231 DP0_RET(KErrCompletion, "error = %d");
234 TInt err = iImplementation->WillResumePlay();
239 EXPORT_C void RMMRCClient::ResetMessages()
241 DP_CONTEXT(RMMRCClient::ResetMessages *CD1*, CtxDevSound, DPLOCAL);
244 iImplementation->ResetMessages();