sl@0
|
1 |
// Copyright (c) 2008-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 the License "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 |
// Hardware Configuration Respoitory Platform Independent Layer (PIL)
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file hcr.h
|
sl@0
|
20 |
Kernel side client API for Hardware Configuration Repository (HCR).
|
sl@0
|
21 |
The HCR service provides access to hardware settings defined for the base port.
|
sl@0
|
22 |
This API is used by kernel side components such as PDDs, hardware service
|
sl@0
|
23 |
providers and other kernel extensions.
|
sl@0
|
24 |
|
sl@0
|
25 |
@publishedPartner
|
sl@0
|
26 |
@prototype
|
sl@0
|
27 |
*/
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
#ifndef HCR_H
|
sl@0
|
32 |
#define HCR_H
|
sl@0
|
33 |
|
sl@0
|
34 |
|
sl@0
|
35 |
// -- INCLUDES ----------------------------------------------------------------
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
#include <e32err.h>
|
sl@0
|
39 |
#include <e32def.h>
|
sl@0
|
40 |
#include <e32cmn.h>
|
sl@0
|
41 |
#include <e32des8.h>
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
// -- CLASSES -----------------------------------------------------------------
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
The HCR namespace contains all the types and APIs that make up the
|
sl@0
|
48 |
client API of the Kernel Hardware Configuration Repository (HCR).
|
sl@0
|
49 |
It provides accessor functions to retrieve settings held by the HCR and may be
|
sl@0
|
50 |
called by kernel components from with in thread context.
|
sl@0
|
51 |
|
sl@0
|
52 |
The _published_ Setting IDs available for use with this API can be found
|
sl@0
|
53 |
in the BSP exported header 'hcrconfig.h'. This provides the top-level header
|
sl@0
|
54 |
that clients can include to gain access to all IDs for the BSP. IDs for settings
|
sl@0
|
55 |
that are internal to a component and not used by others are defined in a file
|
sl@0
|
56 |
private to that component.
|
sl@0
|
57 |
|
sl@0
|
58 |
The HCR supports a number of setting repositories and searches them in a defined
|
sl@0
|
59 |
order, always returns the first setting found matching the ID or criteria.
|
sl@0
|
60 |
This allows setting values to be overriden by more recent repositories created
|
sl@0
|
61 |
during platform development and product creation.
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
namespace HCR
|
sl@0
|
64 |
{
|
sl@0
|
65 |
|
sl@0
|
66 |
/** Maximum length of a large setting type, in bytes */
|
sl@0
|
67 |
static const TInt KMaxSettingLength = 512;
|
sl@0
|
68 |
|
sl@0
|
69 |
|
sl@0
|
70 |
/** Setting category identifier type */
|
sl@0
|
71 |
typedef TUint32 TCategoryUid;
|
sl@0
|
72 |
|
sl@0
|
73 |
/** Setting element identifier type */
|
sl@0
|
74 |
typedef TUint32 TElementId;
|
sl@0
|
75 |
|
sl@0
|
76 |
/** The setting Identifier structure. Used to create static initialised
|
sl@0
|
77 |
arrys for use with multiple setting retrieval calls.
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
struct SSettingId
|
sl@0
|
80 |
{
|
sl@0
|
81 |
TCategoryUid iCat; //!< Allocated UID for setting category
|
sl@0
|
82 |
TElementId iKey; //!< Element indetifier for setting in category
|
sl@0
|
83 |
};
|
sl@0
|
84 |
|
sl@0
|
85 |
/** The setting Identifier type. A class used to uniquely identify a
|
sl@0
|
86 |
setting in the HCR. Used in calls to HCR API to retrieve one setting.
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
class TSettingId : public SSettingId
|
sl@0
|
89 |
{
|
sl@0
|
90 |
public:
|
sl@0
|
91 |
TSettingId ()
|
sl@0
|
92 |
{ iCat = iKey = 0; };
|
sl@0
|
93 |
TSettingId (TCategoryUid aCat, TElementId aKey)
|
sl@0
|
94 |
{ iCat = aCat; iKey = aKey; };
|
sl@0
|
95 |
TSettingId (const SSettingId& aId)
|
sl@0
|
96 |
{ iCat = aId.iCat; iKey = aId.iKey; };
|
sl@0
|
97 |
TSettingId& operator= (const SSettingId& rhs)
|
sl@0
|
98 |
{ iCat = rhs.iCat; iKey = rhs.iKey; return *this; }
|
sl@0
|
99 |
|
sl@0
|
100 |
};
|
sl@0
|
101 |
|
sl@0
|
102 |
/** The setting types supported. The types are shown in two groups: Word
|
sl@0
|
103 |
size - a maximum of 4 bytes; and ii) Large size - types exceeding 4 bytes
|
sl@0
|
104 |
in size.
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
enum TSettingType
|
sl@0
|
107 |
{
|
sl@0
|
108 |
ETypeUndefined = 0, //!< Type unknown/not set
|
sl@0
|
109 |
|
sl@0
|
110 |
// Word size settings
|
sl@0
|
111 |
ETypeInt32 = 0x00000001, //!< 32bit signed integer
|
sl@0
|
112 |
ETypeInt16 = 0x00000002, //!< 16bit signed integer
|
sl@0
|
113 |
ETypeInt8 = 0x00000004, //!< 8bit signed integer
|
sl@0
|
114 |
ETypeBool = 0x00000008, //!< 32bit boolean value
|
sl@0
|
115 |
ETypeUInt32 = 0x00000010, //!< 32bit unsigned integer
|
sl@0
|
116 |
ETypeUInt16 = 0x00000020, //!< 16bit unsigned integer
|
sl@0
|
117 |
ETypeUInt8 = 0x00000040, //!< 8bit unsigned integer
|
sl@0
|
118 |
ETypeLinAddr = 0x00000100, //!< 32bit virtual address
|
sl@0
|
119 |
|
sl@0
|
120 |
// Large settings
|
sl@0
|
121 |
ETypeBinData = 0x00010000, //!< Raw binary data (TUint8 array)
|
sl@0
|
122 |
ETypeText8 = 0x00020000, //!< String data (TText8 array)
|
sl@0
|
123 |
ETypeArrayInt32 = 0x00040000, //!< 32bit signed integer array
|
sl@0
|
124 |
ETypeArrayUInt32 = 0x00080000, //!< 32bit unsigned integer array
|
sl@0
|
125 |
ETypeInt64 = 0x01000000, //!< 64bit signed integer
|
sl@0
|
126 |
ETypeUInt64 = 0x02000000, //!< 64bit unsigned integer
|
sl@0
|
127 |
};
|
sl@0
|
128 |
|
sl@0
|
129 |
|
sl@0
|
130 |
/**
|
sl@0
|
131 |
Retrieve a word size integer setting value from the HCR.
|
sl@0
|
132 |
On error aValue is undefined.
|
sl@0
|
133 |
|
sl@0
|
134 |
@param aId in: The setting identifier
|
sl@0
|
135 |
@param aValue out: The retrieved setting data value
|
sl@0
|
136 |
|
sl@0
|
137 |
@return KErrNone if successful, output parameters valid
|
sl@0
|
138 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
139 |
KErrArgument if the setting identified is not the correct type
|
sl@0
|
140 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
141 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
142 |
KErrGeneral if an internal failure occurs, see trace.
|
sl@0
|
143 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
144 |
|
sl@0
|
145 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
IMPORT_C TInt GetInt(const TSettingId& aId, TInt8& aValue);
|
sl@0
|
148 |
IMPORT_C TInt GetInt(const TSettingId& aId, TInt16& aValue);
|
sl@0
|
149 |
IMPORT_C TInt GetInt(const TSettingId& aId, TInt32& aValue);
|
sl@0
|
150 |
IMPORT_C TInt GetInt(const TSettingId& aId, TInt64& aValue);
|
sl@0
|
151 |
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
Retrieve a boolean setting value from the HCR.
|
sl@0
|
154 |
On error aValue is undefined.
|
sl@0
|
155 |
|
sl@0
|
156 |
@param aId in: The setting identifier
|
sl@0
|
157 |
@param aValue out: The retrieved setting data value
|
sl@0
|
158 |
|
sl@0
|
159 |
@return KErrNone if successful, output parameters valid
|
sl@0
|
160 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
161 |
KErrArgument if the setting identified is not the correct type
|
sl@0
|
162 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
163 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
164 |
KErrGeneral if an internal failure occurs, see trace.
|
sl@0
|
165 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
166 |
|
sl@0
|
167 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
168 |
*/
|
sl@0
|
169 |
IMPORT_C TInt GetBool(const TSettingId& aId, TBool& aValue);
|
sl@0
|
170 |
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
Retrieve an word size unsigned integer setting value from the HCR.
|
sl@0
|
173 |
On error aValue is undefined.
|
sl@0
|
174 |
|
sl@0
|
175 |
@param aId in: The setting identifier
|
sl@0
|
176 |
@param aValue out: The retrieved setting data value
|
sl@0
|
177 |
|
sl@0
|
178 |
@return KErrNone if successful, output parameters valid
|
sl@0
|
179 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
180 |
KErrArgument if the setting identified is not the correct type
|
sl@0
|
181 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
182 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
183 |
KErrGeneral if an internal failure occurs, see trace.
|
sl@0
|
184 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
185 |
|
sl@0
|
186 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
187 |
*/
|
sl@0
|
188 |
IMPORT_C TInt GetUInt(const TSettingId& aId, TUint8& aValue);
|
sl@0
|
189 |
IMPORT_C TInt GetUInt(const TSettingId& aId, TUint16& aValue);
|
sl@0
|
190 |
IMPORT_C TInt GetUInt(const TSettingId& aId, TUint32& aValue);
|
sl@0
|
191 |
IMPORT_C TInt GetUInt(const TSettingId& aId, TUint64& aValue);
|
sl@0
|
192 |
|
sl@0
|
193 |
/**
|
sl@0
|
194 |
Retrieve a word size linear address setting value from the HCR.
|
sl@0
|
195 |
On error aValue is undefined.
|
sl@0
|
196 |
|
sl@0
|
197 |
@param aId in: The setting identifier
|
sl@0
|
198 |
@param aValue out: The retrieved setting data value
|
sl@0
|
199 |
|
sl@0
|
200 |
@return KErrNone if successful, output parameters valid
|
sl@0
|
201 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
202 |
KErrArgument if the setting identified is not the correct type
|
sl@0
|
203 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
204 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
205 |
KErrGeneral if an internal failure occurs, see trace.
|
sl@0
|
206 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
207 |
|
sl@0
|
208 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
209 |
*/
|
sl@0
|
210 |
IMPORT_C TInt GetLinAddr(const TSettingId& aId, TLinAddr& aValue);
|
sl@0
|
211 |
|
sl@0
|
212 |
|
sl@0
|
213 |
/**
|
sl@0
|
214 |
Retrieve a large binary data setting value from the HCR. The value
|
sl@0
|
215 |
is copied into the supplied descriptor buffer.
|
sl@0
|
216 |
On error the descriptor and output arguments have undefined values.
|
sl@0
|
217 |
|
sl@0
|
218 |
@param aId in: The setting identifier
|
sl@0
|
219 |
@param aValue inout: A pre-allocated descriptor to hold the value
|
sl@0
|
220 |
|
sl@0
|
221 |
@return KErrNone if successful and aValue has been set
|
sl@0
|
222 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
223 |
KErrArgument if the setting identified is not the correct type
|
sl@0
|
224 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
225 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
226 |
KErrTooBig if the setting is larger than the supplied buffer
|
sl@0
|
227 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
228 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
229 |
|
sl@0
|
230 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
231 |
*/
|
sl@0
|
232 |
IMPORT_C TInt GetData(const TSettingId& aId, TDes8& aValue);
|
sl@0
|
233 |
|
sl@0
|
234 |
/**
|
sl@0
|
235 |
Retrieve a large binary data setting value from the HCR. The value is copied
|
sl@0
|
236 |
into the supplied byte array buffer.
|
sl@0
|
237 |
On error the buffer and output arguments have undefined values.
|
sl@0
|
238 |
|
sl@0
|
239 |
@param aId in: The setting identifier
|
sl@0
|
240 |
@param aMaxLen in: The maximum value length that can be stored in the buffer
|
sl@0
|
241 |
@param aValue inout: The address of a pre-allocated buffer to hold the value
|
sl@0
|
242 |
@param aLen out: Contains the length of the setting value written
|
sl@0
|
243 |
|
sl@0
|
244 |
@return KErrNone if successful and aValue has been set
|
sl@0
|
245 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
246 |
KErrArgument if the setting identified is not the correct type
|
sl@0
|
247 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
248 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
249 |
KErrTooBig if the setting is larger than the supplied buffer
|
sl@0
|
250 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
251 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
252 |
|
sl@0
|
253 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
254 |
*/
|
sl@0
|
255 |
IMPORT_C TInt GetData(const TSettingId& aId, TUint16 aMaxLen,
|
sl@0
|
256 |
TUint8* aValue, TUint16& aLen);
|
sl@0
|
257 |
|
sl@0
|
258 |
/**
|
sl@0
|
259 |
Retrieve an 8 bit character string setting from the HCR. The value
|
sl@0
|
260 |
is copied into the supplied descriptor buffer. Note the string is not zero
|
sl@0
|
261 |
terminated.
|
sl@0
|
262 |
On error the descriptor and output arguments have undefined values.
|
sl@0
|
263 |
|
sl@0
|
264 |
@param aId in: The setting identifier
|
sl@0
|
265 |
@param aValue inout: A pre-allocated descriptor to hold the value
|
sl@0
|
266 |
|
sl@0
|
267 |
@return KErrNone if successful and aValue has been set
|
sl@0
|
268 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
269 |
KErrArgument if the setting identified is not the correct type
|
sl@0
|
270 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
271 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
272 |
KErrTooBig if the setting is larger than the supplied buffer
|
sl@0
|
273 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
274 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
275 |
|
sl@0
|
276 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
277 |
*/
|
sl@0
|
278 |
IMPORT_C TInt GetString(const TSettingId& aId, TDes8& aValue);
|
sl@0
|
279 |
|
sl@0
|
280 |
/**
|
sl@0
|
281 |
Retrieve an 8 bit character string setting from the HCR. The value
|
sl@0
|
282 |
is copied into the byte array buffer. Note the string is not zero
|
sl@0
|
283 |
terminated.
|
sl@0
|
284 |
On error the descriptor and output arguments have undefined values.
|
sl@0
|
285 |
|
sl@0
|
286 |
@param aId in: The setting identifier
|
sl@0
|
287 |
@param aMaxLen in: The maximum value length that can be stored in the buffer
|
sl@0
|
288 |
@param aValue inout: The address of a pre-allocated buffer to hold the value
|
sl@0
|
289 |
@param aLen out: Contains the length of the setting value written
|
sl@0
|
290 |
|
sl@0
|
291 |
@return KErrNone if successful and aValue has been set
|
sl@0
|
292 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
293 |
KErrArgument if the setting identified is not the correct type
|
sl@0
|
294 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
295 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
296 |
KErrTooBig if the setting is larger than the supplied buffer
|
sl@0
|
297 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
298 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
299 |
|
sl@0
|
300 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
301 |
*/
|
sl@0
|
302 |
IMPORT_C TInt GetString(const TSettingId& aId, TUint16 aMaxLen,
|
sl@0
|
303 |
TText8* aValue, TUint16& aLen);
|
sl@0
|
304 |
|
sl@0
|
305 |
/**
|
sl@0
|
306 |
Retrieve an array of signed integers from the HCR. The value
|
sl@0
|
307 |
is copied into the byte array buffer.
|
sl@0
|
308 |
On error the descriptor and output arguments have undefined values.
|
sl@0
|
309 |
|
sl@0
|
310 |
@param aId in: The setting identifier
|
sl@0
|
311 |
@param aMaxLen in: The maximum value length that can be stored in the buffer
|
sl@0
|
312 |
@param aValue inout: The address of a pre-allocated word array to hold the value
|
sl@0
|
313 |
@param aLen out: Contains the length, in bytes of the setting value written
|
sl@0
|
314 |
|
sl@0
|
315 |
@return KErrNone if successful and aValue has been set
|
sl@0
|
316 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
317 |
KErrArgument if the setting identified is not the correct type
|
sl@0
|
318 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
319 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
320 |
KErrTooBig if the setting is larger than the supplied buffer
|
sl@0
|
321 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
322 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
323 |
|
sl@0
|
324 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
325 |
*/
|
sl@0
|
326 |
IMPORT_C TInt GetArray(const TSettingId& aId, TUint16 aMaxLen,
|
sl@0
|
327 |
TInt32* aValue, TUint16& aLen);
|
sl@0
|
328 |
IMPORT_C TInt GetArray(const TSettingId& aId, TUint16 aMaxLen,
|
sl@0
|
329 |
TUint32* aValue, TUint16& aLen);
|
sl@0
|
330 |
|
sl@0
|
331 |
/**
|
sl@0
|
332 |
Retrieve multiple word sized settings from the Hardware Configuration
|
sl@0
|
333 |
Repository in one call. This method can be used for all settings of size 4
|
sl@0
|
334 |
bytes or less (i.e those with a type less than 0x0000ffff).
|
sl@0
|
335 |
The caller is responsible for pre-allocating the arrays supplied. Note the
|
sl@0
|
336 |
array of setting IDs (aIds) supplied by the client must be ordered with
|
sl@0
|
337 |
aIds[0] containing the lowest and aIds[aNum-1] the highest. Undefined
|
sl@0
|
338 |
behaviour will result if this pre-condition is not met.
|
sl@0
|
339 |
|
sl@0
|
340 |
On successful return the client will need to check the number found (return
|
sl@0
|
341 |
value) matches their needs and cast each value in the aValues
|
sl@0
|
342 |
array to the correct type before use. The correct type is either known at
|
sl@0
|
343 |
compile time by the caller or determined from aTypes, if supplied.
|
sl@0
|
344 |
|
sl@0
|
345 |
When an overall error is returned from the function the output arrays have
|
sl@0
|
346 |
undefined values.
|
sl@0
|
347 |
|
sl@0
|
348 |
@param aNum in: The number of settings to retrieve. It is also the
|
sl@0
|
349 |
size of the arrays in the following arguments
|
sl@0
|
350 |
@param aIds in: An ordered array of setting identifiers to retrieve
|
sl@0
|
351 |
@param aValues inout: An array of values, populated on exit
|
sl@0
|
352 |
@param aTypes inout: An optional array of type enumerations, populated on
|
sl@0
|
353 |
exit describing the type of each setting found.
|
sl@0
|
354 |
May be 0 if client is not interested
|
sl@0
|
355 |
@param aErrors inout: An array of search errors for each setting populated
|
sl@0
|
356 |
on exit. If no error found for the setting then KErrNone
|
sl@0
|
357 |
is written. Possible error codes:
|
sl@0
|
358 |
KErrArgument the setting is not of a suitable type
|
sl@0
|
359 |
KErrNotFound the setting is not found
|
sl@0
|
360 |
KErrNone when setting found
|
sl@0
|
361 |
|
sl@0
|
362 |
|
sl@0
|
363 |
@return Zero or positive number of settings found, -ve on error
|
sl@0
|
364 |
KErrArgument if some parameters are wrong(i.e. aErrors is a null
|
sl@0
|
365 |
pointer, aNum is negative and so on)
|
sl@0
|
366 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
367 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
368 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
369 |
KErrNoMemory if the memory allocation within this function failed
|
sl@0
|
370 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
371 |
|
sl@0
|
372 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
373 |
*/
|
sl@0
|
374 |
IMPORT_C TInt GetWordSettings(TInt aNum, const SSettingId aIds[],
|
sl@0
|
375 |
TInt32 aValues[], TSettingType aTypes[], TInt aErrors[]);
|
sl@0
|
376 |
|
sl@0
|
377 |
|
sl@0
|
378 |
/**
|
sl@0
|
379 |
Retrieve the type and size of a HCR setting. Can be used by clients to
|
sl@0
|
380 |
obtain the setting size should a buffer need to be allocated.
|
sl@0
|
381 |
On error the output arguments are undefined.
|
sl@0
|
382 |
|
sl@0
|
383 |
@param aId in: The setting identifier
|
sl@0
|
384 |
@param aType out: The type enumeration of the found setting
|
sl@0
|
385 |
@param aLen out: The length in bytes of the found setting
|
sl@0
|
386 |
|
sl@0
|
387 |
@return KErrNone if successful, output parameters valid
|
sl@0
|
388 |
KErrNotFound if aId is not a known setting ID
|
sl@0
|
389 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
390 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
391 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
392 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
393 |
|
sl@0
|
394 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
395 |
*/
|
sl@0
|
396 |
IMPORT_C TInt GetTypeAndSize(const TSettingId& aId,
|
sl@0
|
397 |
TSettingType& aType, TUint16& aLen);
|
sl@0
|
398 |
|
sl@0
|
399 |
/**
|
sl@0
|
400 |
Retrieve the number of unique ettings held in the HCR for one particular
|
sl@0
|
401 |
category. It allows a client to perpare buffers for other calls to the HCR
|
sl@0
|
402 |
to retrieve these settings.
|
sl@0
|
403 |
The method carries out a search to return the total number of unique setting
|
sl@0
|
404 |
records found across all HCR repositories for a given category. It does not
|
sl@0
|
405 |
count settings that are duplicate from being redefined in different
|
sl@0
|
406 |
repositories.
|
sl@0
|
407 |
The function is particularly useful for open-ended categories were the
|
sl@0
|
408 |
run-time client can not predict the number of settings prvisioned.
|
sl@0
|
409 |
|
sl@0
|
410 |
@param aCatUid in: The setting identifier category to use in the search
|
sl@0
|
411 |
|
sl@0
|
412 |
@return Zero or positive number of settings found in category, -ve on error
|
sl@0
|
413 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
414 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
415 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
416 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
417 |
|
sl@0
|
418 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
419 |
*/
|
sl@0
|
420 |
IMPORT_C TInt FindNumSettingsInCategory (TCategoryUid aCatUid);
|
sl@0
|
421 |
|
sl@0
|
422 |
/**
|
sl@0
|
423 |
Retrieve details of all the settings (ids, types and sizes) in one
|
sl@0
|
424 |
particular category. This function can be used by clients to obtain the
|
sl@0
|
425 |
number of, ids, sizes and types of all the settings in a category.
|
sl@0
|
426 |
It allows a client to alloc buffers for other calls to the HCR to retrieve
|
sl@0
|
427 |
the values of these settings.
|
sl@0
|
428 |
|
sl@0
|
429 |
On successful return the client will need to check the number found (return
|
sl@0
|
430 |
value) matches the expected number. When there are more defined in
|
sl@0
|
431 |
the category than was able to be returned, i.e. when number found
|
sl@0
|
432 |
exceeded aMaxNum then aMaxNum is returned.
|
sl@0
|
433 |
|
sl@0
|
434 |
When an overall error is returned from the function the output arrays have
|
sl@0
|
435 |
undefined values.
|
sl@0
|
436 |
|
sl@0
|
437 |
@param aCat in: The setting category to search for
|
sl@0
|
438 |
@param aMaxNum in: The maximum number of settings to return. It is also
|
sl@0
|
439 |
the size of the arrays in the following arguments
|
sl@0
|
440 |
@param aKeyIds inout: Client supplied array populated on exit. Large
|
sl@0
|
441 |
enough to hold all elements in category.
|
sl@0
|
442 |
@param aTypes inout: Client supplied array populated with setting types
|
sl@0
|
443 |
enumerations on exit. Array address may be 0 if
|
sl@0
|
444 |
client is not interested.
|
sl@0
|
445 |
@param aLens inout: Client supplied array populated with setting lengths
|
sl@0
|
446 |
on exit for those settings with a type > 0x0000ffff.
|
sl@0
|
447 |
When less than this 0 is set in the aLens array element.
|
sl@0
|
448 |
Array address may be 0 if client is not interested.
|
sl@0
|
449 |
|
sl@0
|
450 |
@return Zero or positive number of settings found in category, -ve on error
|
sl@0
|
451 |
KErrArgument if some parameters are wrong(i.e. aErrors is a null
|
sl@0
|
452 |
pointer, aNum is negative and so on)
|
sl@0
|
453 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
454 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
455 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
456 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
457 |
|
sl@0
|
458 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
459 |
*/
|
sl@0
|
460 |
IMPORT_C TInt FindSettings(TCategoryUid aCatUid, TInt aMaxNum,
|
sl@0
|
461 |
TElementId aKeyIds[], TSettingType aTypes[], TUint16 aLens[]);
|
sl@0
|
462 |
|
sl@0
|
463 |
/**
|
sl@0
|
464 |
Retrieve details of all the settings (ids, types and sizes) in one
|
sl@0
|
465 |
particular category who's key ID matches the supplied bit pattern/mask.
|
sl@0
|
466 |
This function can be used by clients to obtain the number of, ids, sizes
|
sl@0
|
467 |
and types of all the settings in a category. It allows a client to alloc
|
sl@0
|
468 |
buffers for other calls to the HCR to retrieve the values of these settings.
|
sl@0
|
469 |
|
sl@0
|
470 |
This search method allows categories to contain structured settings
|
sl@0
|
471 |
i.e. row/column structured or record based categories as might be used
|
sl@0
|
472 |
for configuration data of a hardware service provider.
|
sl@0
|
473 |
|
sl@0
|
474 |
The caller supplies the category to search, a setting key ID mask and the
|
sl@0
|
475 |
pattern to match. Setting keys that satisfy this logic are returned:
|
sl@0
|
476 |
((elementID & aElementMask) == (aPattern & aElementMask))
|
sl@0
|
477 |
|
sl@0
|
478 |
For example, a set of driver capability structures might be encoded into
|
sl@0
|
479 |
an element ID where the 24 MSb are the row/record number and the 8 LSb
|
sl@0
|
480 |
are the column/field index. Thus to retrieve all fields in row 2 supply:
|
sl@0
|
481 |
aElemMask = 0xffffff00, aPattern = 0x000002**
|
sl@0
|
482 |
to retrieve key fields of all records supply:
|
sl@0
|
483 |
aElemMask = 0x000000ff, aPattern = 0x******01
|
sl@0
|
484 |
(* = dont care)
|
sl@0
|
485 |
|
sl@0
|
486 |
On successful return the client will need to check the number found (return
|
sl@0
|
487 |
value) matches the expected number. When there are more defined in
|
sl@0
|
488 |
the category than was able to be returned, i.e. when number found
|
sl@0
|
489 |
exceeded aMaxNum then aMaxNum is returned.
|
sl@0
|
490 |
|
sl@0
|
491 |
When an overall error is returned from the function the output arrays have
|
sl@0
|
492 |
undefined values.
|
sl@0
|
493 |
|
sl@0
|
494 |
@param aCat in: The category to retrieve settings for
|
sl@0
|
495 |
@param aMaxNum in: The maximum number of settings to retrieve. It is also
|
sl@0
|
496 |
the size of the arrays in the following arguments
|
sl@0
|
497 |
@param aMask in: The bits in the Element ID to be checked against
|
sl@0
|
498 |
aPattern
|
sl@0
|
499 |
@param aPattern in: Identified the bits that must be set for a
|
sl@0
|
500 |
setting to be returned in the search
|
sl@0
|
501 |
@param aKeyIds inout: Client supplied array populated on exit. Large
|
sl@0
|
502 |
enough to hold aMaxNum element ids.
|
sl@0
|
503 |
@param aTypes inout: Client supplied array populated with setting types
|
sl@0
|
504 |
enumerations on exit. Array address may be 0 if
|
sl@0
|
505 |
client is not interested.
|
sl@0
|
506 |
@param aLens inout: Client supplied array populated with setting lengths
|
sl@0
|
507 |
on exit for those settings with a type > 0x0000ffff.
|
sl@0
|
508 |
When less than this 0 is set in the aLens array element.
|
sl@0
|
509 |
Array address may be 0 if client is not interested.
|
sl@0
|
510 |
|
sl@0
|
511 |
@return Zero or positive number of settings found in category, -ve on error
|
sl@0
|
512 |
KErrArgument if some parameters are wrong(i.e. aErrors is a null
|
sl@0
|
513 |
pointer, aNum is negative and so on)
|
sl@0
|
514 |
KErrNotReady if the HCR is used before it has been initialised
|
sl@0
|
515 |
KErrCorrupt if HCR finds a repository to be corrupt
|
sl@0
|
516 |
KErrGeneral if an internal failure occurs, see trace
|
sl@0
|
517 |
KErrNoMemory if the memory allocation within this function failed
|
sl@0
|
518 |
Otherwise one of the other system-wide error codes.
|
sl@0
|
519 |
|
sl@0
|
520 |
|
sl@0
|
521 |
@pre Call from thread context, during Init1 or later
|
sl@0
|
522 |
*/
|
sl@0
|
523 |
IMPORT_C TInt FindSettings(TCategoryUid aCat, TInt aMaxNum,
|
sl@0
|
524 |
TUint32 aMask, TUint32 aPattern, TElementId aKeyIds[],
|
sl@0
|
525 |
TSettingType aTypes[], TUint16 aLens[]);
|
sl@0
|
526 |
|
sl@0
|
527 |
}
|
sl@0
|
528 |
|
sl@0
|
529 |
#endif // HCR_H
|
sl@0
|
530 |
|