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 |
#if !defined(__DATASTOR_H__)
|
sl@0
|
17 |
#define __DATASTOR_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#if !defined(__E32BASE_H__)
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
|
sl@0
|
23 |
#if !defined(__S32FILE_H__)
|
sl@0
|
24 |
#include <s32file.h>
|
sl@0
|
25 |
#endif
|
sl@0
|
26 |
#if !defined(__APMSTD_H__)
|
sl@0
|
27 |
#include <apmstd.h>
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
|
sl@0
|
30 |
class RReadStream;
|
sl@0
|
31 |
class RWriteStream;
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
@internalComponent
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
const TUid KUidDatastor = {0x1000071E};
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
@internalComponent
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
const TUid KUidDatastorSettings = {0x10000790};
|
sl@0
|
42 |
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
@internalComponent
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
_LIT(KIniFileName,":\\private\\10003a3f\\Dtstor.ini");
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
@internalTechnology
|
sl@0
|
50 |
@released
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
class TMappingDataTypeToApp
|
sl@0
|
53 |
{
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
IMPORT_C TMappingDataTypeToApp();
|
sl@0
|
56 |
IMPORT_C TMappingDataTypeToApp(const TDataType& aDataType,
|
sl@0
|
57 |
TDataTypePriority aPriority, TUid aAppUid);
|
sl@0
|
58 |
IMPORT_C TMappingDataTypeToApp(const TDataType& aDataType,
|
sl@0
|
59 |
TDataTypePriority aPriority, TUid aAppUid, TUid aServiceUid);
|
sl@0
|
60 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
61 |
IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
62 |
public:
|
sl@0
|
63 |
TDataType iDataType;
|
sl@0
|
64 |
TDataTypePriority iPriority;
|
sl@0
|
65 |
TUid iAppUid; // Uid [2] of the target application
|
sl@0
|
66 |
TUid iServiceUid;
|
sl@0
|
67 |
};
|
sl@0
|
68 |
|
sl@0
|
69 |
/** A store of mappings between data types, the UIDs of applications that
|
sl@0
|
70 |
can handle them and the priority at which the application handles them.
|
sl@0
|
71 |
|
sl@0
|
72 |
@internalTechnology
|
sl@0
|
73 |
@released
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
class CTypeStoreManager : public CBase
|
sl@0
|
76 |
{
|
sl@0
|
77 |
public:
|
sl@0
|
78 |
IMPORT_C static CTypeStoreManager* NewL(RFs& aFs);
|
sl@0
|
79 |
IMPORT_C ~CTypeStoreManager();
|
sl@0
|
80 |
// Persistence
|
sl@0
|
81 |
IMPORT_C void StoreL();
|
sl@0
|
82 |
IMPORT_C void RestoreL();
|
sl@0
|
83 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
84 |
IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
85 |
// Enquiry
|
sl@0
|
86 |
IMPORT_C void GetAppByDataType(const TDataType& aDataType, TUid& aUid) const;
|
sl@0
|
87 |
IMPORT_C void GetAppByDataType(const TDataType& aDataType,
|
sl@0
|
88 |
TUid aServiceUid, TUid& aUid) const;
|
sl@0
|
89 |
IMPORT_C void GetDataTypesByAppL(TUid aUid, CArrayFix<TDataType>* aTypeArray) const;
|
sl@0
|
90 |
IMPORT_C const CArrayFixFlat<TMappingDataTypeToApp>& MappingArray() const;
|
sl@0
|
91 |
// Management
|
sl@0
|
92 |
IMPORT_C void InsertDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid);
|
sl@0
|
93 |
IMPORT_C void InsertDataMappingL(const TDataType& aDataType,
|
sl@0
|
94 |
TDataTypePriority aPriority, TUid aUid, TUid aServiceUid);
|
sl@0
|
95 |
IMPORT_C TBool InsertIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid);
|
sl@0
|
96 |
IMPORT_C TBool InsertIfHigherL(const TDataType& aDataType,
|
sl@0
|
97 |
TDataTypePriority aPriority, TUid aUid, TUid aServiceUid);
|
sl@0
|
98 |
IMPORT_C void DeleteDataMapping(const TDataType& aDataType);
|
sl@0
|
99 |
IMPORT_C void DeleteDataMapping(const TDataType& aDataType,
|
sl@0
|
100 |
TUid aServiceUid);
|
sl@0
|
101 |
inline TPtrC IniFileName() const;
|
sl@0
|
102 |
IMPORT_C void InsertAndStoreDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid, TUid aServiceUid);
|
sl@0
|
103 |
IMPORT_C void InsertAndStoreDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid);
|
sl@0
|
104 |
IMPORT_C TBool InsertAndStoreIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid);
|
sl@0
|
105 |
IMPORT_C TBool InsertAndStoreIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid, TUid aServiceUid);
|
sl@0
|
106 |
IMPORT_C void DeleteAndStoreDataMappingL(const TDataType& aDataType);
|
sl@0
|
107 |
IMPORT_C void DeleteAndStoreDataMappingL(const TDataType& aDataType, TUid aServiceUid);
|
sl@0
|
108 |
IMPORT_C TBool DeleteApplicationDataMappings(const TUid aAppUid);
|
sl@0
|
109 |
|
sl@0
|
110 |
private:
|
sl@0
|
111 |
CDictionaryStore* OpenIniFileLC() const;
|
sl@0
|
112 |
CTypeStoreManager(RFs& aFs);
|
sl@0
|
113 |
TInt FindDataMapping(const TDataType& aDataType, const TUid& aServiceUid) const;
|
sl@0
|
114 |
void ConstructL();
|
sl@0
|
115 |
private:
|
sl@0
|
116 |
CArrayFixFlat<TMappingDataTypeToApp> iAppMappings;
|
sl@0
|
117 |
RFs& iFs;
|
sl@0
|
118 |
RBuf iIniFileName;
|
sl@0
|
119 |
};
|
sl@0
|
120 |
|
sl@0
|
121 |
inline TPtrC CTypeStoreManager::IniFileName() const
|
sl@0
|
122 |
{
|
sl@0
|
123 |
return iIniFileName;
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
#endif
|