sl@0
|
1 |
//mmrcclient.cpp
|
sl@0
|
2 |
|
sl@0
|
3 |
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
4 |
// All rights reserved.
|
sl@0
|
5 |
// This component and the accompanying materials are made available
|
sl@0
|
6 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
7 |
// which accompanies this distribution, and is available
|
sl@0
|
8 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
9 |
//
|
sl@0
|
10 |
// Initial Contributors:
|
sl@0
|
11 |
// Nokia Corporation - initial contribution.
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Contributors:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
// Description:
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "mmrcclient.h"
|
sl@0
|
19 |
#include "mmrcclientimplementation.h"
|
sl@0
|
20 |
#include "audiocontext.h"
|
sl@0
|
21 |
#include <a3f/a3f_trace_utils.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
/**
|
sl@0
|
24 |
*
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
EXPORT_C RMMRCClient::RMMRCClient():
|
sl@0
|
27 |
iImplementation(NULL)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
TRACE_CREATE();
|
sl@0
|
30 |
DP_CONTEXT(----> RMMRCClient::RMMRCClient *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
31 |
DP_IN();
|
sl@0
|
32 |
DP_OUT();
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
*
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
EXPORT_C RMMRCClient::~RMMRCClient()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
DP_CONTEXT(----> RMMRCClient::~RMMRCClient *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
41 |
DP_IN();
|
sl@0
|
42 |
delete iImplementation;
|
sl@0
|
43 |
iImplementation = NULL;
|
sl@0
|
44 |
DP_OUT();
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
*
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
EXPORT_C TInt RMMRCClient::Open(MMultimediaResourceControlObserver& aCallback)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
DP_CONTEXT(----> RMMRCClient::Open *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
53 |
DP_IN();
|
sl@0
|
54 |
TInt err = KErrNone;
|
sl@0
|
55 |
|
sl@0
|
56 |
if(iImplementation)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
#ifdef _DEBUG
|
sl@0
|
59 |
RDebug::Print(_L("!!!!RMMRCClient::Open - iImplementation already created"));
|
sl@0
|
60 |
#endif
|
sl@0
|
61 |
DP0_RET(KErrCompletion, "error = %d");
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
TRAP( err, iImplementation = CMMRCClientImplementation::NewL(aCallback) );
|
sl@0
|
65 |
if(err)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
Close();
|
sl@0
|
68 |
}
|
sl@0
|
69 |
DP0_RET(err, "error = %d");
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
*
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
EXPORT_C void RMMRCClient::Close()
|
sl@0
|
76 |
{
|
sl@0
|
77 |
DP_CONTEXT(----> RMMRCClient::Close *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
78 |
DP_IN();
|
sl@0
|
79 |
|
sl@0
|
80 |
#ifdef _DEBUG
|
sl@0
|
81 |
if( NULL == iImplementation )
|
sl@0
|
82 |
{
|
sl@0
|
83 |
RDebug::Print(_L("!!!!RMMRCClient::Close - iImplementation NULL"));
|
sl@0
|
84 |
}
|
sl@0
|
85 |
#endif
|
sl@0
|
86 |
|
sl@0
|
87 |
if(iImplementation)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
iImplementation->Close();
|
sl@0
|
90 |
delete iImplementation;
|
sl@0
|
91 |
iImplementation = NULL;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
DP_OUT();
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
*
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
EXPORT_C TUint64 RMMRCClient::LogOn(TProcessId aProcessId)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
DP_CONTEXT(----> RMMRCClient::LogOn *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
103 |
DP_IN();
|
sl@0
|
104 |
|
sl@0
|
105 |
#ifdef _DEBUG
|
sl@0
|
106 |
if( NULL == iImplementation )
|
sl@0
|
107 |
{
|
sl@0
|
108 |
RDebug::Print(_L("!!!!RMMRCClient::LogOn - iImplementation NULL"));
|
sl@0
|
109 |
}
|
sl@0
|
110 |
#endif
|
sl@0
|
111 |
|
sl@0
|
112 |
TUint64 contextId = 0;
|
sl@0
|
113 |
if(iImplementation)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
contextId = iImplementation->LogOn(aProcessId);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
DP0_RET(contextId, "contextId = %d");
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
/**
|
sl@0
|
122 |
*
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
EXPORT_C TInt RMMRCClient::SendResourceRequest(MLogicalChain* aLogicalChainLastCommited, MLogicalChain* aLogicalChainRequested, CAudioContext* aContext)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
DP_CONTEXT(----> RMMRCClient::SendResourceRequest *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
127 |
DP_IN();
|
sl@0
|
128 |
|
sl@0
|
129 |
if( NULL == iImplementation )
|
sl@0
|
130 |
{
|
sl@0
|
131 |
#ifdef _DEBUG
|
sl@0
|
132 |
RDebug::Print(_L("!!!!RMMRCClient::SendResourceRequest - iImplementation NULL"));
|
sl@0
|
133 |
#endif
|
sl@0
|
134 |
DP0_RET(KErrCompletion, "error = %d");
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
TInt error = iImplementation->SendResourceRequest(aLogicalChainLastCommited, aLogicalChainRequested, aContext);
|
sl@0
|
138 |
|
sl@0
|
139 |
DP0_RET(error, "error = %d");
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
/**
|
sl@0
|
143 |
*
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
EXPORT_C TInt RMMRCClient::SendResourceConfirmation()
|
sl@0
|
146 |
{
|
sl@0
|
147 |
DP_CONTEXT(----> RMMRCClient::SendResourceConfirmation *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
148 |
DP_IN();
|
sl@0
|
149 |
TInt err = KErrNotSupported;
|
sl@0
|
150 |
DP0_RET(err, "%d");
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
/**
|
sl@0
|
154 |
*
|
sl@0
|
155 |
*/
|
sl@0
|
156 |
EXPORT_C TInt RMMRCClient::SendResourceUpdateResult()
|
sl@0
|
157 |
{
|
sl@0
|
158 |
DP_CONTEXT(----> RMMRCClient::SendResourceUpdateResult *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
159 |
DP_IN();
|
sl@0
|
160 |
TInt err = KErrNotSupported;
|
sl@0
|
161 |
DP0_RET(err, "%d");
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
/**
|
sl@0
|
165 |
*
|
sl@0
|
166 |
*/
|
sl@0
|
167 |
EXPORT_C TInt RMMRCClient::SendResourceErrorNotification()
|
sl@0
|
168 |
{
|
sl@0
|
169 |
DP_CONTEXT(----> RMMRCClient::SendResourceErrorNotification *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
170 |
DP_IN();
|
sl@0
|
171 |
DP_IN();
|
sl@0
|
172 |
TInt err = KErrNotSupported;
|
sl@0
|
173 |
DP0_RET(err, "%d");
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
/**
|
sl@0
|
177 |
*
|
sl@0
|
178 |
*/
|
sl@0
|
179 |
EXPORT_C TInt RMMRCClient::RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
DP_CONTEXT(RMMRCClient::RegisterAsClient *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
182 |
DP_IN();
|
sl@0
|
183 |
|
sl@0
|
184 |
if( NULL == iImplementation )
|
sl@0
|
185 |
{
|
sl@0
|
186 |
#ifdef _DEBUG
|
sl@0
|
187 |
RDebug::Print(_L("!!!!RMMRCClient::RegisterAsClient - iImplementation NULL"));
|
sl@0
|
188 |
#endif
|
sl@0
|
189 |
DP0_RET(KErrCompletion, "error = %d");
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
TInt err = iImplementation->RegisterAsClient(aEventType, aNotificationRegistrationData);
|
sl@0
|
193 |
|
sl@0
|
194 |
DP0_RET(err, "%d");
|
sl@0
|
195 |
}
|
sl@0
|
196 |
|
sl@0
|
197 |
/**
|
sl@0
|
198 |
*
|
sl@0
|
199 |
*/
|
sl@0
|
200 |
EXPORT_C TInt RMMRCClient::CancelRegisterAsClient(TUid aEventType)
|
sl@0
|
201 |
{
|
sl@0
|
202 |
DP_CONTEXT(RMMRCClient::CancelRegisterAsClient *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
203 |
DP_IN();
|
sl@0
|
204 |
|
sl@0
|
205 |
if( NULL == iImplementation )
|
sl@0
|
206 |
{
|
sl@0
|
207 |
#ifdef _DEBUG
|
sl@0
|
208 |
RDebug::Print(_L("!!!!RMMRCClient::CancelRegisterAsClient - iImplementation NULL"));
|
sl@0
|
209 |
#endif
|
sl@0
|
210 |
DP0_RET(KErrCompletion, "error = %d");
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
TInt err = iImplementation->CancelRegisterAsClient(aEventType);
|
sl@0
|
214 |
|
sl@0
|
215 |
DP0_RET(err, "%d");
|
sl@0
|
216 |
}
|
sl@0
|
217 |
|
sl@0
|
218 |
/**
|
sl@0
|
219 |
*
|
sl@0
|
220 |
*/
|
sl@0
|
221 |
EXPORT_C TInt RMMRCClient::WillResumePlay()
|
sl@0
|
222 |
{
|
sl@0
|
223 |
DP_CONTEXT(RMMRCClient::WillResumePlay *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
224 |
DP_IN();
|
sl@0
|
225 |
|
sl@0
|
226 |
if( NULL == iImplementation )
|
sl@0
|
227 |
{
|
sl@0
|
228 |
#ifdef _DEBUG
|
sl@0
|
229 |
RDebug::Print(_L("!!!!RMMRCClient::WillResumePlay - iImplementation NULL"));
|
sl@0
|
230 |
#endif
|
sl@0
|
231 |
DP0_RET(KErrCompletion, "error = %d");
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|
sl@0
|
234 |
TInt err = iImplementation->WillResumePlay();
|
sl@0
|
235 |
|
sl@0
|
236 |
DP0_RET(err, "%d");
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
EXPORT_C void RMMRCClient::ResetMessages()
|
sl@0
|
240 |
{
|
sl@0
|
241 |
DP_CONTEXT(RMMRCClient::ResetMessages *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
242 |
DP_IN();
|
sl@0
|
243 |
|
sl@0
|
244 |
iImplementation->ResetMessages();
|
sl@0
|
245 |
|
sl@0
|
246 |
DP_OUT();
|
sl@0
|
247 |
}
|
sl@0
|
248 |
//EOF
|