os/persistentdata/persistentstorage/centralrepository/include/centralrepository.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2004-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
#ifndef __CENTRALREPOSITORY_H__
sl@0
    17
#define __CENTRALREPOSITORY_H__
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
sl@0
    21
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS 
sl@0
    22
	#include <centralrepositoryinternal.h>
sl@0
    23
#endif
sl@0
    24
sl@0
    25
namespace NCentralRepositoryConstants
sl@0
    26
/** Namespace encapsulating the CentralRepository constants.
sl@0
    27
@publishedAll
sl@0
    28
@released
sl@0
    29
*/
sl@0
    30
{
sl@0
    31
	
sl@0
    32
/** The maximum number of unicode characters that can be stored in a setting
sl@0
    33
@publishedAll
sl@0
    34
@released
sl@0
    35
*/
sl@0
    36
const TInt KMaxUnicodeStringLength = 1024;
sl@0
    37
sl@0
    38
/** The maximum number of bytes that can be stored in a setting
sl@0
    39
@publishedAll
sl@0
    40
@released
sl@0
    41
*/
sl@0
    42
const TInt KMaxBinaryLength = KMaxUnicodeStringLength*2;
sl@0
    43
sl@0
    44
/** Error key returned by CommitTransaction in case of an error that cannot be
sl@0
    45
attributed to any single or partial key. Also notify value for spurious 
sl@0
    46
notifications (eg when a notification is cancelled or several values change at once )
sl@0
    47
@publishedAll
sl@0
    48
@released
sl@0
    49
*/
sl@0
    50
const TUint32 KUnspecifiedKey = 0xffffffffUL;
sl@0
    51
sl@0
    52
/** Use KUnspecifiedKey instead of this value.
sl@0
    53
@publishedAll
sl@0
    54
@deprecated
sl@0
    55
*/
sl@0
    56
const TUint32 KInvalidNotificationId = KUnspecifiedKey;
sl@0
    57
sl@0
    58
/** The 8 most significant bits of a setting's meta-data are reserved for internal use.
sl@0
    59
Clients should not make use of the reserved bits (unless it is specifically stated
sl@0
    60
otherwise in Symbian developer documentation).  Clients should not rely on the value
sl@0
    61
of the reserved bits.  Reserved bits are not guaranteed to be 0 or 1 and are not
sl@0
    62
guaranteed to stay constant from one GetMeta call to the next.
sl@0
    63
@released
sl@0
    64
@see CRepository::GetMeta
sl@0
    65
@see KMetaUnreserved
sl@0
    66
*/
sl@0
    67
const TUint32 KMetaSymbianReserved = 0xFF000000; 
sl@0
    68
sl@0
    69
/** The 24 least significant bits of a setting's meta-data are available for use. Clients
sl@0
    70
should make use of KMetaUnreserved to mask out the reserved bits following a call
sl@0
    71
to GetMeta.  Clients should not rely on the value of the reserved bits.  Reserved bits
sl@0
    72
are not guaranteed to be 0 or 1 and are not guaranteed to stay constant from one
sl@0
    73
GetMeta call to the next.
sl@0
    74
@released
sl@0
    75
@see CRepository::GetMeta
sl@0
    76
@see KMetaSymbianReserved 
sl@0
    77
*/
sl@0
    78
const TUint32 KMetaUnreserved = 0x00FFFFFF; 
sl@0
    79
sl@0
    80
} // namespace NCentralRepositoryConstants
sl@0
    81
sl@0
    82
/** Provides access to a repository.
sl@0
    83
sl@0
    84
There are potentially 2^32 repositories, each identified by a UID. Within each
sl@0
    85
repository up to 2^32 settings can be stored. Settings within a repository are
sl@0
    86
identified by a 32-bit key and may be of the types integer, real or descriptor.
sl@0
    87
@publishedAll
sl@0
    88
@released
sl@0
    89
*/
sl@0
    90
