#include </home/zeitlin/src/wx/github/interface/wx/socket.h>
wxSocketBase is the base class for all socket-related objects, and it defines all basic IO functionality.
The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Event macros for events emitted by this class:
Construction and Destruction | |
wxSocketBase () | |
Default constructor. | |
virtual | ~wxSocketBase () |
Destructor. | |
bool | Destroy () |
Destroys the socket safely. | |
static bool | Initialize () |
Perform the initialization needed in order to use the sockets. | |
static void | Shutdown () |
Shut down the sockets. | |
Public Member Functions | |
Socket State | |
bool | Error () const |
Returns true if an error occurred in the last IO operation. | |
virtual bool | GetLocal (wxSockAddress &addr) const |
Return the local address of the socket. | |
virtual bool | GetPeer (wxSockAddress &addr) const |
Return the peer address field of the socket. | |
long | GetTimeout () const |
Return the socket timeout in seconds. | |
bool | IsConnected () const |
Returns true if the socket is connected. | |
bool | IsData () |
Check if the socket can be currently read or written. | |
bool | IsDisconnected () const |
Returns true if the socket is not connected. | |
bool | IsOk () const |
Returns true if the socket is initialized and ready and false in other cases. | |
wxUint32 | LastCount () const |
Returns the number of bytes read or written by the last IO call. | |
wxSocketError | LastError () const |
Returns the last wxSocket error. | |
void | RestoreState () |
Restore the previous state of the socket, as saved with SaveState(). | |
void | SaveState () |
Save the current state of the socket in a stack. | |
Basic I/O | |
virtual bool | Close () |
Shut down the socket, disabling further transmission and reception of data and disable events for the socket and frees the associated system resources. | |
void | ShutdownOutput () |
Shuts down the writing end of the socket. | |
wxSocketBase & | Discard () |
Delete all bytes in the incoming queue. | |
wxSocketFlags | GetFlags () const |
Returns current IO flags, as set with SetFlags() | |
void | InterruptWait () |
Use this function to interrupt any wait operation currently in progress. | |
wxSocketBase & | Peek (void *buffer, wxUint32 nbytes) |
Peek into the socket by copying the next bytes which would be read by Read() into the provided buffer. | |
wxSocketBase & | Read (void *buffer, wxUint32 nbytes) |
Read up to the given number of bytes from the socket. | |
wxSocketBase & | ReadMsg (void *buffer, wxUint32 nbytes) |
Receive a message sent by WriteMsg(). | |
void | SetFlags (wxSocketFlags flags) |
Use SetFlags to customize IO operation for this socket. | |
virtual bool | SetLocal (const wxIPV4address &local) |
Set the local address and port to use. | |
void | SetTimeout (long seconds) |
Set the default socket timeout in seconds. | |
wxSocketBase & | Unread (const void *buffer, wxUint32 nbytes) |
Put the specified data into the input queue. | |
bool | Wait (long seconds=-1, long millisecond=0) |
Wait for any socket event. | |
bool | WaitForLost (long seconds=-1, long millisecond=0) |
Wait until the connection is lost. | |
bool | WaitForRead (long seconds=-1, long millisecond=0) |
Wait until the socket is readable. | |
bool | WaitForWrite (long seconds=-1, long millisecond=0) |
Wait until the socket becomes writable. | |
wxSocketBase & | Write (const void *buffer, wxUint32 nbytes) |
Write up to the given number of bytes to the socket. | |
wxSocketBase & | WriteMsg (const void *buffer, wxUint32 nbytes) |
Sends a buffer which can be read using ReadMsg(). | |
Handling Socket Events | |
void * | GetClientData () const |
Returns a pointer of the client data for this socket, as set with SetClientData() | |
void | Notify (bool notify) |
According to the notify value, this function enables or disables socket events. | |
void | SetClientData (void *data) |
Sets user-supplied client data for this socket. | |
void | SetEventHandler (wxEvtHandler &handler, int id=-1) |
Sets an event handler to be called when a socket event occurs. | |
void | SetNotify (wxSocketEventFlags flags) |
Specifies which socket events are to be sent to the event handler. |
wxSocketBase::wxSocketBase | ( | ) |
Default constructor.
Don't use it directly; instead, use wxSocketClient to construct a socket client, or wxSocketServer to construct a socket server.
virtual wxSocketBase::~wxSocketBase | ( | ) | [virtual] |
Destructor.
Do not destroy a socket using the delete operator directly; use Destroy() instead. Also, do not create socket objects in the stack.
virtual bool wxSocketBase::Close | ( | ) | [virtual] |
Shut down the socket, disabling further transmission and reception of data and disable events for the socket and frees the associated system resources.
Upon socket destruction, Close() is automatically called, so in most cases you won't need to do it yourself, unless you explicitly want to shut down the socket, typically to notify the peer that you are closing the connection.
Reimplemented in wxFTP.
bool wxSocketBase::Destroy | ( | ) |
Destroys the socket safely.
Use this function instead of the delete operator, since otherwise socket events could reach the application even after the socket has been destroyed. To prevent this problem, this function appends the wxSocket to a list of object to be deleted on idle time, after all events have been processed. For the same reason, you should avoid creating socket objects in the stack.
Destroy() calls Close() automatically.
wxSocketBase& wxSocketBase::Discard | ( | ) |
Delete all bytes in the incoming queue.
This function always returns immediately and its operation is not affected by IO flags.
Use LastCount() to verify the number of bytes actually discarded.
If you use Error(), it will always return false.
bool wxSocketBase::Error | ( | ) | const |
void* wxSocketBase::GetClientData | ( | ) | const |
Returns a pointer of the client data for this socket, as set with SetClientData()
wxSocketFlags wxSocketBase::GetFlags | ( | ) | const |
Returns current IO flags, as set with SetFlags()
virtual bool wxSocketBase::GetLocal | ( | wxSockAddress & | addr | ) | const [virtual] |
Return the local address of the socket.
virtual bool wxSocketBase::GetPeer | ( | wxSockAddress & | addr | ) | const [virtual] |
Return the peer address field of the socket.
long wxSocketBase::GetTimeout | ( | ) | const |
Return the socket timeout in seconds.
The timeout can be set using SetTimeout() and is 10 minutes by default.
static bool wxSocketBase::Initialize | ( | ) | [static] |
Perform the initialization needed in order to use the sockets.
This function is called from wxSocket constructor implicitly and so normally doesn't need to be called explicitly. There is however one important exception: as this function must be called from the main (UI) thread, if you use wxSocket from multiple threads you must call Initialize() from the main thread before creating wxSocket objects in the other ones.
It is safe to call this function multiple times (only the first call does anything) but you must call Shutdown() exactly once for every call to Initialize().
This function should only be called from the main thread.
void wxSocketBase::InterruptWait | ( | ) |
Use this function to interrupt any wait operation currently in progress.
Note that this is not intended as a regular way to interrupt a Wait call, but only as an escape mechanism for exceptional situations where it is absolutely necessary to use it, for example to abort an operation due to some exception or abnormal problem. InterruptWait is automatically called when you Close() a socket (and thus also upon socket destruction), so you don't need to use it in these cases.
bool wxSocketBase::IsConnected | ( | ) | const |
Returns true if the socket is connected.
bool wxSocketBase::IsData | ( | ) |
Check if the socket can be currently read or written.
This might mean that queued data is available for reading or, for streamed sockets, that the connection has been closed, so that a read operation will complete immediately without blocking (unless the wxSOCKET_WAITALL flag is set, in which case the operation might still block).
bool wxSocketBase::IsDisconnected | ( | ) | const |
Returns true if the socket is not connected.
bool wxSocketBase::IsOk | ( | ) | const |
Returns true if the socket is initialized and ready and false in other cases.
wxUint32 wxSocketBase::LastCount | ( | ) | const |
wxSocketError wxSocketBase::LastError | ( | ) | const |
Returns the last wxSocket error.
See wxSocketError .
void wxSocketBase::Notify | ( | bool | notify | ) |
According to the notify value, this function enables or disables socket events.
If notify is true, the events configured with SetNotify() will be sent to the application. If notify is false; no events will be sent.
wxSocketBase& wxSocketBase::Peek | ( | void * | buffer, |
wxUint32 | nbytes | ||
) |
Peek into the socket by copying the next bytes which would be read by Read() into the provided buffer.
Peeking a buffer doesn't delete it from the socket input queue, i.e. calling Read() will return the same data.
Use LastCount() to verify the number of bytes actually peeked.
Use Error() to determine if the operation succeeded.
buffer | Buffer where to put peeked data. |
nbytes | Number of bytes. |
wxSocketBase& wxSocketBase::Read | ( | void * | buffer, |
wxUint32 | nbytes | ||
) |
Read up to the given number of bytes from the socket.
Use LastCount() to verify the number of bytes actually read. Use Error() to determine if the operation succeeded.
buffer | Buffer where to put read data. |
nbytes | Number of bytes. |
wxSocketBase& wxSocketBase::ReadMsg | ( | void * | buffer, |
wxUint32 | nbytes | ||
) |
Receive a message sent by WriteMsg().
If the buffer passed to the function isn't big enough, the remaining bytes will be discarded. This function always waits for the buffer to be entirely filled, unless an error occurs.
Use LastCount() to verify the number of bytes actually read.
Use Error() to determine if the operation succeeded.
buffer | Buffer where to put read data. |
nbytes | Size of the buffer. |
void wxSocketBase::RestoreState | ( | ) |
Restore the previous state of the socket, as saved with SaveState().
Calls to SaveState() and RestoreState() can be nested.
void wxSocketBase::SaveState | ( | ) |
Save the current state of the socket in a stack.
Socket state includes flags, as set with SetFlags(), event mask, as set with SetNotify() and Notify(), user data, as set with SetClientData(). Calls to SaveState and RestoreState can be nested.
void wxSocketBase::SetClientData | ( | void * | data | ) |
Sets user-supplied client data for this socket.
All socket events will contain a pointer to this data, which can be retrieved with the wxSocketEvent::GetClientData() function.
void wxSocketBase::SetEventHandler | ( | wxEvtHandler & | handler, |
int | id = -1 |
||
) |
Sets an event handler to be called when a socket event occurs.
The handler will be called for those events for which notification is enabled with SetNotify() and Notify().
handler | Specifies the event handler you want to use. |
id | The id of socket event. |
void wxSocketBase::SetFlags | ( | wxSocketFlags | flags | ) |
Use SetFlags to customize IO operation for this socket.
The flags parameter may be a combination of flags ORed together. Notice that not all combinations of flags affecting the IO calls (Read() and Write()) make sense, e.g. wxSOCKET_NOWAIT can't be combined with wxSOCKET_WAITALL nor with wxSOCKET_BLOCK.
The following flags can be used:
For more information on socket events see wxSocketFlags .
virtual bool wxSocketBase::SetLocal | ( | const wxIPV4address & | local | ) | [virtual] |
Set the local address and port to use.
This function must always be called for the server sockets but may also be called for client sockets, if it is, bind() is called before connect().
void wxSocketBase::SetNotify | ( | wxSocketEventFlags | flags | ) |
Specifies which socket events are to be sent to the event handler.
The flags parameter may be combination of flags ORed together. The following flags can be used:
以下に例を示します:
sock.SetNotify(wxSOCKET_INPUT_FLAG | wxSOCKET_LOST_FLAG);
sock.Notify(true);
In this example, the user will be notified about incoming socket data and whenever the connection is closed.
For more information on socket events see wxSocketEventFlags .
void wxSocketBase::SetTimeout | ( | long | seconds | ) |
Set the default socket timeout in seconds.
This timeout applies to all IO calls, and also to the Wait() family of functions if you don't specify a wait interval. Initially, the default timeout is 10 minutes.
static void wxSocketBase::Shutdown | ( | ) | [static] |
Shut down the sockets.
This function undoes the call to Initialize() and must be called after every successful call to Initialize().
This function should only be called from the main thread, just as Initialize().
void wxSocketBase::ShutdownOutput | ( | ) |
Shuts down the writing end of the socket.
This function simply calls the standard shutdown() function on the underlying socket, indicating that nothing will be written to this socket any more.
wxSocketBase& wxSocketBase::Unread | ( | const void * | buffer, |
wxUint32 | nbytes | ||
) |
Put the specified data into the input queue.
The data in the buffer will be returned by the next call to Read().
This function is not affected by wxSocket flags.
If you use LastCount(), it will always return nbytes.
If you use Error(), it will always return false.
buffer | Buffer to be unread. |
nbytes | Number of bytes. |
bool wxSocketBase::Wait | ( | long | seconds = -1 , |
long | millisecond = 0 |
||
) |
Wait for any socket event.
Possible socket events are:
Note that it is recommended to use the individual WaitForXXX() functions to wait for the required condition, instead of this one.
seconds | Number of seconds to wait. If -1, it will wait for the default timeout, as set with SetTimeout(). |
millisecond | Number of milliseconds to wait. |
bool wxSocketBase::WaitForLost | ( | long | seconds = -1 , |
long | millisecond = 0 |
||
) |
Wait until the connection is lost.
This may happen if the peer gracefully closes the connection or if the connection breaks.
seconds | Number of seconds to wait. If -1, it will wait for the default timeout, as set with SetTimeout(). |
millisecond | Number of milliseconds to wait. |
bool wxSocketBase::WaitForRead | ( | long | seconds = -1 , |
long | millisecond = 0 |
||
) |
Wait until the socket is readable.
This might mean that queued data is available for reading or, for streamed sockets, that the connection has been closed, so that a read operation will complete immediately without blocking (unless the wxSOCKET_WAITALL flag is set, in which case the operation might still block).
Notice that this function should not be called if there is already data available for reading on the socket.
seconds | Number of seconds to wait. If -1, it will wait for the default timeout, as set with SetTimeout(). |
millisecond | Number of milliseconds to wait. |
bool wxSocketBase::WaitForWrite | ( | long | seconds = -1 , |
long | millisecond = 0 |
||
) |
Wait until the socket becomes writable.
This might mean that the socket is ready to send new data, or for streamed sockets, that the connection has been closed, so that a write operation is guaranteed to complete immediately (unless the wxSOCKET_WAITALL flag is set, in which case the operation might still block).
Notice that this function should not be called if the socket is already writable.
seconds | Number of seconds to wait. If -1, it will wait for the default timeout, as set with SetTimeout(). |
millisecond | Number of milliseconds to wait. |
wxSocketBase& wxSocketBase::Write | ( | const void * | buffer, |
wxUint32 | nbytes | ||
) |
Write up to the given number of bytes to the socket.
Use LastCount() to verify the number of bytes actually written.
Use Error() to determine if the operation succeeded.
buffer | Buffer with the data to be sent. |
nbytes | Number of bytes. |
The exact behaviour of Write() depends on the combination of flags being used. For a detailed explanation, see SetFlags().
wxSocketBase& wxSocketBase::WriteMsg | ( | const void * | buffer, |
wxUint32 | nbytes | ||
) |
Sends a buffer which can be read using ReadMsg().
WriteMsg() sends a short header before the data so that ReadMsg() knows how much data should be actually read.
This function always waits for the entire buffer to be sent, unless an error occurs.
Use LastCount() to verify the number of bytes actually written.
Use Error() to determine if the operation succeeded.
buffer | Buffer with the data to be sent. |
nbytes | Number of bytes to send. |
WriteMsg() will behave as if the wxSOCKET_WAITALL flag was always set and it will always ignore the wxSOCKET_NOWAIT flag. The exact behaviour of WriteMsg() depends on the wxSOCKET_BLOCK flag. For a detailed explanation, see SetFlags().