sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description: DRM PlayUtility
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
// INCLUDE FILES
|
sl@0
|
22 |
#include <DrmAudioSamplePlayer.h>
|
sl@0
|
23 |
#include "DRMPlayClientServer.h"
|
sl@0
|
24 |
#include "mmfclientdrmaudioplayer.h"
|
sl@0
|
25 |
#include <mmf/common/mmfcontrollerpluginresolver.h>
|
sl@0
|
26 |
#include <mmf/common/mmfbase.h>
|
sl@0
|
27 |
#include <mmf/common/mmfdrmcustomcommands.h>
|
sl@0
|
28 |
#include "drmaudioplayeradaptation.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
// This is the UID defined by custom interface builder
|
sl@0
|
31 |
const TUid KUidCustomInterfaceBuilderImpl = {0x10207A8E};
|
sl@0
|
32 |
|
sl@0
|
33 |
#ifdef _DEBUG
|
sl@0
|
34 |
#define DEP_PRN0(str) RDebug::Print(str)
|
sl@0
|
35 |
#define DEP_PRN1(str, v1) RDebug::Print(str, v1)
|
sl@0
|
36 |
#define DEP_PRN2(str, v1, v2) RDebug::Print(str, v1, v2)
|
sl@0
|
37 |
#else
|
sl@0
|
38 |
#define DEP_PRN0(str)
|
sl@0
|
39 |
#define DEP_PRN1(str, v1)
|
sl@0
|
40 |
#define DEP_PRN2(str, v1, v2)
|
sl@0
|
41 |
#endif // _DEBUG
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
// ============================= LOCAL FUNCTIONS ===============================
|
sl@0
|
45 |
|
sl@0
|
46 |
// -----------------------------------------------------------------------------
|
sl@0
|
47 |
// CDrmPlayerUtility::NewL
|
sl@0
|
48 |
// Constructs and initialises a new instance of the audio player utility.
|
sl@0
|
49 |
// (other items were commented in a header).
|
sl@0
|
50 |
// -----------------------------------------------------------------------------
|
sl@0
|
51 |
//
|
sl@0
|
52 |
EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewL(
|
sl@0
|
53 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
54 |
TInt aPriority,
|
sl@0
|
55 |
TMdaPriorityPreference aPref)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility();
|
sl@0
|
58 |
CleanupStack::PushL(self);
|
sl@0
|
59 |
self->iProperties = CDrmAudioPlayerAdaptation::NewL( aCallback, aPriority, aPref );
|
sl@0
|
60 |
CleanupStack::Pop(self);
|
sl@0
|
61 |
return self;
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
// -----------------------------------------------------------------------------
|
sl@0
|
65 |
// CDrmPlayerUtility::NewFilePlayerL
|
sl@0
|
66 |
// Constructs and initialises a new instance of the audio player utility for
|
sl@0
|
67 |
// playing sampled audio data from a file. The audio data must be in a supported
|
sl@0
|
68 |
// format (e.g. WAV and AU).
|
sl@0
|
69 |
// (other items were commented in a header).
|
sl@0
|
70 |
// -----------------------------------------------------------------------------
|
sl@0
|
71 |
//
|
sl@0
|
72 |
EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewFilePlayerL(
|
sl@0
|
73 |
const TDesC& aFileName,
|
sl@0
|
74 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
75 |
TInt aPriority,
|
sl@0
|
76 |
TMdaPriorityPreference aPref)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility();
|
sl@0
|
79 |
CleanupStack::PushL(self);
|
sl@0
|
80 |
self->iProperties = CDrmAudioPlayerAdaptation::NewFilePlayerL(aFileName, aCallback, aPriority, aPref);
|
sl@0
|
81 |
CleanupStack::Pop(self);
|
sl@0
|
82 |
return self;
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
// -----------------------------------------------------------------------------
|
sl@0
|
86 |
// CDrmPlayerUtility::NewDesPlayerL
|
sl@0
|
87 |
// Constructs and initialises a new instance of the audio player utility for
|
sl@0
|
88 |
// playing sampled audio data from a descriptor. The audio data must be in a
|
sl@0
|
89 |
// supported format (e.g. WAV and AU).
|
sl@0
|
90 |
// (other items were commented in a header).
|
sl@0
|
91 |
// -----------------------------------------------------------------------------
|
sl@0
|
92 |
//
|
sl@0
|
93 |
EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewDesPlayerL(
|
sl@0
|
94 |
const TDesC8& aData,
|
sl@0
|
95 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
96 |
TInt aPriority,
|
sl@0
|
97 |
TMdaPriorityPreference aPref)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility();
|
sl@0
|
100 |
CleanupStack::PushL(self);
|
sl@0
|
101 |
self->iProperties = CDrmAudioPlayerAdaptation::NewDesPlayerL( aData, aCallback, aPriority, aPref );
|
sl@0
|
102 |
CleanupStack::Pop(self);
|
sl@0
|
103 |
return self;
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
// -----------------------------------------------------------------------------
|
sl@0
|
107 |
// CDrmPlayerUtility::NewDesPlayerReadOnlyL
|
sl@0
|
108 |
// Constructs and initialises a new instance of the audio player utility for
|
sl@0
|
109 |
// playing sampled audio data from a read only descriptor. The audio data must
|
sl@0
|
110 |
// be in a supported format (e.g. WAV and AU).
|
sl@0
|
111 |
// (other items were commented in a header).
|
sl@0
|
112 |
// -----------------------------------------------------------------------------
|
sl@0
|
113 |
//
|
sl@0
|
114 |
EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewDesPlayerReadOnlyL(
|
sl@0
|
115 |
const TDesC8& aData,
|
sl@0
|
116 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
117 |
TInt aPriority,
|
sl@0
|
118 |
TMdaPriorityPreference aPref)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility();
|
sl@0
|
121 |
CleanupStack::PushL(self);
|
sl@0
|
122 |
self->iProperties = CDrmAudioPlayerAdaptation::NewDesPlayerReadOnlyL(aData, aCallback, aPriority, aPref);
|
sl@0
|
123 |
CleanupStack::Pop(self);
|
sl@0
|
124 |
return self;
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
// Destructor
|
sl@0
|
128 |
EXPORT_C CDrmPlayerUtility::~CDrmPlayerUtility()
|
sl@0
|
129 |
{
|
sl@0
|
130 |
delete iProperties;
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
// -----------------------------------------------------------------------------
|
sl@0
|
134 |
// CDrmPlayerUtility::Play
|
sl@0
|
135 |
// Begins playback of the initialised audio sample at the current volume and
|
sl@0
|
136 |
// priority levels. When playing of the audio sample is complete, successfully
|
sl@0
|
137 |
// or otherwise, the callback function MMdaAudioPlayerCallback::MapcPlayComplete()
|
sl@0
|
138 |
// is called.
|
sl@0
|
139 |
// (other items were commented in a header).
|
sl@0
|
140 |
// -----------------------------------------------------------------------------
|
sl@0
|
141 |
//
|
sl@0
|
142 |
EXPORT_C void CDrmPlayerUtility::Play()
|
sl@0
|
143 |
{
|
sl@0
|
144 |
iProperties->Play();
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
// -----------------------------------------------------------------------------
|
sl@0
|
148 |
// CDrmPlayerUtility::Stop
|
sl@0
|
149 |
// Stops playback of the audio sample as soon as possible. If the audio sample
|
sl@0
|
150 |
// is playing, playback is stopped as soon as possible. If playback is already
|
sl@0
|
151 |
// complete, nothing further happens as a result of calling this function. The
|
sl@0
|
152 |
// callback function MMdaAudioPlayerCallback::MapcPlayComplete() is not called.
|
sl@0
|
153 |
// (other items were commented in a header).
|
sl@0
|
154 |
// -----------------------------------------------------------------------------
|
sl@0
|
155 |
//
|
sl@0
|
156 |
EXPORT_C void CDrmPlayerUtility::Stop()
|
sl@0
|
157 |
{
|
sl@0
|
158 |
iProperties->Stop();
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
// -----------------------------------------------------------------------------
|
sl@0
|
162 |
// CDrmPlayerUtility::Pause
|
sl@0
|
163 |
// Pauses the playback of the audio clip.
|
sl@0
|
164 |
// (other items were commented in a header).
|
sl@0
|
165 |
// -----------------------------------------------------------------------------
|
sl@0
|
166 |
//
|
sl@0
|
167 |
EXPORT_C TInt CDrmPlayerUtility::Pause()
|
sl@0
|
168 |
{
|
sl@0
|
169 |
return iProperties->Pause();
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
|
sl@0
|
173 |
// -----------------------------------------------------------------------------
|
sl@0
|
174 |
// CDrmPlayerUtility::SetVolume
|
sl@0
|
175 |
// Changes the current playback volume to a specified value. The volume can be
|
sl@0
|
176 |
// changed before or during playback and is effective immediately.
|
sl@0
|
177 |
// (other items were commented in a header).
|
sl@0
|
178 |
// -----------------------------------------------------------------------------
|
sl@0
|
179 |
//
|
sl@0
|
180 |
EXPORT_C void CDrmPlayerUtility::SetVolume(
|
sl@0
|
181 |
TInt aVolume)
|
sl@0
|
182 |
{
|
sl@0
|
183 |
iProperties->SetVolume(aVolume);
|
sl@0
|
184 |
}
|
sl@0
|
185 |
|
sl@0
|
186 |
|
sl@0
|
187 |
// -----------------------------------------------------------------------------
|
sl@0
|
188 |
// CDrmPlayerUtility::SetRepeats
|
sl@0
|
189 |
// Sets the number of times the audio sample is to be repeated during the playback
|
sl@0
|
190 |
// operation. A period of silence can follow each playing of the sample. The
|
sl@0
|
191 |
// audio sample can be repeated indefinitely.
|
sl@0
|
192 |
// (other items were commented in a header).
|
sl@0
|
193 |
// -----------------------------------------------------------------------------
|
sl@0
|
194 |
//
|
sl@0
|
195 |
EXPORT_C void CDrmPlayerUtility::SetRepeats(
|
sl@0
|
196 |
TInt aRepeatNumberOfTimes,
|
sl@0
|
197 |
const TTimeIntervalMicroSeconds& aTrailingSilence)
|
sl@0
|
198 |
{
|
sl@0
|
199 |
iProperties->SetRepeats(aRepeatNumberOfTimes,aTrailingSilence);
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
// -----------------------------------------------------------------------------
|
sl@0
|
203 |
// CDrmPlayerUtility::SetVolumeRamp
|
sl@0
|
204 |
// Defines the period over which the volume level is to rise smoothly from nothing
|
sl@0
|
205 |
// to the normal volume level.
|
sl@0
|
206 |
// (other items were commented in a header).
|
sl@0
|
207 |
// -----------------------------------------------------------------------------
|
sl@0
|
208 |
//
|
sl@0
|
209 |
EXPORT_C void CDrmPlayerUtility::SetVolumeRamp(
|
sl@0
|
210 |
const TTimeIntervalMicroSeconds& aRampDuration)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
iProperties->SetVolumeRamp(aRampDuration);
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
// -----------------------------------------------------------------------------
|
sl@0
|
216 |
// CDrmPlayerUtility::Duration
|
sl@0
|
217 |
// Returns the duration of the audio sample. The function raises a
|
sl@0
|
218 |
// CMdaAudioPlayerUtility 1 panic if the audio player utility is not initialised.
|
sl@0
|
219 |
// (other items were commented in a header).
|
sl@0
|
220 |
// -----------------------------------------------------------------------------
|
sl@0
|
221 |
//
|
sl@0
|
222 |
EXPORT_C const TTimeIntervalMicroSeconds& CDrmPlayerUtility::Duration()
|
sl@0
|
223 |
{
|
sl@0
|
224 |
return iProperties->Duration();
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
// -----------------------------------------------------------------------------
|
sl@0
|
228 |
// CDrmPlayerUtility::MaxVolume
|
sl@0
|
229 |
// Returns an integer representing the maximum volume. This is the maximum value
|
sl@0
|
230 |
// which can be passed to CMdaAudioPlayerUtility::SetVolume().
|
sl@0
|
231 |
// (other items were commented in a header).
|
sl@0
|
232 |
// -----------------------------------------------------------------------------
|
sl@0
|
233 |
//
|
sl@0
|
234 |
EXPORT_C TInt CDrmPlayerUtility::MaxVolume()
|
sl@0
|
235 |
{
|
sl@0
|
236 |
return iProperties->MaxVolume();
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
// -----------------------------------------------------------------------------
|
sl@0
|
240 |
// CDrmPlayerUtility::OpenFileL
|
sl@0
|
241 |
// Opens an audio clip from a file. The audio data must be in a supported
|
sl@0
|
242 |
// format (for example, WAV or AU). This function leaves with KErrInUse if there
|
sl@0
|
243 |
// is a previous open statement awaiting notification of completion.
|
sl@0
|
244 |
// (other items were commented in a header).
|
sl@0
|
245 |
// -----------------------------------------------------------------------------
|
sl@0
|
246 |
//
|
sl@0
|
247 |
EXPORT_C void CDrmPlayerUtility::OpenFileL(
|
sl@0
|
248 |
const TDesC &aFileName)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
iProperties->OpenFileL(aFileName);
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
// -----------------------------------------------------------------------------
|
sl@0
|
254 |
// CDrmPlayerUtility::OpenFileL
|
sl@0
|
255 |
// Opens an audio clip from a file. The audio data must be in a supported
|
sl@0
|
256 |
// format (for example, WAV or AU). This function leaves with KErrInUse if there
|
sl@0
|
257 |
// is a previous open statement awaiting notification of completion.
|
sl@0
|
258 |
// (other items were commented in a header).
|
sl@0
|
259 |
// -----------------------------------------------------------------------------
|
sl@0
|
260 |
//
|
sl@0
|
261 |
EXPORT_C void CDrmPlayerUtility::OpenFileL(
|
sl@0
|
262 |
const RFile& aFile)
|
sl@0
|
263 |
{
|
sl@0
|
264 |
iProperties->OpenFileL(aFile);
|
sl@0
|
265 |
}
|
sl@0
|
266 |
|
sl@0
|
267 |
// -----------------------------------------------------------------------------
|
sl@0
|
268 |
// CDrmPlayerUtility::OpenFileL
|
sl@0
|
269 |
// Opens an audio clip from a file. The audio data must be in a supported
|
sl@0
|
270 |
// format (for example, WAV or AU). This function leaves with KErrInUse if there
|
sl@0
|
271 |
// is a previous open statement awaiting notification of completion.
|
sl@0
|
272 |
// (other items were commented in a header).
|
sl@0
|
273 |
// -----------------------------------------------------------------------------
|
sl@0
|
274 |
//
|
sl@0
|
275 |
EXPORT_C void CDrmPlayerUtility::OpenFileL(
|
sl@0
|
276 |
#ifdef SYMBIAN_CAF_V2
|
sl@0
|
277 |
const TMMSource& aSource
|
sl@0
|
278 |
#else
|
sl@0
|
279 |
const TMMSource& /*aSource*/
|
sl@0
|
280 |
#endif
|
sl@0
|
281 |
)
|
sl@0
|
282 |
{
|
sl@0
|
283 |
#ifdef SYMBIAN_CAF_V2
|
sl@0
|
284 |
iProperties->OpenFileL(aSource);
|
sl@0
|
285 |
#else
|
sl@0
|
286 |
User::Leave(KErrNotSupported);
|
sl@0
|
287 |
#endif
|
sl@0
|
288 |
}
|
sl@0
|
289 |
|
sl@0
|
290 |
// -----------------------------------------------------------------------------
|
sl@0
|
291 |
// CDrmPlayerUtility::OpenDesL
|
sl@0
|
292 |
// Opens an audio clip from a descriptor. The audio data must be in a supported
|
sl@0
|
293 |
// format (for example, WAV or AU).
|
sl@0
|
294 |
// (other items were commented in a header).
|
sl@0
|
295 |
// -----------------------------------------------------------------------------
|
sl@0
|
296 |
//
|
sl@0
|
297 |
EXPORT_C void CDrmPlayerUtility::OpenDesL(
|
sl@0
|
298 |
const TDesC8& aDescriptor)
|
sl@0
|
299 |
{
|
sl@0
|
300 |
iProperties->OpenDesL(aDescriptor);
|
sl@0
|
301 |
}
|
sl@0
|
302 |
|
sl@0
|
303 |
// -----------------------------------------------------------------------------
|
sl@0
|
304 |
// CDrmPlayerUtility::OpenUrlL
|
sl@0
|
305 |
// Opens an audio clip from a URL. The audio data must be in a supported format
|
sl@0
|
306 |
// (for example, WAV or AU).
|
sl@0
|
307 |
// (other items were commented in a header).
|
sl@0
|
308 |
// -----------------------------------------------------------------------------
|
sl@0
|
309 |
//
|
sl@0
|
310 |
EXPORT_C void CDrmPlayerUtility::OpenUrlL(
|
sl@0
|
311 |
const TDesC& aUrl,
|
sl@0
|
312 |
TInt aIapId,
|
sl@0
|
313 |
const TDesC8& aMimeType)
|
sl@0
|
314 |
{
|
sl@0
|
315 |
iProperties->OpenUrlL(aUrl,aIapId,aMimeType);
|
sl@0
|
316 |
}
|
sl@0
|
317 |
|
sl@0
|
318 |
// -----------------------------------------------------------------------------
|
sl@0
|
319 |
// CDrmPlayerUtility::Close
|
sl@0
|
320 |
// Closes the current audio clip (allowing another clip to be opened).
|
sl@0
|
321 |
// (other items were commented in a header).
|
sl@0
|
322 |
// -----------------------------------------------------------------------------
|
sl@0
|
323 |
//
|
sl@0
|
324 |
EXPORT_C void CDrmPlayerUtility::Close()
|
sl@0
|
325 |
{
|
sl@0
|
326 |
iProperties->Close();
|
sl@0
|
327 |
}
|
sl@0
|
328 |
|
sl@0
|
329 |
// -----------------------------------------------------------------------------
|
sl@0
|
330 |
// CDrmPlayerUtility::GetPosition
|
sl@0
|
331 |
// Returns the current playback position in microseconds from the start
|
sl@0
|
332 |
// of the clip.
|
sl@0
|
333 |
// (other items were commented in a header).
|
sl@0
|
334 |
// -----------------------------------------------------------------------------
|
sl@0
|
335 |
//
|
sl@0
|
336 |
EXPORT_C TInt CDrmPlayerUtility::GetPosition(
|
sl@0
|
337 |
TTimeIntervalMicroSeconds& aPosition)
|
sl@0
|
338 |
{
|
sl@0
|
339 |
return iProperties->GetPosition(aPosition);
|
sl@0
|
340 |
}
|
sl@0
|
341 |
|
sl@0
|
342 |
// -----------------------------------------------------------------------------
|
sl@0
|
343 |
// CDrmPlayerUtility::SetPosition
|
sl@0
|
344 |
// Sets the current playback position in microseconds from the start of the clip.
|
sl@0
|
345 |
// (other items were commented in a header).
|
sl@0
|
346 |
// -----------------------------------------------------------------------------
|
sl@0
|
347 |
//
|
sl@0
|
348 |
EXPORT_C void CDrmPlayerUtility::SetPosition(
|
sl@0
|
349 |
const TTimeIntervalMicroSeconds& aPosition)
|
sl@0
|
350 |
{
|
sl@0
|
351 |
iProperties->SetPosition(aPosition);
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
// -----------------------------------------------------------------------------
|
sl@0
|
355 |
// CDrmPlayerUtility::SetPriority
|
sl@0
|
356 |
// Sets the priority for playback. This is used to arbitrate between multiple
|
sl@0
|
357 |
// objects trying to access a single sound device.
|
sl@0
|
358 |
// (other items were commented in a header).
|
sl@0
|
359 |
// -----------------------------------------------------------------------------
|
sl@0
|
360 |
//
|
sl@0
|
361 |
EXPORT_C TInt CDrmPlayerUtility::SetPriority(
|
sl@0
|
362 |
TInt aPriority,
|
sl@0
|
363 |
TMdaPriorityPreference aPref)
|
sl@0
|
364 |
{
|
sl@0
|
365 |
return iProperties->SetPriority(aPriority,aPref);
|
sl@0
|
366 |
}
|
sl@0
|
367 |
|
sl@0
|
368 |
// -----------------------------------------------------------------------------
|
sl@0
|
369 |
// CDrmPlayerUtility::GetVolume
|
sl@0
|
370 |
// Returns the current playback volume.
|
sl@0
|
371 |
// (other items were commented in a header).
|
sl@0
|
372 |
// -----------------------------------------------------------------------------
|
sl@0
|
373 |
//
|
sl@0
|
374 |
EXPORT_C TInt CDrmPlayerUtility::GetVolume(
|
sl@0
|
375 |
TInt& aVolume)
|
sl@0
|
376 |
{
|
sl@0
|
377 |
return iProperties->GetVolume(aVolume);
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
// -----------------------------------------------------------------------------
|
sl@0
|
381 |
// CDrmPlayerUtility::GetNumberOfMetaDataEntries
|
sl@0
|
382 |
// Returns the number of meta data entries in the current audio clip.
|
sl@0
|
383 |
// (other items were commented in a header).
|
sl@0
|
384 |
// -----------------------------------------------------------------------------
|
sl@0
|
385 |
//
|
sl@0
|
386 |
EXPORT_C TInt CDrmPlayerUtility::GetNumberOfMetaDataEntries(
|
sl@0
|
387 |
TInt& aNumEntries)
|
sl@0
|
388 |
{
|
sl@0
|
389 |
return iProperties->GetNumberOfMetaDataEntries(aNumEntries);
|
sl@0
|
390 |
}
|
sl@0
|
391 |
|
sl@0
|
392 |
// -----------------------------------------------------------------------------
|
sl@0
|
393 |
// CDrmPlayerUtility::GetMetaDataEntryL
|
sl@0
|
394 |
// Returns the requested meta data entry.
|
sl@0
|
395 |
// (other items were commented in a header).
|
sl@0
|
396 |
// -----------------------------------------------------------------------------
|
sl@0
|
397 |
//
|
sl@0
|
398 |
EXPORT_C CMMFMetaDataEntry* CDrmPlayerUtility::GetMetaDataEntryL(
|
sl@0
|
399 |
TInt aMetaDataIndex)
|
sl@0
|
400 |
{
|
sl@0
|
401 |
return iProperties->GetMetaDataEntryL(aMetaDataIndex);
|
sl@0
|
402 |
}
|
sl@0
|
403 |
|
sl@0
|
404 |
// -----------------------------------------------------------------------------
|
sl@0
|
405 |
// CDrmPlayerUtility::SetPlayWindow
|
sl@0
|
406 |
// Sets the current playback window.
|
sl@0
|
407 |
// (other items were commented in a header).
|
sl@0
|
408 |
// -----------------------------------------------------------------------------
|
sl@0
|
409 |
//
|
sl@0
|
410 |
EXPORT_C TInt CDrmPlayerUtility::SetPlayWindow(
|
sl@0
|
411 |
const TTimeIntervalMicroSeconds& aStart,
|
sl@0
|
412 |
const TTimeIntervalMicroSeconds& aEnd)
|
sl@0
|
413 |
{
|
sl@0
|
414 |
return iProperties->SetPlayWindow(aStart,aEnd);
|
sl@0
|
415 |
}
|
sl@0
|
416 |
|
sl@0
|
417 |
// -----------------------------------------------------------------------------
|
sl@0
|
418 |
// CDrmPlayerUtility::ClearPlayWindow
|
sl@0
|
419 |
// Clears the current playback window.
|
sl@0
|
420 |
// (other items were commented in a header).
|
sl@0
|
421 |
// -----------------------------------------------------------------------------
|
sl@0
|
422 |
//
|
sl@0
|
423 |
EXPORT_C TInt CDrmPlayerUtility::ClearPlayWindow()
|
sl@0
|
424 |
{
|
sl@0
|
425 |
return iProperties->ClearPlayWindow();
|
sl@0
|
426 |
}
|
sl@0
|
427 |
|
sl@0
|
428 |
// -----------------------------------------------------------------------------
|
sl@0
|
429 |
// CDrmPlayerUtility::SetBalance
|
sl@0
|
430 |
// Sets the current playback balance.
|
sl@0
|
431 |
// (other items were commented in a header).
|
sl@0
|
432 |
// -----------------------------------------------------------------------------
|
sl@0
|
433 |
//
|
sl@0
|
434 |
EXPORT_C TInt CDrmPlayerUtility::SetBalance(
|
sl@0
|
435 |
TInt aBalance)
|
sl@0
|
436 |
{
|
sl@0
|
437 |
return iProperties->SetBalance(aBalance);
|
sl@0
|
438 |
}
|
sl@0
|
439 |
|
sl@0
|
440 |
// -----------------------------------------------------------------------------
|
sl@0
|
441 |
// CDrmPlayerUtility::GetBalance
|
sl@0
|
442 |
// Returns the current playback balance.
|
sl@0
|
443 |
// (other items were commented in a header).
|
sl@0
|
444 |
// -----------------------------------------------------------------------------
|
sl@0
|
445 |
//
|
sl@0
|
446 |
EXPORT_C TInt CDrmPlayerUtility::GetBalance(
|
sl@0
|
447 |
TInt& aBalance)
|
sl@0
|
448 |
{
|
sl@0
|
449 |
return iProperties->GetBalance(aBalance);
|
sl@0
|
450 |
}
|
sl@0
|
451 |
|
sl@0
|
452 |
// -----------------------------------------------------------------------------
|
sl@0
|
453 |
// CDrmPlayerUtility::GetBitRate
|
sl@0
|
454 |
// Returns the bit rate of the audio clip
|
sl@0
|
455 |
// (other items were commented in a header).
|
sl@0
|
456 |
// -----------------------------------------------------------------------------
|
sl@0
|
457 |
//
|
sl@0
|
458 |
EXPORT_C TInt CDrmPlayerUtility::GetBitRate(
|
sl@0
|
459 |
TUint& aBitRate)
|
sl@0
|
460 |
{
|
sl@0
|
461 |
return iProperties->GetBitRate(aBitRate);
|
sl@0
|
462 |
}
|
sl@0
|
463 |
|
sl@0
|
464 |
// -----------------------------------------------------------------------------
|
sl@0
|
465 |
// CDrmPlayerUtility::RegisterForAudioLoadingNotification
|
sl@0
|
466 |
// Registers callback object to receive notifications of audio loading/rebuffering.
|
sl@0
|
467 |
// (other items were commented in a header).
|
sl@0
|
468 |
// -----------------------------------------------------------------------------
|
sl@0
|
469 |
//
|
sl@0
|
470 |
EXPORT_C void CDrmPlayerUtility::RegisterForAudioLoadingNotification(
|
sl@0
|
471 |
MAudioLoadingObserver& aCallback)
|
sl@0
|
472 |
{
|
sl@0
|
473 |
iProperties->RegisterForAudioLoadingNotification(aCallback);
|
sl@0
|
474 |
}
|
sl@0
|
475 |
|
sl@0
|
476 |
// -----------------------------------------------------------------------------
|
sl@0
|
477 |
// CDrmPlayerUtility::GetAudioLoadingProgressL
|
sl@0
|
478 |
// Returns the current progress of audio loading
|
sl@0
|
479 |
// (other items were commented in a header).
|
sl@0
|
480 |
// -----------------------------------------------------------------------------
|
sl@0
|
481 |
//
|
sl@0
|
482 |
EXPORT_C void CDrmPlayerUtility::GetAudioLoadingProgressL(
|
sl@0
|
483 |
TInt& aPercentageProgress)
|
sl@0
|
484 |
{
|
sl@0
|
485 |
iProperties->GetAudioLoadingProgressL(aPercentageProgress);
|
sl@0
|
486 |
}
|
sl@0
|
487 |
|
sl@0
|
488 |
// -----------------------------------------------------------------------------
|
sl@0
|
489 |
// CDrmPlayerUtility::ControllerImplementationInformationL
|
sl@0
|
490 |
// Returns the controller implementation information associated with the current controller.
|
sl@0
|
491 |
// (other items were commented in a header).
|
sl@0
|
492 |
// -----------------------------------------------------------------------------
|
sl@0
|
493 |
//
|
sl@0
|
494 |
EXPORT_C const CMMFControllerImplementationInformation& CDrmPlayerUtility::ControllerImplementationInformationL()
|
sl@0
|
495 |
{
|
sl@0
|
496 |
return iProperties->ControllerImplementationInformationL();
|
sl@0
|
497 |
}
|
sl@0
|
498 |
|
sl@0
|
499 |
// -----------------------------------------------------------------------------
|
sl@0
|
500 |
// CDrmPlayerUtility::CustomCommandSync
|
sl@0
|
501 |
// Sends a synchronous custom command to the controller.
|
sl@0
|
502 |
// (other items were commented in a header).
|
sl@0
|
503 |
// -----------------------------------------------------------------------------
|
sl@0
|
504 |
//
|
sl@0
|
505 |
EXPORT_C TInt CDrmPlayerUtility::CustomCommandSync(
|
sl@0
|
506 |
const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
507 |
TInt aFunction,
|
sl@0
|
508 |
const TDesC8& aDataTo1,
|
sl@0
|
509 |
const TDesC8& aDataTo2,
|
sl@0
|
510 |
TDes8& aDataFrom)
|
sl@0
|
511 |
{
|
sl@0
|
512 |
TInt status( KErrAccessDenied );
|
sl@0
|
513 |
status = iProperties->CustomCommandSync(aDestination,aFunction,aDataTo1,aDataTo2,aDataFrom);
|
sl@0
|
514 |
|
sl@0
|
515 |
return status;
|
sl@0
|
516 |
}
|
sl@0
|
517 |
|
sl@0
|
518 |
// -----------------------------------------------------------------------------
|
sl@0
|
519 |
// CDrmPlayerUtility::CustomCommandSync
|
sl@0
|
520 |
// Sends a synchronous custom command to the controller.
|
sl@0
|
521 |
// (other items were commented in a header).
|
sl@0
|
522 |
// -----------------------------------------------------------------------------
|
sl@0
|
523 |
//
|
sl@0
|
524 |
EXPORT_C TInt CDrmPlayerUtility::CustomCommandSync(
|
sl@0
|
525 |
const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
526 |
TInt aFunction,
|
sl@0
|
527 |
const TDesC8& aDataTo1,
|
sl@0
|
528 |
const TDesC8& aDataTo2)
|
sl@0
|
529 |
{
|
sl@0
|
530 |
|
sl@0
|
531 |
TInt status( KErrAccessDenied );
|
sl@0
|
532 |
status = iProperties->CustomCommandSync(aDestination,aFunction,aDataTo1,aDataTo2);
|
sl@0
|
533 |
return status;
|
sl@0
|
534 |
|
sl@0
|
535 |
}
|
sl@0
|
536 |
|
sl@0
|
537 |
// -----------------------------------------------------------------------------
|
sl@0
|
538 |
// CDrmPlayerUtility::CustomCommandAsync
|
sl@0
|
539 |
// Sends an asynchronous custom command to the controller
|
sl@0
|
540 |
// (other items were commented in a header).
|
sl@0
|
541 |
// -----------------------------------------------------------------------------
|
sl@0
|
542 |
//
|
sl@0
|
543 |
EXPORT_C void CDrmPlayerUtility::CustomCommandAsync(
|
sl@0
|
544 |
const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
545 |
TInt aFunction,
|
sl@0
|
546 |
const TDesC8& aDataTo1,
|
sl@0
|
547 |
const TDesC8& aDataTo2,
|
sl@0
|
548 |
TDes8& aDataFrom,
|
sl@0
|
549 |
TRequestStatus& aStatus)
|
sl@0
|
550 |
{
|
sl@0
|
551 |
|
sl@0
|
552 |
iProperties->CustomCommandAsync(aDestination,aFunction,aDataTo1,aDataTo2,aDataFrom,aStatus);
|
sl@0
|
553 |
|
sl@0
|
554 |
}
|
sl@0
|
555 |
|
sl@0
|
556 |
// -----------------------------------------------------------------------------
|
sl@0
|
557 |
// CDrmPlayerUtility::CustomCommandAsync
|
sl@0
|
558 |
// Sends an asynchronous custom command to the controller
|
sl@0
|
559 |
// (other items were commented in a header).
|
sl@0
|
560 |
// -----------------------------------------------------------------------------
|
sl@0
|
561 |
//
|
sl@0
|
562 |
EXPORT_C void CDrmPlayerUtility::CustomCommandAsync(
|
sl@0
|
563 |
const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
564 |
TInt aFunction,
|
sl@0
|
565 |
const TDesC8& aDataTo1,
|
sl@0
|
566 |
const TDesC8& aDataTo2,
|
sl@0
|
567 |
TRequestStatus& aStatus)
|
sl@0
|
568 |
{
|
sl@0
|
569 |
|
sl@0
|
570 |
iProperties->CustomCommandAsync(aDestination,aFunction,aDataTo1,aDataTo2,aStatus);
|
sl@0
|
571 |
|
sl@0
|
572 |
}
|
sl@0
|
573 |
//=========================================================================================================================
|
sl@0
|
574 |
|
sl@0
|
575 |
|
sl@0
|
576 |
|
sl@0
|
577 |
|
sl@0
|
578 |
// -----------------------------------------------------------------------------
|
sl@0
|
579 |
// CMMFDrmAudioPlayerUtility::NewL
|
sl@0
|
580 |
//
|
sl@0
|
581 |
// (other items were commented in a header).
|
sl@0
|
582 |
// -----------------------------------------------------------------------------
|
sl@0
|
583 |
//
|
sl@0
|
584 |
CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewL(
|
sl@0
|
585 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
586 |
TInt aPriority,
|
sl@0
|
587 |
TMdaPriorityPreference aPref)
|
sl@0
|
588 |
{
|
sl@0
|
589 |
CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard);
|
sl@0
|
590 |
CleanupStack::PushL(self);
|
sl@0
|
591 |
self->ConstructL(aPriority, aPref);
|
sl@0
|
592 |
CleanupStack::Pop(self);
|
sl@0
|
593 |
return self;
|
sl@0
|
594 |
}
|
sl@0
|
595 |
|
sl@0
|
596 |
// -----------------------------------------------------------------------------
|
sl@0
|
597 |
// CMMFDrmAudioPlayerUtility::NewFilePlayerL
|
sl@0
|
598 |
//
|
sl@0
|
599 |
// (other items were commented in a header).
|
sl@0
|
600 |
// -----------------------------------------------------------------------------
|
sl@0
|
601 |
//
|
sl@0
|
602 |
CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewFilePlayerL(
|
sl@0
|
603 |
const TDesC& aFileName,
|
sl@0
|
604 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
605 |
TInt aPriority,
|
sl@0
|
606 |
TMdaPriorityPreference aPref)
|
sl@0
|
607 |
{
|
sl@0
|
608 |
CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard);
|
sl@0
|
609 |
CleanupStack::PushL(self);
|
sl@0
|
610 |
self->ConstructL(aFileName,aPriority,aPref);
|
sl@0
|
611 |
CleanupStack::Pop(self);
|
sl@0
|
612 |
return self;
|
sl@0
|
613 |
}
|
sl@0
|
614 |
|
sl@0
|
615 |
// -----------------------------------------------------------------------------
|
sl@0
|
616 |
// CMMFDrmAudioPlayerUtility::NewDesPlayerL
|
sl@0
|
617 |
//
|
sl@0
|
618 |
// (other items were commented in a header).
|
sl@0
|
619 |
// -----------------------------------------------------------------------------
|
sl@0
|
620 |
//
|
sl@0
|
621 |
CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewDesPlayerL(
|
sl@0
|
622 |
const TDesC8& aData,
|
sl@0
|
623 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
624 |
TInt aPriority,
|
sl@0
|
625 |
TMdaPriorityPreference aPref)
|
sl@0
|
626 |
{
|
sl@0
|
627 |
CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard);
|
sl@0
|
628 |
CleanupStack::PushL(self);
|
sl@0
|
629 |
self->ConstructL(aData,aPriority,aPref);
|
sl@0
|
630 |
CleanupStack::Pop(self);
|
sl@0
|
631 |
return self;
|
sl@0
|
632 |
}
|
sl@0
|
633 |
|
sl@0
|
634 |
// -----------------------------------------------------------------------------
|
sl@0
|
635 |
// CMMFDrmAudioPlayerUtility::NewDesPlayerReadOnlyL
|
sl@0
|
636 |
//
|
sl@0
|
637 |
// (other items were commented in a header).
|
sl@0
|
638 |
// -----------------------------------------------------------------------------
|
sl@0
|
639 |
//
|
sl@0
|
640 |
CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewDesPlayerReadOnlyL(
|
sl@0
|
641 |
const TDesC8& aData,
|
sl@0
|
642 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
643 |
TInt aPriority,
|
sl@0
|
644 |
TMdaPriorityPreference aPref)
|
sl@0
|
645 |
{
|
sl@0
|
646 |
CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard);
|
sl@0
|
647 |
CleanupStack::PushL(self);
|
sl@0
|
648 |
self->ConstructReadOnlyL(aData,aPriority,aPref);
|
sl@0
|
649 |
CleanupStack::Pop(self);
|
sl@0
|
650 |
return self;
|
sl@0
|
651 |
}
|
sl@0
|
652 |
|
sl@0
|
653 |
|
sl@0
|
654 |
// Destructor
|
sl@0
|
655 |
CMMFDrmAudioPlayerUtility::~CMMFDrmAudioPlayerUtility()
|
sl@0
|
656 |
{
|
sl@0
|
657 |
Stop();
|
sl@0
|
658 |
Cancel();
|
sl@0
|
659 |
delete iDrm;
|
sl@0
|
660 |
delete iMetaDataBuffer;
|
sl@0
|
661 |
if(iDrmSession)
|
sl@0
|
662 |
{
|
sl@0
|
663 |
iDrmSession->Disconnect();
|
sl@0
|
664 |
iDrmSession->Close();
|
sl@0
|
665 |
delete iDrmSession;
|
sl@0
|
666 |
iDrmSession = NULL;
|
sl@0
|
667 |
}
|
sl@0
|
668 |
}
|
sl@0
|
669 |
|
sl@0
|
670 |
// -----------------------------------------------------------------------------
|
sl@0
|
671 |
// CMMFDrmAudioPlayerUtility::CMMFDrmAudioPlayerUtility
|
sl@0
|
672 |
//
|
sl@0
|
673 |
// (other items were commented in a header).
|
sl@0
|
674 |
// -----------------------------------------------------------------------------
|
sl@0
|
675 |
//
|
sl@0
|
676 |
CMMFDrmAudioPlayerUtility::CMMFDrmAudioPlayerUtility(
|
sl@0
|
677 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
678 |
TInt aActivePriority)
|
sl@0
|
679 |
: CActive(aActivePriority),
|
sl@0
|
680 |
iCallback(aCallback)
|
sl@0
|
681 |
{
|
sl@0
|
682 |
}
|
sl@0
|
683 |
|
sl@0
|
684 |
// -----------------------------------------------------------------------------
|
sl@0
|
685 |
// CMMFDrmAudioPlayerUtility::ConstructL
|
sl@0
|
686 |
//
|
sl@0
|
687 |
// (other items were commented in a header).
|
sl@0
|
688 |
// -----------------------------------------------------------------------------
|
sl@0
|
689 |
//
|
sl@0
|
690 |
void CMMFDrmAudioPlayerUtility::ConstructL(
|
sl@0
|
691 |
TInt aPriority,
|
sl@0
|
692 |
TMdaPriorityPreference aPref)
|
sl@0
|
693 |
{
|
sl@0
|
694 |
ConnectL();
|
sl@0
|
695 |
TDataStruct theStruct;
|
sl@0
|
696 |
|
sl@0
|
697 |
theStruct.iPriority = aPriority;
|
sl@0
|
698 |
theStruct.iPref = aPref;
|
sl@0
|
699 |
|
sl@0
|
700 |
TDataStructPckgBuf pckg(theStruct);
|
sl@0
|
701 |
iState = EInitializing;
|
sl@0
|
702 |
iDrmSession->Send(EDRMPlayServNewPlayerL,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct));
|
sl@0
|
703 |
}
|
sl@0
|
704 |
|
sl@0
|
705 |
// -----------------------------------------------------------------------------
|
sl@0
|
706 |
// CMMFDrmAudioPlayerUtility::ConstructL
|
sl@0
|
707 |
//
|
sl@0
|
708 |
// (other items were commented in a header).
|
sl@0
|
709 |
// -----------------------------------------------------------------------------
|
sl@0
|
710 |
//
|
sl@0
|
711 |
void CMMFDrmAudioPlayerUtility::ConstructL(
|
sl@0
|
712 |
const TDesC& aFileName,
|
sl@0
|
713 |
TInt aPriority,
|
sl@0
|
714 |
TMdaPriorityPreference aPref)
|
sl@0
|
715 |
{
|
sl@0
|
716 |
ConnectL();
|
sl@0
|
717 |
|
sl@0
|
718 |
iDrmSession->Send(EDRMPlayServSetPriorityPreference,TIpcArgs(aPriority,aPref));
|
sl@0
|
719 |
TDataStructPckgBuf pckgBuf;
|
sl@0
|
720 |
TDataStruct &theStruct = pckgBuf();
|
sl@0
|
721 |
|
sl@0
|
722 |
|
sl@0
|
723 |
|
sl@0
|
724 |
theStruct.iPriority = aPriority;
|
sl@0
|
725 |
theStruct.iPref = aPref;
|
sl@0
|
726 |
iFileName = aFileName;
|
sl@0
|
727 |
|
sl@0
|
728 |
iState = EInitializing;
|
sl@0
|
729 |
if (!IsActive())
|
sl@0
|
730 |
{
|
sl@0
|
731 |
iDrmSession->Send(EDRMPlayServNewFilePlayerL,TIpcArgs(&iAsyncCallback,&pckgBuf,&iErrorDurationStruct,&iFileName),iStatus);
|
sl@0
|
732 |
SetActive();
|
sl@0
|
733 |
}
|
sl@0
|
734 |
else
|
sl@0
|
735 |
{
|
sl@0
|
736 |
User::Leave(KErrNotReady);
|
sl@0
|
737 |
}
|
sl@0
|
738 |
}
|
sl@0
|
739 |
|
sl@0
|
740 |
// -----------------------------------------------------------------------------
|
sl@0
|
741 |
// CMMFDrmAudioPlayerUtility::ConstructL
|
sl@0
|
742 |
//
|
sl@0
|
743 |
// (other items were commented in a header).
|
sl@0
|
744 |
// -----------------------------------------------------------------------------
|
sl@0
|
745 |
//
|
sl@0
|
746 |
void CMMFDrmAudioPlayerUtility::ConstructL(
|
sl@0
|
747 |
const TDesC8& aData,
|
sl@0
|
748 |
TInt aPriority,
|
sl@0
|
749 |
TMdaPriorityPreference aPref)
|
sl@0
|
750 |
{
|
sl@0
|
751 |
ConnectL();
|
sl@0
|
752 |
TDataStruct theStruct;
|
sl@0
|
753 |
|
sl@0
|
754 |
theStruct.iData = aData;
|
sl@0
|
755 |
iDrmSession->Send(EDRMPlayServSetPriorityPreference,TIpcArgs(aPriority,aPref));
|
sl@0
|
756 |
|
sl@0
|
757 |
TDataStructPckgBuf pckg(theStruct);
|
sl@0
|
758 |
|
sl@0
|
759 |
iState = EInitializing;
|
sl@0
|
760 |
if (!IsActive())
|
sl@0
|
761 |
{
|
sl@0
|
762 |
iDrmSession->Send(EDRMPlayServNewDesPlayerL,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct),iStatus);
|
sl@0
|
763 |
SetActive();
|
sl@0
|
764 |
}
|
sl@0
|
765 |
else
|
sl@0
|
766 |
{
|
sl@0
|
767 |
User::Leave(KErrNotReady);
|
sl@0
|
768 |
}
|
sl@0
|
769 |
}
|
sl@0
|
770 |
|
sl@0
|
771 |
// -----------------------------------------------------------------------------
|
sl@0
|
772 |
// CMMFDrmAudioPlayerUtility::ConstructReadOnlyL
|
sl@0
|
773 |
//
|
sl@0
|
774 |
// (other items were commented in a header).
|
sl@0
|
775 |
// -----------------------------------------------------------------------------
|
sl@0
|
776 |
//
|
sl@0
|
777 |
void CMMFDrmAudioPlayerUtility::ConstructReadOnlyL(
|
sl@0
|
778 |
const TDesC8& aData,
|
sl@0
|
779 |
TInt aPriority,
|
sl@0
|
780 |
TMdaPriorityPreference aPref)
|
sl@0
|
781 |
{
|
sl@0
|
782 |
ConnectL();
|
sl@0
|
783 |
TDataStruct theStruct;
|
sl@0
|
784 |
|
sl@0
|
785 |
theStruct.iData = aData;
|
sl@0
|
786 |
iDrmSession->Send(EDRMPlayServSetPriorityPreference,TIpcArgs(aPriority,aPref));
|
sl@0
|
787 |
|
sl@0
|
788 |
TDataStructPckgBuf pckg(theStruct);
|
sl@0
|
789 |
|
sl@0
|
790 |
iState = EInitializing;
|
sl@0
|
791 |
if (!IsActive())
|
sl@0
|
792 |
{
|
sl@0
|
793 |
iDrmSession->Send(EDRMPlayServNewDesPlayerReadOnlyL,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct),iStatus);
|
sl@0
|
794 |
SetActive();
|
sl@0
|
795 |
}
|
sl@0
|
796 |
else
|
sl@0
|
797 |
{
|
sl@0
|
798 |
User::Leave(KErrNotReady);
|
sl@0
|
799 |
}
|
sl@0
|
800 |
}
|
sl@0
|
801 |
|
sl@0
|
802 |
// -----------------------------------------------------------------------------
|
sl@0
|
803 |
// CMMFDrmAudioPlayerUtility::ConnectL
|
sl@0
|
804 |
//
|
sl@0
|
805 |
// (other items were commented in a header).
|
sl@0
|
806 |
// -----------------------------------------------------------------------------
|
sl@0
|
807 |
//
|
sl@0
|
808 |
void CMMFDrmAudioPlayerUtility::ConnectL()
|
sl@0
|
809 |
{
|
sl@0
|
810 |
CActiveScheduler::Add(this);
|
sl@0
|
811 |
iDrmSession = new(ELeave) RDrmSession();
|
sl@0
|
812 |
User::LeaveIfError( iDrmSession->Connect() );
|
sl@0
|
813 |
}
|
sl@0
|
814 |
|
sl@0
|
815 |
// -----------------------------------------------------------------------------
|
sl@0
|
816 |
// CMMFDrmAudioPlayerUtility::OpenFileL
|
sl@0
|
817 |
//
|
sl@0
|
818 |
// (other items were commented in a header).
|
sl@0
|
819 |
// -----------------------------------------------------------------------------
|
sl@0
|
820 |
//
|
sl@0
|
821 |
void CMMFDrmAudioPlayerUtility::OpenFileL(
|
sl@0
|
822 |
const TDesC& aFileName)
|
sl@0
|
823 |
{
|
sl@0
|
824 |
iState = EInitializing;
|
sl@0
|
825 |
if (!IsActive())
|
sl@0
|
826 |
{
|
sl@0
|
827 |
iDrmSession->Send(EDRMPlayServOpenFile,TIpcArgs(&iAsyncCallback,&aFileName,&iErrorDurationStruct),iStatus);
|
sl@0
|
828 |
SetActive();
|
sl@0
|
829 |
}
|
sl@0
|
830 |
else
|
sl@0
|
831 |
{
|
sl@0
|
832 |
User::Leave(KErrNotReady);
|
sl@0
|
833 |
}
|
sl@0
|
834 |
}
|
sl@0
|
835 |
|
sl@0
|
836 |
// -----------------------------------------------------------------------------
|
sl@0
|
837 |
// CMMFDrmAudioPlayerUtility::OpenFileL
|
sl@0
|
838 |
//
|
sl@0
|
839 |
// (other items were commented in a header).
|
sl@0
|
840 |
// -----------------------------------------------------------------------------
|
sl@0
|
841 |
//
|
sl@0
|
842 |
void CMMFDrmAudioPlayerUtility::OpenFileL(
|
sl@0
|
843 |
const RFile& aFile)
|
sl@0
|
844 |
{
|
sl@0
|
845 |
TIpcArgs ipcArgs;
|
sl@0
|
846 |
aFile.TransferToServer(ipcArgs, 1, 3);
|
sl@0
|
847 |
ipcArgs.Set(0,&iAsyncCallback);
|
sl@0
|
848 |
ipcArgs.Set(2,&iErrorDurationStruct);
|
sl@0
|
849 |
iState = EInitializing;
|
sl@0
|
850 |
if (!IsActive())
|
sl@0
|
851 |
{
|
sl@0
|
852 |
iDrmSession->Send(EDRMPlayServOpenFileByHandle,ipcArgs,iStatus);
|
sl@0
|
853 |
SetActive();
|
sl@0
|
854 |
}
|
sl@0
|
855 |
else
|
sl@0
|
856 |
{
|
sl@0
|
857 |
User::Leave(KErrNotReady);
|
sl@0
|
858 |
}
|
sl@0
|
859 |
}
|
sl@0
|
860 |
|
sl@0
|
861 |
// -----------------------------------------------------------------------------
|
sl@0
|
862 |
// CMMFDrmAudioPlayerUtility::OpenFileL
|
sl@0
|
863 |
//
|
sl@0
|
864 |
// (other items were commented in a header).
|
sl@0
|
865 |
// -----------------------------------------------------------------------------
|
sl@0
|
866 |
//
|
sl@0
|
867 |
#ifdef SYMBIAN_CAF_V2
|
sl@0
|
868 |
void CMMFDrmAudioPlayerUtility::OpenFileL(const TMMSource& aSource)
|
sl@0
|
869 |
{
|
sl@0
|
870 |
if (aSource.SourceType()==KUidMMFileHandleSource)
|
sl@0
|
871 |
{
|
sl@0
|
872 |
#ifdef SYMBIAN_SECURITY_CAF_RFILE_HANDLE
|
sl@0
|
873 |
RFile& fileHandle = static_cast<const TMMFileHandleSource&>(aSource).Handle();
|
sl@0
|
874 |
OpenFileL(fileHandle);
|
sl@0
|
875 |
#else
|
sl@0
|
876 |
User::Leave(KErrNotSupported);
|
sl@0
|
877 |
#endif
|
sl@0
|
878 |
}
|
sl@0
|
879 |
if (aSource.SourceType()==KUidMMFileSource)
|
sl@0
|
880 |
{
|
sl@0
|
881 |
const TDesC& fileName = static_cast<const TMMFileSource&>(aSource).Name();
|
sl@0
|
882 |
OpenFileL(fileName);
|
sl@0
|
883 |
}
|
sl@0
|
884 |
}
|
sl@0
|
885 |
#endif
|
sl@0
|
886 |
|
sl@0
|
887 |
|
sl@0
|
888 |
// -----------------------------------------------------------------------------
|
sl@0
|
889 |
// CMMFDrmAudioPlayerUtility::OpenDesL
|
sl@0
|
890 |
//
|
sl@0
|
891 |
// (other items were commented in a header).
|
sl@0
|
892 |
// -----------------------------------------------------------------------------
|
sl@0
|
893 |
//
|
sl@0
|
894 |
void CMMFDrmAudioPlayerUtility::OpenDesL(
|
sl@0
|
895 |
const TDesC8& aDescriptor)
|
sl@0
|
896 |
{
|
sl@0
|
897 |
iStatus = EInitializing;
|
sl@0
|
898 |
if (!IsActive())
|
sl@0
|
899 |
{
|
sl@0
|
900 |
iDrmSession->Send(EDRMPlayServOpenDes,TIpcArgs(&iAsyncCallback,&aDescriptor,&iErrorDurationStruct),iStatus);
|
sl@0
|
901 |
SetActive();
|
sl@0
|
902 |
}
|
sl@0
|
903 |
else
|
sl@0
|
904 |
{
|
sl@0
|
905 |
User::Leave(KErrNotReady);
|
sl@0
|
906 |
}
|
sl@0
|
907 |
}
|
sl@0
|
908 |
|
sl@0
|
909 |
// -----------------------------------------------------------------------------
|
sl@0
|
910 |
// CMMFDrmAudioPlayerUtility::OpenUrlL
|
sl@0
|
911 |
//
|
sl@0
|
912 |
// (other items were commented in a header).
|
sl@0
|
913 |
// -----------------------------------------------------------------------------
|
sl@0
|
914 |
//
|
sl@0
|
915 |
void CMMFDrmAudioPlayerUtility::OpenUrlL(
|
sl@0
|
916 |
const TDesC& aUrl,
|
sl@0
|
917 |
const TInt aIapId,
|
sl@0
|
918 |
const TDesC8& aMimeType)
|
sl@0
|
919 |
{
|
sl@0
|
920 |
TUrlStruct theStruct;
|
sl@0
|
921 |
|
sl@0
|
922 |
theStruct.iUrl = aUrl;
|
sl@0
|
923 |
theStruct.iIapId = aIapId;
|
sl@0
|
924 |
theStruct.iMimeType = aMimeType;
|
sl@0
|
925 |
|
sl@0
|
926 |
TUrlStructPckgBuf pckg(theStruct);
|
sl@0
|
927 |
iStatus = EInitializing;
|
sl@0
|
928 |
if (!IsActive())
|
sl@0
|
929 |
{
|
sl@0
|
930 |
iDrmSession->Send(EDRMPlayServOpenUrl,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct),iStatus);
|
sl@0
|
931 |
SetActive();
|
sl@0
|
932 |
}
|
sl@0
|
933 |
else
|
sl@0
|
934 |
{
|
sl@0
|
935 |
User::Leave(KErrNotReady);
|
sl@0
|
936 |
}
|
sl@0
|
937 |
}
|
sl@0
|
938 |
|
sl@0
|
939 |
// -----------------------------------------------------------------------------
|
sl@0
|
940 |
// CMMFDrmAudioPlayerUtility::Play
|
sl@0
|
941 |
//
|
sl@0
|
942 |
// (other items were commented in a header).
|
sl@0
|
943 |
// -----------------------------------------------------------------------------
|
sl@0
|
944 |
//
|
sl@0
|
945 |
void CMMFDrmAudioPlayerUtility::Play()
|
sl@0
|
946 |
{
|
sl@0
|
947 |
if (iState != EPlaying)
|
sl@0
|
948 |
{
|
sl@0
|
949 |
iState = EPlaying;
|
sl@0
|
950 |
if (!IsActive())
|
sl@0
|
951 |
{
|
sl@0
|
952 |
SetActive();
|
sl@0
|
953 |
iDrmSession->Send(EDRMPlayServPlay,TIpcArgs(&iAsyncCallback,0,&iErrorDurationStruct),iStatus);
|
sl@0
|
954 |
}
|
sl@0
|
955 |
}
|
sl@0
|
956 |
}
|
sl@0
|
957 |
|
sl@0
|
958 |
// -----------------------------------------------------------------------------
|
sl@0
|
959 |
// CMMFDrmAudioPlayerUtility::Stop
|
sl@0
|
960 |
//
|
sl@0
|
961 |
// (other items were commented in a header).
|
sl@0
|
962 |
// -----------------------------------------------------------------------------
|
sl@0
|
963 |
//
|
sl@0
|
964 |
void CMMFDrmAudioPlayerUtility::Stop()
|
sl@0
|
965 |
{
|
sl@0
|
966 |
iDrmSession->Send(EDRMPlayServStop);
|
sl@0
|
967 |
if (IsActive())
|
sl@0
|
968 |
{
|
sl@0
|
969 |
Cancel();
|
sl@0
|
970 |
}
|
sl@0
|
971 |
|
sl@0
|
972 |
iState = EIdle;
|
sl@0
|
973 |
}
|
sl@0
|
974 |
|
sl@0
|
975 |
// -----------------------------------------------------------------------------
|
sl@0
|
976 |
// CMMFDrmAudioPlayerUtility::Pause
|
sl@0
|
977 |
//
|
sl@0
|
978 |
// (other items were commented in a header).
|
sl@0
|
979 |
// -----------------------------------------------------------------------------
|
sl@0
|
980 |
//
|
sl@0
|
981 |
TInt CMMFDrmAudioPlayerUtility::Pause()
|
sl@0
|
982 |
{
|
sl@0
|
983 |
iDrmSession->Send(EDRMPlayServPause);
|
sl@0
|
984 |
iState = EPaused;
|
sl@0
|
985 |
return KErrNone;
|
sl@0
|
986 |
}
|
sl@0
|
987 |
|
sl@0
|
988 |
// -----------------------------------------------------------------------------
|
sl@0
|
989 |
// CMMFDrmAudioPlayerUtility::Close
|
sl@0
|
990 |
//
|
sl@0
|
991 |
// (other items were commented in a header).
|
sl@0
|
992 |
// -----------------------------------------------------------------------------
|
sl@0
|
993 |
//
|
sl@0
|
994 |
void CMMFDrmAudioPlayerUtility::Close()
|
sl@0
|
995 |
{
|
sl@0
|
996 |
if (IsActive())
|
sl@0
|
997 |
{
|
sl@0
|
998 |
Cancel();
|
sl@0
|
999 |
}
|
sl@0
|
1000 |
iDrmSession->Send(EDRMPlayServClose);
|
sl@0
|
1001 |
}
|
sl@0
|
1002 |
|
sl@0
|
1003 |
// -----------------------------------------------------------------------------
|
sl@0
|
1004 |
// CMMFDrmAudioPlayerUtility::SetVolume
|
sl@0
|
1005 |
//
|
sl@0
|
1006 |
// (other items were commented in a header).
|
sl@0
|
1007 |
// -----------------------------------------------------------------------------
|
sl@0
|
1008 |
//
|
sl@0
|
1009 |
void CMMFDrmAudioPlayerUtility::SetVolume(
|
sl@0
|
1010 |
TInt aVolume)
|
sl@0
|
1011 |
{
|
sl@0
|
1012 |
iDrmSession->Send(EDRMPlayServSetVolume,TIpcArgs(aVolume));
|
sl@0
|
1013 |
}
|
sl@0
|
1014 |
|
sl@0
|
1015 |
// -----------------------------------------------------------------------------
|
sl@0
|
1016 |
// CMMFDrmAudioPlayerUtility::SetRepeats
|
sl@0
|
1017 |
//
|
sl@0
|
1018 |
// (other items were commented in a header).
|
sl@0
|
1019 |
// -----------------------------------------------------------------------------
|
sl@0
|
1020 |
//
|
sl@0
|
1021 |
void CMMFDrmAudioPlayerUtility::SetRepeats(
|
sl@0
|
1022 |
TInt aRepeatNumberOfTimes,
|
sl@0
|
1023 |
const TTimeIntervalMicroSeconds& aTrailingSilence)
|
sl@0
|
1024 |
{
|
sl@0
|
1025 |
|
sl@0
|
1026 |
TPckgTTimeIntervalMicroSeconds trailingSilencePckg(aTrailingSilence);
|
sl@0
|
1027 |
iDrmSession->Send(EDRMPlayServSetRepeats,TIpcArgs(aRepeatNumberOfTimes,&trailingSilencePckg));
|
sl@0
|
1028 |
}
|
sl@0
|
1029 |
|
sl@0
|
1030 |
// -----------------------------------------------------------------------------
|
sl@0
|
1031 |
// CMMFDrmAudioPlayerUtility::SetVolumeRamp
|
sl@0
|
1032 |
//
|
sl@0
|
1033 |
// (other items were commented in a header).
|
sl@0
|
1034 |
// -----------------------------------------------------------------------------
|
sl@0
|
1035 |
//
|
sl@0
|
1036 |
void CMMFDrmAudioPlayerUtility::SetVolumeRamp(
|
sl@0
|
1037 |
const TTimeIntervalMicroSeconds& aRampDuration)
|
sl@0
|
1038 |
{
|
sl@0
|
1039 |
|
sl@0
|
1040 |
TPckgTTimeIntervalMicroSeconds volumeRampPckg(aRampDuration);
|
sl@0
|
1041 |
iDrmSession->Send(EDRMPlayServSetVolumeRamp,TIpcArgs(&volumeRampPckg));
|
sl@0
|
1042 |
}
|
sl@0
|
1043 |
|
sl@0
|
1044 |
// -----------------------------------------------------------------------------
|
sl@0
|
1045 |
// CMMFDrmAudioPlayerUtility::SetPriority
|
sl@0
|
1046 |
//
|
sl@0
|
1047 |
// (other items were commented in a header).
|
sl@0
|
1048 |
// -----------------------------------------------------------------------------
|
sl@0
|
1049 |
//
|
sl@0
|
1050 |
TInt CMMFDrmAudioPlayerUtility::SetPriority(
|
sl@0
|
1051 |
TInt aPriority,
|
sl@0
|
1052 |
TMdaPriorityPreference aPref)
|
sl@0
|
1053 |
{
|
sl@0
|
1054 |
return iDrmSession->Send(EDRMPlayServSetPriority,TIpcArgs(aPriority,aPref));
|
sl@0
|
1055 |
}
|
sl@0
|
1056 |
|
sl@0
|
1057 |
// -----------------------------------------------------------------------------
|
sl@0
|
1058 |
// CMMFDrmAudioPlayerUtility::Duration
|
sl@0
|
1059 |
//
|
sl@0
|
1060 |
// (other items were commented in a header).
|
sl@0
|
1061 |
// -----------------------------------------------------------------------------
|
sl@0
|
1062 |
//
|
sl@0
|
1063 |
const TTimeIntervalMicroSeconds& CMMFDrmAudioPlayerUtility::Duration()
|
sl@0
|
1064 |
{
|
sl@0
|
1065 |
TPckgBufTTimeIntervalMicroSeconds pckg;
|
sl@0
|
1066 |
iDrmSession->Send(EDRMPlayServDuration,TIpcArgs(&pckg));
|
sl@0
|
1067 |
return pckg();
|
sl@0
|
1068 |
}
|
sl@0
|
1069 |
|
sl@0
|
1070 |
|
sl@0
|
1071 |
// -----------------------------------------------------------------------------
|
sl@0
|
1072 |
// CMMFDrmAudioPlayerUtility::MaxVolume
|
sl@0
|
1073 |
//
|
sl@0
|
1074 |
// (other items were commented in a header).
|
sl@0
|
1075 |
// -----------------------------------------------------------------------------
|
sl@0
|
1076 |
//
|
sl@0
|
1077 |
TInt CMMFDrmAudioPlayerUtility::MaxVolume()
|
sl@0
|
1078 |
{
|
sl@0
|
1079 |
return iDrmSession->Send(EDRMPlayServMaxVolume);
|
sl@0
|
1080 |
}
|
sl@0
|
1081 |
|
sl@0
|
1082 |
// -----------------------------------------------------------------------------
|
sl@0
|
1083 |
// CMMFDrmAudioPlayerUtility::GetPosition
|
sl@0
|
1084 |
//
|
sl@0
|
1085 |
// (other items were commented in a header).
|
sl@0
|
1086 |
// -----------------------------------------------------------------------------
|
sl@0
|
1087 |
//
|
sl@0
|
1088 |
TInt CMMFDrmAudioPlayerUtility::GetPosition(
|
sl@0
|
1089 |
TTimeIntervalMicroSeconds& aPosition)
|
sl@0
|
1090 |
{
|
sl@0
|
1091 |
TPckgTTimeIntervalMicroSeconds thePositionPckg(aPosition);
|
sl@0
|
1092 |
TInt ret = iDrmSession->Send(EDRMPlayServGetPosition,TIpcArgs(&thePositionPckg));
|
sl@0
|
1093 |
aPosition = thePositionPckg();
|
sl@0
|
1094 |
return ret;
|
sl@0
|
1095 |
}
|
sl@0
|
1096 |
|
sl@0
|
1097 |
// -----------------------------------------------------------------------------
|
sl@0
|
1098 |
// CMMFDrmAudioPlayerUtility::SetPosition
|
sl@0
|
1099 |
//
|
sl@0
|
1100 |
// (other items were commented in a header).
|
sl@0
|
1101 |
// -----------------------------------------------------------------------------
|
sl@0
|
1102 |
//
|
sl@0
|
1103 |
void CMMFDrmAudioPlayerUtility::SetPosition(
|
sl@0
|
1104 |
const TTimeIntervalMicroSeconds& aPosition)
|
sl@0
|
1105 |
{
|
sl@0
|
1106 |
TSetPositionStruct sendPckg;
|
sl@0
|
1107 |
sendPckg.iPosition = aPosition;
|
sl@0
|
1108 |
|
sl@0
|
1109 |
TSetPositionStructBuf pckg(sendPckg);
|
sl@0
|
1110 |
iDrmSession->Send(EDRMPlayServSetPosition,TIpcArgs(&pckg));
|
sl@0
|
1111 |
}
|
sl@0
|
1112 |
|
sl@0
|
1113 |
// -----------------------------------------------------------------------------
|
sl@0
|
1114 |
// CMMFDrmAudioPlayerUtility::GetVolume
|
sl@0
|
1115 |
//
|
sl@0
|
1116 |
// (other items were commented in a header).
|
sl@0
|
1117 |
// -----------------------------------------------------------------------------
|
sl@0
|
1118 |
//
|
sl@0
|
1119 |
TInt CMMFDrmAudioPlayerUtility::GetVolume(TInt& aVolume)
|
sl@0
|
1120 |
{
|
sl@0
|
1121 |
TInt theReturnValue;
|
sl@0
|
1122 |
TPckgBufTInt theVolume;
|
sl@0
|
1123 |
theReturnValue = iDrmSession->Send(EDRMPlayServGetVolume,TIpcArgs(&theVolume));
|
sl@0
|
1124 |
aVolume = theVolume();
|
sl@0
|
1125 |
return theReturnValue;
|
sl@0
|
1126 |
}
|
sl@0
|
1127 |
|
sl@0
|
1128 |
// -----------------------------------------------------------------------------
|
sl@0
|
1129 |
// CMMFDrmAudioPlayerUtility::GetNumberOfMetaDataEntries
|
sl@0
|
1130 |
//
|
sl@0
|
1131 |
// (other items were commented in a header).
|
sl@0
|
1132 |
// -----------------------------------------------------------------------------
|
sl@0
|
1133 |
//
|
sl@0
|
1134 |
TInt CMMFDrmAudioPlayerUtility::GetNumberOfMetaDataEntries(
|
sl@0
|
1135 |
TInt& aNumEntries)
|
sl@0
|
1136 |
{
|
sl@0
|
1137 |
TPckgBufTInt theNumEntries;
|
sl@0
|
1138 |
TInt retValue = iDrmSession->Send(EDRMPlayServGetNumberOfMetaDataEntries,TIpcArgs(&theNumEntries));
|
sl@0
|
1139 |
aNumEntries = theNumEntries();
|
sl@0
|
1140 |
return retValue;
|
sl@0
|
1141 |
}
|
sl@0
|
1142 |
|
sl@0
|
1143 |
// -----------------------------------------------------------------------------
|
sl@0
|
1144 |
// CMMFDrmAudioPlayerUtility::GetMetaDataEntryL
|
sl@0
|
1145 |
//
|
sl@0
|
1146 |
// (other items were commented in a header).
|
sl@0
|
1147 |
// -----------------------------------------------------------------------------
|
sl@0
|
1148 |
//
|
sl@0
|
1149 |
CMMFMetaDataEntry* CMMFDrmAudioPlayerUtility::GetMetaDataEntryL(
|
sl@0
|
1150 |
TInt aMetaDataIndex)
|
sl@0
|
1151 |
{
|
sl@0
|
1152 |
TBuf8<100> data;
|
sl@0
|
1153 |
iDrmSession->Send(EDRMPlayServGetMetaDataEntry,TIpcArgs(aMetaDataIndex,&data));
|
sl@0
|
1154 |
delete iMetaDataBuffer;
|
sl@0
|
1155 |
iMetaDataBuffer = NULL;
|
sl@0
|
1156 |
iMetaDataBuffer = CBufFlat::NewL(32);
|
sl@0
|
1157 |
HBufC8* theData = data.Alloc();
|
sl@0
|
1158 |
iMetaDataBuffer->InsertL(0,theData->Des());
|
sl@0
|
1159 |
RBufReadStream s;
|
sl@0
|
1160 |
s.Open(*iMetaDataBuffer);
|
sl@0
|
1161 |
CleanupClosePushL(s);
|
sl@0
|
1162 |
CMMFMetaDataEntry* theMetaDataEntry = CMMFMetaDataEntry::NewL();
|
sl@0
|
1163 |
theMetaDataEntry->InternalizeL(s);
|
sl@0
|
1164 |
CleanupStack::PopAndDestroy();//s
|
sl@0
|
1165 |
return theMetaDataEntry;
|
sl@0
|
1166 |
}
|
sl@0
|
1167 |
|
sl@0
|
1168 |
// -----------------------------------------------------------------------------
|
sl@0
|
1169 |
// CMMFDrmAudioPlayerUtility::SetPlayWindow
|
sl@0
|
1170 |
//
|
sl@0
|
1171 |
// (other items were commented in a header).
|
sl@0
|
1172 |
// -----------------------------------------------------------------------------
|
sl@0
|
1173 |
//
|
sl@0
|
1174 |
TInt CMMFDrmAudioPlayerUtility::SetPlayWindow(
|
sl@0
|
1175 |
const TTimeIntervalMicroSeconds& aPlayStart,
|
sl@0
|
1176 |
const TTimeIntervalMicroSeconds& aPlayEnd)
|
sl@0
|
1177 |
{
|
sl@0
|
1178 |
TPlayWindowStruct sendPckg;
|
sl@0
|
1179 |
sendPckg.iPlayStart = aPlayStart;
|
sl@0
|
1180 |
sendPckg.iPlayEnd = aPlayEnd;
|
sl@0
|
1181 |
|
sl@0
|
1182 |
TPlayWindowStructBuf pckg(sendPckg);
|
sl@0
|
1183 |
|
sl@0
|
1184 |
return iDrmSession->Send(EDRMPlayServSetPlayWindow,TIpcArgs(&pckg));
|
sl@0
|
1185 |
}
|
sl@0
|
1186 |
|
sl@0
|
1187 |
// -----------------------------------------------------------------------------
|
sl@0
|
1188 |
// CMMFDrmAudioPlayerUtility::ClearPlayWindow
|
sl@0
|
1189 |
//
|
sl@0
|
1190 |
// (other items were commented in a header).
|
sl@0
|
1191 |
// -----------------------------------------------------------------------------
|
sl@0
|
1192 |
//
|
sl@0
|
1193 |
TInt CMMFDrmAudioPlayerUtility::ClearPlayWindow()
|
sl@0
|
1194 |
{
|
sl@0
|
1195 |
return iDrmSession->Send(EDRMPlayServClearPlayWindow);
|
sl@0
|
1196 |
}
|
sl@0
|
1197 |
|
sl@0
|
1198 |
// -----------------------------------------------------------------------------
|
sl@0
|
1199 |
// CMMFDrmAudioPlayerUtility::SetBalance
|
sl@0
|
1200 |
//
|
sl@0
|
1201 |
// (other items were commented in a header).
|
sl@0
|
1202 |
// -----------------------------------------------------------------------------
|
sl@0
|
1203 |
//
|
sl@0
|
1204 |
TInt CMMFDrmAudioPlayerUtility::SetBalance(
|
sl@0
|
1205 |
TInt aBalance)
|
sl@0
|
1206 |
{
|
sl@0
|
1207 |
return iDrmSession->Send(EDRMPlayServSetBalance,TIpcArgs(aBalance));
|
sl@0
|
1208 |
}
|
sl@0
|
1209 |
|
sl@0
|
1210 |
// -----------------------------------------------------------------------------
|
sl@0
|
1211 |
// CMMFDrmAudioPlayerUtility::GetBitRate
|
sl@0
|
1212 |
//
|
sl@0
|
1213 |
// (other items were commented in a header).
|
sl@0
|
1214 |
// -----------------------------------------------------------------------------
|
sl@0
|
1215 |
//
|
sl@0
|
1216 |
TInt CMMFDrmAudioPlayerUtility::GetBitRate(
|
sl@0
|
1217 |
TUint& aBitRate)
|
sl@0
|
1218 |
{
|
sl@0
|
1219 |
TPckgBufTUint pckg;
|
sl@0
|
1220 |
TInt retValue = iDrmSession->Send(EDRMPlayServGetBitRate,TIpcArgs(&pckg));
|
sl@0
|
1221 |
aBitRate = pckg();
|
sl@0
|
1222 |
return retValue;
|
sl@0
|
1223 |
}
|
sl@0
|
1224 |
|
sl@0
|
1225 |
// -----------------------------------------------------------------------------
|
sl@0
|
1226 |
// CMMFDrmAudioPlayerUtility::ControllerImplementationInformationL
|
sl@0
|
1227 |
//
|
sl@0
|
1228 |
// (other items were commented in a header).
|
sl@0
|
1229 |
// -----------------------------------------------------------------------------
|
sl@0
|
1230 |
//
|
sl@0
|
1231 |
const CMMFControllerImplementationInformation& CMMFDrmAudioPlayerUtility::ControllerImplementationInformationL()
|
sl@0
|
1232 |
{
|
sl@0
|
1233 |
TUid theUid;
|
sl@0
|
1234 |
iDrmSession->Send(EDRMPlayServControllerImplementationInformation,TIpcArgs(&theUid));
|
sl@0
|
1235 |
iControllerImplementationInformation = CMMFControllerImplementationInformation::NewL(theUid);
|
sl@0
|
1236 |
return *iControllerImplementationInformation;
|
sl@0
|
1237 |
}
|
sl@0
|
1238 |
|
sl@0
|
1239 |
// -----------------------------------------------------------------------------
|
sl@0
|
1240 |
// CMMFDrmAudioPlayerUtility::GetAudioLoadingProgressL
|
sl@0
|
1241 |
//
|
sl@0
|
1242 |
// (other items were commented in a header).
|
sl@0
|
1243 |
// -----------------------------------------------------------------------------
|
sl@0
|
1244 |
//
|
sl@0
|
1245 |
void CMMFDrmAudioPlayerUtility::GetAudioLoadingProgressL(
|
sl@0
|
1246 |
TInt& aPercentageProgress)
|
sl@0
|
1247 |
{
|
sl@0
|
1248 |
TPckgBufTInt pckg;
|
sl@0
|
1249 |
iDrmSession->Send(EDRMPlayServGetAudioLoadingProgress,TIpcArgs(&pckg));
|
sl@0
|
1250 |
aPercentageProgress = pckg();
|
sl@0
|
1251 |
}
|
sl@0
|
1252 |
|
sl@0
|
1253 |
// -----------------------------------------------------------------------------
|
sl@0
|
1254 |
// CMMFDrmAudioPlayerUtility::CustomCommandSync
|
sl@0
|
1255 |
//
|
sl@0
|
1256 |
// (other items were commented in a header).
|
sl@0
|
1257 |
// -----------------------------------------------------------------------------
|
sl@0
|
1258 |
//
|
sl@0
|
1259 |
TInt CMMFDrmAudioPlayerUtility::CustomCommandSync(
|
sl@0
|
1260 |
const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
1261 |
TInt aFunction,
|
sl@0
|
1262 |
const TDesC8& aDataTo1,
|
sl@0
|
1263 |
const TDesC8& aDataTo2,
|
sl@0
|
1264 |
TDes8& aDataFrom)
|
sl@0
|
1265 |
{
|
sl@0
|
1266 |
TInt theReturnValue(KErrPermissionDenied);
|
sl@0
|
1267 |
|
sl@0
|
1268 |
TPckgCustomCommand thePckg;
|
sl@0
|
1269 |
thePckg().iDestination = aDestination;
|
sl@0
|
1270 |
thePckg().iFunction = aFunction;
|
sl@0
|
1271 |
/*
|
sl@0
|
1272 |
RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandSync:IFId[%x]DestHndl[%x]Fn[%d]RetDesLen[%d]"),
|
sl@0
|
1273 |
thePckg().iDestination().InterfaceId(),
|
sl@0
|
1274 |
thePckg().iDestination().DestinationHandle(),
|
sl@0
|
1275 |
thePckg().iFunction,
|
sl@0
|
1276 |
aDataFrom.Length());
|
sl@0
|
1277 |
*/
|
sl@0
|
1278 |
// Only Pass 'Allowed CustomCommand
|
sl@0
|
1279 |
if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) )
|
sl@0
|
1280 |
{
|
sl@0
|
1281 |
theReturnValue = iDrmSession->Send( EDRMPlayServCustomCommandSyncWithReturn,
|
sl@0
|
1282 |
TIpcArgs(&thePckg, &aDataTo1, &aDataTo2, &aDataFrom));
|
sl@0
|
1283 |
}
|
sl@0
|
1284 |
return theReturnValue;
|
sl@0
|
1285 |
}
|
sl@0
|
1286 |
|
sl@0
|
1287 |
// -----------------------------------------------------------------------------
|
sl@0
|
1288 |
// CMMFDrmAudioPlayerUtility::CustomCommandSync
|
sl@0
|
1289 |
//
|
sl@0
|
1290 |
// (other items were commented in a header).
|
sl@0
|
1291 |
// -----------------------------------------------------------------------------
|
sl@0
|
1292 |
//
|
sl@0
|
1293 |
TInt CMMFDrmAudioPlayerUtility::CustomCommandSync(
|
sl@0
|
1294 |
const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
1295 |
TInt aFunction,
|
sl@0
|
1296 |
const TDesC8& aDataTo1,
|
sl@0
|
1297 |
const TDesC8& aDataTo2)
|
sl@0
|
1298 |
{
|
sl@0
|
1299 |
TInt theReturnValue(KErrPermissionDenied);
|
sl@0
|
1300 |
|
sl@0
|
1301 |
TPckgCustomCommand thePckg;
|
sl@0
|
1302 |
thePckg().iDestination = aDestination;
|
sl@0
|
1303 |
thePckg().iFunction = aFunction;
|
sl@0
|
1304 |
/*
|
sl@0
|
1305 |
RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandSync:IFId[%x]DestHndl[%x]Fn[%d]"),
|
sl@0
|
1306 |
thePckg().iDestination().InterfaceId(),
|
sl@0
|
1307 |
thePckg().iDestination().DestinationHandle(),
|
sl@0
|
1308 |
thePckg().iFunction);
|
sl@0
|
1309 |
*/
|
sl@0
|
1310 |
// Only Pass 'Allowed CustomCommand
|
sl@0
|
1311 |
if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) )
|
sl@0
|
1312 |
{
|
sl@0
|
1313 |
theReturnValue = iDrmSession->Send( EDRMPlayServCustomCommandSyncWithoutReturn,
|
sl@0
|
1314 |
TIpcArgs(&thePckg, &aDataTo1, &aDataTo2));
|
sl@0
|
1315 |
}
|
sl@0
|
1316 |
return theReturnValue;
|
sl@0
|
1317 |
}
|
sl@0
|
1318 |
|
sl@0
|
1319 |
// -----------------------------------------------------------------------------
|
sl@0
|
1320 |
// CMMFDrmAudioPlayerUtility::CustomCommandAsync
|
sl@0
|
1321 |
//
|
sl@0
|
1322 |
// (other items were commented in a header).
|
sl@0
|
1323 |
// -----------------------------------------------------------------------------
|
sl@0
|
1324 |
//
|
sl@0
|
1325 |
void CMMFDrmAudioPlayerUtility::CustomCommandAsync(
|
sl@0
|
1326 |
const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
1327 |
TInt aFunction,
|
sl@0
|
1328 |
const TDesC8& aDataTo1,
|
sl@0
|
1329 |
const TDesC8& aDataTo2,
|
sl@0
|
1330 |
TDes8& aDataFrom,
|
sl@0
|
1331 |
TRequestStatus& aStatus )
|
sl@0
|
1332 |
{
|
sl@0
|
1333 |
TPckgCustomCommand thePckg;
|
sl@0
|
1334 |
thePckg().iDestination = aDestination;
|
sl@0
|
1335 |
thePckg().iFunction = aFunction;
|
sl@0
|
1336 |
TInt status(KErrPermissionDenied);
|
sl@0
|
1337 |
/*
|
sl@0
|
1338 |
RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]RetDesLen[Len:%d:MaxLen:%d]"),
|
sl@0
|
1339 |
thePckg().iDestination().InterfaceId(),
|
sl@0
|
1340 |
thePckg().iDestination().DestinationHandle(),
|
sl@0
|
1341 |
thePckg().iFunction,
|
sl@0
|
1342 |
aDataTo1.Length(),
|
sl@0
|
1343 |
aDataTo2.Length(),
|
sl@0
|
1344 |
aDataFrom.Length(),
|
sl@0
|
1345 |
aDataFrom.MaxLength() );
|
sl@0
|
1346 |
*/
|
sl@0
|
1347 |
// Only Pass 'Allowed CustomCommand
|
sl@0
|
1348 |
if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) )
|
sl@0
|
1349 |
{
|
sl@0
|
1350 |
// Send in two steps, data in first step and async request in second step
|
sl@0
|
1351 |
// othewise thePckg will become invalid when tried to read from server
|
sl@0
|
1352 |
status = iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithReturnStep1,
|
sl@0
|
1353 |
TIpcArgs(&thePckg, &aDataTo1, &aDataTo2) );
|
sl@0
|
1354 |
if ( status == KErrNone )
|
sl@0
|
1355 |
{
|
sl@0
|
1356 |
// Pass descriptor place holder to get data back in the async call
|
sl@0
|
1357 |
iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithReturnStep2,
|
sl@0
|
1358 |
TIpcArgs(&aDataFrom),
|
sl@0
|
1359 |
aStatus );
|
sl@0
|
1360 |
}
|
sl@0
|
1361 |
#ifdef _DEBUG
|
sl@0
|
1362 |
else
|
sl@0
|
1363 |
{
|
sl@0
|
1364 |
RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]RetDesLen[Len:%d:MaxLen:%d]DRM Proxy CustCmdAsyncWRet Step1[%d]"),
|
sl@0
|
1365 |
thePckg().iDestination().InterfaceId(),
|
sl@0
|
1366 |
thePckg().iDestination().DestinationHandle(),
|
sl@0
|
1367 |
thePckg().iFunction,
|
sl@0
|
1368 |
aDataTo1.Length(),
|
sl@0
|
1369 |
aDataTo2.Length(),
|
sl@0
|
1370 |
aDataFrom.Length(),
|
sl@0
|
1371 |
aDataFrom.MaxLength(),
|
sl@0
|
1372 |
status );
|
sl@0
|
1373 |
}
|
sl@0
|
1374 |
#endif // _DEBUG
|
sl@0
|
1375 |
}
|
sl@0
|
1376 |
if ( status != KErrNone )
|
sl@0
|
1377 |
{
|
sl@0
|
1378 |
TRequestStatus* s = &aStatus;
|
sl@0
|
1379 |
User::RequestComplete( s , status );
|
sl@0
|
1380 |
}
|
sl@0
|
1381 |
}
|
sl@0
|
1382 |
|
sl@0
|
1383 |
// -----------------------------------------------------------------------------
|
sl@0
|
1384 |
// CMMFDrmAudioPlayerUtility::CustomCommandAsync
|
sl@0
|
1385 |
//
|
sl@0
|
1386 |
// (other items were commented in a header).
|
sl@0
|
1387 |
// -----------------------------------------------------------------------------
|
sl@0
|
1388 |
//
|
sl@0
|
1389 |
void CMMFDrmAudioPlayerUtility::CustomCommandAsync(
|
sl@0
|
1390 |
const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
1391 |
TInt aFunction,
|
sl@0
|
1392 |
const TDesC8& aDataTo1,
|
sl@0
|
1393 |
const TDesC8& aDataTo2,
|
sl@0
|
1394 |
TRequestStatus& aStatus)
|
sl@0
|
1395 |
{
|
sl@0
|
1396 |
TPckgCustomCommand thePckg;
|
sl@0
|
1397 |
thePckg().iDestination = aDestination;
|
sl@0
|
1398 |
thePckg().iFunction = aFunction;
|
sl@0
|
1399 |
|
sl@0
|
1400 |
TInt status(KErrPermissionDenied);
|
sl@0
|
1401 |
/*
|
sl@0
|
1402 |
RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]"),
|
sl@0
|
1403 |
thePckg().iDestination().InterfaceId(),
|
sl@0
|
1404 |
thePckg().iDestination().DestinationHandle(),
|
sl@0
|
1405 |
thePckg().iFunction,
|
sl@0
|
1406 |
aDataTo1.Length(),
|
sl@0
|
1407 |
aDataTo2.Length() );
|
sl@0
|
1408 |
*/
|
sl@0
|
1409 |
// Only Pass 'Allowed CustomCommand
|
sl@0
|
1410 |
if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) )
|
sl@0
|
1411 |
{
|
sl@0
|
1412 |
// Send in two steps, data in first step and async request in second step
|
sl@0
|
1413 |
// othewise thePckg will become invalid when tried to read from server
|
sl@0
|
1414 |
status = iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithoutReturnStep1,
|
sl@0
|
1415 |
TIpcArgs(&thePckg, &aDataTo1, &aDataTo2) );
|
sl@0
|
1416 |
if ( status == KErrNone )
|
sl@0
|
1417 |
{
|
sl@0
|
1418 |
iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithoutReturnStep2,
|
sl@0
|
1419 |
TIpcArgs(),
|
sl@0
|
1420 |
aStatus );
|
sl@0
|
1421 |
}
|
sl@0
|
1422 |
#ifdef _DEBUG
|
sl@0
|
1423 |
else
|
sl@0
|
1424 |
{
|
sl@0
|
1425 |
RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]DRM Proxy CustCmdAsyncWoRet Step1[%d]"),
|
sl@0
|
1426 |
thePckg().iDestination().InterfaceId(),
|
sl@0
|
1427 |
thePckg().iDestination().DestinationHandle(),
|
sl@0
|
1428 |
thePckg().iFunction,
|
sl@0
|
1429 |
aDataTo1.Length(),
|
sl@0
|
1430 |
aDataTo2.Length(),
|
sl@0
|
1431 |
status );
|
sl@0
|
1432 |
}
|
sl@0
|
1433 |
#endif // _DEBUG
|
sl@0
|
1434 |
}
|
sl@0
|
1435 |
if ( status != KErrNone )
|
sl@0
|
1436 |
{
|
sl@0
|
1437 |
TRequestStatus* s = &aStatus;
|
sl@0
|
1438 |
User::RequestComplete( s , status );
|
sl@0
|
1439 |
}
|
sl@0
|
1440 |
}
|
sl@0
|
1441 |
|
sl@0
|
1442 |
// -----------------------------------------------------------------------------
|
sl@0
|
1443 |
// CMMFDrmAudioPlayerUtility::GetBalance
|
sl@0
|
1444 |
//
|
sl@0
|
1445 |
// (other items were commented in a header).
|
sl@0
|
1446 |
// -----------------------------------------------------------------------------
|
sl@0
|
1447 |
//
|
sl@0
|
1448 |
TInt CMMFDrmAudioPlayerUtility::GetBalance(
|
sl@0
|
1449 |
TInt& aBalance)
|
sl@0
|
1450 |
{
|
sl@0
|
1451 |
TPckgBufTInt theBalance;
|
sl@0
|
1452 |
|
sl@0
|
1453 |
TInt retValue = iDrmSession->Send(EDRMPlayServGetBalance,TIpcArgs(&theBalance));
|
sl@0
|
1454 |
aBalance = theBalance();
|
sl@0
|
1455 |
return retValue;
|
sl@0
|
1456 |
}
|
sl@0
|
1457 |
|
sl@0
|
1458 |
// -----------------------------------------------------------------------------
|
sl@0
|
1459 |
// CMMFDrmAudioPlayerUtility::RegisterForAudioLoadingNotification
|
sl@0
|
1460 |
//
|
sl@0
|
1461 |
// (other items were commented in a header).
|
sl@0
|
1462 |
// -----------------------------------------------------------------------------
|
sl@0
|
1463 |
//
|
sl@0
|
1464 |
void CMMFDrmAudioPlayerUtility::RegisterForAudioLoadingNotification(
|
sl@0
|
1465 |
MAudioLoadingObserver& aLoadingObserver)
|
sl@0
|
1466 |
{
|
sl@0
|
1467 |
iAsyncCallback() = ELoadingStarted;
|
sl@0
|
1468 |
iLoadingObserver = &aLoadingObserver;
|
sl@0
|
1469 |
iDrmSession->Send(EDRMPlayServRegisterForAudioLoadingNotification,TIpcArgs(&iAsyncCallback));
|
sl@0
|
1470 |
}
|
sl@0
|
1471 |
|
sl@0
|
1472 |
|
sl@0
|
1473 |
// -----------------------------------------------------------------------------
|
sl@0
|
1474 |
// CMMFDrmAudioPlayerUtility::DoCancel
|
sl@0
|
1475 |
//
|
sl@0
|
1476 |
// (other items were commented in a header).
|
sl@0
|
1477 |
// -----------------------------------------------------------------------------
|
sl@0
|
1478 |
//
|
sl@0
|
1479 |
void CMMFDrmAudioPlayerUtility::DoCancel()
|
sl@0
|
1480 |
{
|
sl@0
|
1481 |
}
|
sl@0
|
1482 |
|
sl@0
|
1483 |
// -----------------------------------------------------------------------------
|
sl@0
|
1484 |
// CMMFDrmAudioPlayerUtility::RunL
|
sl@0
|
1485 |
//
|
sl@0
|
1486 |
// (other items were commented in a header).
|
sl@0
|
1487 |
// -----------------------------------------------------------------------------
|
sl@0
|
1488 |
//
|
sl@0
|
1489 |
void CMMFDrmAudioPlayerUtility::RunL()
|
sl@0
|
1490 |
{
|
sl@0
|
1491 |
DEP_PRN1(_L("CMMFDrmAudioPlayerUtility::RunL:iStatus[%d]"), iStatus.Int());
|
sl@0
|
1492 |
|
sl@0
|
1493 |
if (iState == EPaused)
|
sl@0
|
1494 |
{
|
sl@0
|
1495 |
return;
|
sl@0
|
1496 |
}
|
sl@0
|
1497 |
if ( iStatus.Int() == KErrCancel )
|
sl@0
|
1498 |
return;
|
sl@0
|
1499 |
switch (iAsyncCallback())
|
sl@0
|
1500 |
{
|
sl@0
|
1501 |
case EInitComplete:
|
sl@0
|
1502 |
if (iState != EIdle)
|
sl@0
|
1503 |
{
|
sl@0
|
1504 |
DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - InitComplete"));
|
sl@0
|
1505 |
iState = EIdle;
|
sl@0
|
1506 |
iCallback.MdapcInitComplete(iErrorDurationStruct().iError, iErrorDurationStruct().iDuration);
|
sl@0
|
1507 |
}
|
sl@0
|
1508 |
break;
|
sl@0
|
1509 |
|
sl@0
|
1510 |
case EPlayComplete:
|
sl@0
|
1511 |
DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - PlayComplete"));
|
sl@0
|
1512 |
iState = EIdle;
|
sl@0
|
1513 |
iCallback.MdapcPlayComplete(iErrorDurationStruct().iError);
|
sl@0
|
1514 |
break;
|
sl@0
|
1515 |
|
sl@0
|
1516 |
case ELoadingStarted:
|
sl@0
|
1517 |
DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - MaloLoadingStarted"));
|
sl@0
|
1518 |
|
sl@0
|
1519 |
iDrmSession->Send(EDRMPlayServRegisterForAudioLoadingNotification,TIpcArgs(&iAsyncCallback),iStatus);
|
sl@0
|
1520 |
SetActive();
|
sl@0
|
1521 |
iLoadingObserver->MaloLoadingStarted();
|
sl@0
|
1522 |
break;
|
sl@0
|
1523 |
|
sl@0
|
1524 |
case ELoadingComplete:
|
sl@0
|
1525 |
DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - MaloLoadingComplete"));
|
sl@0
|
1526 |
|
sl@0
|
1527 |
iAsyncCallback() = ELoadingStarted;
|
sl@0
|
1528 |
iLoadingObserver->MaloLoadingComplete();
|
sl@0
|
1529 |
break;
|
sl@0
|
1530 |
|
sl@0
|
1531 |
default:
|
sl@0
|
1532 |
break;
|
sl@0
|
1533 |
}
|
sl@0
|
1534 |
}
|
sl@0
|
1535 |
|
sl@0
|
1536 |
TBool CMMFDrmAudioPlayerUtility::IsValidCustomCommandDestination(TUid aDestinationUid, const TDesC8& aParam)
|
sl@0
|
1537 |
{
|
sl@0
|
1538 |
TBool retValue(ETrue);
|
sl@0
|
1539 |
if (aDestinationUid == KUidInterfaceMMFDRMControl)
|
sl@0
|
1540 |
{
|
sl@0
|
1541 |
retValue = EFalse;
|
sl@0
|
1542 |
}
|
sl@0
|
1543 |
else if ( aDestinationUid == KUidCustomInterfaceBuilderImpl )
|
sl@0
|
1544 |
{
|
sl@0
|
1545 |
TRAPD(err, retValue = CheckCustomInterfaceBuilderImplL(aParam));
|
sl@0
|
1546 |
if((err != KErrNone) || (retValue == EFalse))
|
sl@0
|
1547 |
retValue = EFalse;
|
sl@0
|
1548 |
}
|
sl@0
|
1549 |
return retValue;
|
sl@0
|
1550 |
}
|
sl@0
|
1551 |
|
sl@0
|
1552 |
TBool CMMFDrmAudioPlayerUtility::CheckCustomInterfaceBuilderImplL(const TDesC8& aParam)
|
sl@0
|
1553 |
{
|
sl@0
|
1554 |
TBool retValue(ETrue);
|
sl@0
|
1555 |
RDesReadStream stream(aParam);
|
sl@0
|
1556 |
CleanupClosePushL(stream);
|
sl@0
|
1557 |
TUid paramUid;
|
sl@0
|
1558 |
paramUid.iUid = stream.ReadInt32L();
|
sl@0
|
1559 |
CleanupStack::PopAndDestroy(&stream);
|
sl@0
|
1560 |
if ( paramUid == KUidAudioOutput )
|
sl@0
|
1561 |
{
|
sl@0
|
1562 |
retValue = EFalse;
|
sl@0
|
1563 |
}
|
sl@0
|
1564 |
return retValue;
|
sl@0
|
1565 |
}
|
sl@0
|
1566 |
|
sl@0
|
1567 |
// End of file
|