class CRepository : public CBase
sl@0
    91
	{
sl@0
    92
public:
sl@0
    93
sl@0
    94
	/**	Transaction mode chosen with StartTransaction.
sl@0
    95
	*/
sl@0
    96
	enum TTransactionMode
sl@0
    97
		{
sl@0
    98
		/** Standard optimistic non-serialised transaction. Can be started at any time
sl@0
    99
		Commit fails with KErrLocked if another client interrupts it by first committing
sl@0
   100
		changes: transaction should be repeated until KErrLocked is not returned.
sl@0
   101
		*/
sl@0
   102
		EConcurrentReadWriteTransaction = 2,
sl@0
   103
		/** Pessimistic locking transaction intended for reading consistent values.
sl@0
   104
		Can only be started if EReadWriteTransaction is not in progress.
sl@0
   105
		Automatically promoted to EReadWriteTransaction on first write operation
sl@0
   106
		if no other read transaction is in progress (or fails if not attainable).
sl@0
   107
		Use ONLY if all clients can agree not to use EConcurrentReadWriteTransaction,
sl@0
   108
		and only make changes in an EReadWriteTransaction.
sl@0
   109
		*/
sl@0
   110
		EReadTransaction = 1,
sl@0
   111
		/** Pessimistic locking transaction intended for writing values. Can only be
sl@0
   112
		started if no EReadTransaction or EReadWriteTransactions are in progress.
sl@0
   113
		Use ONLY if all clients can agree not to use EConcurrentReadWriteTransaction,
sl@0
   114
		and only make changes in an EReadWriteTransaction.
sl@0
   115
		*/
sl@0
   116
		EReadWriteTransaction = 3
sl@0
   117
		};
sl@0
   118
sl@0
   119
	/** Buffer type for aKeyInfo parameter to asynchronous CommitTransaction.
sl@0
   120
	@see CRepository::CommitTransaction(TDes8& aKeyInfo, TRequestStatus& aStatus)
sl@0
   121
	*/
sl@0
   122
	typedef TPckgBuf<TUint32> TTransactionKeyInfoBuf;
sl@0
   123
sl@0
   124
	IMPORT_C static CRepository* NewL(TUid aRepositoryUid);
sl@0
   125
	IMPORT_C static CRepository* NewLC(TUid aRepositoryUid);
sl@0
   126
sl@0
   127
	IMPORT_C virtual ~CRepository();
sl@0
   128
	IMPORT_C TInt Create(TUint32 aKey, TInt aValue);
sl@0
   129
	IMPORT_C TInt Create(TUint32 aKey, const TReal& aValue);
sl@0
   130
	IMPORT_C TInt Create(TUint32 aKey, const TDesC8& aValue);
sl@0
   131
	IMPORT_C TInt Create(TUint32 aKey, const TDesC16& aValue);
sl@0
   132
sl@0
   133
	IMPORT_C TInt Delete(TUint32 aKey);
sl@0
   134
	IMPORT_C TInt Delete(TUint32 aPartialKey, TUint32 aMask, TUint32 &aErrorKey) ;
sl@0
   135
sl@0
   136
	IMPORT_C TInt Get(TUint32 aKey, TInt& aValue);
sl@0
   137
	IMPORT_C TInt Set(TUint32 aKey, TInt aValue);
sl@0
   138
	
sl@0
   139
	IMPORT_C TInt Get(TUint32 aKey, TReal& aValue);
sl@0
   140
	IMPORT_C TInt Set(TUint32 aKey, const TReal& aValue);
sl@0
   141
sl@0
   142
	IMPORT_C TInt Get(TUint32 aKey, TDes8& aValue);
sl@0
   143
	IMPORT_C TInt Get(TUint32 aId, TDes8& aValue, TInt& aActualLength);
sl@0
   144
	IMPORT_C TInt Set(TUint32 aKey, const TDesC8& aValue);
sl@0
   145
sl@0
   146
	IMPORT_C TInt Get(TUint32 aKey, TDes16& aValue);
sl@0
   147
	IMPORT_C TInt Get(TUint32 aId, TDes16& aValue, TInt& aActualLength);
sl@0
   148
	IMPORT_C TInt Set(TUint32 aKey, const TDesC16& aValue);
sl@0
   149
sl@0
   150
	IMPORT_C TInt GetMeta(TUint32 aKey, TUint32& aMeta);
sl@0
   151
sl@0
   152
	IMPORT_C TInt Move (TUint32 aSourcePartialKey, TUint32 aTargetPartialKey, 
sl@0
   153
	                    TUint32 aMask, TUint32 &aErrorKey) ;
sl@0
   154
sl@0
   155
	IMPORT_C TInt FindL(TUint32 aPartialKey, TUint32 aMask,
sl@0
   156
		RArray<TUint32>& aFoundKeys);
sl@0
   157
sl@0
   158
	IMPORT_C TInt FindEqL(TUint32 aPartialKey, TUint32 aMask,
sl@0
   159
		TInt aValue, RArray<TUint32>& aFoundKeys);
sl@0
   160
	IMPORT_C TInt FindEqL(TUint32 aPartialKey, TUint32 aMask,
sl@0
   161
		const TReal& aValue, RArray<TUint32>& aFoundKeys);
sl@0
   162
	IMPORT_C TInt FindEqL(TUint32 aPartialKey, TUint32 aMask,
sl@0
   163
		const TDesC8& aValue, RArray<TUint32>& aFoundKeys);
sl@0
   164
	IMPORT_C TInt FindEqL(TUint32 aPartialKey, TUint32 aMask,
sl@0
   165
		const TDesC16& aValue, RArray<TUint32>& aFoundKeys);
sl@0
   166
sl@0
   167
	IMPORT_C TInt FindNeqL(TUint32 aPartialKey, TUint32 aMask,
sl@0
   168
		TInt aValue, RArray<TUint32>& aFoundKeys);
sl@0
   169
	IMPORT_C TInt FindNeqL(TUint32 aPartialKey, TUint32 aMask,
sl@0
   170
		const TReal& aValue, RArray<TUint32>& aFoundKeys);
sl@0
   171
	IMPORT_C TInt FindNeqL(TUint32 aPartialKey, TUint32 aMask,
sl@0
   172
		const TDesC8& aValue, RArray<TUint32>& aFoundKeys);
sl@0
   173
	IMPORT_C TInt FindNeqL(TUint32 aPartialKey, TUint32 aMask,
sl@0
   174
		const TDesC16& aValue, RArray<TUint32>& aFoundKeys);
sl@0
   175
sl@0
   176
	IMPORT_C TInt NotifyRequest(TUint32 aKey, TRequestStatus& aStatus);
sl@0
   177
	IMPORT_C TInt NotifyRequest(TUint32 aPartialKey, TUint32 aMask,
sl@0
   178
		TRequestStatus& aStatus);
sl@0
   179
sl@0
   180
	IMPORT_C TInt NotifyCancel(TUint32 aKey);
sl@0
   181
	IMPORT_C TInt NotifyCancel(TUint32 aPartialKey, TUint32 aMask);
sl@0
   182
	IMPORT_C TInt NotifyCancelAll();
sl@0
   183
sl@0
   184
	IMPORT_C TInt Reset();
sl@0
   185
	IMPORT_C TInt Reset(TUint32 aKey);
sl@0
   186
sl@0
   187
	IMPORT_C TInt StartTransaction(TTransactionMode aMode);
sl@0
   188
	IMPORT_C void StartTransaction(TTransactionMode aMode, TRequestStatus& aStatus);
sl@0
   189
	IMPORT_C TInt CommitTransaction(TUint32& aKeyInfo);
sl@0
   190
	IMPORT_C void CommitTransaction(TDes8& aKeyInfo, TRequestStatus& aStatus);
sl@0
   191
	IMPORT_C void CancelTransaction();
sl@0
   192
	IMPORT_C void CleanupCancelTransactionPushL();
sl@0
   193
	IMPORT_C void FailTransaction();
sl@0
   194
	IMPORT_C void CleanupFailTransactionPushL();
sl@0
   195
sl@0
   196
	/** Same as CancelTransaction.
sl@0
   197
	@see CancelTransaction
sl@0
   198
	*/
sl@0
   199
	inline void RollbackTransaction() 
sl@0
   200
		{
sl@0
   201
		CancelTransaction();
sl@0
   202
		}
sl@0
   203
sl@0
   204
	/** Same as CleanupCancelTransactionPushL.
sl@0
   205
	@see CleanupCancelTransactionPushL
sl@0
   206
	*/
sl@0
   207
	inline void CleanupRollbackTransactionPushL()
sl@0
   208
		{
sl@0
   209
		CleanupCancelTransactionPushL();
sl@0
   210
		}
sl@0
   211
	};
sl@0
   212
sl@0
   213
#endif // __CENTRALREPOSITORY_H__