#include <e32property.h>
class RProperty : public RHandleBase |
Public Member Enumerations | |
---|---|
enum | anonymous { KMaxPropertySize } |
enum | anonymous { KMaxLargePropertySize } |
enum | TType { EInt, EByteArray, EText, ELargeByteArray, ..., ETypeMask } |
Public Member Functions | |
---|---|
IMPORT_C TInt | Attach(TUid, TUint, TOwnerType) |
IMPORT_C void | Cancel() |
IMPORT_C TInt | Define(TUid, TUint, TInt, TInt) |
IMPORT_C TInt | Define(TUid, TUint, TInt, const TSecurityPolicy &, const TSecurityPolicy &, TInt) |
IMPORT_C TInt | Define(TUint, TInt, const TSecurityPolicy &, const TSecurityPolicy &, TInt) |
IMPORT_C TInt | Delete(TUid, TUint) |
IMPORT_C TInt | Delete(TUint) |
IMPORT_C TInt | Get(TUid, TUint, TInt &) |
IMPORT_C TInt | Get(TUid, TUint, TDes8 &) |
IMPORT_C TInt | Get(TUid, TUint, TDes16 &) |
IMPORT_C TInt | Get(TInt &) |
IMPORT_C TInt | Get(TDes8 &) |
IMPORT_C TInt | Get(TDes16 &) |
IMPORT_C TInt | Set(TUid, TUint, TInt) |
IMPORT_C TInt | Set(TUid, TUint, const TDesC8 &) |
IMPORT_C TInt | Set(TUid, TUint, const TDesC16 &) |
IMPORT_C TInt | Set(TInt) |
IMPORT_C TInt | Set(const TDesC8 &) |
IMPORT_C TInt | Set(const TDesC16 &) |
IMPORT_C void | Subscribe(TRequestStatus &) |
Inherited Attributes | |
---|---|
RHandleBase::iHandle |
Inherited Enumerations | |
---|---|
RHandleBase:TAttributes |
User side interface to Publish & Subscribe.
The class defines a handle to a property, a single data value representing an item of state information. Threads can publish (change) a property value through this handle. Threads can also subscribe (request notification of changes) to a property value through this handle; they can also retrieve the current property value.
The largest supported property value, in bytes, for byte-array (binary) types and text types.
Enumerator | Value | Description |
---|---|---|
KMaxPropertySize | 512 |
The largest supported property value, in bytes, for large byte-array (binary) types and large text types.
Enumerator | Value | Description |
---|---|---|
KMaxLargePropertySize | 65535 |
Property type attribute.
Enumerator | Value | Description |
---|---|---|
EInt |
Integral property type. | |
EByteArray |
Byte-array (binary data) property type. This type provides real-time guarantees but is limited to a maximum size of 512 bytes.
See also: KMaxPropertySize | |
EText | EByteArray |
Text property type. This is just a programmer friendly view of a byte-array property, and is implemented in the same way as EByteArray. |
ELargeByteArray |
Large byte-array (binary data) property type. This type provides no real-time guarantees but supports properties of up to 65536 bytes.
See also: KMaxLargePropertySize | |
ELargeText | ELargeByteArray |
Large text property type. This is just a programmer friendly view of a byte-array property, and is implemented in the same way as EByteArray. |
ETypeLimit |
Upper limit for TType values. It is the maximal legal TType value plus 1. | |
ETypeMask | 0xff |
Bitmask for TType values coded within TInt attributes. |
IMPORT_C TInt | Attach | ( | TUid | aCategory, |
TUint | aKey, | |||
TOwnerType | aType = EOwnerProcess | |||
) |
Attaches to the specified property.
The function creates a handle (this object) to the specified property. This allows the caller to subscribe for notification of changes to this property, and to faster and real-time property access methods.
If the specified property does not exist, then this operation will still succeed. However, memory allocation will be required. Note that this invalidates any real-time guarantee, i.e. the guarantee that the operation completes within a bounded time.
Parameters | |
---|---|
aCategory | The UID that identifies the property category. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aType | The ownership of this property handle. By default, ownership is vested in the current process, but can be vested in the current thread by specifying EOwnerThread. |
IMPORT_C void | Cancel | ( | ) |
Cancels an outstanding subscription request for this property handle.
If the request has not already completed, then it completes with KErrCancel.
NOTE - The use of this method is deprecated.
Defines a property with the specified category ID. This method should only be used to specify a category different from the creating process's secure ID in exceptional circumstances. In most cases the overload:
should be used. For details see the document located at:
Symbian OS guide Base Using User Library (E32) Publish and Subscribe Security issues
Defines the attributes and access control for a property. This can only be done once for each property. Subsequent attempts to define the same property will return KErrAlreadyExists.
Only processes with the write-system-data capability are allowed to define properties either in the system category (KUidSystemCategory) or with aCategory < KUidSecurityThresholdCategoryValue. Any attempt to define a property with these categories by a process with insufficient capabilities will fail with a KErrPermissionDenied error.
Following the property's definition, it will have a default value, 0 for integer properties and zero-length data for byte-array and text properties. Pending subscriptions for this property will not be completed until a new value is published.
See also: KUidSecurityThresholdCategoryValue
Use RProperty::Define(TUint aKey, TInt aAttr, const TSecurityPolicy &aReadPolicy, const TSecurityPolicy &aWritePolicy, TInt aPreallocated=0) instead.
Parameters | |
---|---|
aCategory | The UID that identifies the property category. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aAttr | This describes the property type, a TType value; persistence, as defined by the KPersistent bit, may be ORed in. |
aPreallocate | The number of bytes to be pre-allocated for variable sized properties. Pre-allocating enough space ensures that a variable sized property can be set in 'real-time', (i.e. the time to set the property is bounded). |
Capability | |
---|---|
WriteDeviceData | if aCategory==KUidSystemCategoryValue. |
WriteDeviceData | if aCategory not equal to the current process's Secure ID and aCategory<KUidSecurityThresholdCategoryValue. |
IMPORT_C TInt | Define | ( | TUid | aCategory, |
TUint | aKey, | |||
TInt | aAttr, | |||
const TSecurityPolicy & | aReadPolicy, | |||
const TSecurityPolicy & | aWritePolicy, | |||
TInt | aPreallocated = 0 | |||
) | [static] |
Defines a property with the specified category ID. This method should only be used to specify a category different from the creating process's secure ID in exceptional circumstances. In most cases the overload:
should be used. For details see the document located at:
Symbian OS guide Base Using User Library (E32) Publish and Subscribe Security issues
Defines the attributes and access control for a property. This can only be done once for each property. Subsequent attempts to define the same property will return KErrAlreadyExists.
Only processes with the write-system-data capability are allowed to define properties either in the system category (KUidSystemCategory) or with aCategory < KUidSecurityThresholdCategoryValue. Any attempt to define a property with these categories by a process with insufficient capabilities will fail with a KErrPermissionDenied error.
Following the property's definition, it will have a default value, 0 for integer properties and zero-length data for byte-array and text properties. Pending subscriptions for this property will not be completed until a new value is published.
See also: KUidSecurityThresholdCategoryValue
Parameters | |
---|---|
aCategory | The UID that identifies the property category. This must either be the current process's Secure ID, or KUidSystemCategoryValue. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aAttr | This describes the property type, a TType value; persistence, as defined by the KPersistent bit, may be ORed in. |
aReadPolicy | A security policy defining the security attributes a process must have in order to read this value. |
aWritePolicy | A security policy defining the security attributes a process must have in order to write this value. |
aPreallocated | The number of bytes to be pre-allocated for variable sized properties. Pre-allocating enough space ensures that a variable sized property can be set in 'real-time', (i.e. the time to set the property is bounded). |
Capability | |
---|---|
WriteDeviceData | if aCategory==KUidSystemCategoryValue. |
WriteDeviceData | if aCategory not equal to the current process's Secure ID and aCategory<KUidSecurityThresholdCategoryValue. |
IMPORT_C TInt | Define | ( | TUint | aKey, |
TInt | aAttr, | |||
const TSecurityPolicy & | aReadPolicy, | |||
const TSecurityPolicy & | aWritePolicy, | |||
TInt | aPreallocated = 0 | |||
) | [static] |
Defines a property.
Defines the attributes and access control for a property. This can only be done once for each property. Subsequent attempts to define the same property will return KErrAlreadyExists.
The category ID for the property will be the same as the current processes Secure ID.
Following the property's definition, it will have a default value, 0 for integer properties and zero-length data for byte-array and text properties. Pending subscriptions for this property will not be completed until a new value is published.
Parameters | |
---|---|
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aAttr | This describes the property type, a TType value; persistence, as defined by the KPersistent bit, may be ORed in. |
aReadPolicy | A security policy defining the security attributes a process must have in order to read this value. |
aWritePolicy | A security policy defining the security attributes a process must have in order to write this value. |
aPreallocated | The number of bytes to be pre-allocated for variable sized properties. Pre-allocating enough space ensures that a variable sized property can be set in 'real-time', (i.e. the time to set the property is bounded). |
Deletes a property.
This can only be called by the property owner, as defined by the process Security ID; any attempt by another process to delete the property will fail.
Any pending subscriptions for this property will be completed with KErrNotFound. Any new request will not complete until the property is defined and published again.
Parameters | |
---|---|
aCategory | The UID that identifies the property category. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
Deletes a property.
The category ID for the property will be the same as the current processes Secure ID.
Any pending subscriptions for this property will be completed with KErrNotFound. Any new request will not complete until the property is defined and published again.
Parameters | |
---|---|
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
Gets an integer property.
The function gets the integer value of the specified property.
The Platform Security attributes of the current process are checked against the Read Policy which was specified when the property was defined. If this check fails the action taken is determined by the system wide Platform Security configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted. If PlatSecEnforcement is OFF, then this function will return KErrNone even though the check failed.
Parameters | |
---|---|
aCategory | The UID that identifies the property category. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aValue | A reference to the variable where the property value will be reported. |
Gets a binary property.
The function gets the byte-array (binary) value of the specified property.
The Platform Security attributes of the current process are checked against the Read Policy which was specified when the property was defined. If this check fails the action taken is determined by the system wide Platform Security configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted. If PlatSecEnforcement is OFF, then this function will return KErrNone even though the check failed.
Parameters | |
---|---|
aCategory | The UID that identifies the property category. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aValue | A reference to the buffer descriptor where the property value will be reported. |
Gets a text property.
The function gets the text value of the specified property.
The Platform Security attributes of the current process are checked against the Read Policy which was specified when the property was defined. If this check fails the action taken is determined by the system wide Platform Security configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted. If PlatSecEnforcement is OFF, then this function will return KErrNone even though the check failed.
Parameters | |
---|---|
aCategory | The UID that identifies the property category. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aValue | A reference to the buffer descriptor where the property value will be reported. |
Gets the integer value of this property.
The implementation guarantees that this call has a bounded response time.
Parameters | |
---|---|
aValue | A reference to the variable where the property value will be reported. |
Gets the byte-array (binary) value of this property.
The implementation guarantees that this call has a bounded response time.
Parameters | |
---|---|
aValue | A reference to the buffer descriptor where the property value will be reported. |
Gets the text value of this property.
The implementation guarantees that this call has a bounded response time.
Parameters | |
---|---|
aValue | A reference to the buffer descriptor where the property value will be reported. |
Sets an integer property.
The function publishes a new integral property value.
Any pending subscriptions for this property will be completed.
The Platform Security attributes of the current process are checked against the Write Policy which was specified when the property was defined. If this check fails the action taken is determined by the system wide Platform Security configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted. If PlatSecEnforcement is OFF, then this function will return KErrNone even though the check failed.
Parameters | |
---|---|
aCategory | The UID that identifies the property category. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aValue | The new property value. |
Sets a binary property.
The function Publishes a new byte-array (binary) value for the specified property.
Any pending subscriptions for this property will be completed.
Note that if the new property value requires more storage space than is currently allocated, then memory allocation will be required. This invalidates any real-time guarantee, i.e. the guarantee that the operation will complete within a bounded time.
The Platform Security attributes of the current process are checked against the Write Policy which was specified when the property was defined. If this check fails the action taken is determined by the system wide Platform Security configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted. If PlatSecEnforcement is OFF, then this function will return KErrNone even though the check failed.
Parameters | |
---|---|
aCategory | The UID that identifies the property category. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aValue | A reference to the descriptor containing the new property value. |
Sets a text property.
The function publishes a new text value for the specified property.
Any pending subscriptions for this property will be completed.
Note that if the new property value requires more storage space than is currently allocated, then memory allocation will be required. This invalidates any real-time guarantee, i.e. the guarantee that the operation will complete within a bounded time.
The Platform Security attributes of the current process are checked against the Write Policy which was specified when the property was defined. If this check fails the action taken is determined by the system wide Platform Security configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted. If PlatSecEnforcement is OFF, then this function will return KErrNone even though the check failed.
Parameters | |
---|---|
aCategory | The UID that identifies the property category. |
aKey | The property sub-key, i.e. the key that identifies the specific property within the category. |
aValue | A reference to the descriptor containing the new property value. |
Sets a new integer value for this property.
The function publishes the attached new integral property value, and any pending subscriptions for this property are completed.
The implementation guarantees that this call has a bounded response time.
Parameters | |
---|---|
aValue | The property new value. |
Sets the byte-array (binary) property.
The function publishes the attached new binary property value, and any pending subscriptions for this property are completed.
The implementation guarantees that this call has a bounded response time only if the new property value requires no more storage space than is currently allocated. If more memory needs to be allocated, then this invalidates the real-time guarantee.
Parameters | |
---|---|
aValue | A reference to the descriptor containing the property new value. |
Sets the text property
The function publishes the attached new text property value, and any pending subscriptions for this property are completed.
The implementation guarantees that this call has a bounded response time only if the new property value requires no more storage space than is currently allocated. If more memory needs to be allocated, then this invalidates the real-time guarantee.
Parameters | |
---|---|
aValue | A reference to the descriptor containing the property new value. |
IMPORT_C void | Subscribe | ( | TRequestStatus & | aRequest | ) |
Subscribes to a property.
The function issues an asynchronous request to be notified when the property is changed. The calling thread is signalled, and the specified request status object is updated when the property is next changed.
The property may change several times before the subscribing thread can deal with a notification request completion. To ensure that the subscriber does not miss updates, it should re-issue a subscription request before retrieving the current value and acting on it.
If the property has not been defined, the request does not complete until the property is subsequently defined and published. When defined, if the caller process doesn't pass the Read Policy, then the request completes with KErrPermissionDenied.
If the property is already defined, and the caller process doesn't pass the Read Policy, then the request completes immediately with KErrPermissionDenied.
When Read Policy checks fail the action taken is determined by the system wide Platform Security configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted. If PlatSecEnforcement is OFF, then the request will complete successfully even though the check failed.
If an outstanding request is cancelled through a call to Cancel(), then it completes with KErrCancel.
Parameters | |
---|---|
aRequest | The request status object to be signalled on update. |
Panic Codes | |
---|---|
KERN-EXEC | 9 if there is already a subscription on this property handle; only one subscription per |