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 (__APMSTD_H__)
|
sl@0
|
17 |
#define __APMSTD_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#if !defined(__E32STD_H__)
|
sl@0
|
20 |
#include <e32std.h>
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
|
sl@0
|
23 |
/**
|
sl@0
|
24 |
@publishedAll
|
sl@0
|
25 |
@released
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
const TInt KMaxDataTypeLength=256;
|
sl@0
|
28 |
|
sl@0
|
29 |
// classes referenced
|
sl@0
|
30 |
class RReadStream;
|
sl@0
|
31 |
class RWriteStream;
|
sl@0
|
32 |
|
sl@0
|
33 |
/** Defines the priority associated with a data type.
|
sl@0
|
34 |
|
sl@0
|
35 |
The priority is used by a device to resolve the current preferred handler
|
sl@0
|
36 |
of a data type, in the absence of any user preferences.
|
sl@0
|
37 |
|
sl@0
|
38 |
@publishedAll
|
sl@0
|
39 |
@released
|
sl@0
|
40 |
@see TDataTypeWithPriority */
|
sl@0
|
41 |
typedef TInt32 TDataTypePriority;
|
sl@0
|
42 |
|
sl@0
|
43 |
/** Reserved for future use.
|
sl@0
|
44 |
|
sl@0
|
45 |
@publishedAll
|
sl@0
|
46 |
@released */
|
sl@0
|
47 |
const TInt32 KDataTypePriorityUserSpecified=KMaxTInt16;
|
sl@0
|
48 |
|
sl@0
|
49 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
50 |
/** This is a special priority that overrides any user settings. Applications must
|
sl@0
|
51 |
have EWriteDeviceData to use this priority. If they have not then they will be
|
sl@0
|
52 |
downgraded to KDataTypePriorityNormal.
|
sl@0
|
53 |
|
sl@0
|
54 |
@publishedPartner
|
sl@0
|
55 |
@released
|
sl@0
|
56 |
@see TDataTypeWithPriority */
|
sl@0
|
57 |
const TInt32 KDataTypePrioritySystem = 0xFFF9;
|
sl@0
|
58 |
|
sl@0
|
59 |
#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
60 |
|
sl@0
|
61 |
/** Trusted applications may use this priority value to ensure
|
sl@0
|
62 |
their MIME type associations cannot be overridden by
|
sl@0
|
63 |
self signed (untrusted) applications.
|
sl@0
|
64 |
|
sl@0
|
65 |
@publishedAll
|
sl@0
|
66 |
@released
|
sl@0
|
67 |
@see TDataTypeWithPriority */
|
sl@0
|
68 |
const TInt32 KDataTypePriorityTrustedHigh = 0xC000;
|
sl@0
|
69 |
|
sl@0
|
70 |
/** This is Threshold priority for Un-Trusted apps i.e., for the applications which reside
|
sl@0
|
71 |
in \\private\\10003a3f\\import\\apps and have a SID which is in the unprotected range. This is to avoid Un-Trusted app's claiming for priority higher
|
sl@0
|
72 |
than the threshold, if they claim for priority higher than the Threshold then it would be
|
sl@0
|
73 |
reduced to KDataTypeUnTrustedPriorityThreshold.
|
sl@0
|
74 |
|
sl@0
|
75 |
@publishedAll
|
sl@0
|
76 |
@released */
|
sl@0
|
77 |
const TInt32 KDataTypeUnTrustedPriorityThreshold=KMaxTInt16;
|
sl@0
|
78 |
|
sl@0
|
79 |
/** A priority value associated with a data (MIME) type. Associating an application
|
sl@0
|
80 |
with a data type at this priority means that this application, and no other,
|
sl@0
|
81 |
should ever handle the data type. Use sparingly.
|
sl@0
|
82 |
|
sl@0
|
83 |
@publishedAll
|
sl@0
|
84 |
@released
|
sl@0
|
85 |
@see TDataTypeWithPriority */
|
sl@0
|
86 |
const TInt32 KDataTypePriorityHigh=10000;
|
sl@0
|
87 |
|
sl@0
|
88 |
/** A priority value associated with a data (MIME) type. Associating an application
|
sl@0
|
89 |
with a data type at this priority means that the data type is the primary
|
sl@0
|
90 |
type for that application. For example, "text/plain" files for a text editor.
|
sl@0
|
91 |
|
sl@0
|
92 |
@publishedAll
|
sl@0
|
93 |
@released
|
sl@0
|
94 |
@see TDataTypeWithPriority */
|
sl@0
|
95 |
const TInt32 KDataTypePriorityNormal=0;
|
sl@0
|
96 |
|
sl@0
|
97 |
/** A priority value associated with a data (MIME) type. Associating an application
|
sl@0
|
98 |
with a data type at this priority means that the data type is a secondary
|
sl@0
|
99 |
type for that application. For example, "text/plain" files for a web browser.
|
sl@0
|
100 |
|
sl@0
|
101 |
@publishedAll
|
sl@0
|
102 |
@released
|
sl@0
|
103 |
@see TDataTypeWithPriority */
|
sl@0
|
104 |
const TInt32 KDataTypePriorityLow=-10000;
|
sl@0
|
105 |
|
sl@0
|
106 |
/** A priority value associated with a data (MIME) type. Associating an application
|
sl@0
|
107 |
with a data type at this priority means that the data type is a last resort
|
sl@0
|
108 |
for that application. Use sparingly.
|
sl@0
|
109 |
|
sl@0
|
110 |
@publishedAll
|
sl@0
|
111 |
@released
|
sl@0
|
112 |
@see TDataTypeWithPriority */
|
sl@0
|
113 |
const TInt32 KDataTypePriorityLastResort=-20000;
|
sl@0
|
114 |
|
sl@0
|
115 |
/** Reserved for future use.
|
sl@0
|
116 |
|
sl@0
|
117 |
@publishedAll
|
sl@0
|
118 |
@released */
|
sl@0
|
119 |
const TInt32 KDataTypePriorityNotSupported=KMinTInt16;
|
sl@0
|
120 |
|
sl@0
|
121 |
|
sl@0
|
122 |
class TDataType
|
sl@0
|
123 |
/** A data type.
|
sl@0
|
124 |
|
sl@0
|
125 |
The class maintains a string that describes the data type and an associated
|
sl@0
|
126 |
UID.
|
sl@0
|
127 |
|
sl@0
|
128 |
A data type is also referred to as a MIME type.
|
sl@0
|
129 |
|
sl@0
|
130 |
@publishedAll
|
sl@0
|
131 |
@released */
|
sl@0
|
132 |
{
|
sl@0
|
133 |
public:
|
sl@0
|
134 |
IMPORT_C TDataType();
|
sl@0
|
135 |
IMPORT_C TDataType(const TDataType& aDataType);
|
sl@0
|
136 |
IMPORT_C TDataType(const TDesC8& aDataType);
|
sl@0
|
137 |
IMPORT_C TDataType(TUid aUid);
|
sl@0
|
138 |
// enquiry
|
sl@0
|
139 |
IMPORT_C TInt operator==(const TDataType& aDataType) const;
|
sl@0
|
140 |
IMPORT_C TInt operator!=(const TDataType& aDataType) const;
|
sl@0
|
141 |
IMPORT_C TBool IsNative() const;
|
sl@0
|
142 |
//
|
sl@0
|
143 |
IMPORT_C TBuf<KMaxDataTypeLength> Des() const;
|
sl@0
|
144 |
IMPORT_C TPtrC8 Des8() const;
|
sl@0
|
145 |
IMPORT_C TUid Uid() const;
|
sl@0
|
146 |
//
|
sl@0
|
147 |
IMPORT_C void InternalizeL(RReadStream& aReadStream);
|
sl@0
|
148 |
IMPORT_C void ExternalizeL(RWriteStream& aWriteStream) const;
|
sl@0
|
149 |
private:
|
sl@0
|
150 |
void ParseDes();
|
sl@0
|
151 |
private:
|
sl@0
|
152 |
TBuf8<KMaxDataTypeLength> iDataType;
|
sl@0
|
153 |
TUid iUid;
|
sl@0
|
154 |
};
|
sl@0
|
155 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
156 |
/**
|
sl@0
|
157 |
@internalComponent
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
#define KApaAppTypeDes _L8("x-epoc/x-app")
|
sl@0
|
160 |
|
sl@0
|
161 |
/**
|
sl@0
|
162 |
@internalComponent
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
_LIT8(KEpocUrlDataTypeHeader, "X-Epoc-Url/");
|
sl@0
|
165 |
|
sl@0
|
166 |
#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
167 |
|
sl@0
|
168 |
class TDataTypeWithPriority
|
sl@0
|
169 |
/** A data (MIME) type and a priority value for that data type.
|
sl@0
|
170 |
|
sl@0
|
171 |
The priority is used to resolve the current preferred handler of a data type,
|
sl@0
|
172 |
in the absence of any user preferences. An AIF file can associate an application
|
sl@0
|
173 |
with a data (MIME) type that is not native to Symbian OS. A priority value
|
sl@0
|
174 |
can be specified that allows the device to choose the highest priority application
|
sl@0
|
175 |
that can handle that data type.
|
sl@0
|
176 |
|
sl@0
|
177 |
@publishedAll
|
sl@0
|
178 |
@released
|
sl@0
|
179 |
@see TDataType
|
sl@0
|
180 |
@see TDataTypePriority */
|
sl@0
|
181 |
{
|
sl@0
|
182 |
public:
|
sl@0
|
183 |
IMPORT_C TDataTypeWithPriority();
|
sl@0
|
184 |
IMPORT_C TDataTypeWithPriority(const TDataType& aDataType, TDataTypePriority aPriority);
|
sl@0
|
185 |
//
|
sl@0
|
186 |
IMPORT_C void InternalizeL(RReadStream& aReadStream);
|
sl@0
|
187 |
IMPORT_C void ExternalizeL(RWriteStream& aWriteStream) const;
|
sl@0
|
188 |
public:
|
sl@0
|
189 |
/** The data type. */
|
sl@0
|
190 |
TDataType iDataType;
|
sl@0
|
191 |
/** The priority value. */
|
sl@0
|
192 |
TDataTypePriority iPriority;
|
sl@0
|
193 |
};
|
sl@0
|
194 |
|
sl@0
|
195 |
#endif
|