MHTTPDataSupplier Class Reference

class MHTTPDataSupplier

A data supplier - This class is used to deliver the response data to the client, and is also used by the client to supply request body data to HTTP in POST transactions. Data is supplied in a number of parts. When a part is available it can be retreived with GetNextDataPart. The returned descriptor will remain valid until ReleaseData is called.

To use this class to supply POST data, you have a number of options. If the post data needs to be URL Form encoded, you should use CHTTPFormEncoder , which will do the encoding and interface to the MHTTPDataSupplier for you. If you have all the data available, return its length in OverallDataSize, and pass back all the data from GetNextDataPart, returning ETrue to indicate that this is the last part.

If you don't want to form all the data at once, but know how much you'll eventualy have, return the total length from OverallDataSize. When GetNextDataPart is first called, return the first part. If GetNextDataPart is called again before ReleaseData, you should still return the first part. Only when ReleaseData is called should you move to the second part. If you don't know the total size of the data, the procedure is the same but you should return KErrNotFound from OverallDataSize.

When the next part is available, clients should call RHTTPTransaction::NotifyNewRequestBodyPartL to inform HTTP that the new data is available. They can do this from ReleaseData if more data is instantly available, or in some applications they may need to call it some time later when the next part has been assembled.

Filter writers should note that the MHTTPDataSupplier interface is designed to be used by 1 client, as 1 component needs to know when to call ReleaseData() . However, filters can be written to transform the data in some way. For instance, a filter could be written to automaticaly handle a particular content encoding. When this filter first receives a GotResponseBodyData, it should take a copy of the response's body and replace the body with a MHTTPDataSupplier supplied by the filter. The filter should then receive the data from HTTP via the saved data supplier and give it to the client via its own data supplier.

Member Functions Documentation

GetNextDataPart(TPtrC8 &)

TBool GetNextDataPart ( TPtrC8 & aDataPart ) [pure virtual]

Obtain a data part from the supplier. The data is guaranteed to survive until a call is made to ReleaseData() .

Parameters

TPtrC8 & aDataPart - the data part

MHDS_Reserved1()

void MHDS_Reserved1 ( ) [private, inline, virtual]

MHDS_Reserved2()

void MHDS_Reserved2 ( ) [private, inline, virtual]

MHDS_Reserved3()

void MHDS_Reserved3 ( ) [private, inline, virtual]

OverallDataSize()

TInt OverallDataSize ( ) [pure virtual]

Obtain the overall size of the data being supplied, if known to the supplier. Where a body of data is supplied in several parts this size will be the sum of all the part sizes. If the size is not known, KErrNotFound is returned; in this case the client must use the return code of GetNextDataPart to find out when the data is complete.

ReleaseData()

void ReleaseData ( ) [pure virtual]

Release the current data part being held at the data supplier. This call indicates to the supplier that the part is no longer needed, and another one can be supplied, if appropriate.

Reset()

TInt Reset ( ) [pure virtual]

Reset the data supplier. This indicates to the data supplier that it should return to the first part of the data. This could be used in a situation where the data consumer has encountered an error and needs the data to be supplied afresh. Even if the last part has been supplied (i.e. GetNextDataPart has returned ETrue), the data supplier should reset to the first part.

If the supplier cannot reset it should return an error code; otherwise it should return KErrNone, where the reset will be assumed to have succeeded