os/ossrv/lowlevellibsandfws/apputils/src/inc/BaSsndStore.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/src/inc/BaSsndStore.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,67 @@
     1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @internalTechnology
    1.22 +*/
    1.23 +
    1.24 +#ifndef __BASSNDSTORE_H__
    1.25 +#define __BASSNDSTORE_H__
    1.26 +
    1.27 +#include <bassnd.h>
    1.28 +#include <centralrepository.h>
    1.29 +
    1.30 +
    1.31 +/**
    1.32 +This class encapsulates storing and retrieving sound data
    1.33 +to and from persistent storage.
    1.34 +*/
    1.35 +NONSHARABLE_CLASS(CBaSsndStore) : public CBase
    1.36 +	{
    1.37 +public:
    1.38 +	static CBaSsndStore* NewL();
    1.39 +	~CBaSsndStore();
    1.40 +
    1.41 +	TInt GetSound(const TBaSystemSoundType& aSoundType,
    1.42 +				  TBaSystemSoundInfo& aInfo) const;
    1.43 +	TInt GetSoundCategory(const TBaSystemSoundUid& aSSUid,
    1.44 +						  CArrayFixFlat<TBaSystemSoundInfo>& aArray) const;
    1.45 +	void SetSoundL(const TBaSystemSoundInfo& aInfo) const;
    1.46 +
    1.47 +protected:
    1.48 +	// These are protected to facilitate testing concurrent SetSound
    1.49 +	CBaSsndStore();
    1.50 +	void ConstructL();
    1.51 +
    1.52 +	virtual void KeyOfSoundTypeL(TBaSystemSoundType& aSoundType, TUint32& aKey) const;
    1.53 +	virtual void SetSoundInTransactionL(TBaSystemSoundType& aSoundType,
    1.54 +										const TDesC8& aDes8) const;
    1.55 +
    1.56 +private:
    1.57 +	void GetSoundL(const TBaSystemSoundType& aSoundType,
    1.58 +				   TBaSystemSoundInfo& aInfo) const;
    1.59 +	void GetSoundCategoryL(const TBaSystemSoundUid& aSSUid,
    1.60 +						  CArrayFixFlat<TBaSystemSoundInfo>& aArray) const;
    1.61 +	void FindKeyL(const TBaSystemSoundType& aSoundType,
    1.62 +				  TUint32& aKey,
    1.63 +				  TBool aNoLeaveIfNotFound) const;
    1.64 +	void FindKeyL(const TBaSystemSoundUid& aSSUid, RArray<TUint32>& aKeys) const;
    1.65 +	void FindNextEmptySlotL(TUint32& aKey) const;
    1.66 +
    1.67 +protected:
    1.68 +	CRepository*	iRepository;
    1.69 +	};
    1.70 +#endif