]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/socket.h
Remove never implemented wxDateTime::IsGregorianDate().
[wxWidgets.git] / interface / wx / socket.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: socket.h
e725ba4f 3// Purpose: interface of wxIP*address, wxSocket* classes
23324ae1 4// Author: wxWidgets team
526954c5 5// Licence: wxWindows licence
23324ae1
FM
6/////////////////////////////////////////////////////////////////////////////
7
ccf39540 8
0623b0f0
VZ
9/**
10 The type of the native socket.
11
12 Notice that the definition below is simplified and this type is not always
13 int, e.g. it is a 64 bit integer type under Win64.
14
15 @since 2.9.5
16 */
17typedef int wxSOCKET_T;
18
ccf39540
FM
19/**
20 @class wxIPaddress
21
22 wxIPaddress is an abstract base class for all internet protocol address
23 objects. Currently, only wxIPV4address is implemented. An experimental
24 implementation for IPV6, wxIPV6address, is being developed.
25
f00f01b3 26 @library{wxnet}
ccf39540
FM
27 @category{net}
28*/
29class wxIPaddress : public wxSockAddress
30{
31public:
32 /**
33 Internally, this is the same as setting the IP address to @b INADDR_ANY.
34
35 On IPV4 implementations, 0.0.0.0
36
37 On IPV6 implementations, ::
38
39 @return @true on success, @false if something went wrong.
40 */
41 bool AnyAddress();
42
43 /**
44 Internally, this is the same as setting the IP address to @b INADDR_BROADCAST.
45
46 On IPV4 implementations, 255.255.255.255
47
48 @return @true on success, @false if something went wrong.
49 */
50 virtual bool BroadcastAddress() = 0;
51
52 /**
53 Set the address to hostname, which can be a host name or an IP-style address
54 in a format dependent on implementation.
55
56 @return @true on success, @false if something goes wrong (invalid
57 hostname or invalid IP address).
58 */
59 bool Hostname(const wxString& hostname);
60
61 /**
62 Returns the hostname which matches the IP address.
63 */
64 wxString Hostname() const;
65
66 /**
67 Returns a wxString containing the IP address.
68 */
69 virtual wxString IPAddress() const = 0;
70
71 /**
72 Determines if current address is set to localhost.
73
74 @return @true if address is localhost, @false if internet address.
75 */
76 virtual bool IsLocalHost() const = 0;
77
78 /**
79 Set address to localhost.
80
81 On IPV4 implementations, 127.0.0.1
82
83 On IPV6 implementations, ::1
84
85 @return @true on success, @false if something went wrong.
86 */
87 bool LocalHost();
88
89 /**
90 Set the port to that corresponding to the specified service.
91
92 @return @true on success, @false if something goes wrong (invalid @a service).
93 */
94 bool Service(const wxString& service);
95
96 /**
97 Set the port to that corresponding to the specified service.
98
99 @return @true on success, @false if something goes wrong (invalid @a service).
100 */
101 bool Service(unsigned short service);
102
103 /**
104 Returns the current service.
105 */
106 unsigned short Service() const;
107};
108
109
23324ae1
FM
110/**
111 @class wxIPV4address
7c913512 112
3d7548cb 113 A class for working with IPv4 network addresses.
7c913512 114
f00f01b3 115 @library{wxnet}
23324ae1
FM
116 @category{net}
117*/
118class wxIPV4address : public wxIPaddress
119{
120public:
121 /**
3d7548cb
BP
122 Set address to any of the addresses of the current machine.
123
124 Whenever possible, use this function instead of LocalHost(),
23324ae1
FM
125 as this correctly handles multi-homed hosts and avoids other small
126 problems. Internally, this is the same as setting the IP address
127 to @b INADDR_ANY.
3c4f71cc 128
3d7548cb 129 @return @true on success, @false if something went wrong.
23324ae1
FM
130 */
131 bool AnyAddress();
132
23324ae1 133 /**
3d7548cb 134 Set the address to hostname, which can be a host name or an IP-style address
e725ba4f 135 in dot notation(<tt>a.b.c.d</tt>).
3d7548cb 136
e725ba4f
FM
137 @return @true on success, @false if something goes wrong (invalid
138 hostname or invalid IP address).
23324ae1
FM
139 */
140 bool Hostname(const wxString& hostname);
3d7548cb
BP
141
142 /**
143 Returns the hostname which matches the IP address.
144 */
adaaa686 145 virtual wxString Hostname() const;
23324ae1
FM
146
147 /**
148 Returns a wxString containing the IP address in dot quad (127.0.0.1) format.
149 */
adaaa686 150 virtual wxString IPAddress() const;
23324ae1
FM
151
152 /**
3d7548cb
BP
153 Set address to localhost (127.0.0.1).
154
155 Whenever possible, use AnyAddress() instead of this one, as that one will
156 correctly handle multi-homed hosts and avoid other small problems.
157
158 @return @true on success, @false if something went wrong.
23324ae1
FM
159 */
160 bool LocalHost();
161
23324ae1 162 /**
3d7548cb
BP
163 Set the port to that corresponding to the specified @a service.
164
165 @return @true on success, @false if something goes wrong (invalid @a service).
23324ae1
FM
166 */
167 bool Service(const wxString& service);
3d7548cb
BP
168
169 /**
170 Set the port to that corresponding to the specified @a service.
171
172 @return @true on success, @false if something goes wrong (invalid @a service).
173 */
ccf39540 174 bool Service(unsigned short service);
3d7548cb
BP
175
176 /**
177 Returns the current service.
178 */
ccf39540 179 unsigned short Service() const;
23324ae1
FM
180};
181
182
e54c96f1 183
23324ae1
FM
184/**
185 @class wxSocketServer
7c913512 186
e725ba4f
FM
187 @todo describe me.
188
23324ae1
FM
189 @library{wxnet}
190 @category{net}
23324ae1
FM
191*/
192class wxSocketServer : public wxSocketBase
193{
194public:
195 /**
196 Constructs a new server and tries to bind to the specified @e address.
3d7548cb
BP
197
198 Before trying to accept new connections, remember to test whether it succeeded
199 with wxSocketBase:IsOk().
3c4f71cc 200
7c913512 201 @param address
4cc4bfaf 202 Specifies the local address for the server (e.g. port number).
7c913512 203 @param flags
e725ba4f 204 Socket flags (See wxSocketBase::SetFlags()).
23324ae1
FM
205 */
206 wxSocketServer(const wxSockAddress& address,
207 wxSocketFlags flags = wxSOCKET_NONE);
208
209 /**
210 Destructor (it doesn't close the accepted connections).
211 */
adaaa686 212 virtual ~wxSocketServer();
23324ae1
FM
213
214 /**
e725ba4f
FM
215 Accepts an incoming connection request, and creates a new wxSocketBase
216 object which represents the server-side of the connection.
3d7548cb 217
4cc4bfaf 218 If @a wait is @true and there are no pending connections to be
23324ae1 219 accepted, it will wait for the next incoming connection to
e725ba4f
FM
220 arrive.
221
488addd5 222 @warning This method will block the GUI.
3d7548cb 223
4cc4bfaf 224 If @a wait is @false, it will try to accept a pending connection
23324ae1 225 if there is one, but it will always return immediately without blocking
3d7548cb
BP
226 the GUI. If you want to use Accept() in this way, you can either check for
227 incoming connections with WaitForAccept() or catch @b wxSOCKET_CONNECTION events,
228 then call Accept() once you know that there is an incoming connection waiting
229 to be accepted.
3c4f71cc 230
d29a9a8a 231 @return Returns an opened socket connection, or @NULL if an error
3d7548cb
BP
232 occurred or if the wait parameter was @false and there
233 were no pending connections.
3c4f71cc 234
3d7548cb
BP
235 @see WaitForAccept(), wxSocketBase::SetNotify(),
236 wxSocketBase::Notify(), AcceptWith()
23324ae1 237 */
4cc4bfaf 238 wxSocketBase* Accept(bool wait = true);
23324ae1
FM
239
240 /**
241 Accept an incoming connection using the specified socket object.
3c4f71cc 242
7c913512 243 @param socket
4cc4bfaf 244 Socket to be initialized
e725ba4f
FM
245 @param wait
246 See Accept() for more info.
3c4f71cc 247
e725ba4f
FM
248 @return Returns @true on success, or @false if an error occurred or
249 if the wait parameter was @false and there were no pending
250 connections.
3d7548cb
BP
251
252 @see WaitForAccept(), wxSocketBase::SetNotify(),
253 wxSocketBase::Notify(), Accept()
23324ae1 254 */
4cc4bfaf 255 bool AcceptWith(wxSocketBase& socket, bool wait = true);
23324ae1
FM
256
257 /**
9940bebf 258 Wait for an incoming connection.
e725ba4f
FM
259
260 Use it if you want to call Accept() or AcceptWith() with @e wait set
261 to @false, to detect when an incoming connection is waiting to be accepted.
3c4f71cc 262
7c913512 263 @param seconds
3d7548cb
BP
264 Number of seconds to wait. If -1, it will wait for the default
265 timeout, as set with wxSocketBase::SetTimeout().
7c913512 266 @param millisecond
4cc4bfaf 267 Number of milliseconds to wait.
3c4f71cc 268
3d7548cb
BP
269 @return @true if an incoming connection arrived, @false if the timeout
270 elapsed.
271
272 @see Accept(), AcceptWith(), wxSocketBase::InterruptWait()
23324ae1
FM
273 */
274 bool WaitForAccept(long seconds = -1, long millisecond = 0);
275};
276
277
23324ae1
FM
278/**
279 @class wxSocketClient
7c913512 280
e725ba4f
FM
281 @todo describe me.
282
23324ae1
FM
283 @library{wxnet}
284 @category{net}
23324ae1
FM
285*/
286class wxSocketClient : public wxSocketBase
287{
288public:
289 /**
290 Constructor.
3c4f71cc 291
7c913512 292 @param flags
3d7548cb 293 Socket flags (See wxSocketBase::SetFlags())
23324ae1
FM
294 */
295 wxSocketClient(wxSocketFlags flags = wxSOCKET_NONE);
296
297 /**
3d7548cb 298 Destructor. Please see wxSocketBase::Destroy().
23324ae1 299 */
adaaa686 300 virtual ~wxSocketClient();
23324ae1 301
23324ae1
FM
302 /**
303 Connects to a server using the specified address.
3d7548cb
BP
304
305 If @a wait is @true, Connect() will wait until the connection
e725ba4f
FM
306 completes.
307
488addd5 308 @warning This method will block the GUI.
3d7548cb
BP
309
310 If @a wait is @false, Connect() will try to establish the connection
311 and return immediately, without blocking the GUI. When used this way,
312 even if Connect() returns @false, the connection request can be
313 completed later. To detect this, use WaitOnConnect(), or catch
314 @b wxSOCKET_CONNECTION events (for successful establishment) and
315 @b wxSOCKET_LOST events (for connection failure).
316
317 @param address
318 Address of the server.
319 @param wait
320 If @true, waits for the connection to complete.
321
322 @return @true if the connection is established and no error occurs.
e725ba4f
FM
323 If @a wait was true, and Connect() returns @false, an error
324 occurred and the connection failed.
325 If @a wait was @false, and Connect() returns @false, you should
326 still be prepared to handle the completion of this connection request,
327 either with WaitOnConnect() or by watching wxSOCKET_CONNECTION
328 and wxSOCKET_LOST events.
3d7548cb
BP
329
330 @see WaitOnConnect(), wxSocketBase::SetNotify(), wxSocketBase::Notify()
331 */
adaaa686 332 virtual bool Connect(const wxSockAddress& address, bool wait = true);
3d7548cb
BP
333
334 /**
335 Connects to a server using the specified address.
336
337 If @a wait is @true, Connect() will wait until the connection
338 completes. @b Warning: This will block the GUI.
339
340 If @a wait is @false, Connect() will try to establish the connection
341 and return immediately, without blocking the GUI. When used this way,
342 even if Connect() returns @false, the connection request can be
343 completed later. To detect this, use WaitOnConnect(), or catch
344 @b wxSOCKET_CONNECTION events (for successful establishment) and
345 @b wxSOCKET_LOST events (for connection failure).
3c4f71cc 346
7c913512 347 @param address
4cc4bfaf 348 Address of the server.
7c913512 349 @param local
4cc4bfaf 350 Bind to the specified local address and port before connecting.
3d7548cb
BP
351 The local address and port can also be set using SetLocal(),
352 and then using the 2-parameter Connect() method.
7c913512 353 @param wait
4cc4bfaf 354 If @true, waits for the connection to complete.
3c4f71cc 355
3d7548cb 356 @return @true if the connection is established and no error occurs.
e725ba4f
FM
357 If @a wait was true, and Connect() returns @false, an error
358 occurred and the connection failed.
359 If @a wait was @false, and Connect() returns @false, you should
360 still be prepared to handle the completion of this connection request,
361 either with WaitOnConnect() or by watching wxSOCKET_CONNECTION
362 and wxSOCKET_LOST events.
3c4f71cc 363
3d7548cb 364 @see WaitOnConnect(), wxSocketBase::SetNotify(), wxSocketBase::Notify()
23324ae1 365 */
72ac4e88 366 bool Connect(const wxSockAddress& address, const wxSockAddress& local,
4cc4bfaf 367 bool wait = true);
23324ae1
FM
368
369 /**
370 Wait until a connection request completes, or until the specified timeout
e725ba4f
FM
371 elapses. Use this function after issuing a call to Connect() with
372 @e wait set to @false.
3c4f71cc 373
7c913512 374 @param seconds
4cc4bfaf 375 Number of seconds to wait.
e725ba4f
FM
376 If -1, it will wait for the default timeout, as set with wxSocketBase::SetTimeout().
377 @param milliseconds
4cc4bfaf 378 Number of milliseconds to wait.
3c4f71cc 379
e725ba4f
FM
380 @return
381 WaitOnConnect() returns @true if the connection request completes.
382 This does not necessarily mean that the connection was
383 successfully established; it might also happen that the
384 connection was refused by the peer. Use wxSocketBase::IsConnected()
385 to distinguish between these two situations.
386 @n @n If the timeout elapses, WaitOnConnect() returns @false.
387 @n @n These semantics allow code like this:
388 @code
389 // Issue the connection request
390 client->Connect(addr, false);
391
392 // Wait until the request completes or until we decide to give up
393 bool waitmore = true;
394 while ( !client->WaitOnConnect(seconds, millis) && waitmore )
395 {
396 // possibly give some feedback to the user,
397 // and update waitmore as needed.
398 }
399 bool success = client->IsConnected();
400 @endcode
23324ae1
FM
401 */
402 bool WaitOnConnect(long seconds = -1, long milliseconds = 0);
403};
404
405
e54c96f1 406
23324ae1
FM
407/**
408 @class wxSockAddress
7c913512 409
23324ae1 410 You are unlikely to need to use this class: only wxSocketBase uses it.
7c913512 411
f00f01b3 412 @library{wxnet}
3d7548cb 413 @category{net}
7c913512 414
e54c96f1 415 @see wxSocketBase, wxIPaddress, wxIPV4address
23324ae1
FM
416*/
417class wxSockAddress : public wxObject
418{
419public:
420 /**
421 Default constructor.
422 */
423 wxSockAddress();
424
425 /**
426 Default destructor.
427 */
adaaa686 428 virtual ~wxSockAddress();
23324ae1
FM
429
430 /**
431 Delete all informations about the address.
432 */
adaaa686 433 virtual void Clear();
23324ae1
FM
434
435 /**
436 Returns the length of the socket address.
437 */
438 int SockAddrLen();
5fab0c8d
VZ
439
440 /**
441 Returns the pointer to the low-level representation of the address.
442
443 This can be used to pass socket address information to a 3rd party
444 library.
445
446 @return
447 Pointer to a sockaddr-derived struct.
448 */
449 const sockaddr *GetAddressData() const;
450
451 /**
452 Returns the length of the buffer retrieved by GetAddressData().
453
454 @return
455 The size of the sockaddr-derived struct corresponding to this
456 address.
457 */
458 int GetAddressDataLen() const;
23324ae1
FM
459};
460
461
e54c96f1 462
23324ae1
FM
463/**
464 @class wxSocketEvent
7c913512 465
23324ae1 466 This event class contains information about socket events.
3051a44a
FM
467 This kind of events are sent to the event handler specified with
468 wxSocketBase::SetEventHandler.
7c913512 469
3d7548cb
BP
470 @beginEventTable{wxSocketEvent}
471 @event{EVT_SOCKET(id, func)}
3051a44a 472 Process a socket event, supplying the member function.
3d7548cb
BP
473 @endEventTable
474
23324ae1
FM
475 @library{wxnet}
476 @category{net}
7c913512 477
e54c96f1 478 @see wxSocketBase, wxSocketClient, wxSocketServer
23324ae1
FM
479*/
480class wxSocketEvent : public wxEvent
481{
482public:
483 /**
484 Constructor.
485 */
486 wxSocketEvent(int id = 0);
487
488 /**
489 Gets the client data of the socket which generated this event, as
3d7548cb 490 set with wxSocketBase::SetClientData().
23324ae1 491 */
adaaa686 492 void* GetClientData() const;
23324ae1
FM
493
494 /**
e725ba4f
FM
495 Returns the socket object to which this event refers to.
496 This makes it possible to use the same event handler for different sockets.
23324ae1 497 */
328f5751 498 wxSocketBase* GetSocket() const;
23324ae1
FM
499
500 /**
501 Returns the socket event type.
502 */
328f5751 503 wxSocketNotify GetSocketEvent() const;
23324ae1
FM
504};
505
506
3d7548cb
BP
507/**
508 wxSocket error return values.
509*/
510enum wxSocketError
511{
512 wxSOCKET_NOERROR, ///< No error happened.
513 wxSOCKET_INVOP, ///< Invalid operation.
514 wxSOCKET_IOERR, ///< Input/Output error.
515 wxSOCKET_INVADDR, ///< Invalid address passed to wxSocket.
516 wxSOCKET_INVSOCK, ///< Invalid socket (uninitialized).
517 wxSOCKET_NOHOST, ///< No corresponding host.
518 wxSOCKET_INVPORT, ///< Invalid port.
519 wxSOCKET_WOULDBLOCK, ///< The socket is non-blocking and the operation would block.
520 wxSOCKET_TIMEDOUT, ///< The timeout for this operation expired.
521 wxSOCKET_MEMERR ///< Memory exhausted.
522};
523
524
525/**
e725ba4f
FM
526 @anchor wxSocketEventFlags
527
3d7548cb
BP
528 wxSocket Event Flags.
529
530 A brief note on how to use these events:
531
532 The @b wxSOCKET_INPUT event will be issued whenever there is data available
533 for reading. This will be the case if the input queue was empty and new data
534 arrives, or if the application has read some data yet there is still more data
535 available. This means that the application does not need to read all available
536 data in response to a @b wxSOCKET_INPUT event, as more events will be produced
537 as necessary.
538
539 The @b wxSOCKET_OUTPUT event is issued when a socket is first connected with
540 Connect() or accepted with Accept(). After that, new events will be generated
541 only after an output operation fails with @b wxSOCKET_WOULDBLOCK and buffer space
542 becomes available again. This means that the application should assume that it can
543 write data to the socket until an @b wxSOCKET_WOULDBLOCK error occurs; after this,
544 whenever the socket becomes writable again the application will be notified with
545 another @b wxSOCKET_OUTPUT event.
546
547 The @b wxSOCKET_CONNECTION event is issued when a delayed connection request completes
548 successfully (client) or when a new connection arrives at the incoming queue (server).
549
550 The @b wxSOCKET_LOST event is issued when a close indication is received for the socket.
551 This means that the connection broke down or that it was closed by the peer. Also, this
552 event will be issued if a connection request fails.
553*/
554enum wxSocketEventFlags
555{
556 wxSOCKET_INPUT, ///< There is data available for reading.
557 wxSOCKET_OUTPUT, ///< The socket is ready to be written to.
558 wxSOCKET_CONNECTION, ///< Incoming connection request (server), or
559 ///< successful connection establishment (client).
560 wxSOCKET_LOST ///< The connection has been closed.
561};
562
563
564/**
565 @anchor wxSocketFlags
566
567 wxSocket Flags.
568
569 A brief overview on how to use these flags follows.
570
571 If no flag is specified (this is the same as @b wxSOCKET_NONE),
572 IO calls will return after some data has been read or written, even
573 when the transfer might not be complete. This is the same as issuing
574 exactly one blocking low-level call to @b recv() or @b send(). Note
575 that @e blocking here refers to when the function returns, not
576 to whether the GUI blocks during this time.
577
578 If @b wxSOCKET_NOWAIT is specified, IO calls will return immediately.
579 Read operations will retrieve only available data. Write operations will
580 write as much data as possible, depending on how much space is available
581 in the output buffer. This is the same as issuing exactly one nonblocking
582 low-level call to @b recv() or @b send(). Note that @e nonblocking here
583 refers to when the function returns, not to whether the GUI blocks during
294a09aa
VZ
584 this time. Also note that this flag impacts both Read and Write
585 operations. If it is desired to control Read independently of Write, for
586 example you want no wait on Read(), but you do want to wait on Write(), then
587 use wxSOCKET_NOWAIT_READ and wxSOCKET_NOWAIT_WRITE.
588
589 If @b wxSOCKET_NOWAIT_READ (this flag is new since wxWidgets 2.9.5) is
590 specified, Read operations will return immediately. Read operations will
591 retrieve only available data. This is the same as issuing exactly one
592 nonblocking low-level call to @b recv(). Note that @e nonblocking here
593 refers to when the function returns, not to whether the GUI blocks during
594 this time. This flag should not be enabled if ReadMsg() is going to be
595 used (it will be ignored), if you do then thread-safety may be at risk.
596 Note that wxSOCKET_NOWAIT_READ impacts only Read operations and does not
597 impact Write operations, allowing Read and Write operations to be set
598 differently.
599
600 If @b wxSOCKET_NOWAIT_WRITE (this flag is new since wxWidgets 2.9.5) is
601 specified, Write operations will return immediately. Write operations will
602 write as much data as possible, depending on how much space is available in
603 the output buffer. This is the same as issuing exactly one nonblocking
604 low-level call to @b send(). Note that @e nonblocking here refers to when
605 the function returns, not to whether the GUI blocks during this time. This
606 flag should not be enabled if WriteMsg() is going to be used (it will be
607 ignored), if you use it then thread safety may be at risk. Note that
608 wxSOCKET_NOWAIT_WRITE impacts only Write operations and does not impact
609 Write operations, allowing Read and Write operations to be set differently.
3d7548cb
BP
610
611 If @b wxSOCKET_WAITALL is specified, IO calls won't return until ALL
612 the data has been read or written (or until an error occurs), blocking if
613 necessary, and issuing several low level calls if necessary. This is the
614 same as having a loop which makes as many blocking low-level calls to
615 @b recv() or @b send() as needed so as to transfer all the data. Note
616 that @e blocking here refers to when the function returns, not
294a09aa
VZ
617 to whether the GUI blocks during this time. Note that wxSOCKET_WAITALL
618 impacts both Read and Write operations. If you desire to wait
619 for all on just Read operations, but not on Write operations, (or vice versa),
620 use wxSOCKET_WAITALL_READ or wxSOCKET_WAITALL_WRITE.
621
622 If @b wxSOCKET_WAITALL_READ (this flag is new since wxWidgets 2.9.5) is
623 specified, Read operations won't return until ALL the data has been read
624 (or until an error occurs), blocking if necessary, and issuing several low
625 level calls if necessary. This is the same as having a loop which makes as
626 many blocking low-level calls to @b recv() as needed so as to transfer all
627 the data. Note that @e blocking here refers to when the function returns,
628 not to whether the GUI blocks during this time. Note that
629 wxSOCKET_WAITALL_READ only has an impact on Read operations, and has no
630 impact on Write operations, allowing Read and Write operations to have
631 different settings.
632
633 If @b wxSOCKET_WAITALL_WRITE (this flag is new since wxWidgets 2.9.5) is
634 specified, Write() and WriteMsg() calls won't return until ALL the data has
635 been written (or until an error occurs), blocking if necessary, and issuing
636 several low level calls if necessary. This is the same as having a loop
637 which makes as many blocking low-level calls to @b send() as needed so as
638 to transfer all the data. Note that @e blocking here refers to when the
639 function returns, not to whether the GUI blocks during this time. Note
640 that wxSOCKET_WAITALL_WRITE only has an impact on Write operations, and has
641 no impact on Read operations, allowing Read and Write operations to have
642 different settings.
3d7548cb
BP
643
644 The @b wxSOCKET_BLOCK flag controls whether the GUI blocks during
645 IO operations. If this flag is specified, the socket will not yield
646 during IO calls, so the GUI will remain blocked until the operation
647 completes. If it is not used, then the application must take extra
648 care to avoid unwanted reentrance.
649
650 The @b wxSOCKET_REUSEADDR flag controls the use of the @b SO_REUSEADDR standard
651 @b setsockopt() flag. This flag allows the socket to bind to a port that is
652 already in use. This is mostly used on UNIX-based systems to allow rapid starting
653 and stopping of a server, otherwise you may have to wait several minutes for the
654 port to become available.
655
656 @b wxSOCKET_REUSEADDR can also be used with socket clients to (re)bind to a
657 particular local port for an outgoing connection.
4c51a665 658 This option can have surprising platform dependent behaviour, so check the
3d7548cb
BP
659 documentation for your platform's implementation of setsockopt().
660
661 Note that on BSD-based systems(e.g. Mac OS X), use of
662 @b wxSOCKET_REUSEADDR implies @b SO_REUSEPORT in addition to
663 @b SO_REUSEADDR to be consistent with Windows.
664
665 The @b wxSOCKET_BROADCAST flag controls the use of the @b SO_BROADCAST standard
666 @b setsockopt() flag. This flag allows the socket to use the broadcast address,
667 and is generally used in conjunction with @b wxSOCKET_NOBIND and
668 wxIPaddress::BroadcastAddress().
669
670 So:
e725ba4f
FM
671 - @b wxSOCKET_NONE will try to read at least SOME data, no matter how much.
672 - @b wxSOCKET_NOWAIT will always return immediately, even if it cannot
673 read or write ANY data.
674 - @b wxSOCKET_WAITALL will only return when it has read or written ALL
675 the data.
676 - @b wxSOCKET_BLOCK has nothing to do with the previous flags and
677 it controls whether the GUI blocks.
4c51a665 678 - @b wxSOCKET_REUSEADDR controls special platform-specific behaviour for
e725ba4f 679 reusing local addresses/ports.
3d7548cb
BP
680*/
681enum
682{
683 wxSOCKET_NONE = 0, ///< Normal functionality.
684 wxSOCKET_NOWAIT = 1, ///< Read/write as much data as possible and return immediately.
685 wxSOCKET_WAITALL = 2, ///< Wait for all required data to be read/written unless an error occurs.
686 wxSOCKET_BLOCK = 4, ///< Block the GUI (do not yield) while reading/writing data.
3bab636d 687 wxSOCKET_REUSEADDR = 8, ///< Allows the use of an in-use port.
3d7548cb 688 wxSOCKET_BROADCAST = 16, ///< Switches the socket to broadcast mode
294a09aa 689 wxSOCKET_NOBIND = 32, ///< Stops the socket from being bound to a specific
3d7548cb
BP
690 ///< adapter (normally used in conjunction with
691 ///< @b wxSOCKET_BROADCAST)
294a09aa
VZ
692 wxSOCKET_NOWAIT_READ = 64, ///< Read as much data as possible and return immediately
693 wxSOCKET_WAITALL_READ = 128, ///< Wait for all required data to be read unless an error occurs.
694 wxSOCKET_NOWAIT_WRITE = 256, ///< Write as much data as possible and return immediately
695 wxSOCKET_WAITALL_WRITE = 512 ///< Wait for all required data to be written unless an error occurs.
3d7548cb
BP
696};
697
e54c96f1 698
23324ae1
FM
699/**
700 @class wxSocketBase
7c913512 701
23324ae1
FM
702 wxSocketBase is the base class for all socket-related objects, and it
703 defines all basic IO functionality.
7c913512 704
e725ba4f 705 @note
4cb591b9
VZ
706 When using wxSocket from multiple threads, even implicitly (e.g. by using
707 wxFTP or wxHTTP in another thread) you must initialize the sockets from the
708 main thread by calling Initialize() before creating the other ones.
7c913512 709
3051a44a 710 @beginEventEmissionTable{wxSocketEvent}
3d7548cb
BP
711 @event{EVT_SOCKET(id, func)}
712 Process a @c wxEVT_SOCKET event.
e725ba4f 713 See @ref wxSocketEventFlags and @ref wxSocketFlags for more info.
3d7548cb
BP
714 @endEventTable
715
e725ba4f
FM
716 @library{wxnet}
717 @category{net}
718
3d7548cb
BP
719 @see wxSocketEvent, wxSocketClient, wxSocketServer, @sample{sockets},
720 @ref wxSocketFlags, ::wxSocketEventFlags, ::wxSocketError
23324ae1
FM
721*/
722class wxSocketBase : public wxObject
723{
724public:
23324ae1
FM
725
726 /**
3d7548cb 727 @name Construction and Destruction
23324ae1 728 */
3d7548cb 729 //@{
23324ae1
FM
730
731 /**
3d7548cb 732 Default constructor.
3c4f71cc 733
3d7548cb
BP
734 Don't use it directly; instead, use wxSocketClient to construct a socket client,
735 or wxSocketServer to construct a socket server.
23324ae1 736 */
3d7548cb 737 wxSocketBase();
23324ae1
FM
738
739 /**
3d7548cb
BP
740 Destructor.
741
742 Do not destroy a socket using the delete operator directly;
743 use Destroy() instead. Also, do not create socket objects in the stack.
23324ae1 744 */
382f12e4 745 virtual ~wxSocketBase();
23324ae1
FM
746
747 /**
3d7548cb 748 Destroys the socket safely.
3c4f71cc 749
3d7548cb
BP
750 Use this function instead of the delete operator, since otherwise socket events
751 could reach the application even after the socket has been destroyed. To prevent
752 this problem, this function appends the wxSocket to a list of object to be deleted
753 on idle time, after all events have been processed. For the same reason, you should
754 avoid creating socket objects in the stack.
3c4f71cc 755
3d7548cb 756 Destroy() calls Close() automatically.
3c4f71cc 757
d29a9a8a 758 @return Always @true.
23324ae1
FM
759 */
760 bool Destroy();
761
4cb591b9
VZ
762 /**
763 Perform the initialization needed in order to use the sockets.
764
765 This function is called from wxSocket constructor implicitly and so
766 normally doesn't need to be called explicitly. There is however one
767 important exception: as this function must be called from the main
768 (UI) thread, if you use wxSocket from multiple threads you must call
769 Initialize() from the main thread before creating wxSocket objects in
770 the other ones.
771
772 It is safe to call this function multiple times (only the first call
773 does anything) but you must call Shutdown() exactly once for every call
774 to Initialize().
775
4017f5ca
VZ
776 This function should only be called from the main thread.
777
4cb591b9
VZ
778 @return
779 @true if the sockets can be used, @false if the initialization
780 failed and sockets are not available at all.
781 */
782 static bool Initialize();
783
784 /**
785 Shut down the sockets.
786
787 This function undoes the call to Initialize() and must be called after
788 every successful call to Initialize().
4017f5ca
VZ
789
790 This function should only be called from the main thread, just as
791 Initialize().
4cb591b9
VZ
792 */
793 static void Shutdown();
794
3d7548cb
BP
795 //@}
796
797
23324ae1 798 /**
3d7548cb 799 @name Socket State
23324ae1 800 */
3d7548cb 801 //@{
23324ae1
FM
802
803 /**
804 Returns @true if an error occurred in the last IO operation.
c9157492 805
3d7548cb
BP
806 Use this function to check for an error condition after one of the
807 following calls: Discard(), Peek(), Read(), ReadMsg(), Unread(), Write(), WriteMsg().
23324ae1 808 */
328f5751 809 bool Error() const;
23324ae1 810
23324ae1 811 /**
9940bebf 812 Return the local address of the socket.
3c4f71cc 813
d29a9a8a 814 @return @true if no error happened, @false otherwise.
23324ae1 815 */
382f12e4 816 virtual bool GetLocal(wxSockAddress& addr) const;
23324ae1
FM
817
818 /**
9940bebf 819 Return the peer address field of the socket.
3c4f71cc 820
d29a9a8a 821 @return @true if no error happened, @false otherwise.
23324ae1 822 */
382f12e4 823 virtual bool GetPeer(wxSockAddress& addr) const;
23324ae1 824
2d46f281
VZ
825 /**
826 Return the socket timeout in seconds.
827
828 The timeout can be set using SetTimeout() and is 10 minutes by default.
829 */
830 long GetTimeout() const;
831
23324ae1
FM
832 /**
833 Returns @true if the socket is connected.
834 */
328f5751 835 bool IsConnected() const;
23324ae1 836
c9157492 837 /**
9940bebf 838 Check if the socket can be currently read or written.
c9157492 839
3d7548cb
BP
840 This might mean that queued data is available for reading or, for streamed
841 sockets, that the connection has been closed, so that a read operation will
842 complete immediately without blocking (unless the @b wxSOCKET_WAITALL flag
23324ae1
FM
843 is set, in which case the operation might still block).
844 */
382f12e4 845 bool IsData();
23324ae1
FM
846
847 /**
848 Returns @true if the socket is not connected.
849 */
328f5751 850 bool IsDisconnected() const;
23324ae1
FM
851
852 /**
853 Returns @true if the socket is initialized and ready and @false in other
854 cases.
3d7548cb
BP
855
856 @remarks
3d7548cb 857 For wxSocketClient, IsOk() won't return @true unless the client is connected to a server.
3d7548cb
BP
858 For wxSocketServer, IsOk() will return @true if the server could bind to the specified address
859 and is already listening for new connections.
3d7548cb 860 IsOk() does not check for IO errors; use Error() instead for that purpose.
23324ae1 861 */
328f5751 862 bool IsOk() const;
23324ae1
FM
863
864 /**
865 Returns the number of bytes read or written by the last IO call.
3d7548cb 866
23324ae1 867 Use this function to get the number of bytes actually transferred
3d7548cb
BP
868 after using one of the following IO calls: Discard(), Peek(), Read(),
869 ReadMsg(), Unread(), Write(), WriteMsg().
294a09aa
VZ
870
871 @deprecated
872 This function is kept mostly for backwards compatibility. Use
873 LastReadCount() or LastWriteCount() instead. LastCount() is still
874 needed for use with less commonly used functions: Discard(),
875 Peek(), and Unread().
23324ae1 876 */
328f5751 877 wxUint32 LastCount() const;
23324ae1 878
294a09aa
VZ
879 /**
880 Returns the number of bytes read by the last Read() or ReadMsg()
881 call (receive direction only).
882
883 This function is thread-safe, in case Read() is executed in a
884 different thread than Write(). Use LastReadCount() instead of
885 LastCount() for this reason.
886
887 Unlike LastCount(), the functions Discard(), Peek(), and Unread()
888 are currently not supported by LastReadCount().
889
890 @since 2.9.5
891 */
892 wxUint32 LastReadCount() const;
893
894 /**
895 Returns the number of bytes written by the last Write() or WriteMsg()
896 call (transmit direction only).
897
898 This function is thread-safe, in case Write() is executed in a
899 different thread than Read(). Use LastWriteCount() instead of
900 LastCount() for this reason.
901
902 @since 2.9.5
903 */
904 wxUint32 LastWriteCount() const;
905
23324ae1 906 /**
3d7548cb
BP
907 Returns the last wxSocket error. See @ref wxSocketError .
908
909 @note
3d7548cb 910 This function merely returns the last error code,
23324ae1
FM
911 but it should not be used to determine if an error has occurred (this
912 is because successful operations do not change the LastError value).
3d7548cb
BP
913 Use Error() first, in order to determine if the last IO call failed.
914 If this returns @true, use LastError() to discover the cause of the error.
23324ae1 915 */
328f5751 916 wxSocketError LastError() const;
23324ae1
FM
917
918 /**
9940bebf 919 Restore the previous state of the socket, as saved with SaveState().
3d7548cb
BP
920
921 Calls to SaveState() and RestoreState() can be nested.
922
923 @see SaveState()
23324ae1 924 */
3d7548cb
BP
925 void RestoreState();
926
927 /**
9940bebf
VZ
928 Save the current state of the socket in a stack.
929
e725ba4f
FM
930 Socket state includes flags, as set with SetFlags(), event mask, as set
931 with SetNotify() and Notify(), user data, as set with SetClientData().
3d7548cb
BP
932 Calls to SaveState and RestoreState can be nested.
933
934 @see RestoreState()
935 */
936 void SaveState();
937
938 //@}
939
940
941 /**
942 @name Basic I/O
943
944 See also: wxSocketServer::WaitForAccept(), wxSocketClient::WaitOnConnect()
945 */
946 //@{
947
948 /**
9940bebf
VZ
949 Shut down the socket, disabling further transmission and reception of
950 data and disable events for the socket and frees the associated system
951 resources.
3d7548cb
BP
952
953 Upon socket destruction, Close() is automatically called, so in most cases
954 you won't need to do it yourself, unless you explicitly want to shut down
955 the socket, typically to notify the peer that you are closing the connection.
956
957 @remarks
3d7548cb
BP
958 Although Close() immediately disables events for the socket, it is possible
959 that event messages may be waiting in the application's event queue.
960 The application must therefore be prepared to handle socket event messages even
961 after calling Close().
962 */
382f12e4 963 virtual bool Close();
3d7548cb 964
b67397a7
VZ
965 /**
966 Shuts down the writing end of the socket.
967
968 This function simply calls the standard shutdown() function on the
969 underlying socket, indicating that nothing will be written to this
970 socket any more.
971 */
972 void ShutdownOutput();
973
3d7548cb 974 /**
9940bebf
VZ
975 Delete all bytes in the incoming queue.
976
977 This function always returns immediately and its operation is not
978 affected by IO flags.
3d7548cb
BP
979
980 Use LastCount() to verify the number of bytes actually discarded.
981
982 If you use Error(), it will always return @false.
983 */
9940bebf 984 wxSocketBase& Discard();
3d7548cb
BP
985
986 /**
987 Returns current IO flags, as set with SetFlags()
988 */
989 wxSocketFlags GetFlags() const;
990
991 /**
992 Use this function to interrupt any wait operation currently in progress.
993
994 Note that this is not intended as a regular way to interrupt a Wait call,
995 but only as an escape mechanism for exceptional situations where it is
996 absolutely necessary to use it, for example to abort an operation due to
997 some exception or abnormal problem. InterruptWait is automatically called
998 when you Close() a socket (and thus also upon
999 socket destruction), so you don't need to use it in these cases.
1000
1001 @see Wait(), WaitForLost(), WaitForRead(), WaitForWrite(),
e725ba4f 1002 wxSocketServer::WaitForAccept(), wxSocketClient::WaitOnConnect()
3d7548cb
BP
1003 */
1004 void InterruptWait();
23324ae1
FM
1005
1006 /**
9940bebf
VZ
1007 Peek into the socket by copying the next bytes which would be read by
1008 Read() into the provided buffer.
3d7548cb 1009
9940bebf
VZ
1010 Peeking a buffer doesn't delete it from the socket input queue, i.e.
1011 calling Read() will return the same data.
3d7548cb 1012
23324ae1 1013 Use LastCount() to verify the number of bytes actually peeked.
3d7548cb 1014
23324ae1 1015 Use Error() to determine if the operation succeeded.
3c4f71cc 1016
7c913512 1017 @param buffer
4cc4bfaf 1018 Buffer where to put peeked data.
7c913512 1019 @param nbytes
4cc4bfaf 1020 Number of bytes.
3c4f71cc 1021
d29a9a8a 1022 @return Returns a reference to the current object.
3c4f71cc 1023
3d7548cb 1024 @remarks
e725ba4f
FM
1025 The exact behaviour of Peek() depends on the combination of flags being used.
1026 For a detailed explanation, see SetFlags()
3d7548cb
BP
1027
1028 @see Error(), LastError(), LastCount(), SetFlags()
23324ae1 1029 */
9940bebf 1030 wxSocketBase& Peek(void* buffer, wxUint32 nbytes);
23324ae1
FM
1031
1032 /**
9940bebf
VZ
1033 Read up to the given number of bytes from the socket.
1034
294a09aa 1035 Use LastReadCount() to verify the number of bytes actually read.
23324ae1 1036 Use Error() to determine if the operation succeeded.
3c4f71cc 1037
7c913512 1038 @param buffer
4cc4bfaf 1039 Buffer where to put read data.
7c913512 1040 @param nbytes
4cc4bfaf 1041 Number of bytes.
3c4f71cc 1042
d29a9a8a 1043 @return Returns a reference to the current object.
3c4f71cc 1044
3d7548cb 1045 @remarks
e725ba4f
FM
1046 The exact behaviour of Read() depends on the combination of flags being used.
1047 For a detailed explanation, see SetFlags()
3d7548cb 1048
294a09aa 1049 @see Error(), LastError(), LastReadCount(),
4cc4bfaf 1050 SetFlags()
23324ae1 1051 */
9940bebf 1052 wxSocketBase& Read(void* buffer, wxUint32 nbytes);
23324ae1
FM
1053
1054 /**
9940bebf
VZ
1055 Receive a message sent by WriteMsg().
1056
1057 If the buffer passed to the function isn't big enough, the remaining
1058 bytes will be discarded. This function always waits for the buffer to
1059 be entirely filled, unless an error occurs.
3d7548cb 1060
294a09aa 1061 Use LastReadCount() to verify the number of bytes actually read.
3d7548cb 1062
23324ae1 1063 Use Error() to determine if the operation succeeded.
3c4f71cc 1064
7c913512 1065 @param buffer
4cc4bfaf 1066 Buffer where to put read data.
7c913512 1067 @param nbytes
4cc4bfaf 1068 Size of the buffer.
3c4f71cc 1069
d29a9a8a 1070 @return Returns a reference to the current object.
3c4f71cc 1071
3d7548cb 1072 @remarks
e725ba4f
FM
1073 ReadMsg() will behave as if the @b wxSOCKET_WAITALL flag was always set
1074 and it will always ignore the @b wxSOCKET_NOWAIT flag.
1075 The exact behaviour of ReadMsg() depends on the @b wxSOCKET_BLOCK flag.
1076 For a detailed explanation, see SetFlags().
294a09aa
VZ
1077 For thread safety, in case ReadMsg() and WriteMsg() are called in
1078 different threads, it is a good idea to call
1079 SetFlags(wxSOCKET_WAITALL|wx_SOCKET_BLOCK) before the first calls
1080 to ReadMsg() and WriteMsg() in different threads, as each of these
1081 functions will call SetFlags() which performs read/modify/write. By
1082 setting these flags before the multi-threading, it will ensure that
1083 they don't get reset by thread race conditions.
3c4f71cc 1084
294a09aa 1085 @see Error(), LastError(), LastReadCount(), SetFlags(), WriteMsg()
23324ae1 1086 */
9940bebf 1087 wxSocketBase& ReadMsg(void* buffer, wxUint32 nbytes);
23324ae1
FM
1088
1089 /**
1090 Use SetFlags to customize IO operation for this socket.
ee533e88 1091
4cc4bfaf 1092 The @a flags parameter may be a combination of flags ORed together.
ee533e88
VZ
1093 Notice that not all combinations of flags affecting the IO calls
1094 (Read() and Write()) make sense, e.g. @b wxSOCKET_NOWAIT can't be
1095 combined with @b wxSOCKET_WAITALL nor with @b wxSOCKET_BLOCK.
3c4f71cc 1096
ee533e88 1097 The following flags can be used:
3d7548cb
BP
1098 @beginFlagTable
1099 @flag{wxSOCKET_NONE}
ee533e88
VZ
1100 Default mode: the socket will read some data in the IO calls and
1101 will process events to avoid blocking UI while waiting for the data
1102 to become available.
3d7548cb 1103 @flag{wxSOCKET_NOWAIT}
ee533e88
VZ
1104 Don't wait for the socket to become ready in IO calls, read as much
1105 data as is available -- potentially 0 bytes -- and return
1106 immediately.
3d7548cb 1107 @flag{wxSOCKET_WAITALL}
ee533e88
VZ
1108 Don't return before the entire amount of data specified in IO calls
1109 is read or written unless an error occurs. If this flag is not
1110 specified, the IO calls return as soon as any amount of data, even
1111 less than the total number of bytes, is processed.
3d7548cb 1112 @flag{wxSOCKET_BLOCK}
ee533e88
VZ
1113 Don't process the UI events while waiting for the socket to become
1114 ready. This means that UI will be unresponsive during socket IO.
3d7548cb
BP
1115 @flag{wxSOCKET_REUSEADDR}
1116 Allows the use of an in-use port (wxServerSocket only).
1117 @flag{wxSOCKET_BROADCAST}
1118 Switches the socket to broadcast mode.
1119 @flag{wxSOCKET_NOBIND}
1120 Stops the socket from being bound to a specific adapter (normally
1121 used in conjunction with @b wxSOCKET_BROADCAST).
1122 @endFlagTable
1123
1124 For more information on socket events see @ref wxSocketFlags .
23324ae1
FM
1125 */
1126 void SetFlags(wxSocketFlags flags);
1127
1128 /**
9940bebf
VZ
1129 Set the local address and port to use.
1130
1131 This function must always be called for the server sockets but may also
1132 be called for client sockets, if it is, @b bind() is called before @b
1133 connect().
23324ae1 1134 */
382f12e4 1135 virtual bool SetLocal(const wxIPV4address& local);
23324ae1 1136
23324ae1 1137 /**
9940bebf
VZ
1138 Set the default socket timeout in seconds.
1139
1140 This timeout applies to all IO calls, and also to the Wait() family of
1141 functions if you don't specify a wait interval. Initially, the default
23324ae1
FM
1142 timeout is 10 minutes.
1143 */
382f12e4 1144 void SetTimeout(long seconds);
23324ae1 1145
23324ae1 1146 /**
9940bebf
VZ
1147 Put the specified data into the input queue.
1148
1149 The data in the buffer will be returned by the next call to Read().
1150
1151 This function is not affected by wxSocket flags.
3d7548cb
BP
1152
1153 If you use LastCount(), it will always return @a nbytes.
1154
23324ae1 1155 If you use Error(), it will always return @false.
3c4f71cc 1156
7c913512 1157 @param buffer
4cc4bfaf 1158 Buffer to be unread.
7c913512 1159 @param nbytes
4cc4bfaf 1160 Number of bytes.
3c4f71cc 1161
d29a9a8a 1162 @return Returns a reference to the current object.
3c4f71cc 1163
4cc4bfaf 1164 @see Error(), LastCount(), LastError()
23324ae1 1165 */
9940bebf 1166 wxSocketBase& Unread(const void* buffer, wxUint32 nbytes);
23324ae1
FM
1167
1168 /**
9940bebf 1169 Wait for any socket event.
3c4f71cc 1170
9940bebf 1171 Possible socket events are:
3d7548cb
BP
1172 @li The socket becomes readable.
1173 @li The socket becomes writable.
1174 @li An ongoing connection request has completed (wxSocketClient only)
1175 @li An incoming connection request has arrived (wxSocketServer only)
1176 @li The connection has been closed.
1177
9940bebf
VZ
1178 Note that it is recommended to use the individual @b WaitForXXX()
1179 functions to wait for the required condition, instead of this one.
3c4f71cc 1180
7c913512 1181 @param seconds
4cc4bfaf
FM
1182 Number of seconds to wait.
1183 If -1, it will wait for the default timeout,
3d7548cb 1184 as set with SetTimeout().
7c913512 1185 @param millisecond
4cc4bfaf 1186 Number of milliseconds to wait.
3c4f71cc 1187
9940bebf
VZ
1188 @return
1189 @true when any of the above conditions is satisfied or @false if the
1190 timeout was reached.
3c4f71cc 1191
3d7548cb 1192 @see InterruptWait(), wxSocketServer::WaitForAccept(),
4cc4bfaf 1193 WaitForLost(), WaitForRead(),
3d7548cb 1194 WaitForWrite(), wxSocketClient::WaitOnConnect()
23324ae1
FM
1195 */
1196 bool Wait(long seconds = -1, long millisecond = 0);
1197
1198 /**
9940bebf
VZ
1199 Wait until the connection is lost.
1200
1201 This may happen if the peer gracefully closes the connection or if the
1202 connection breaks.
3c4f71cc 1203
7c913512 1204 @param seconds
4cc4bfaf
FM
1205 Number of seconds to wait.
1206 If -1, it will wait for the default timeout,
3d7548cb 1207 as set with SetTimeout().
7c913512 1208 @param millisecond
4cc4bfaf 1209 Number of milliseconds to wait.
3c4f71cc 1210
d29a9a8a 1211 @return Returns @true if the connection was lost, @false if the timeout
e725ba4f 1212 was reached.
3c4f71cc 1213
4cc4bfaf 1214 @see InterruptWait(), Wait()
23324ae1 1215 */
fc377125 1216 bool WaitForLost(long seconds = -1, long millisecond = 0);
23324ae1
FM
1217
1218 /**
9940bebf 1219 Wait until the socket is readable.
3d7548cb
BP
1220
1221 This might mean that queued data is available for reading or, for streamed
1222 sockets, that the connection has been closed, so that a read operation will
1223 complete immediately without blocking (unless the @b wxSOCKET_WAITALL flag
23324ae1 1224 is set, in which case the operation might still block).
3c4f71cc 1225
9940bebf
VZ
1226 Notice that this function should not be called if there is already data
1227 available for reading on the socket.
1228
7c913512 1229 @param seconds
4cc4bfaf
FM
1230 Number of seconds to wait.
1231 If -1, it will wait for the default timeout,
3d7548cb 1232 as set with SetTimeout().
7c913512 1233 @param millisecond
4cc4bfaf 1234 Number of milliseconds to wait.
3c4f71cc 1235
d29a9a8a 1236 @return Returns @true if the socket becomes readable, @false on timeout.
3c4f71cc 1237
4cc4bfaf 1238 @see InterruptWait(), Wait()
23324ae1
FM
1239 */
1240 bool WaitForRead(long seconds = -1, long millisecond = 0);
1241
1242 /**
9940bebf 1243 Wait until the socket becomes writable.
3d7548cb
BP
1244
1245 This might mean that the socket is ready to send new data, or for streamed
1246 sockets, that the connection has been closed, so that a write operation is
1247 guaranteed to complete immediately (unless the @b wxSOCKET_WAITALL flag is set,
23324ae1 1248 in which case the operation might still block).
3c4f71cc 1249
9940bebf
VZ
1250 Notice that this function should not be called if the socket is already
1251 writable.
1252
7c913512 1253 @param seconds
4cc4bfaf
FM
1254 Number of seconds to wait.
1255 If -1, it will wait for the default timeout,
3d7548cb 1256 as set with SetTimeout().
7c913512 1257 @param millisecond
4cc4bfaf 1258 Number of milliseconds to wait.
3c4f71cc 1259
d29a9a8a 1260 @return Returns @true if the socket becomes writable, @false on timeout.
3c4f71cc 1261
4cc4bfaf 1262 @see InterruptWait(), Wait()
23324ae1
FM
1263 */
1264 bool WaitForWrite(long seconds = -1, long millisecond = 0);
1265
1266 /**
9940bebf 1267 Write up to the given number of bytes to the socket.
3d7548cb 1268
294a09aa 1269 Use LastWriteCount() to verify the number of bytes actually written.
3d7548cb 1270
23324ae1 1271 Use Error() to determine if the operation succeeded.
3c4f71cc 1272
7c913512 1273 @param buffer
4cc4bfaf 1274 Buffer with the data to be sent.
7c913512 1275 @param nbytes
4cc4bfaf 1276 Number of bytes.
3c4f71cc 1277
d29a9a8a 1278 @return Returns a reference to the current object.
3c4f71cc 1279
3d7548cb
BP
1280 @remarks
1281
1282 The exact behaviour of Write() depends on the combination of flags being used.
1283 For a detailed explanation, see SetFlags().
1284
294a09aa 1285 @see Error(), LastError(), LastWriteCount(), SetFlags()
23324ae1 1286 */
9940bebf 1287 wxSocketBase& Write(const void* buffer, wxUint32 nbytes);
23324ae1
FM
1288
1289 /**
9940bebf
VZ
1290 Sends a buffer which can be read using ReadMsg().
1291
1292 WriteMsg() sends a short header before the data so that ReadMsg()
1293 knows how much data should be actually read.
3d7548cb 1294
9940bebf
VZ
1295 This function always waits for the entire buffer to be sent, unless an
1296 error occurs.
3d7548cb 1297
294a09aa 1298 Use LastWriteCount() to verify the number of bytes actually written.
3d7548cb 1299
23324ae1 1300 Use Error() to determine if the operation succeeded.
3c4f71cc 1301
7c913512 1302 @param buffer
4cc4bfaf 1303 Buffer with the data to be sent.
7c913512 1304 @param nbytes
4cc4bfaf 1305 Number of bytes to send.
3c4f71cc 1306
d29a9a8a 1307 @return Returns a reference to the current object.
3d7548cb
BP
1308
1309 @remarks
1310
1311 WriteMsg() will behave as if the @b wxSOCKET_WAITALL flag was always set and
1312 it will always ignore the @b wxSOCKET_NOWAIT flag. The exact behaviour of
1313 WriteMsg() depends on the @b wxSOCKET_BLOCK flag. For a detailed explanation,
1314 see SetFlags().
294a09aa
VZ
1315 For thread safety, in case ReadMsg() and WriteMsg() are called in
1316 different threads, it is a good idea to call
1317 @code SetFlags(wxSOCKET_WAITALL|wx_SOCKET_BLOCK) @endcode before the
1318 first calls to ReadMsg() and WriteMsg() in different threads, as each
1319 of these functions calls SetFlags() which performs read/modify/write.
1320 By setting these flags before the multi-threading, it will ensure that
1321 they don't get reset by thread race conditions.
3d7548cb 1322
294a09aa 1323 @see Error(), LastError(), LastWriteCount(), SetFlags(), ReadMsg()
3d7548cb 1324
23324ae1 1325 */
9940bebf 1326 wxSocketBase& WriteMsg(const void* buffer, wxUint32 nbytes);
3d7548cb
BP
1327
1328 //@}
1329
1330
1331 /**
1332 @name Handling Socket Events
1333 */
1334 //@{
1335
1336 /**
1337 Returns a pointer of the client data for this socket, as set with
1338 SetClientData()
1339 */
1340 void* GetClientData() const;
1341
1342 /**
1343 According to the @a notify value, this function enables
1344 or disables socket events. If @a notify is @true, the events
1345 configured with SetNotify() will
1346 be sent to the application. If @a notify is @false; no events
1347 will be sent.
1348 */
1349 void Notify(bool notify);
1350
1351 /**
1352 Sets user-supplied client data for this socket. All socket events will
1353 contain a pointer to this data, which can be retrieved with
1354 the wxSocketEvent::GetClientData() function.
1355 */
1356 void SetClientData(void* data);
1357
1358 /**
1359 Sets an event handler to be called when a socket event occurs. The
1360 handler will be called for those events for which notification is
1361 enabled with SetNotify() and
1362 Notify().
1363
1364 @param handler
1365 Specifies the event handler you want to use.
1366 @param id
1367 The id of socket event.
1368
1369 @see SetNotify(), Notify(), wxSocketEvent, wxEvtHandler
1370 */
1371 void SetEventHandler(wxEvtHandler& handler, int id = -1);
1372
1373 /**
1374 Specifies which socket events are to be sent to the event handler.
1375 The @a flags parameter may be combination of flags ORed together. The
1376 following flags can be used:
1377
1378 @beginFlagTable
1379 @flag{wxSOCKET_INPUT_FLAG} to receive @b wxSOCKET_INPUT.
1380 @flag{wxSOCKET_OUTPUT_FLAG} to receive @b wxSOCKET_OUTPUT.
1381 @flag{wxSOCKET_CONNECTION_FLAG} to receive @b wxSOCKET_CONNECTION.
1382 @flag{wxSOCKET_LOST_FLAG} to receive @b wxSOCKET_LOST.
1383 @endFlagTable
1384
1385 For example:
1386
1387 @code
1388 sock.SetNotify(wxSOCKET_INPUT_FLAG | wxSOCKET_LOST_FLAG);
1389 sock.Notify(true);
1390 @endcode
1391
1392 In this example, the user will be notified about incoming socket data and
1393 whenever the connection is closed.
1394
1395 For more information on socket events see @ref wxSocketEventFlags .
1396 */
1397 void SetNotify(wxSocketEventFlags flags);
1398
0623b0f0
VZ
1399 /**
1400 Returns the native socket descriptor.
1401
1402 This is intended to use with rarely used specific platform features
1403 that can only be accessed via the actual socket descriptor.
1404
1405 Do not use this for reading or writing data from or to the socket as
1406 this would almost surely interfere with wxSocket code logic and result
1407 in unexpected behaviour.
1408
1409 The socket must be successfully initialized, e.g. connected for client
1410 sockets, before this method can be called.
1411
1412 @return Returns the native socket descriptor.
1413
1414 @since 2.9.5
1415 */
1416 wxSOCKET_T GetSocket() const;
1417
3d7548cb 1418 //@}
23324ae1
FM
1419};
1420
1421
e54c96f1 1422
23324ae1
FM
1423/**
1424 @class wxDatagramSocket
7c913512 1425
41e69d79
FM
1426 @todo docme
1427
23324ae1 1428 @library{wxnet}
3d7548cb 1429 @category{net}
23324ae1
FM
1430*/
1431class wxDatagramSocket : public wxSocketBase
1432{
1433public:
1434 /**
1435 Constructor.
3c4f71cc 1436
41e69d79
FM
1437 @param addr
1438 The socket address.
7c913512 1439 @param flags
41e69d79 1440 Socket flags (See wxSocketBase::SetFlags()).
23324ae1 1441 */
8067ee11
FM
1442 wxDatagramSocket(const wxSockAddress& addr,
1443 wxSocketFlags flags = wxSOCKET_NONE);
23324ae1
FM
1444
1445 /**
3d7548cb 1446 Destructor. Please see wxSocketBase::Destroy().
23324ae1 1447 */
adaaa686 1448 virtual ~wxDatagramSocket();
23324ae1 1449
23324ae1 1450 /**
9940bebf
VZ
1451 Write a buffer of @a nbytes bytes to the socket.
1452
294a09aa 1453 Use wxSocketBase::LastWriteCount() to verify the number of bytes actually wrote.
3d7548cb 1454 Use wxSocketBase::Error() to determine if the operation succeeded.
3c4f71cc 1455
7c913512 1456 @param address
4cc4bfaf 1457 The address of the destination peer for this data.
7c913512 1458 @param buffer
4cc4bfaf 1459 Buffer where read data is.
7c913512 1460 @param nbytes
4cc4bfaf 1461 Number of bytes.
3c4f71cc 1462
d29a9a8a 1463 @return Returns a reference to the current object.
3d7548cb
BP
1464
1465 @see wxSocketBase::LastError(), wxSocketBase::SetFlags()
23324ae1 1466 */
7323ff1a
FM
1467 wxDatagramSocket& SendTo(const wxSockAddress& address,
1468 const void* buffer, wxUint32 nbytes);
23324ae1 1469};
e54c96f1 1470