|
MoSync 3.2.1
|
This class describes a single HTTP 1.0 operation. More...
#include <MAUtil/Connection.h>
Public Member Functions | |
| HttpConnection (HttpConnectionListener *listener) | |
| int | create (const char *url, int method) |
| void | setRequestHeader (const char *key, const char *value) |
| int | getResponseHeader (const char *key, String *str) |
| void | finish () |
| int | connect (const char *url) |
| void | close () |
| void | write (const void *src, int len) |
| void | writeFromData (MAHandle data, int offset, int len) |
| void | recv (void *dst, int maxlen) |
| void | recvToData (MAHandle data, int offset, int maxlen) |
| void | read (void *dst, int len) |
| void | readToData (MAHandle data, int offset, int len) |
| void | setListener (ConnectionListener *listener) |
| bool | isOpen () const |
| int | getAddr (MAConnAddr *dst) |
Protected Member Functions | |
| virtual void | connEvent (const MAConnEventData &data) |
| void | recvMem (int prevRes) |
| void | recvData (int prevRes) |
Protected Attributes | |
| MAHandle | mConn |
| ConnectionListener * | mListener |
| int | mRemain |
| byte * | mDst |
| MAHandle | mData |
| int | mOffset |
| void(Connection::* | mRecv )(int prevRes) |
This class describes a single HTTP 1.0 operation.
| MAUtil::HttpConnection::HttpConnection | ( | HttpConnectionListener * | listener | ) |
Initializes the new HttpConnection with the specified HttpConnectionListener.
| int MAUtil::HttpConnection::create | ( | const char * | url, |
| int | method | ||
| ) |
| void MAUtil::HttpConnection::setRequestHeader | ( | const char * | key, |
| const char * | value | ||
| ) |
| int MAUtil::HttpConnection::getResponseHeader | ( | const char * | key, |
| String * | str | ||
| ) |
Stores an HTTP response header value in a String, if the header exists. Resizes the String appropriately. Does not modify the String if the header does not exist.
| void MAUtil::HttpConnection::finish | ( | ) |
This function returns immediately. When the operation is complete, httpFinished() of the HttpConnectionListener associated with this HttpConnection will be called.
| virtual void MAUtil::HttpConnection::connEvent | ( | const MAConnEventData & | data | ) | [protected, virtual] |
Reimplemented from MAUtil::Connection.
| int MAUtil::Connection::connect | ( | const char * | url | ) | [inherited] |
Reimplemented in MAUtil::BluetoothConnection.
| void MAUtil::Connection::close | ( | ) | [inherited] |
Closes the connection, if open. Frees all resources allocated by this object. Allows this Connection object to be reused for further connections.
Reimplemented in MAUtil::BluetoothConnection.
| void MAUtil::Connection::write | ( | const void * | src, |
| int | len | ||
| ) | [inherited] |
Causes ConnectionListener::connWriteFinished() to be called when the operation is complete.
| void MAUtil::Connection::writeFromData | ( | MAHandle | data, |
| int | offset, | ||
| int | len | ||
| ) | [inherited] |
Causes ConnectionListener::connWriteFinished() to be called when the operation is complete.
| void MAUtil::Connection::recv | ( | void * | dst, |
| int | maxlen | ||
| ) | [inherited] |
Reads between 1 and maxlen bytes to dst. Causes ConnectionListener::connRecvFinished() to be called when the operation is complete. Use this function when you don't care how much data you get, as long as you get something.
| void MAUtil::Connection::recvToData | ( | MAHandle | data, |
| int | offset, | ||
| int | maxlen | ||
| ) | [inherited] |
Reads between 1 and maxlen bytes to data, starting at offset. Causes ConnectionListener::connRecvFinished() to be called when the operation is complete.
| void MAUtil::Connection::read | ( | void * | dst, |
| int | len | ||
| ) | [inherited] |
Reads exactly len bytes to dst. Causes ConnectionListener::connReadFinished() to be called when the operation is complete. Use this function when you know exactly how much data you want, and are not interested in anything less.
| void MAUtil::Connection::readToData | ( | MAHandle | data, |
| int | offset, | ||
| int | len | ||
| ) | [inherited] |
Reads exactly len bytes to data, starting at offset. Causes ConnectionListener::connReadFinished() to be called when the operation is complete.
| void MAUtil::Connection::setListener | ( | ConnectionListener * | listener | ) | [inherited] |
Replaces the listener for this object.
| bool MAUtil::Connection::isOpen | ( | ) | const [inherited] |
Returns true if the connection is open, false otherwise. The connection is considered open even during the connect() operation.
| int MAUtil::Connection::getAddr | ( | MAConnAddr * | dst | ) | [inherited] |
Retrieves the remote address of this connection.
| void MAUtil::Connection::recvMem | ( | int | prevRes | ) | [protected, inherited] |
| void MAUtil::Connection::recvData | ( | int | prevRes | ) | [protected, inherited] |
MAHandle MAUtil::Connection::mConn [protected, inherited] |
ConnectionListener* MAUtil::Connection::mListener [protected, inherited] |
int MAUtil::Connection::mRemain [protected, inherited] |
byte* MAUtil::Connection::mDst [protected, inherited] |
MAHandle MAUtil::Connection::mData [protected, inherited] |
int MAUtil::Connection::mOffset [protected, inherited] |
void(Connection::* MAUtil::Connection::mRecv)(int prevRes) [protected, inherited] |