MSmlDmCallback Class Reference
#include
<smldmadapter.h>
Public Member Functions |
---|
pure virtual void | FetchLinkL(const TDesC8 &, CBufBase &, MSmlDmAdapter::TError &) |
pure virtual
HBufC8 * | GetLuidAllocL(const TDesC8 &) |
pure virtual
TInt
| RemoveMappingL(TUint32, const TDesC8 &, TBool) |
pure virtual void | SetMappingL(const TDesC8 &, const TDesC8 &) |
pure virtual void | SetResultsL(TInt, CBufBase &, const TDesC8 &) |
pure virtual void | SetResultsL(TInt, RReadStream *&, const TDesC8 &) |
pure virtual void | SetStatusL(TInt, MSmlDmAdapter::TError) |
Detailed Description
This class is callback interface which is implemented in DM Module. An instance is passed by reference as an argument to the CSmlDmAdapter::NewL() function. This interface is mostly used for returning results and status codes for completed commands to the DM framework. The interface also has functionality for mapping LUIDs and fetching from other parts of the DM Tree. The adapter does not necessarily need to use any other functions but the SetStatusL and SetResultsL, if it handles the LUID mapping itself.
Member Function Documentation
FetchLinkL ( const TDesC8 &, CBufBase &, MSmlDmAdapter::TError & )
The function is used to make a fetch to other adapters. The most common use is to make a fetch to the AP adapter, because when managing the access points, the data comes as URI. For example, there are ToNAPId field in some adapters, and data to it can be something like AP/IAPidx, and then the link to AP adapter is needed. Using FetchLinkL causes the DM Framework to make a Get request to the appropriate DM adapter. The receiving adapter MUST complete the Get request synchronously.
Parameter | Description | aURI | URI of the object. |
aData | Reference to data, i.e. data is returned here |
aStatus | The status of fetch command is returned here |
GetLuidAllocL ( const TDesC8 & )
The function returns the LUID which is mapped to aURI. If LUID is not found, the function allocates a null length string, i.e. the function allocates memory in every case.
Parameter | Description | aURI | URI of the object. |
RemoveMappingL ( TUint32, const TDesC8 &, TBool )
The function is used to remove a mapped URI. Returns the error code about mapping removal.
Parameter | Description | aAdapterId | Settings Adapter id |
aURI | Mapped Uri |
aChildAlso | Indicates the child nodes removal |
SetMappingL ( const TDesC8 &, const TDesC8 & )
void | SetMappingL | ( | const TDesC8 & | aURI, |
| const TDesC8 & | aLUID |
| ) | [pure virtual] |
The function passes map information to DM Module. This function is called for a new management object, both for node objects and for leaf objects. In addition if ChildURIListL() function has returned new objects a mapping information of the new objects must be passed. A mapping is treated as inheritable. If the mapping is not set with this function, the mapping LUID of the parent object is passed in following commands to the object.
Parameter | Description | aURI | URI of the object. |
aLUID | LUID of the object. LUID must contain the all information, which is needed for retrieve the invidual object from the database. Typically it is ID for the database table. In more complicated structures it can be combination of IDs, which represent path to the object. |
SetResultsL ( TInt, CBufBase &, const TDesC8 & )
The function is used to return the data in case of FetchLeafObjectL(), FetchLeafObjectSizeL() and ChildURIListL() functions. It should not be called where the DM command has failed, i.e. the error code returned in SetStatusL is something other than EOk.
Parameter | Description | aResultsRef | Reference to correct command |
aObject | The data which should be returned |
aType | MIME type of the object |
SetResultsL ( TInt, RReadStream *&, const TDesC8 & )
The function is used to return the data in case of FetchLeafObjectL() and ChildURIListL() functions, where the size of the data being returned is large enough for the Adapter to stream it. This function should not be called when command was failed, i.e. the error code returned in SetStatusL is something other than EOk.
Parameter | Description | aResultsRef | Reference to correct command |
aStream | Large data which should be returned, DM engine closes stream when it has read all the data |
aType | MIME type of the object |
SetStatusL ( TInt, MSmlDmAdapter::TError )
The function returns information about the Add,Update,Delete and Fetch commands success to DM engine. The reference to correct command must be used when calling the SetStatusL function, the reference is got from the argument of the command functions. The SetStatusL function must be called separately for every single command.
Parameter | Description | aStatusRef | Reference to correct command |
aErrorCode | Information about the command success |