#include <llurlrequest.h>
Inheritance diagram for LLURLRequestComplete:
Public Member Functions | |
virtual void | header (const std::string &header, const std::string &value) |
Called once for each header received, prior to httpStatus. | |
virtual void | httpStatus (U32 status, const std::string &reason) |
Always called on request completion, prior to complete. | |
virtual void | complete (const LLChannelDescriptors &channels, const buffer_ptr_t &buffer) |
virtual void | response (const LLChannelDescriptors &channels, const buffer_ptr_t &buffer) |
This method is called when we got a valid response. | |
virtual void | noResponse () |
This method is called if there was no response. | |
void | responseStatus (EStatus status) |
This method will be called by the LLURLRequest object. | |
LLURLRequestComplete () | |
virtual | ~LLURLRequestComplete () |
Protected Member Functions | |
virtual EStatus | process_impl (const LLChannelDescriptors &channels, buffer_ptr_t &buffer, bool &eos, LLSD &context, LLPumpIO *pump) |
Process the data in buffer. | |
Protected Attributes | |
EStatus | mRequestStatus |
Definition at line 296 of file llurlrequest.h.
LLURLRequestComplete::LLURLRequestComplete | ( | ) |
Definition at line 651 of file llurlrequest.cpp.
References LLMemType::MTYPE_IO_URL_REQUEST.
LLURLRequestComplete::~LLURLRequestComplete | ( | ) | [virtual] |
void LLURLRequestComplete::complete | ( | const LLChannelDescriptors & | channels, | |
const buffer_ptr_t & | buffer | |||
) | [virtual] |
Definition at line 674 of file llurlrequest.cpp.
References mRequestStatus, noResponse(), response(), and LLIOPipe::STATUS_OK.
Referenced by process_impl().
void LLURLRequestComplete::header | ( | const std::string & | header, | |
const std::string & | value | |||
) | [virtual] |
Called once for each header received, prior to httpStatus.
Definition at line 664 of file llurlrequest.cpp.
Referenced by headerCallback().
Always called on request completion, prior to complete.
Definition at line 669 of file llurlrequest.cpp.
Referenced by headerCallback().
void LLURLRequestComplete::noResponse | ( | ) | [virtual] |
This method is called if there was no response.
It is up to class implementers to do something useful here.
Definition at line 696 of file llurlrequest.cpp.
References llendl, and llwarns.
Referenced by complete().
LLIOPipe::EStatus LLURLRequestComplete::process_impl | ( | const LLChannelDescriptors & | channels, | |
buffer_ptr_t & | buffer, | |||
bool & | eos, | |||
LLSD & | context, | |||
LLPumpIO * | pump | |||
) | [protected, virtual] |
Process the data in buffer.
Definition at line 709 of file llurlrequest.cpp.
References complete(), PUMP_DEBUG, and LLIOPipe::STATUS_OK.
void LLURLRequestComplete::response | ( | const LLChannelDescriptors & | channels, | |
const buffer_ptr_t & | buffer | |||
) | [virtual] |
This method is called when we got a valid response.
It is up to class implementers to do something useful here.
Definition at line 688 of file llurlrequest.cpp.
References llendl, and llwarns.
Referenced by complete().
This method will be called by the LLURLRequest object.
If this is set to STATUS_OK or STATUS_STOP, then the transfer is asssumed to have worked. This will lead to calling response() on the next call to process(). Otherwise, this object will call noResponse() on the next call to process.
status | The status of the URLRequest. |
Referenced by LLURLRequest::process_impl().
EStatus LLURLRequestComplete::mRequestStatus [protected] |