sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <bassnd.h>
|
sl@0
|
17 |
#include <baflpan.h>
|
sl@0
|
18 |
#include <basched.h>
|
sl@0
|
19 |
#include <bautils.h>
|
sl@0
|
20 |
#include "BaSsndStore.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
const TInt KSystemSoundArrayGranularity =4;
|
sl@0
|
23 |
const TInt KNullFixedSequence=-1;
|
sl@0
|
24 |
|
sl@0
|
25 |
// Full path and name of system sound file.
|
sl@0
|
26 |
_LIT(KSystemSoundFilePath,"_:\\system\\data\\syssnd.dat");
|
sl@0
|
27 |
// Buffer descriptor to hold full path and name of system sound file.
|
sl@0
|
28 |
typedef TBuf<28> TSystemSoundFileName; // a multiple of 4
|
sl@0
|
29 |
|
sl@0
|
30 |
_LIT(KSystemSoundDefaultSound,"z:\\system\\SystemSounds\\ring.wav");
|
sl@0
|
31 |
_LIT(KSystemSoundDefaultRing,"z:\\system\\SystemSounds\\ring.wav");
|
sl@0
|
32 |
_LIT(KSystemSoundDefaultAlarm,"z:\\system\\SystemSounds\\alarm.wav");
|
sl@0
|
33 |
_LIT(KSystemSoundDefaultMessage,"z:\\system\\SystemSounds\\message.wav");
|
sl@0
|
34 |
|
sl@0
|
35 |
//
|
sl@0
|
36 |
// class TBaSystemSoundType
|
sl@0
|
37 |
//
|
sl@0
|
38 |
|
sl@0
|
39 |
EXPORT_C TBaSystemSoundType::TBaSystemSoundType()
|
sl@0
|
40 |
: iMajor(KNullUid), iMinor(KNullUid)
|
sl@0
|
41 |
/** Constructs a TBaSystemSoundType object with a null category and instance. */
|
sl@0
|
42 |
{}
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
EXPORT_C TBaSystemSoundType::TBaSystemSoundType(TBaSystemSoundUid aMajor,TUid aMinor)
|
sl@0
|
46 |
: iMajor(aMajor), iMinor(aMinor)
|
sl@0
|
47 |
/** Constructs a TBaSystemSoundType object with the specified category and, optionally,
|
sl@0
|
48 |
instance.
|
sl@0
|
49 |
|
sl@0
|
50 |
@param aMajor The category, this can be a file, tone or sequence.
|
sl@0
|
51 |
@param aMinor The instance of the category. This is optional. */
|
sl@0
|
52 |
{}
|
sl@0
|
53 |
|
sl@0
|
54 |
|
sl@0
|
55 |
EXPORT_C TBool TBaSystemSoundType::operator==(const TBaSystemSoundType& aType) const
|
sl@0
|
56 |
/** Tests whether the sound's category and instance are the same as that specified.
|
sl@0
|
57 |
|
sl@0
|
58 |
@param aType The category and instance to test.
|
sl@0
|
59 |
@return ETrue if the sound's category and instance is the same as aType, EFalse
|
sl@0
|
60 |
otherwise. */
|
sl@0
|
61 |
{
|
sl@0
|
62 |
return (iMajor==aType.iMajor && iMinor==aType.iMinor);
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
//
|
sl@0
|
66 |
// class TBaSystemSoundInfo
|
sl@0
|
67 |
//
|
sl@0
|
68 |
TBool TBaSystemSoundInfo::TTone::IsNull() const
|
sl@0
|
69 |
/** Tests whether the sound's category and instance are null.
|
sl@0
|
70 |
@internalAll
|
sl@0
|
71 |
@return ETrue if the sound's category and instance are null, EFalse
|
sl@0
|
72 |
otherwise. */
|
sl@0
|
73 |
{
|
sl@0
|
74 |
return iFrequency==0 && iDuration.Int()==0;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
|
sl@0
|
78 |
void TBaSystemSoundInfo::TTone::InternalizeL(RReadStream& aStream)
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
@internalAll
|
sl@0
|
81 |
Gets a tone's frequency and duration.
|
sl@0
|
82 |
|
sl@0
|
83 |
@param aStream The stream from which the tone's frequency and duration is read.
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
{
|
sl@0
|
86 |
iFrequency=aStream.ReadInt32L();
|
sl@0
|
87 |
iDuration=aStream.ReadInt32L();
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
|
sl@0
|
91 |
void TBaSystemSoundInfo::TTone::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
@internalAll
|
sl@0
|
94 |
Saves a tone's frequency and duration.
|
sl@0
|
95 |
|
sl@0
|
96 |
@param aStream The stream to which the tone's frequency and duration is
|
sl@0
|
97 |
written.
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
|
sl@0
|
100 |
{
|
sl@0
|
101 |
aStream.WriteInt32L(iFrequency);
|
sl@0
|
102 |
aStream.WriteInt32L(iDuration.Int());
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
EXPORT_C TBaSystemSoundInfo::TBaSystemSoundInfo()
|
sl@0
|
106 |
: iType(KNullUid,KNullUid), iVolume(KSystemSoundDefaultVolume), iPriority(KSystemSoundDefaultPriority),
|
sl@0
|
107 |
iName(KNullDesC), iFixedSequence(KNullFixedSequence), iTone(TTone())
|
sl@0
|
108 |
/** Constructs a default TBaSystemSoundInfo object. This object has a null type,
|
sl@0
|
109 |
default volume, default priority, null name, null fixed sequence, and tone
|
sl@0
|
110 |
of TTone. */
|
sl@0
|
111 |
{}
|
sl@0
|
112 |
|
sl@0
|
113 |
EXPORT_C TBaSystemSoundInfo::TBaSystemSoundInfo(const TBaSystemSoundType& aType,const TBaSystemSoundName& aName,
|
sl@0
|
114 |
TInt aVolume,TInt aPriority)
|
sl@0
|
115 |
: iType(aType), iVolume(aVolume), iPriority(aPriority), iName(aName),
|
sl@0
|
116 |
iFixedSequence(KNullFixedSequence), iTone(TTone())
|
sl@0
|
117 |
/** Constructs a TBaSystemSoundInfo object with the specified type and file name.
|
sl@0
|
118 |
The sound has default volume and priority.
|
sl@0
|
119 |
|
sl@0
|
120 |
@param aType Sound type
|
sl@0
|
121 |
@param aName Sound name
|
sl@0
|
122 |
@param aVolume Sound volume
|
sl@0
|
123 |
@param aPriority Sound priority */
|
sl@0
|
124 |
{}
|
sl@0
|
125 |
|
sl@0
|
126 |
EXPORT_C TBaSystemSoundInfo::TBaSystemSoundInfo(const TBaSystemSoundType& aType,TInt aFixedSequence,
|
sl@0
|
127 |
TInt aVolume,TInt aPriority)
|
sl@0
|
128 |
: iType(aType), iVolume(aVolume), iPriority(aPriority), iName(KNullDesC),
|
sl@0
|
129 |
iFixedSequence(aFixedSequence), iTone(TTone())
|
sl@0
|
130 |
/** Constructs a TBaSystemSoundInfo object with the specified type and sequence.
|
sl@0
|
131 |
The sound has default volume and priority.
|
sl@0
|
132 |
|
sl@0
|
133 |
@param aType Sound type
|
sl@0
|
134 |
@param aFixedSequence Sound sequence
|
sl@0
|
135 |
@param aVolume Sound volume
|
sl@0
|
136 |
@param aPriority Sound priority */
|
sl@0
|
137 |
{}
|
sl@0
|
138 |
|
sl@0
|
139 |
EXPORT_C TBaSystemSoundInfo::TBaSystemSoundInfo(const TBaSystemSoundType& aType,TTone aTone,
|
sl@0
|
140 |
TInt aVolume,TInt aPriority)
|
sl@0
|
141 |
: iType(aType), iVolume(aVolume), iPriority(aPriority), iName(KNullDesC),
|
sl@0
|
142 |
iFixedSequence(KNullFixedSequence), iTone(aTone)
|
sl@0
|
143 |
/** Constructs a TBaSystemSoundInfo object with the specified type and tone. The
|
sl@0
|
144 |
sound has default volume and priority.
|
sl@0
|
145 |
|
sl@0
|
146 |
@param aType Sound type
|
sl@0
|
147 |
@param aTone Sound tone
|
sl@0
|
148 |
@param aVolume Sound volume
|
sl@0
|
149 |
@param aPriority Sound priority */
|
sl@0
|
150 |
{}
|
sl@0
|
151 |
|
sl@0
|
152 |
|
sl@0
|
153 |
EXPORT_C TBaSystemSoundInfo::TSoundCategory TBaSystemSoundInfo::SoundCategory() const
|
sl@0
|
154 |
/** Gets the sound's category.
|
sl@0
|
155 |
|
sl@0
|
156 |
@return The system sound's category, or NULL if the sound is not a file, sequence,
|
sl@0
|
157 |
or tone. */
|
sl@0
|
158 |
{
|
sl@0
|
159 |
TBaSystemSoundInfo::TSoundCategory cat=TBaSystemSoundInfo::ENull;
|
sl@0
|
160 |
if (!iTone.IsNull())
|
sl@0
|
161 |
cat=TBaSystemSoundInfo::ETone;
|
sl@0
|
162 |
else if (iName.Length())
|
sl@0
|
163 |
cat=TBaSystemSoundInfo::EFile;
|
sl@0
|
164 |
else if (iFixedSequence!=KNullFixedSequence)
|
sl@0
|
165 |
cat=TBaSystemSoundInfo::ESequence;
|
sl@0
|
166 |
return cat;
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
|
sl@0
|
170 |
EXPORT_C void TBaSystemSoundInfo::SetFixedSequenceNumber(TInt aNumber)
|
sl@0
|
171 |
/** Replaces the current sound with the specified sequence number.
|
sl@0
|
172 |
|
sl@0
|
173 |
@param aNumber The sequence number with which to replace the current sound. */
|
sl@0
|
174 |
{
|
sl@0
|
175 |
iFixedSequence=aNumber;
|
sl@0
|
176 |
iName=KNullDesC();
|
sl@0
|
177 |
iTone=TTone();
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
|
sl@0
|
181 |
EXPORT_C void TBaSystemSoundInfo::SetFileName(const TBaSystemSoundName& aFileName)
|
sl@0
|
182 |
/** Replaces the current sound with the specified file.
|
sl@0
|
183 |
|
sl@0
|
184 |
@param aFileName The file with which to replace the current sound. */
|
sl@0
|
185 |
{
|
sl@0
|
186 |
iFixedSequence=KNullFixedSequence;
|
sl@0
|
187 |
iName=aFileName;
|
sl@0
|
188 |
iTone=TTone();
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
|
sl@0
|
192 |
EXPORT_C void TBaSystemSoundInfo::SetTone(const TTone& aTone)
|
sl@0
|
193 |
/** Replaces the current sound with the specified tone.
|
sl@0
|
194 |
|
sl@0
|
195 |
@param aTone The tone with which to replace the current sound. */
|
sl@0
|
196 |
{
|
sl@0
|
197 |
iFixedSequence=KNullFixedSequence;
|
sl@0
|
198 |
iName=KNullDesC();
|
sl@0
|
199 |
iTone=aTone;
|
sl@0
|
200 |
}
|
sl@0
|
201 |
/** Internalises an object of this class from a read stream.
|
sl@0
|
202 |
Presence of this function means that the standard templated operator>>()
|
sl@0
|
203 |
can be used to internalise objects of this class.
|
sl@0
|
204 |
|
sl@0
|
205 |
@param aStream The stream from which the object is to be internalised.
|
sl@0
|
206 |
@internalAll
|
sl@0
|
207 |
*/
|
sl@0
|
208 |
void TBaSystemSoundInfo::InternalizeL(RReadStream& aStream)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
aStream >> iType.iMajor;
|
sl@0
|
211 |
aStream >> iType.iMinor;
|
sl@0
|
212 |
iVolume = aStream.ReadInt32L();
|
sl@0
|
213 |
iPriority = aStream.ReadInt32L();
|
sl@0
|
214 |
|
sl@0
|
215 |
TSoundCategory cat = (TSoundCategory)aStream.ReadInt32L();
|
sl@0
|
216 |
switch (cat)
|
sl@0
|
217 |
{
|
sl@0
|
218 |
case EFile:
|
sl@0
|
219 |
{
|
sl@0
|
220 |
TUint16 pathLength = aStream.ReadUint16L();
|
sl@0
|
221 |
if (pathLength > iName.MaxLength())
|
sl@0
|
222 |
{
|
sl@0
|
223 |
User::Leave(KErrCorrupt);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
TUint16* buf = const_cast<TUint16*>(iName.Ptr());
|
sl@0
|
226 |
aStream.ReadL(buf, pathLength);
|
sl@0
|
227 |
iName.SetLength(pathLength);
|
sl@0
|
228 |
|
sl@0
|
229 |
iFixedSequence=KNullFixedSequence;
|
sl@0
|
230 |
iTone=TTone();
|
sl@0
|
231 |
}
|
sl@0
|
232 |
break;
|
sl@0
|
233 |
|
sl@0
|
234 |
case ESequence:
|
sl@0
|
235 |
iFixedSequence = aStream.ReadInt32L();
|
sl@0
|
236 |
iName=KNullDesC;
|
sl@0
|
237 |
iTone=TTone();
|
sl@0
|
238 |
break;
|
sl@0
|
239 |
|
sl@0
|
240 |
case ETone:
|
sl@0
|
241 |
aStream >> iTone;
|
sl@0
|
242 |
iName=KNullDesC;
|
sl@0
|
243 |
iFixedSequence=KNullFixedSequence;
|
sl@0
|
244 |
break;
|
sl@0
|
245 |
|
sl@0
|
246 |
default:
|
sl@0
|
247 |
User::Leave(KErrCorrupt);
|
sl@0
|
248 |
}
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
/** Externalises an object of this class to a write stream.
|
sl@0
|
252 |
The presence of this function means that the standard templated operator<<()
|
sl@0
|
253 |
can be used to externalise objects of this class.
|
sl@0
|
254 |
|
sl@0
|
255 |
@param aStream Stream to which the object should be externalised.
|
sl@0
|
256 |
*/
|
sl@0
|
257 |
void TBaSystemSoundInfo::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
258 |
{
|
sl@0
|
259 |
aStream << iType.iMajor;
|
sl@0
|
260 |
aStream << iType.iMinor;
|
sl@0
|
261 |
aStream.WriteInt32L(iVolume);
|
sl@0
|
262 |
aStream.WriteInt32L(iPriority);
|
sl@0
|
263 |
|
sl@0
|
264 |
TSoundCategory cat = SoundCategory();
|
sl@0
|
265 |
aStream.WriteInt32L((TInt32)cat);
|
sl@0
|
266 |
|
sl@0
|
267 |
switch (cat)
|
sl@0
|
268 |
{
|
sl@0
|
269 |
case TBaSystemSoundInfo::EFile:
|
sl@0
|
270 |
{
|
sl@0
|
271 |
// Do it this way so that in InternalizeL we can check
|
sl@0
|
272 |
// for data corruption.
|
sl@0
|
273 |
TUint16 pathLength = iName.Length();
|
sl@0
|
274 |
aStream.WriteUint16L(pathLength);
|
sl@0
|
275 |
aStream.WriteL(iName.Ptr(), pathLength);
|
sl@0
|
276 |
}
|
sl@0
|
277 |
break;
|
sl@0
|
278 |
case TBaSystemSoundInfo::ESequence:
|
sl@0
|
279 |
aStream.WriteInt32L( iFixedSequence );
|
sl@0
|
280 |
break;
|
sl@0
|
281 |
case TBaSystemSoundInfo::ETone:
|
sl@0
|
282 |
aStream << iTone;
|
sl@0
|
283 |
break;
|
sl@0
|
284 |
default:
|
sl@0
|
285 |
// object not initialized
|
sl@0
|
286 |
User::Leave(KErrCorrupt);
|
sl@0
|
287 |
}
|
sl@0
|
288 |
}
|
sl@0
|
289 |
|
sl@0
|
290 |
//
|
sl@0
|
291 |
// class BaSystemSound
|
sl@0
|
292 |
//
|
sl@0
|
293 |
|
sl@0
|
294 |
EXPORT_C TInt BaSystemSound::GetSound(RFs& /* aFsSession */,const TBaSystemSoundType& aType,TBaSystemSoundInfo& aInfo)
|
sl@0
|
295 |
/** Gets sound information from storage.
|
sl@0
|
296 |
|
sl@0
|
297 |
@param aFsSession unused parameter kept for compatibility reason.
|
sl@0
|
298 |
@param aType unique identifier of the sound. aType encapsulates a major
|
sl@0
|
299 |
and optionally a minor UID. The major UID specifes the sound category
|
sl@0
|
300 |
while the minor UID specifies an instance of the category.
|
sl@0
|
301 |
@param aInfo On return, the sound.
|
sl@0
|
302 |
@return KErrNone if successful, or one of the system wide errors if
|
sl@0
|
303 |
unsuccessful. */
|
sl@0
|
304 |
{ // static
|
sl@0
|
305 |
CBaSsndStore* soundStore(NULL);
|
sl@0
|
306 |
TRAPD(err, soundStore = CBaSsndStore::NewL() );
|
sl@0
|
307 |
|
sl@0
|
308 |
if (err == KErrNone)
|
sl@0
|
309 |
{
|
sl@0
|
310 |
err = soundStore->GetSound(aType, aInfo);
|
sl@0
|
311 |
|
sl@0
|
312 |
if (err == KErrNotFound && aType.iMinor != KNullUid)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
TBaSystemSoundType tmpType(aType.iMajor);
|
sl@0
|
315 |
err = soundStore->GetSound(tmpType, aInfo);
|
sl@0
|
316 |
}
|
sl@0
|
317 |
|
sl@0
|
318 |
delete soundStore; // finish with the pointer
|
sl@0
|
319 |
} // CBaSsndStore::NewL is successful
|
sl@0
|
320 |
|
sl@0
|
321 |
// err can be from CBaSsndStore::NewL or CBaSsndStore::GetSound
|
sl@0
|
322 |
if (err != KErrNone)
|
sl@0
|
323 |
{
|
sl@0
|
324 |
aInfo.SetFileName( DefaultSound(aType.iMajor) );
|
sl@0
|
325 |
aInfo.iVolume=KSystemSoundDefaultVolume;
|
sl@0
|
326 |
aInfo.iPriority=KSystemSoundDefaultPriority;
|
sl@0
|
327 |
}
|
sl@0
|
328 |
|
sl@0
|
329 |
return err;
|
sl@0
|
330 |
}
|
sl@0
|
331 |
|
sl@0
|
332 |
|
sl@0
|
333 |
EXPORT_C void BaSystemSound::SetSoundL(RFs& /* aFsSession */,const TBaSystemSoundInfo& aInfo)
|
sl@0
|
334 |
/** Adds the specified sound to the system sound table if it does not
|
sl@0
|
335 |
already exist in the table. If the sound already exists then overwrite
|
sl@0
|
336 |
the entry in the sound table.
|
sl@0
|
337 |
|
sl@0
|
338 |
@param aFsSession unused parameter kept for backward compatibility.
|
sl@0
|
339 |
@param aInfo The sound to add to the system sound table.
|
sl@0
|
340 |
@capability WriteDeviceData Note only clients with WriteDeviceData capability can sucessfully
|
sl@0
|
341 |
call this API.
|
sl@0
|
342 |
@leave KErrPermissionDenied caller does not have WriteDeviceData capability.
|
sl@0
|
343 |
@leave KErrArgument if the sound has not been initialized.
|
sl@0
|
344 |
Other system-wide error codes may also be returned.
|
sl@0
|
345 |
*/
|
sl@0
|
346 |
{ // static
|
sl@0
|
347 |
TBaSystemSoundInfo::TSoundCategory cat = aInfo.SoundCategory();
|
sl@0
|
348 |
if (cat == TBaSystemSoundInfo::ENull)
|
sl@0
|
349 |
{
|
sl@0
|
350 |
User::Leave(KErrArgument);
|
sl@0
|
351 |
}
|
sl@0
|
352 |
|
sl@0
|
353 |
//check that the name includes a path
|
sl@0
|
354 |
#ifdef _DEBUG
|
sl@0
|
355 |
if (cat == TBaSystemSoundInfo::EFile)
|
sl@0
|
356 |
{
|
sl@0
|
357 |
TFileName fullpath = BaflUtils::DriveAndPathFromFullName(
|
sl@0
|
358 |
aInfo.FileName() );
|
sl@0
|
359 |
if (fullpath.Length()==0)
|
sl@0
|
360 |
{
|
sl@0
|
361 |
Panic(EBafPanicSystemSoundNoPath);
|
sl@0
|
362 |
}
|
sl@0
|
363 |
}
|
sl@0
|
364 |
#endif
|
sl@0
|
365 |
CBaSsndStore* ssndStore = CBaSsndStore::NewL();
|
sl@0
|
366 |
CleanupStack::PushL(ssndStore);
|
sl@0
|
367 |
ssndStore->SetSoundL(aInfo);
|
sl@0
|
368 |
CleanupStack::PopAndDestroy(ssndStore);
|
sl@0
|
369 |
}
|
sl@0
|
370 |
|
sl@0
|
371 |
/**
|
sl@0
|
372 |
Returns the system sound filename.
|
sl@0
|
373 |
|
sl@0
|
374 |
This function is now deprecated. System sounds are now stored in Central Repository.
|
sl@0
|
375 |
The function still returns the file name, but the file is no longer read from nor written to.
|
sl@0
|
376 |
There is no guarantee that the file exists.
|
sl@0
|
377 |
|
sl@0
|
378 |
Client code which uses the filename for backup and restore
|
sl@0
|
379 |
purposes should be removed. Central Repository handles backup and
|
sl@0
|
380 |
restore of system sound settings.
|
sl@0
|
381 |
|
sl@0
|
382 |
Client code that uses the filename for change notification
|
sl@0
|
383 |
must use KSystemSoundRepositoryUID to connect to Central Repository and
|
sl@0
|
384 |
must register for group notification on system sound repository
|
sl@0
|
385 |
changes. For example, if you used code such as:
|
sl@0
|
386 |
@code
|
sl@0
|
387 |
iFs.Connect() ;
|
sl@0
|
388 |
TFileName soundFileName = BaSystemSound ::SystemSoundFile();
|
sl@0
|
389 |
iFs.NotifyChange(ENotifyAll, iRequestStatus, soundFileName);
|
sl@0
|
390 |
@endcode
|
sl@0
|
391 |
you would now use:
|
sl@0
|
392 |
@code
|
sl@0
|
393 |
const Tuint32 KDoNotCareValue = 0 ;
|
sl@0
|
394 |
const Tuint32 KAllMask = 0 ;
|
sl@0
|
395 |
iRepository = CRepository ::NewL(KBaSsndRepositoryUid);
|
sl@0
|
396 |
iRepository.NotifyRequest(KDoNotCareValue, KAllMask, iRequestStatus);
|
sl@0
|
397 |
@endcode
|
sl@0
|
398 |
|
sl@0
|
399 |
@see CRepository::NotifyRequest()
|
sl@0
|
400 |
@deprecated
|
sl@0
|
401 |
*/
|
sl@0
|
402 |
EXPORT_C TFileName BaSystemSound::SystemSoundFile()
|
sl@0
|
403 |
{ // static
|
sl@0
|
404 |
TSystemSoundFileName filename(KSystemSoundFilePath);
|
sl@0
|
405 |
filename[0] = 'A' + static_cast<TInt>(RFs::GetSystemDrive());
|
sl@0
|
406 |
return filename;
|
sl@0
|
407 |
}
|
sl@0
|
408 |
|
sl@0
|
409 |
TBaSystemSoundName BaSystemSound::DefaultSound(TBaSystemSoundUid aSSUid)
|
sl@0
|
410 |
{ // static
|
sl@0
|
411 |
TBaSystemSoundName name;
|
sl@0
|
412 |
if (aSSUid==KSystemSoundRingUID )
|
sl@0
|
413 |
name=KSystemSoundDefaultRing;
|
sl@0
|
414 |
else if (aSSUid==KSystemSoundAlarmUID )
|
sl@0
|
415 |
name=KSystemSoundDefaultAlarm;
|
sl@0
|
416 |
else if (aSSUid==KSystemSoundMessageUID )
|
sl@0
|
417 |
name=KSystemSoundDefaultMessage;
|
sl@0
|
418 |
else
|
sl@0
|
419 |
name=KSystemSoundDefaultSound;
|
sl@0
|
420 |
return name;
|
sl@0
|
421 |
}
|
sl@0
|
422 |
|
sl@0
|
423 |
//
|
sl@0
|
424 |
// class CBaSystemSoundArray
|
sl@0
|
425 |
//
|
sl@0
|
426 |
|
sl@0
|
427 |
/**
|
sl@0
|
428 |
@internalAll*/
|
sl@0
|
429 |
CBaSystemSoundArray::CBaSystemSoundArray()
|
sl@0
|
430 |
: iSystemSounds(KSystemSoundArrayGranularity)
|
sl@0
|
431 |
|
sl@0
|
432 |
{}
|
sl@0
|
433 |
|
sl@0
|
434 |
/**
|
sl@0
|
435 |
@internalAll*/
|
sl@0
|
436 |
CBaSystemSoundArray::~CBaSystemSoundArray()
|
sl@0
|
437 |
{
|
sl@0
|
438 |
iSystemSounds.Reset();
|
sl@0
|
439 |
}
|
sl@0
|
440 |
|
sl@0
|
441 |
EXPORT_C CBaSystemSoundArray* CBaSystemSoundArray::NewL()
|
sl@0
|
442 |
{
|
sl@0
|
443 |
CBaSystemSoundArray* self=new(ELeave) CBaSystemSoundArray;
|
sl@0
|
444 |
return self;
|
sl@0
|
445 |
}
|
sl@0
|
446 |
EXPORT_C CBaSystemSoundArray* CBaSystemSoundArray::NewLC()
|
sl@0
|
447 |
{
|
sl@0
|
448 |
CBaSystemSoundArray* self=CBaSystemSoundArray::NewL();
|
sl@0
|
449 |
CleanupStack::PushL(self);
|
sl@0
|
450 |
return self;
|
sl@0
|
451 |
}
|
sl@0
|
452 |
|
sl@0
|
453 |
/** Retrieves all instances of a sound category.
|
sl@0
|
454 |
@param aFsSession unused parameter kept for backward compatibility
|
sl@0
|
455 |
@param aSSuid specifies the sound category to retrieve.
|
sl@0
|
456 |
*/
|
sl@0
|
457 |
EXPORT_C void CBaSystemSoundArray::RestoreL(RFs& /* aFsSession */,TBaSystemSoundUid aSSUid)
|
sl@0
|
458 |
{
|
sl@0
|
459 |
iUid=aSSUid;
|
sl@0
|
460 |
iSystemSounds.Reset();
|
sl@0
|
461 |
|
sl@0
|
462 |
CBaSsndStore* ssndStore = CBaSsndStore::NewL();
|
sl@0
|
463 |
CleanupStack::PushL(ssndStore);
|
sl@0
|
464 |
User::LeaveIfError( ssndStore->GetSoundCategory(aSSUid, iSystemSounds) );
|
sl@0
|
465 |
CleanupStack::PopAndDestroy(ssndStore);
|
sl@0
|
466 |
}
|
sl@0
|
467 |
|
sl@0
|
468 |
EXPORT_C TBaSystemSoundInfo CBaSystemSoundArray::At(TInt aIndex)
|
sl@0
|
469 |
{
|
sl@0
|
470 |
return iSystemSounds[aIndex];
|
sl@0
|
471 |
}
|
sl@0
|
472 |
|
sl@0
|
473 |
EXPORT_C TInt CBaSystemSoundArray::Count()
|
sl@0
|
474 |
{
|
sl@0
|
475 |
return iSystemSounds.Count();
|
sl@0
|
476 |
}
|
sl@0
|
477 |
|
sl@0
|
478 |
//
|
sl@0
|
479 |
// class TBaSoundPriorityBase
|
sl@0
|
480 |
//
|
sl@0
|
481 |
|
sl@0
|
482 |
const TInt KPrefEpocMask =0x0000FF00;
|
sl@0
|
483 |
const TInt KPrefDeviceMask =0xFFFF0000;
|
sl@0
|
484 |
|
sl@0
|
485 |
EXPORT_C TMdaPriorityPreference TBaSoundPriorityBase::PriorityPreference() const
|
sl@0
|
486 |
{
|
sl@0
|
487 |
TInt pref=0;
|
sl@0
|
488 |
pref=(iPriority&KPrefEpocMask)>>8;
|
sl@0
|
489 |
pref|=(iPriority&KPrefDeviceMask);
|
sl@0
|
490 |
return static_cast<TMdaPriorityPreference>(pref);
|
sl@0
|
491 |
}
|
sl@0
|
492 |
|
sl@0
|
493 |
/**
|
sl@0
|
494 |
@internalAll*/
|
sl@0
|
495 |
void TBaSoundPriorityBase::Set(TInt aPriority,TMdaPriorityPreference aPriorityPreference)
|
sl@0
|
496 |
|
sl@0
|
497 |
{
|
sl@0
|
498 |
__ASSERT_ALWAYS(aPriority>=EMdaPriorityMin && aPriority<=EMdaPriorityMax,Panic(EBafPanicInvalidSoundPriority));
|
sl@0
|
499 |
iPriority=0;
|
sl@0
|
500 |
*(TInt8*)&iPriority=(TInt8)aPriority;
|
sl@0
|
501 |
iPriority|=((aPriorityPreference<<8)&KPrefEpocMask);
|
sl@0
|
502 |
iPriority|=(aPriorityPreference&KPrefDeviceMask);
|
sl@0
|
503 |
}
|
sl@0
|
504 |
|
sl@0
|
505 |
//
|
sl@0
|
506 |
// class TBaSoundPriorityEncoder
|
sl@0
|
507 |
//
|
sl@0
|
508 |
|
sl@0
|
509 |
EXPORT_C TBaSoundPriorityEncoder::TBaSoundPriorityEncoder(TInt aPriority,TMdaPriorityPreference aPriorityPreference)
|
sl@0
|
510 |
{
|
sl@0
|
511 |
Set(aPriority,aPriorityPreference);
|
sl@0
|
512 |
}
|