Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32property.h
18 #ifndef __E32PROPERTY_H__
19 #define __E32PROPERTY_H__
27 Property category UID value reserved for System services.
29 static const TInt32 KUidSystemCategoryValue=0x101f75b6;
36 Property category UID reserved for System services
38 static const TUid KUidSystemCategory={KUidSystemCategoryValue};
45 The lowest value for Property categories at which additional
46 security restrictions are applied when defining properties.
48 Properties with category values above this threshold may only be defined
49 if the category matches the defining process's Secure ID.
51 Below this threashold, properties may be defined either by processes with
52 a matching Secure ID, or by processes with the WriteDeviceData capability.
54 static const TInt32 KUidSecurityThresholdCategoryValue=0x10273357;
61 User side interface to Publish & Subscribe.
63 The class defines a handle to a property, a single data value representing
64 an item of state information. Threads can publish (change) a property value
65 through this handle. Threads can also subscribe
66 (request notification of changes) to a property value through this handle;
67 they can also retrieve the current property value.
69 class RProperty : public RHandleBase
73 The largest supported property value, in bytes, for byte-array (binary)
76 enum { KMaxPropertySize = 512 };
78 The largest supported property value, in bytes, for large byte-array (binary)
79 types and large text types.
81 enum { KMaxLargePropertySize = 65535 };
85 Property type attribute.
90 Integral property type.
96 Byte-array (binary data) property type.
97 This type provides real-time guarantees but is limited to a maximum size
100 @see KMaxPropertySize
107 This is just a programmer friendly view of a byte-array property, and
108 is implemented in the same way as EByteArray.
114 Large byte-array (binary data) property type.
115 This type provides no real-time guarantees but supports properties
116 of up to 65536 bytes.
118 @see KMaxLargePropertySize
124 Large text property type.
125 This is just a programmer friendly view of a byte-array property, and
126 is implemented in the same way as EByteArray.
128 ELargeText = ELargeByteArray,
132 Upper limit for TType values.
133 It is the maximal legal TType value plus 1.
139 Bitmask for TType values coded within TInt attributes.
146 IMPORT_C static TInt Define(TUid aCategory, TUint aKey, TInt aAttr, TInt aPreallocate=0);
147 IMPORT_C static TInt Define(TUid aCategory, TUint aKey, TInt aAttr, const TSecurityPolicy& aReadPolicy, const TSecurityPolicy& aWritePolicy, TInt aPreallocated=0);
148 IMPORT_C static TInt Define(TUint aKey, TInt aAttr, const TSecurityPolicy& aReadPolicy, const TSecurityPolicy& aWritePolicy, TInt aPreallocated=0);
149 IMPORT_C static TInt Delete(TUid aCategory, TUint aKey);
150 IMPORT_C static TInt Delete(TUint aKey);
151 IMPORT_C static TInt Get(TUid aCategory, TUint aKey, TInt& aValue);
152 IMPORT_C static TInt Get(TUid aCategory, TUint aKey, TDes8& aValue);
153 #ifndef __KERNEL_MODE__
154 IMPORT_C static TInt Get(TUid aCategory, TUint aKey, TDes16& aValue);
156 IMPORT_C static TInt Set(TUid aCategory, TUint aKey, TInt aValue);
157 IMPORT_C static TInt Set(TUid aCategory, TUint aKey, const TDesC8& aValue);
158 #ifndef __KERNEL_MODE__
159 IMPORT_C static TInt Set(TUid aCategory, TUint aKey, const TDesC16& aValue);
162 IMPORT_C TInt Attach(TUid aCategory, TUint aKey, TOwnerType aType = EOwnerProcess);
164 IMPORT_C void Subscribe(TRequestStatus& aRequest);
165 IMPORT_C void Cancel();
167 IMPORT_C TInt Get(TInt& aValue);
168 IMPORT_C TInt Get(TDes8& aValue);
169 #ifndef __KERNEL_MODE__
170 IMPORT_C TInt Get(TDes16& aValue);
172 IMPORT_C TInt Set(TInt aValue);
173 IMPORT_C TInt Set(const TDesC8& aValue);
174 #ifndef __KERNEL_MODE__
175 IMPORT_C TInt Set(const TDesC16& aValue);